Skip to content

Commit 6990bca

Browse files
committed
Improve dependencies links, explicitly use System.Text.Json, bump to 2.4.2 beta
1 parent f78c5a9 commit 6990bca

5 files changed

Lines changed: 8 additions & 7 deletions

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix Condition="'$(VersionPrefix)' == ''">2.4.1</VersionPrefix>
4+
<VersionPrefix Condition="'$(VersionPrefix)' == ''">2.4.2</VersionPrefix>
55
<VersionSuffix Condition="'$(VersionSuffix)' == ''">beta</VersionSuffix>
66
<Version>$(VersionPrefix)-$(VersionSuffix)</Version>
77
</PropertyGroup>

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageVersion Include="System.Memory" Version="4.6.0" />
1616
<PackageVersion Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
1717
<PackageVersion Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" />
18-
<PackageVersion Include="System.Text.Json" Version="9.0.0" />
18+
<PackageVersion Include="System.Text.Json" Version="9.0.1" />
1919

2020
<PackageVersion Include="Microsoft.Win32.Registry" Version="5.0.0" />
2121
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0-3.final" />

SharpGen.Platform/SharpGen.Platform.csproj

Lines changed: 4 additions & 4 deletions
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

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
@@ -9,8 +9,8 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="PolySharp" PrivateAssets="all" />
12-
<PackageReference Include="Microsoft.Win32.Registry" Condition="'$(TargetFramework)' != 'net472'" />
13-
<PackageReference Include="System.Text.Json" Condition="'$(TargetFramework)' != 'net8.0'" />
12+
<PackageReference Include="Microsoft.Win32.Registry" />
13+
<PackageReference Include="System.Text.Json" />
1414
</ItemGroup>
1515

1616
<ItemGroup>
@@ -50,4 +50,4 @@
5050
</Compile>
5151
</ItemGroup>
5252

53-
</Project>
53+
</Project>

SharpGen.Runtime/SharpGen.Runtime.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<PackageReference Include="PolySharp" PrivateAssets="all" />
2323
<PackageReference Include="System.Memory" Condition="'$(TargetFramework)' != 'net8.0' and '$(TargetFramework)' != 'net9.0' and '$(TargetFramework)' != 'netstandard2.1'" />
2424
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Condition="'$(TargetFramework)' != 'net8.0' and '$(TargetFramework)' != 'net9.0'" />
25+
<PackageReference Include="System.Text.Json" />
2526
</ItemGroup>
2627

2728
<ItemGroup>

SharpGenTools.Sdk/SharpGenTools.Sdk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</ItemGroup>
4646

4747
<ItemGroup>
48-
<PackageReference Include="PolySharp" />
48+
<PackageReference Include="PolySharp" PrivateAssets="all" />
4949
<PackageReference Include="Microsoft.Build.Utilities.Core" />
5050
<PackageReference Include="Polly.Contrib.WaitAndRetry" />
5151
<PackageReference Include="Microsoft.Bcl.HashCode" Condition="'$(TargetFramework)' == 'netstandard2.0'" />

0 commit comments

Comments
 (0)