Server.Controller.csproj 2.5 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>
T
tanghai 已提交
19
    <OutputPath>..\Bin\Debug\</OutputPath>
T
tanghai 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Properties\AssemblyInfo.cs" />
T
tanghai 已提交
38
    <Compile Include="C2S_LoginEvent.cs" />
T
tanghai 已提交
39
  </ItemGroup>
T
tanghai 已提交
40
  <ItemGroup>
41 42 43 44 45 46 47 48
    <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 已提交
49
  </ItemGroup>
T
tanghai 已提交
50 51 52 53 54 55 56 57 58
  <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>