PingPong/PingPong.GameEngine/PingPong.GameEngine.csproj

65 lines
2.5 KiB
XML

<?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</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9C0A0C83-B112-4959-BD94-D6A22AD5AC90}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>PingPong.GameEngine</RootNamespace>
<AssemblyName>PingPong.GameEngine</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="csmic">
<HintPath>..\packages\csmic.1.1.3\lib\csmic.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="GameDefinition.cs" />
<Compile Include="GameCondition.cs" />
<Compile Include="GameState.cs" />
<Compile Include="Engine.cs" />
<Compile Include="Components\Team.cs" />
<Compile Include="Components\Player.cs" />
<Compile Include="Components\Score.cs" />
<Compile Include="Components\IScorable.cs" />
<Compile Include="Components\TeamRotationType.cs" />
<Compile Include="Components\ScoringType.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Components\" />
</ItemGroup>
<ItemGroup>
<None Include="csmic_help.chm" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PingPong.Generic\PingPong.Generic.csproj">
<Project>{630BDE02-B1C2-4D9F-8BFB-4FCAF128BE14}</Project>
<Name>PingPong.Generic</Name>
</ProjectReference>
</ItemGroup>
</Project>