ModelTest.csproj 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>{DEF89A61-8AC7-4CCD-80B8-FC6AA2571E35}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ModelTest</RootNamespace>
  11. <AssemblyName>ModelTest</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. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\..\Bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="MongoDB.Bson, Version=2.0.1.27, Culture=neutral, processorArchitecture=MSIL">
  35. <HintPath>..\..\packages\MongoDB.Bson.2.0.1\lib\net45\MongoDB.Bson.dll</HintPath>
  36. <Private>True</Private>
  37. </Reference>
  38. <Reference Include="MongoDB.Driver, Version=2.0.1.27, Culture=neutral, processorArchitecture=MSIL">
  39. <HintPath>..\..\packages\MongoDB.Driver.2.0.1\lib\net45\MongoDB.Driver.dll</HintPath>
  40. <Private>True</Private>
  41. </Reference>
  42. <Reference Include="MongoDB.Driver.Core, Version=2.0.1.27, Culture=neutral, processorArchitecture=MSIL">
  43. <HintPath>..\..\packages\MongoDB.Driver.Core.2.0.1\lib\net45\MongoDB.Driver.Core.dll</HintPath>
  44. <Private>True</Private>
  45. </Reference>
  46. <Reference Include="nunit.framework">
  47. <HintPath>..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
  48. </Reference>
  49. <Reference Include="System" />
  50. <Reference Include="System.Core" />
  51. <Reference Include="System.Xml.Linq" />
  52. <Reference Include="System.Data.DataSetExtensions" />
  53. <Reference Include="Microsoft.CSharp" />
  54. <Reference Include="System.Data" />
  55. <Reference Include="System.Xml" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="MongoDBTest.cs" />
  59. <Compile Include="Properties\AssemblyInfo.cs" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <ProjectReference Include="..\..\Game\Model\Model.csproj">
  63. <Project>{0608C0C1-F584-4092-AAF9-1E99A78E3703}</Project>
  64. <Name>Model</Name>
  65. </ProjectReference>
  66. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  67. <Project>{F06B995E-6508-4C5C-A396-554316C9215D}</Project>
  68. <Name>Common</Name>
  69. </ProjectReference>
  70. </ItemGroup>
  71. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  72. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  73. Other similar extension points exist, see Microsoft.Common.targets.
  74. <Target Name="BeforeBuild">
  75. </Target>
  76. <Target Name="AfterBuild">
  77. </Target>
  78. -->
  79. </Project>