mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-12 10:48:19 -04:00
23 lines
867 B
XML
23 lines
867 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RuntimeIdentifier>wasi-wasm</RuntimeIdentifier>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<!-- ignore naming conventions, we're trying to match Rust 1:1 -->
|
|
<NoWarn>$(NoWarn);CS8981;IDE1006</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
Use local package sources instead of published ones.
|
|
This makes integration test somewhat differ from production configuration, but
|
|
at least it simplifies workflow for editing and testing C# code itself.
|
|
-->
|
|
<ItemGroup>
|
|
<ProjectReference Include="../../crates/bindings-csharp/Codegen/Codegen.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
<ProjectReference Include="../../crates/bindings-csharp/Runtime/Runtime.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|