Vitorm.Data.Benchmark.csproj 719 B

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\..\src\Vitorm.Data\Vitorm.Data.csproj" />
  13. <ProjectReference Include="..\..\src\Vitorm.Sqlite\Vitorm.Sqlite.csproj" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <None Update="appsettings.json">
  17. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  18. </None>
  19. </ItemGroup>
  20. </Project>