-
Notifications
You must be signed in to change notification settings - Fork 2
/
MindGame.csproj
30 lines (30 loc) · 1.09 KB
/
MindGame.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
<Project Sdk="Godot.NET.Sdk/4.3.0-beta.2">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>MindGame</RootNamespace>
<Title>MindGame</Title>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LLamaSharp" Version="0.13.0" />
<PackageReference Include="LLamaSharp.Backend.Cpu" Version="0.13.0" />
<PackageReference Include="LLamaSharp.Backend.Cuda12" Version="0.13.0" />
</ItemGroup>
<ItemGroup>
<TrimmerRootAssembly Include="GodotSharp" />
<TrimmerRootAssembly Include="$(TargetName)" />
</ItemGroup>
<ItemGroup>
<Folder Include="addons\mind_game\scripts\model_classes\senses\" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Godot.SourceGenerators" Version="4.3.0-beta.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="GodotSharp" Version="4.3.0-beta.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="GodotSharpEditor" Version="4.3.0-beta.2" />
</ItemGroup>
</Project>