Skip to content

Commit f52ecee

Browse files
committed
Update packages
1 parent a092ec2 commit f52ecee

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
lines changed

src/Markdig.Benchmarks/Markdig.Benchmarks.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFramework>net6.0</TargetFramework>
44
<OutputType>Exe</OutputType>
@@ -19,12 +19,12 @@
1919
</Content>
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
23-
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.13.1" />
22+
<PackageReference Include="BenchmarkDotNet" Version="0.13.11" />
23+
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.13.11" />
2424
<PackageReference Include="CommonMark.NET" Version="0.15.1" />
2525
<PackageReference Include="Markdown" Version="2.2.1" />
2626
<PackageReference Include="MarkdownSharp" Version="2.0.5" />
27-
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="2.0.226801" />
27+
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="3.1.456101" />
2828
</ItemGroup>
2929
<ItemGroup>
3030
<ProjectReference Include="..\Markdig\Markdig.csproj" />

src/Markdig.Tests/GlobalUsings.cs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Copyright (c) Alexandre Mutel. All rights reserved.
2+
// This file is licensed under the BSD-Clause 2 license.
3+
// See the license.txt file in the project root for more information.
4+
5+
global using Assert = NUnit.Framework.Legacy.ClassicAssert;

src/Markdig.Tests/Markdig.Tests.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
15-
<PackageReference Include="NUnit" Version="3.13.3" />
16-
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
15+
<PackageReference Include="NUnit" Version="4.0.1" />
16+
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

src/Markdig.WebApp/Markdig.WebApp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.20.0" />
17+
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

src/Markdig/Markdig.targets

+4-8
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,18 @@
2424
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2525
</PropertyGroup>
2626

27-
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
28-
<PackageReference Include="System.Memory" Version="4.5.4" />
27+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'netstandard2.0'">
28+
<PackageReference Include="System.Memory" Version="4.5.5" />
2929
</ItemGroup>
3030

31-
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
32-
<PackageReference Include="System.Memory" Version="4.5.4" />
33-
</ItemGroup>
34-
3531
<ItemGroup>
3632
<None Include="../../img/markdig.png" Pack="true" PackagePath="" />
3733
<None Include="../../readme.md" Pack="true" PackagePath="/"/>
38-
<PackageReference Include="MinVer" Version="3.1.0">
34+
<PackageReference Include="MinVer" Version="4.3.0">
3935
<PrivateAssets>all</PrivateAssets>
4036
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4137
</PackageReference>
42-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.*" PrivateAssets="All"/>
38+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.*" PrivateAssets="All"/>
4339
</ItemGroup>
4440

4541
<Target Name="PatchVersion" AfterTargets="MinVer">

src/markdig.sln.DotSettings

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
This file is licensed under the BSD-Clause 2 license. &#xD;
44
See the license.txt file in the project root for more information.</s:String>
55
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /&gt;</s:String>
6+
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EFeature_002EServices_002ECodeCleanup_002EFileHeader_002EFileHeaderSettingsMigrate/@EntryIndexedValue">True</s:Boolean>
67
<s:String x:Key="/Default/Environment/UnitTesting/NUnitProvider/SetCurrentDirectoryTo/@EntryValue">TestFolder</s:String>
78
<s:Boolean x:Key="/Default/UserDictionary/Words/=Autolink/@EntryIndexedValue">True</s:Boolean>
89
<s:Boolean x:Key="/Default/UserDictionary/Words/=Inlines/@EntryIndexedValue">True</s:Boolean>

0 commit comments

Comments
 (0)