-
Notifications
You must be signed in to change notification settings - Fork 18
/
Chickensoft.GodotGame.csproj
46 lines (46 loc) · 2.21 KB
/
Chickensoft.GodotGame.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
38
39
40
41
42
43
44
45
46
<Project Sdk="Godot.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<RootNamespace>Chickensoft.GodotGame</RootNamespace>
<!-- Required for some nuget packages to work -->
<!-- godotengine/godot/issues/42271#issuecomment-751423827 -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<!-- To show generated files -->
<!-- <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> -->
<!--
<CompilerGeneratedFilesOutputPath>.generated</CompilerGeneratedFilesOutputPath>
-->
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<Title>Chickensoft.GodotGame</Title>
<Version>1.0.0</Version>
<Description>Chickensoft.GodotGame</Description>
<Copyright>© 2024 Chickensoft Organization</Copyright>
<Authors>Chickensoft Organization</Authors>
<Company>Chickensoft Organization</Company>
<!-- Don't include unit tests in release builds. -->
<DefaultItemExcludes Condition="'$(Configuration)' == 'ExportRelease'">
$(DefaultItemExcludes);test/**/*
</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup Condition=" '$(Configuration)' == 'Debug' or '$(Configuration)' == 'ExportDebug' ">
<!-- Test dependencies go here! -->
<!-- Dependencies added here will not be included in release builds. -->
<PackageReference Include="Chickensoft.GoDotTest" Version="1.5.10" />
<!-- Used to drive test scenes when testing visual code -->
<PackageReference Include="Chickensoft.GodotTestDriver" Version="3.0.2" />
<!-- Bring your own assertion library for tests! -->
<!-- We're using Shouldly for this example, but you can use anything. -->
<PackageReference Include="Shouldly" Version="4.2.1" />
<!-- LightMock is a mocking library that works without reflection. -->
<PackageReference Include="LightMock.Generator" Version="1.2.2" />
<!-- LightMoq is a Chickensoft package which makes it more like Moq. -->
<PackageReference Include="LightMoq" Version="0.1.0" />
</ItemGroup>
<ItemGroup>
<!-- Production dependencies go here! -->
</ItemGroup>
</Project>