-
Notifications
You must be signed in to change notification settings - Fork 27
/
GameDemo.csproj
58 lines (58 loc) · 3.24 KB
/
GameDemo.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
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Godot.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<RootNamespace>GameDemo</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>GameDemo</Title>
<Version>1.0.0</Version>
<Description>GameDemo</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>
<!-- <PublishAot>true</PublishAot> -->
<ReportAnalyzer>true</ReportAnalyzer>
<CodeAnalysisRuleSet>CodeAnalyzers.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<!-- Test dependencies go here! -->
<!-- Dependencies added here will not be included in release builds. -->
<!-- Used to drive test scenes when testing visual code -->
<PackageReference Include="Chickensoft.GoDotTest" Version="1.5.10" />
<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" />
<PackageReference Include="Moq" Version="4.20.72" />
</ItemGroup>
<ItemGroup>
<!-- Production dependencies go here! -->
<PackageReference Include="System.IO.Abstractions" Version="21.1.7" />
<PackageReference Include="EnvironmentAbstractions" Version="5.0.0" />
<PackageReference Include="GodotSharp.SourceGenerators" Version="2.1.1" PrivateAssets="all" OutputItemType="analyzer" />
<PackageReference Include="Chickensoft.SaveFileBuilder" Version="1.1.0" />
<PackageReference Include="Chickensoft.AutoInject" Version="2.4.0" PrivateAssets="all" />
<PackageReference Include="Chickensoft.Collections" Version="1.12.3" />
<PackageReference Include="Chickensoft.GodotNodeInterfaces" Version="2.2.31" />
<PackageReference Include="Chickensoft.Introspection" Version="2.0.0" />
<PackageReference Include="Chickensoft.Introspection.Generator" Version="2.0.0" PrivateAssets="all" OutputItemType="analyzer" />
<PackageReference Include="Chickensoft.Serialization" Version="2.0.0" />
<PackageReference Include="Chickensoft.Serialization.Godot" Version="0.6.1" />
<PackageReference Include="Chickensoft.LogicBlocks" Version="5.13.0" />
<PackageReference Include="Chickensoft.LogicBlocks.DiagramGenerator" Version="5.13.0" PrivateAssets="all" OutputItemType="analyzer" />
</ItemGroup>
</Project>