mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-24 00:22:21 -04:00
137f26da5f
Signed-off-by: Zeke Foppa <196249+bfops@users.noreply.github.com> Signed-off-by: Ingvar Stepanyan <me@rreverser.com> Co-authored-by: Zeke Foppa <196249+bfops@users.noreply.github.com>
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CSharpier.Core" Version="0.28.2" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
|
|
<PackageReference Include="Verify.SourceGenerators" Version="2.2.0" />
|
|
<PackageReference Include="Verify.XUnit" Version="25.0.1" />
|
|
<PackageReference Include="xunit" Version="2.8.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Codegen/Codegen.csproj" />
|
|
<!-- we only need to make sure that Runtime is (re)built before we run tests, but we don't need the DLL in the test itself -->
|
|
<ProjectReference Include="../Runtime/Runtime.csproj" ReferenceOutputAssembly="false" />
|
|
<!-- sample code should not be part of the test compilation -->
|
|
<Compile Remove="Sample.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|