-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpacetimeDB.ClientSDK.csproj
37 lines (32 loc) · 1.45 KB
/
SpacetimeDB.ClientSDK.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>9</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<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>2024</Copyright>
<PackageProjectUrl>https://spacetimedb.com</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/clockworklabs/com.clockworklabs.spacetimedbsdk</RepositoryUrl>
<AssemblyVersion>1.0.0</AssemblyVersion>
<Version>1.0.0-rc3</Version>
<DefaultItemExcludes>$(DefaultItemExcludes);*~/**</DefaultItemExcludes>
<!-- We want to save DLLs for Unity which doesn't support NuGet. -->
<RestorePackagesPath>packages</RestorePackagesPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SpacetimeDB.BSATN.Runtime" Version="1.0.0-rc3" />
<InternalsVisibleTo Include="SpacetimeDB.Tests" />
</ItemGroup>
<ItemGroup>
<None Update="logo.png" Pack="true" PackagePath="" />
<None Update="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>