forked from SWY1985/CivOne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CivOne.csproj
61 lines (61 loc) · 2.35 KB
/
CivOne.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
<!-- CivOne
-
- To the extent possible under law, the person who associated CC0 with
- CivOne has waived all copyright and related or neighboring rights
- to CivOne.
-
- You should have received a copy of the CC0 legalcode along with this
- work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AssemblyName>CivOne</AssemblyName>
<ErrorReport>prompt</ErrorReport>
<FileAlignment>512</FileAlignment>
<OutputPath>bin/</OutputPath>
<RootNamespace>CivOne</RootNamespace>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Debug'))">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineConstants>DEBUG</DefineConstants>
<Optimize>false</Optimize>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Release'))">
<DebugType>none</DebugType>
<DefineConstants>RELEASE</DefineConstants>
<Optimize>true</Optimize>
<OutputType>WinExe</OutputType>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.EndsWith('Gtk'))">
<DefineConstants Condition="$(Configuration.StartsWith('Debug'))">DEBUG;GTK</DefineConstants>
<DefineConstants Condition="$(Configuration.StartsWith('Release'))">RELEASE;GTK</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup Condition="$(Configuration.EndsWith('Gtk'))">
<Reference Include="gtk-sharp" />
</ItemGroup>
<ItemGroup>
<Compile Include="src\Civilizations\*.cs" />
<Compile Include="src\Enums\*.cs" />
<Compile Include="src\GFX\*.cs" />
<Compile Include="src\Interfaces\*.cs" />
<Compile Include="src\IO\*.cs" />
<Compile Include="src\Screens\*.cs" />
<Compile Include="src\Templates\*.cs" />
<Compile Include="src\Tiles\*.cs" />
<Compile Include="src\*.cs" />
</ItemGroup>
<Target Name="Build">
<MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')" />
<Csc Sources="@(Compile)" OutputAssembly="$(OutputPath)$(AssemblyName).exe" />
</Target>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>