-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNarivia.csproj
More file actions
42 lines (38 loc) · 1.55 KB
/
Narivia.csproj
File metadata and controls
42 lines (38 loc) · 1.55 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>Narivia</RootNamespace>
</PropertyGroup>
<ItemGroup>
<MonoGameContentReference Include="**\*.mgcb" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.4" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.4" />
<PackageReference Include="NuciExtensions" Version="4.0.0" />
<PackageReference Include="NuciXNA.DataAccess" Version="2.0.0" />
<PackageReference Include="NuciXNA.Graphics" Version="2.1.0" />
<PackageReference Include="NuciXNA.Gui" Version="3.0.0" />
<PackageReference Include="NuciXNA.Input" Version="2.0.0" />
<PackageReference Include="NuciXNA.Primitives" Version="2.1.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Remove="Content\obj\DesktopGL\Content\.mgcontent" />
</ItemGroup>
<ItemGroup>
<None Update="Worlds\narivia\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Worlds\tamriel4e201\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Content\Fonts\BLKCHCRY.TTF">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="CommonAssets\WordLists\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>