Skip to content

Commit

Permalink
upgrade to .NET 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ssg committed Apr 24, 2024
1 parent 5736aae commit 9461d9b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "releaseBuild",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/benchmark/bin/Release/net6.0/benchmark.dll",
"program": "${workspaceFolder}/benchmark/bin/Release/net8.0/benchmark.dll",
"args": [],
"cwd": "${workspaceFolder}/benchmark",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>benchmark</AssemblyName>
<OutputType>Exe</OutputType>
<LangVersion>latest</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/HashDepot.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>HashDepot</AssemblyName>
<Version>3.1.0</Version>
<Description>Tested and performant implementations of xxHash, SipHash (SipHash-2-4), MurmurHash (MurmurHash3), FNV (FNV-1, FNV-1a)</Description>
Expand Down
4 changes: 2 additions & 2 deletions test/HashDepotTest.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>HashDepotTest</AssemblyName>
<RootNamespace>HashDepot.Test</RootNamespace>
<OutputType>Library</OutputType>
Expand All @@ -21,7 +21,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="Microsoft.TestPlatform.TestHost" Version="17.9.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference In6clude="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\HashDepot.csproj" />
Expand Down

0 comments on commit 9461d9b

Please sign in to comment.