-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathYarnSpinner-Godot.csproj
28 lines (28 loc) · 1.14 KB
/
YarnSpinner-Godot.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
<Project Sdk="Godot.NET.Sdk/4.3.0">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<WarningsAsErrors>true</WarningsAsErrors>
<!--Turn on Nullable so that we can fail the build if there are any incompatible scripts-->
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<!-- Add some extra files for ease of developing samples -->
<None Include="addons\YarnSpinner-Godot\YarnSpinner-Godot.props" />
<None Include="addons\YarnSpinner-Godot\plugin.cfg" />
<None Include="**\*.md" />
<None Include="**\*.yarn" />
<None Include="**\*.gd" />
</ItemGroup>
<ItemGroup>
<!-- For SQL variable storage sample -->
<PackageReference Include="sqlite-net-pcl" Version="1.9.172" />
</ItemGroup>
<ItemGroup>
<Content Include="todotest\NodeCompleteTest.yarn.import" />
<Content Include="todotest\test.tscn" />
<Content Include="todotest\test.yarnproject" />
<Content Include="todotest\test.yarnproject.import" />
</ItemGroup>
<Import Project="addons\YarnSpinner-Godot\YarnSpinner-Godot.props" />
</Project>