mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-14 11:48:28 -04:00
cd71963efd
# Description of Changes This reverts the version bump, since it seems to be causing test flakiness somehow. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing - [ ] CI passes --------- Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com> Co-authored-by: John Detter <4099508+jdetter@users.noreply.github.com>
20 lines
677 B
XML
20 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.11.*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|