mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-14 03:37:55 -04:00
809e7d1afb
## Description of Changes Bumped the version number to 0.9.0 as this was forgotten in the previous release. Includes all changes to date. ## API - [X] This is an API breaking change to the SDK *If the API is breaking, please state below what will break* Not sure but its going out with the latest release. The previous package was 5 months ago. ## Requires SpacetimeDB PRs *List any PRs here that are required for this SDK change to work*
47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<LangVersion>9</LangVersion>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
<PackageId>SpacetimeDB.ClientSDK</PackageId>
|
|
<Title>SpacetimeDB SDK</Title>
|
|
<Authors>jdetter</Authors>
|
|
<Company>Clockwork Labs</Company>
|
|
<Product>SpacetimeDB</Product>
|
|
<Description>The SpacetimeDB SDK is a software development kit (SDK) designed to simplify the interaction with SpacetimeDB server modules.</Description>
|
|
<Copyright>2023</Copyright>
|
|
<PackageProjectUrl>https://spacetimedb.com</PackageProjectUrl>
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/clockworklabs/spacetimedb-csharp-sdk</RepositoryUrl>
|
|
<AssemblyVersion>0.8.0</AssemblyVersion>
|
|
<Version>0.9.0</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="examples\**" />
|
|
<EmbeddedResource Remove="examples\**" />
|
|
<None Remove="examples\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.23.3" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="logo.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
<None Update="README.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|