Skip to content

Commit 68818c5

Browse files
authored
Update dependencies (#319)
1 parent ef4d39c commit 68818c5

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

Directory.Packages.props

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,26 @@
33
<PropertyGroup>
44
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
55
<MicrosoftBuildPackageVersion>17.12.6</MicrosoftBuildPackageVersion>
6-
<MicrosoftBuildPackageVersion Condition="'$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net8.0' ">17.11.4</MicrosoftBuildPackageVersion>
7-
<SystemTextJsonVersion>8.0.5</SystemTextJsonVersion>
8-
<SystemTextJsonVersion Condition="'$(TargetFramework)' == 'net6.0'">8.0.5</SystemTextJsonVersion>
6+
<MicrosoftBuildPackageVersion Condition="'$(TargetFramework)' == 'net8.0' ">17.11.4</MicrosoftBuildPackageVersion>
7+
<SystemTextJsonVersion>9.0.0</SystemTextJsonVersion>
98
</PropertyGroup>
109
<ItemGroup>
1110
<PackageVersion Include="AssemblyShader" Version="1.0.3-preview" />
1211
<PackageVersion Include="Microsoft.Build" Version="$(MicrosoftBuildPackageVersion)" />
1312
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildPackageVersion)" />
1413
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
1514
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4" />
16-
<PackageVersion Include="Microsoft.IO.Redist" Version="6.0.1" />
15+
<PackageVersion Include="Microsoft.IO.Redist" Version="6.1.0" />
1716
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
18-
<PackageVersion Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.11.2177" />
17+
<PackageVersion Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.12.2149" />
1918
<PackageVersion Include="Shouldly" Version="4.2.1" />
2019
<PackageVersion Include="System.IO.Compression" Version="4.3.0" />
2120
<PackageVersion Include="System.Text.Json" Version="$(SystemTextJsonVersion)" />
2221
<PackageVersion Include="xunit" Version="2.9.2" />
2322
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
2423
</ItemGroup>
2524
<ItemGroup>
26-
<GlobalPackageReference Include="Microsoft.Build.Artifacts" Version="6.1.47" />
25+
<GlobalPackageReference Include="Microsoft.Build.Artifacts" Version="6.1.48" />
2726
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
2827
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.6.146" />
2928
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />

src/Microsoft.Build.Utilities.ProjectCreation.UnitTests/Microsoft.Build.Utilities.ProjectCreation.UnitTests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<PackageReference Include="AssemblyShader" />
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" ShadeDependencies="NuGet.Frameworks" />
1313
<PackageReference Include="Shouldly" />
14+
<PackageReference Include="System.CodeDom" VersionOverride="9.0.0" Condition="'$(TargetFramework)' == 'net9.0'" ExcludeAssets="All" />
1415
<PackageReference Include="xunit" />
1516
<PackageReference Include="xunit.runner.visualstudio" />
1617
</ItemGroup>

src/Microsoft.Build.Utilities.ProjectCreation/Microsoft.Build.Utilities.ProjectCreation.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" Condition="'$(OfficialBuild)' != 'true'" />
3333
<PackageReference Include="Microsoft.IO.Redist" Condition="'$(TargetFramework)' == 'net472'" />
3434
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Condition="'$(TargetFramework)' == 'net472'" ExcludeAssets="Runtime" PrivateAssets="All" />
35-
<!-- Remove NU5104 once System.CodeDom is a stable version for .NET 9 -->
36-
<PackageReference Include="System.CodeDom" VersionOverride="9.0.0-rc.2.24473.5" Condition="'$(TargetFramework)' == 'net9.0'" />
3735
<PackageReference Include="System.IO.Compression" Condition="'$(TargetFramework)' == 'net472'" />
3836
<PackageReference Include="System.Text.Json" />
3937
<PackageReference Include="System.ValueTuple" VersionOverride="4.5.0" Condition="'$(TargetFramework)' == 'net472'" ExcludeAssets="Compile" />

0 commit comments

Comments
 (0)