Server.Controller.csproj 2.8 KB
Newer Older
T
tanghai 已提交
1 2 3 4 5 6
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
    <ProjectGuid>{3878BD71-2F75-4EDF-882F-BC708154B1B0}</ProjectGuid>
T
tanghai 已提交
8 9 10 11 12 13 14 15 16 17 18
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Controller</RootNamespace>
    <AssemblyName>Controller</AssemblyName>
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
19
    <OutputPath>..\..\Bin\</OutputPath>
20
    <DefineConstants>TRACE;DEBUG;SERVER</DefineConstants>
T
tanghai 已提交
21 22 23 24 25 26
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
27
    <OutputPath>..\..\Bin\</OutputPath>
T
tanghai 已提交
28 29 30 31 32 33 34 35 36
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
  </ItemGroup>
  <ItemGroup>
37
    <Compile Include="Message\C2G_LoginGateHandler.cs" />
T
tanghai 已提交
38
    <Compile Include="Message\C2R_PingHandler.cs" />
39 40
    <Compile Include="Message\M2A_ReloadHandler.cs" />
    <Compile Include="Message\C2M_ReloadHandler.cs" />
41
    <Compile Include="Message\R2G_GetLoginKeyHandler.cs" />
T
tanghai 已提交
42
    <Compile Include="Properties\AssemblyInfo.cs" />
43
    <Compile Include="Message\C2R_LoginHandler.cs" />
T
tanghai 已提交
44
  </ItemGroup>
T
tanghai 已提交
45
  <ItemGroup>
46 47 48 49 50 51 52 53
    <ProjectReference Include="..\Base\Server.Base.csproj">
      <Project>{e5078ec6-2b0e-4711-be8b-d99f69638316}</Project>
      <Name>Server.Base</Name>
    </ProjectReference>
    <ProjectReference Include="..\Model\Server.Model.csproj">
      <Project>{820d3488-76b9-4ee8-872a-be06c2350b20}</Project>
      <Name>Server.Model</Name>
    </ProjectReference>
T
tanghai 已提交
54
  </ItemGroup>
T
tanghai 已提交
55 56 57 58 59 60 61 62 63
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>