clockworklabs_spacetimedb/modules/Directory.Build.props
2024-12-16 21:49:42 +00:00

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>