-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathProjectZ.csproj
71 lines (71 loc) · 3.42 KB
/
ProjectZ.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
65
66
67
68
69
70
71
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<PublishReadyToRun>false</PublishReadyToRun>
<TieredCompilation>false</TieredCompilation>
<UseWindowsForms>true</UseWindowsForms>
<MonoGamePlatform>Windows</MonoGamePlatform>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath></OutputPath>
<DefineConstants>TRACE;WINDOWS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Content\bin\**" />
<Compile Remove="Content\obj\**" />
<Compile Remove="Fix\**" />
<EmbeddedResource Remove="Content\bin\**" />
<EmbeddedResource Remove="Content\obj\**" />
<EmbeddedResource Remove="Fix\**" />
<None Remove="Content\bin\**" />
<None Remove="Content\obj\**" />
<None Remove="Fix\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove=".gitmodules" />
</ItemGroup>
<ItemGroup>
<TrimmerRootAssembly Include="Microsoft.Xna.Framework.Content.ContentTypeReader" Visible="false" />
</ItemGroup>
<ItemGroup>
<MonoGameContentReference Include="Content\Content.mgcb" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Framework.Content.Pipeline" Version="3.8.1.303" />
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
<PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.1.303" />
<PackageReference Include="System.Resources.Extensions" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Source\**" />
<Content Remove="Source\**" />
<EmbeddedResource Remove="Source\**" />
<None Remove="Source\**" />
</ItemGroup>
<PropertyGroup>
<StartupObject>ProjectZ.Program</StartupObject>
<AssemblyName>ProjectZ</AssemblyName>
<PublishSingleFile>true</PublishSingleFile>
<ApplicationIcon>Resources\Icon.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;WINDOWS</DefineConstants>
</PropertyGroup>
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
<Message Text="Restoring dotnet tools" Importance="High" />
<Exec Command="dotnet tool restore" />
</Target>
<Target Name="PreContentBuild" BeforeTargets="RunContentBuilder">
<Exec Command="echo D|xcopy /y /d /E "$(SolutionDir)Source\ProjectZ\Content\*.png" "$(SolutionDir)Content"" />
<Exec Command="echo D|xcopy /y /d /E "$(SolutionDir)Source\ProjectZ\Content\*.wav" "$(SolutionDir)Content"" />
<Exec Command="echo F|xcopy /y /d "$(SolutionDir)Source\ProjectZ\Resources\Icon.ico" "$(SolutionDir)Resources\Icon.ico"" />
<Exec Command="echo D|xcopy /y /E "$(SolutionDir)bin\Data\" "$(TargetDir)Data"" />
<Exec Command="echo D|xcopy /y /E "$(SolutionDir)Source\ProjectZ\bin\Data\*.png" "$(TargetDir)Data"" />
<Exec Command="echo D|xcopy /y /E "$(SolutionDir)Source\ProjectZ\bin\Data\*.gbs" "$(TargetDir)Data"" />
<Exec Command="echo F|xcopy /y /E "$(SolutionDir)Source\ProjectZ\bin\Data\Languages\dialog_eng.lng" "$(TargetDir)Data\Languages\dialog_eng.lng"" />
</Target>
</Project>