-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyGameUnx.csproj
executable file
·67 lines (67 loc) · 2.64 KB
/
MyGameUnx.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug-Unix</Configuration>
<ProjectGuid>{A9DCAC72-BC77-4C33-BE70-BBFD31D7C798}</ProjectGuid>
<RootNamespace>MyGame</RootNamespace>
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
<AssemblyName>MyGame</AssemblyName>
<SuppressXamMacUpsell>True</SuppressXamMacUpsell>
<SuppressXamMacMigration>True</SuppressXamMacMigration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<OutputType>Exe</OutputType>
<ApplicationIcon>Resources\SwinGame.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug-Unix|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<EnableCodeSigning>false</EnableCodeSigning>
<CreatePackage>false</CreatePackage>
<EnablePackageSigning>false</EnablePackageSigning>
<IncludeMonoRuntime>false</IncludeMonoRuntime>
<UseSGen>false</UseSGen>
<UseRefCounting>false</UseRefCounting>
<Profiling>false</Profiling>
<OutputType>WinExe</OutputType>
<CustomCommands>
<CustomCommands>
<Command type="BeforeBuild" command="lib/makelib.sh" workingdir="${ProjectDir}/lib" />
<Command type="AfterClean" command="lib/cleanlib.sh" workingdir="${ProjectDir}/lib" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PrepareForRunDependsOn>$(PrepareForRunDependsOn);CopyLibsToOut</PrepareForRunDependsOn>
</PropertyGroup>
<ItemGroup>
<Folder Include="src\" />
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<Compile Include="src\GameMain.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="SwinGame">
<HintPath>lib\SwinGame.dll</HintPath>
</Reference>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\**\*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<UnxLibs Include="lib\linux\*.so" />
</ItemGroup>
<Target Name="CopyLibsToOut">
<Copy SourceFiles="@(UnxLibs)" DestinationFolder="$(OutDir)" />
</Target>
</Project>