mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-14 19:58:24 -04:00
21 lines
677 B
XML
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>
|