-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLegendOfZelda.csproj
64 lines (64 loc) · 2.43 KB
/
LegendOfZelda.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
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RollForward>Major</RollForward>
<PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Code Review\**" />
<Compile Remove="LegendOfZelda\**" />
<EmbeddedResource Remove="Code Review\**" />
<EmbeddedResource Remove="LegendOfZelda\**" />
<None Remove="Code Review\**" />
<None Remove="LegendOfZelda\**" />
<None Remove="Utility\GameOverScreenDrawables\" />
<None Remove="Utility\ScreenManagers\" />
<None Remove="SpecialScreens\" />
<None Remove="SpecialScreens\GameOverScreenDrawables\" />
<None Remove="SpecialScreens\ScreenManagers\" />
<None Remove="SpecialScreens\WinningScreenDrawables\" />
<None Remove="Command\GameOverMenu\" />
<None Remove="Command\GameWinningMenu\" />
<None Remove="CheatCodeClasses\" />
<None Remove="Command\CheatCodes\" />
</ItemGroup>
<ItemGroup>
<None Remove="Icon.ico" />
<None Remove="Icon.bmp" />
<None Remove="Content\ZeldaSpriteRupy.gif" />
<None Remove="Content\Items\Heart.gif" />
<None Remove="ItemClasses\" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Icon.ico" />
<EmbeddedResource Include="Icon.bmp" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
</ItemGroup>
<ItemGroup>
<Folder Include="LegendOfZelda\obj\Release\" />
<Folder Include="ItemClasses\" />
<Folder Include="SpecialScreens\GameOverScreenDrawables\" />
<Folder Include="SpecialScreens\ScreenManagers\" />
<Folder Include="SpecialScreens\WinningScreenDrawables\" />
<Folder Include="Command\GameOverMenu\" />
<Folder Include="Command\GameWinningMenu\" />
</ItemGroup>
<ItemGroup>
<None Update="Level\Levels\leve.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
<Message Text="Restoring dotnet tools" Importance="High" />
<Exec Command="dotnet tool restore" />
</Target>
</Project>