mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-22 15:41:56 -04:00
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>SpacetimeDB.Codegen.Tests</RootNamespace>
|
|
</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>
|