ModelTest.csproj 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>..\..\Bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>..\..\Bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="MongoDB.Bson, Version=2.0.0.788, Culture=neutral, processorArchitecture=MSIL">
  34. <SpecificVersion>False</SpecificVersion>
  35. <HintPath>..\..\packages\MongoDB.Bson.2.0.0-rc0\lib\net45\MongoDB.Bson.dll</HintPath>
  36. </Reference>
  37. <Reference Include="MongoDB.Driver, Version=2.0.0.788, Culture=neutral, processorArchitecture=MSIL">
  38. <SpecificVersion>False</SpecificVersion>
  39. <HintPath>..\..\packages\MongoDB.Driver.2.0.0-rc0\lib\net45\MongoDB.Driver.dll</HintPath>
  40. </Reference>
  41. <Reference Include="MongoDB.Driver.Core">
  42. <HintPath>..\..\packages\MongoDB.Driver.Core.2.0.0-rc0\lib\net45\MongoDB.Driver.Core.dll</HintPath>
  43. </Reference>
  44. <Reference Include="nunit.framework">
  45. <HintPath>..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
  46. </Reference>
  47. <Reference Include="System" />
  48. <Reference Include="System.Core" />
  49. <Reference Include="System.Xml.Linq" />
  50. <Reference Include="System.Data.DataSetExtensions" />
  51. <Reference Include="Microsoft.CSharp" />
  52. <Reference Include="System.Data" />
  53. <Reference Include="System.Xml" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="MongoDBTest.cs" />
  57. <Compile Include="Properties\AssemblyInfo.cs" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <ProjectReference Include="..\..\Game\Model\Model.csproj">
  61. <Project>{0608C0C1-F584-4092-AAF9-1E99A78E3703}</Project>
  62. <Name>Model</Name>
  63. </ProjectReference>
  64. <ProjectReference Include="..\..\Platform\Common\Common.csproj">
  65. <Project>{F06B995E-6508-4C5C-A396-554316C9215D}</Project>
  66. <Name>Common</Name>
  67. </ProjectReference>
  68. </ItemGroup>
  69. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  70. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  71. Other similar extension points exist, see Microsoft.Common.targets.
  72. <Target Name="BeforeBuild">
  73. </Target>
  74. <Target Name="AfterBuild">
  75. </Target>
  76. -->
  77. </Project>