forked from IrishBruse/LDtkMonogame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLDtk.Example.csproj
28 lines (23 loc) · 1.01 KB
/
LDtk.Example.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="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<NoWarn>CA1051</NoWarn>
<RootNamespace>LDtkMonogameExample</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LDtk\LDtk.csproj" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
</ItemGroup>
<!-- <ItemGroup>
<Content Include="Content/Characters.png" CopyToOutputDirectory="Always"/>
<Content Include="Content/Tilemap.png" CopyToOutputDirectory="Always"/>
<Content Include="Content/World.ldtk" CopyToOutputDirectory="Always"/>
</ItemGroup> -->
<ItemGroup>
<MonoGameContentReference Include="Content\Content.mgcb" />
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
</ItemGroup>
</Project>