CommonServer.csproj 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{71CC36A4-6899-4BB8-8968-682DBA861D98}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CommonServer</RootNamespace>
  12. <AssemblyName>CommonServer</AssemblyName>
  13. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\..\Library\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <DocumentationFile>
  26. </DocumentationFile>
  27. <Prefer32Bit>false</Prefer32Bit>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>..\..\Library\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <Prefer32Bit>false</Prefer32Bit>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug_JSGProfile|AnyCPU'">
  39. <DebugSymbols>true</DebugSymbols>
  40. <OutputPath>bin\Debug_JSGProfile\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. <DebugType>full</DebugType>
  43. <PlatformTarget>AnyCPU</PlatformTarget>
  44. <ErrorReport>prompt</ErrorReport>
  45. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  46. </PropertyGroup>
  47. <ItemGroup>
  48. <Reference Include="CommonNetwork, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>..\..\Library\Debug\CommonNetwork.dll</HintPath>
  51. </Reference>
  52. <Reference Include="System" />
  53. <Reference Include="System.configuration" />
  54. <Reference Include="System.Configuration.Install" />
  55. <Reference Include="System.Data" />
  56. <Reference Include="System.Xml" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="Command\CommandList.cs" />
  60. <Compile Include="Properties\AssemblyInfo.cs" />
  61. <Compile Include="Server\Server.cs" />
  62. <Compile Include="Server\Session.cs" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <ProjectReference Include="..\CommonLang\CommonLang.csproj">
  66. <Project>{1835e71d-0b6c-463d-b538-e68891e4dacb}</Project>
  67. <Name>CommonLang</Name>
  68. </ProjectReference>
  69. </ItemGroup>
  70. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  71. <PropertyGroup>
  72. <PostBuildEvent>
  73. </PostBuildEvent>
  74. </PropertyGroup>
  75. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  76. Other similar extension points exist, see Microsoft.Common.targets.
  77. <Target Name="BeforeBuild">
  78. </Target>
  79. <Target Name="AfterBuild">
  80. </Target>
  81. -->
  82. </Project>