Skip to content

Commit

Permalink
Added .NET 7 to Benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddesmet committed Apr 20, 2023
1 parent 6ed08f8 commit 779ba91
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions benchmarks/Paseto.Benchmark/Paseto.Benchmark.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
<PackageReference Include="xunit.assert" Version="2.4.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Paseto\Paseto.csproj" />
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.3" />
<PackageReference Include="xunit.assert" Version="2.4.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Paseto\Paseto.csproj" />
</ItemGroup>

</Project>

0 comments on commit 779ba91

Please sign in to comment.