mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-03-20 09:01:05 +08:00
18 lines
780 B
XML
18 lines
780 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<!-- Only needed when referencing local dependencies as projects. For published packages, these are imported automatically. -->
|
|
<Import Project="../crates/bindings-csharp/Runtime/build/SpacetimeDB.Runtime.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetName>StdbModule</TargetName>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RuntimeIdentifier>wasi-wasm</RuntimeIdentifier>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<!-- Prevent test projects from being picked up by `dotnet pack`. -->
|
|
<IsPackable>false</IsPackable>
|
|
<!-- ignore naming conventions, we're trying to match Rust 1:1 -->
|
|
<NoWarn>$(NoWarn);CS8981;IDE1006</NoWarn>
|
|
</PropertyGroup>
|
|
</Project>
|