-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathConsoleTests.csproj
46 lines (46 loc) · 1.81 KB
/
ConsoleTests.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
<?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>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{C217F353-1145-4062-9D76-B0FC90854883}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>ConsoleTests</RootNamespace>
<AssemblyName>ConsoleTests</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Program.cs" />
<Compile Include="BetShop.cs" />
<Compile Include="Queue.cs" />
<Compile Include="SequentialTests.cs" />
<Compile Include="ShieldedActor.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Shielded\Shielded.csproj">
<Project>{3bde77c0-1538-4296-9012-f8814590d3da}</Project>
<Name>Shielded</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>