Skip to content

Commit

Permalink
Add latest TFM.
Browse files Browse the repository at this point in the history
  • Loading branch information
kingcean committed Nov 13, 2024
1 parent 83ca1d6 commit 3e5f90c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Basic.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
<LangVersion>12.0</LangVersion>
<LangVersion>13.0</LangVersion>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\Trivial.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\Basic.props" />

<PropertyGroup>
<TargetFrameworks>net8.0;net6.0;net48;net462;net461</TargetFrameworks>
<TargetFrameworks>net9.0;net8.0;net6.0;net48;net462;net461</TargetFrameworks>
<AssemblyName>Trivial</AssemblyName>
<RootNamespace>Trivial</RootNamespace>
<PackageId>Trivial</PackageId>
Expand All @@ -23,7 +23,7 @@
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net481' OR '$(TargetFramework)' == 'net48' OR '$(TargetFramework)' == 'net462'">
<PackageReference Include="System.Text.Json" Version="9.0.0-rc.2.24473.5" />
<PackageReference Include="System.Text.Json" Version="9.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
<PackageReference Include="System.Text.Json" Version="6.0.10" />
Expand Down
6 changes: 3 additions & 3 deletions UnitTest/UnitTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0;net6.0;net48</TargetFrameworks>
<TargetFrameworks>net9.0;net8.0;net6.0;net48</TargetFrameworks>
<IsPackable>false</IsPackable>
<AssemblyName>Trivial.UnitTest</AssemblyName>
<RootNamespace>Trivial</RootNamespace>
Expand All @@ -24,8 +24,8 @@
<ItemGroup>
<PackageReference Include="Trivial.Console" Version="9.0.0-preview2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 3e5f90c

Please sign in to comment.