source: tags/1.2.0/AI Template/CevoDotNet/CevoDotNet.csproj

Last change on this file was 191, checked in by chronos, 4 years ago
  • Added: AI Template directory with manual for development of custom AI from original game.
File size: 3.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>9.0.30729</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{FE26EEF2-2B3D-49C9-B02B-C67116301E9D}</ProjectGuid>
9 <OutputType>WinExe</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>Loader</RootNamespace>
12 <AssemblyName>CevoDotNet</AssemblyName>
13 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
14 <FileAlignment>512</FileAlignment>
15 <PlatformTarget>x86</PlatformTarget>
16 <TargetFrameworkSubset>
17 </TargetFrameworkSubset>
18 <ApplicationIcon>cevoxp2.ico</ApplicationIcon>
19 </PropertyGroup>
20 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21 <DebugSymbols>true</DebugSymbols>
22 <DebugType>full</DebugType>
23 <Optimize>false</Optimize>
24 <OutputPath>..\..\</OutputPath>
25 <DefineConstants>DEBUG;TRACE</DefineConstants>
26 <ErrorReport>prompt</ErrorReport>
27 <WarningLevel>4</WarningLevel>
28 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
29 </PropertyGroup>
30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31 <DebugType>pdbonly</DebugType>
32 <Optimize>true</Optimize>
33 <OutputPath>..\..\</OutputPath>
34 <DefineConstants>TRACE</DefineConstants>
35 <ErrorReport>prompt</ErrorReport>
36 <WarningLevel>4</WarningLevel>
37 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
38 </PropertyGroup>
39 <ItemGroup>
40 <Reference Include="System" />
41 <Reference Include="System.Data" />
42 <Reference Include="System.Deployment" />
43 </ItemGroup>
44 <ItemGroup>
45 <Compile Include="AIPlugin.cs" />
46 <Compile Include="Program.cs" />
47 <Compile Include="Properties\AssemblyInfo.cs" />
48 <EmbeddedResource Include="Properties\Resources.resx">
49 <Generator>ResXFileCodeGenerator</Generator>
50 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
51 <SubType>Designer</SubType>
52 </EmbeddedResource>
53 <Compile Include="Properties\Resources.Designer.cs">
54 <AutoGen>True</AutoGen>
55 <DependentUpon>Resources.resx</DependentUpon>
56 </Compile>
57 <None Include="Properties\Settings.settings">
58 <Generator>SettingsSingleFileGenerator</Generator>
59 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
60 </None>
61 <Compile Include="Properties\Settings.Designer.cs">
62 <AutoGen>True</AutoGen>
63 <DependentUpon>Settings.settings</DependentUpon>
64 <DesignTimeSharedInput>True</DesignTimeSharedInput>
65 </Compile>
66 <Compile Include="Protocol.cs" />
67 </ItemGroup>
68 <ItemGroup>
69 <Content Include="cevoxp2.ico" />
70 </ItemGroup>
71 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
72 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
73 Other similar extension points exist, see Microsoft.Common.targets.
74 <Target Name="BeforeBuild">
75 </Target>
76 <Target Name="AfterBuild">
77 </Target>
78 -->
79</Project>
Note: See TracBrowser for help on using the repository browser.