UNetTest.csproj 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{47A7404D-F501-43C5-8183-4B4E9E8C24B2}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>UNetTest</RootNamespace>
  11. <AssemblyName>UNetTest</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>..\..\Bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <PlatformTarget>AnyCPU</PlatformTarget>
  25. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>..\..\Bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Core" />
  38. <Reference Include="nunit.framework">
  39. <HintPath>..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
  40. </Reference>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="Properties\AssemblyInfo.cs" />
  44. <Compile Include="UServiceTest.cs" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  48. <Project>{F06B995E-6508-4C5C-A396-554316C9215D}</Project>
  49. <Name>Common</Name>
  50. </ProjectReference>
  51. <ProjectReference Include="..\..\Platform\UNet\UNet.csproj">
  52. <Project>{D3CEA64F-4D75-4DC9-B139-8D12EB4ACF8E}</Project>
  53. <Name>UNet</Name>
  54. </ProjectReference>
  55. </ItemGroup>
  56. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  57. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  58. Other similar extension points exist, see Microsoft.Common.targets.
  59. <Target Name="BeforeBuild">
  60. </Target>
  61. <Target Name="AfterBuild">
  62. </Target>
  63. -->
  64. </Project>