ENetTest.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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. <ProjectGuid>{901A8E5C-C4C6-4C3C-8E18-068D75119F5D}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <AppDesignerFolder>Properties</AppDesignerFolder>
  9. <RootNamespace>ENetTest</RootNamespace>
  10. <AssemblyName>ENetTest</AssemblyName>
  11. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  15. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  16. <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
  17. <IsCodedUITest>False</IsCodedUITest>
  18. <TestProjectType>UnitTest</TestProjectType>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>..\..\Bin\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <PlatformTarget>x86</PlatformTarget>
  29. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="System" />
  41. <Reference Include="WindowsBase" />
  42. </ItemGroup>
  43. <Choose>
  44. <When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
  45. <ItemGroup>
  46. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
  47. </ItemGroup>
  48. </When>
  49. <Otherwise>
  50. <ItemGroup>
  51. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
  52. </ItemGroup>
  53. </Otherwise>
  54. </Choose>
  55. <ItemGroup>
  56. <Compile Include="ENetClientServerTest.cs" />
  57. <Compile Include="Properties\AssemblyInfo.cs" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <ProjectReference Include="..\..\Platform\Helper\Helper.csproj">
  61. <Project>{24233cd5-a5df-484b-a482-b79cb7a0d9cb}</Project>
  62. <Name>Helper</Name>
  63. </ProjectReference>
  64. <ProjectReference Include="..\..\Platform\Log\Log.csproj">
  65. <Project>{72e16572-fc1f-4a9e-bc96-035417239298}</Project>
  66. <Name>Log</Name>
  67. </ProjectReference>
  68. <ProjectReference Include="..\ENet\ENet.csproj">
  69. <Project>{d0b4cfac-a368-4742-9863-68776cfa9938}</Project>
  70. <Name>ENet</Name>
  71. </ProjectReference>
  72. </ItemGroup>
  73. <Choose>
  74. <When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
  75. <ItemGroup>
  76. <Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  77. <Private>False</Private>
  78. </Reference>
  79. <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  80. <Private>False</Private>
  81. </Reference>
  82. <Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  83. <Private>False</Private>
  84. </Reference>
  85. <Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  86. <Private>False</Private>
  87. </Reference>
  88. </ItemGroup>
  89. </When>
  90. </Choose>
  91. <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
  92. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  93. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  94. Other similar extension points exist, see Microsoft.Common.targets.
  95. <Target Name="BeforeBuild">
  96. </Target>
  97. <Target Name="AfterBuild">
  98. </Target>
  99. -->
  100. </Project>