UNet.csproj 3.7 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. <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>{D0B4CFAC-A368-4742-9863-68776CFA9938}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>UNet</RootNamespace>
  11. <AssemblyName>UNet</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. <TargetFrameworkProfile />
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\..\Bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>..\..\Bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="MongoDB.Bson, Version=1.10.0.52, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
  38. <SpecificVersion>False</SpecificVersion>
  39. <HintPath>..\..\packages\mongocsharpdriver.1.10.0-rc1\lib\net35\MongoDB.Bson.dll</HintPath>
  40. </Reference>
  41. <Reference Include="MongoDB.Driver, Version=1.10.0.52, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
  42. <SpecificVersion>False</SpecificVersion>
  43. <HintPath>..\..\packages\mongocsharpdriver.1.10.0-rc1\lib\net35\MongoDB.Driver.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System" />
  46. <Reference Include="System.Core" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Compile Include="UAddress.cs" />
  50. <Compile Include="UException.cs" />
  51. <Compile Include="UPoller.cs" />
  52. <Compile Include="Library.cs" />
  53. <Compile Include="NativeMethods.cs" />
  54. <Compile Include="NativeStructs.cs" />
  55. <Compile Include="UPacket.cs" />
  56. <Compile Include="USocket.cs" />
  57. <Compile Include="UChannel.cs" />
  58. <Compile Include="UService.cs" />
  59. <Compile Include="USocketManager.cs" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Folder Include="Properties\" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <ProjectReference Include="..\Common\Common.csproj">
  66. <Project>{19F8F043-1F99-4550-99DF-DEA5C7D77E55}</Project>
  67. <Name>Common</Name>
  68. </ProjectReference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <None Include="packages.config" />
  72. </ItemGroup>
  73. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  74. <Import Project="$(SolutionDir)\.nuget\nuget.targets" />
  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>