mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-23 16:11:42 -04:00
52 lines
1.9 KiB
XML
52 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyName>SpacetimeDB.Runtime</AssemblyName>
|
|
<AssemblyVersion>0.10.1</AssemblyVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Version>$(AssemblyVersion)</Version>
|
|
<Title>SpacetimeDB Module Runtime</Title>
|
|
<Authors>RReverser</Authors>
|
|
<Company>Clockwork Labs</Company>
|
|
<Product>SpacetimeDB</Product>
|
|
<Description>The SpacetimeDB Runtime implements the database runtime bindings for writing SpacetimeDB modules in C#.</Description>
|
|
<Copyright>2023</Copyright>
|
|
<PackageProjectUrl>https://spacetimedb.com/</PackageProjectUrl>
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/clockworklabs/SpacetimeDBLibCSharp</RepositoryUrl>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../BSATN.Runtime/BSATN.Runtime.csproj" />
|
|
<ProjectReference Include="../BSATN.Codegen/BSATN.Codegen.csproj" OutputItemType="Analyzer" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Linq.Expression.Optimizer" Version="1.0.15" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../logo.png" Pack="true" PackagePath="" />
|
|
<None Include="README.md" Pack="true" PackagePath="" />
|
|
<None Include="../LICENSE" Pack="true" PackagePath="" />
|
|
<None Include="build/" Pack="true" PackagePath="build" />
|
|
<None Include="bindings.c" Pack="true" PackagePath="" />
|
|
<None Include="driver.h" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<UpToDateCheckInput Include="bindings.c" />
|
|
<UpToDateCheckInput Include="driver.h" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|