Files
SpacetimeDB/examples~/quickstart-chat/server/StdbModule.csproj
2025-10-31 11:48:00 -07:00

21 lines
677 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<!-- If you encounter:
"error NETSDK1084: There is no application host available for the specified RuntimeIdentifier 'wasi-wasm'."
Try:
`dotnet workload install wasi-experimental` -->
<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>
<ItemGroup>
<PackageReference Include="SpacetimeDB.Runtime" Version="1.7.*" />
</ItemGroup>
</Project>