forked from SWY1985/CivOne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CivOne.csproj
29 lines (29 loc) · 1.06 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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AssemblyName>CivOne</AssemblyName>
<OutputPath>bin/</OutputPath>
<RootNamespace>CivOne</RootNamespace>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<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\*.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>