-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathSpacetimeDB.ClientSDK.Godot.csproj
More file actions
56 lines (50 loc) · 2.74 KB
/
SpacetimeDB.ClientSDK.Godot.csproj
File metadata and controls
56 lines (50 loc) · 2.74 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Godot.NET.Sdk/4.6.2">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>9</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>SpacetimeDB.ClientSDK.Godot</PackageId>
<Title>SpacetimeDB Godot SDK</Title>
<Authors>jdetter</Authors>
<Company>Clockwork Labs</Company>
<Product>SpacetimeDB</Product>
<Description>The SpacetimeDB Godot SDK is a software development kit (SDK) designed to simplify the interaction with SpacetimeDB server modules from Godot projects.</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>2.4.0</AssemblyVersion>
<Version>2.4.0</Version>
<DefaultItemExcludes>$(DefaultItemExcludes);*~/**</DefaultItemExcludes>
<RestorePackagesPath>obj~/godot/packages</RestorePackagesPath>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<DefineConstants>$(DefineConstants);GODOT</DefineConstants>
<!-- Godot.NET.Sdk defaults to .godot/mono/temp; build this package like the regular C# SDK. -->
<BaseOutputPath>bin~/</BaseOutputPath>
<OutputPath>bin~/$(Configuration)/$(TargetFramework)/</OutputPath>
<PackageOutputPath>bin~/$(Configuration)/</PackageOutputPath>
<BaseIntermediateOutputPath>obj~/godot/</BaseIntermediateOutputPath>
<IntermediateOutputPath>obj~/godot/$(Configuration)/$(TargetFramework)/</IntermediateOutputPath>
<UseLocalBsatnRuntime Condition="'$(UseLocalBsatnRuntime)' == ''">false</UseLocalBsatnRuntime>
</PropertyGroup>
<ItemGroup Condition="'$(UseLocalBsatnRuntime)' != 'true'">
<PackageReference Include="SpacetimeDB.BSATN.Runtime" Version="2.4.*" />
</ItemGroup>
<ItemGroup Condition="'$(UseLocalBsatnRuntime)' == 'true'">
<ProjectReference Include="../../crates/bindings-csharp/BSATN.Runtime/BSATN.Runtime.csproj" />
<ProjectReference Include="../../crates/bindings-csharp/BSATN.Codegen/BSATN.Codegen.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<CompilerVisibleProperty Include="GodotDisabledSourceGenerators" />
<CompilerVisibleProperty Include="GodotProjectDir" />
<CompilerVisibleProperty Include="GodotProjectDirBase64" />
<CompilerVisibleProperty Include="GodotSourceGenerators" />
<CompilerVisibleProperty Include="IsGodotToolsProject" />
</ItemGroup>
<ItemGroup>
<None Include="logo.png" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>