forked from jmderuty/stormancer-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStormancer.Matchmaking.csproj
More file actions
106 lines (106 loc) · 4.98 KB
/
Stormancer.Matchmaking.csproj
File metadata and controls
106 lines (106 loc) · 4.98 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A9A54382-AE60-4FF5-8528-F39C818DA72F}</ProjectGuid>
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>Stormancer.MatchmakingTest</AssemblyName>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Stormancer</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Owin">
<HintPath>packages\Microsoft.Owin.3.0.1\lib\net45\Microsoft.Owin.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Owin">
<HintPath>packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
</Reference>
<Reference Include="Stormancer.Core, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\Stormancer.Core.1.1.0.0\lib\net45\Stormancer.Core.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Stormancer.Management.Client, Version=1.2.1.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>packages\Stormancer.Management.Client.1.2.1.0\lib\net45\Stormancer.Management.Client.dll</HintPath>
</Reference>
<Reference Include="Stormancer.Server, Version=1.3.7.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\Stormancer.Server.1.3.7.0\lib\net45\Stormancer.Server.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Reactive.Core">
<HintPath>packages\Rx-Core.2.2.5\lib\net45\System.Reactive.Core.dll</HintPath>
</Reference>
<Reference Include="System.Reactive.Interfaces">
<HintPath>packages\Rx-Interfaces.2.2.5\lib\net45\System.Reactive.Interfaces.dll</HintPath>
</Reference>
<Reference Include="System.Reactive.Linq">
<HintPath>packages\Rx-Linq.2.2.5\lib\net45\System.Reactive.Linq.dll</HintPath>
</Reference>
<Reference Include="System.Reactive.PlatformServices">
<HintPath>packages\Rx-PlatformServices.2.2.5\lib\net45\System.Reactive.PlatformServices.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="App.cs" />
<Compile Include="Configuration\ConfigurationManagerPlugin.cs" />
<Compile Include="Configuration\ConfigurationService.cs" />
<Compile Include="Configuration\IConfigurationRefresh.cs" />
<Compile Include="Matchmaking\Default\DefaultMatchmaker.cs" />
<Compile Include="Matchmaking\Default\DefaultMatchmakingDataExtractor.cs" />
<Compile Include="Matchmaking\Default\DefaultMatchmakingResolver.cs" />
<Compile Include="Matchmaking\Interfaces\IMatchmaker.cs" />
<Compile Include="Matchmaking\Interfaces\IMatchmakingDataExtractor.cs" />
<Compile Include="Matchmaking\IMatchmakingFactory.cs" />
<Compile Include="Matchmaking\Interfaces\IMatchmakingResolver.cs" />
<Compile Include="Matchmaking\IMatchmakingContext.cs" />
<Compile Include="Matchmaking\IMatchmakingService.cs" />
<Compile Include="Matchmaking\MatchmakingFactory.cs" />
<Compile Include="Matchmaking\MatchmakingPlugin.cs" />
<Compile Include="Matchmaking\MatchmakingService.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
<None Include="_app.json" />
</ItemGroup>
<ItemGroup>
<Folder Include="Assets\" />
<Folder Include="Dependencies\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />
</ProjectExtensions>
</Project>