PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/MongoDB.Driver.Tests/MongoDB.Driver.Tests.csproj

http://github.com/mongodb/mongo-csharp-driver
MSBuild | 89 lines | 76 code | 13 blank | 0 comment | 0 complexity | f798111345b8135adc3cea77177f1e05 MD5 | raw file
Possible License(s): Apache-2.0
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netcoreapp1.1;netcoreapp2.1;net452</TargetFrameworks>
  4. <LangVersion>7.3</LangVersion>
  5. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  6. <WarningsAsErrors />
  7. <IsPackable>false</IsPackable>
  8. <CodeAnalysisRuleSet>..\..\MongoDBTest.ruleset</CodeAnalysisRuleSet>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. <AssemblyTitle>MongoDB.Driver.Tests</AssemblyTitle>
  12. <Product>MongoDB.Driver.Tests</Product>
  13. <Company>MongoDB Inc.</Company>
  14. <Copyright>Copyright © 2010-present MongoDB Inc.</Copyright>
  15. <Description>MongoDB.Driver tests.</Description>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Version)'==''">
  18. <Version>0.0.0-local</Version>
  19. </PropertyGroup>
  20. <PropertyGroup>
  21. <DefineConstants>TRACE</DefineConstants>
  22. </PropertyGroup>
  23. <PropertyGroup>
  24. <NoWarn>
  25. 1701;1702; <!--https://github.com/dotnet/roslyn/issues/19640-->
  26. xUnit1013; <!--Public method should be marked as test (https://xunit.github.io/xunit.analyzers/rules/xUnit1013.html)-->
  27. xUnit1024; <!--Test methods cannot have overloads (https://xunit.github.io/xunit.analyzers/rules/xUnit1024.html)-->
  28. xUnit1025; <!--InlineData should be unique within the Theory it belongs to (https://xunit.github.io/xunit.analyzers/rules/xUnit1025.html)-->
  29. xUnit1026; <!--Theory methods should use all of their parameters (https://xunit.github.io/xunit.analyzers/rules/xUnit1026.html)-->
  30. xUnit2003; <!--Do not use equality check to test for null value (https://xunit.github.io/xunit.analyzers/rules/xUnit2003.html-->
  31. xUnit2004; <!--Do not use equality check to test for boolean conditions (https://xunit.github.io/xunit.analyzers/rules/xUnit2004.html)-->
  32. xUnit2013 <!--Do not use equality check to check for collection size. (https://xunit.github.io/xunit.analyzers/rules/xUnit2013.html)-->
  33. </NoWarn>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <PackageReference Include="FluentAssertions" Version="4.12.0" />
  37. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.6.2" />
  38. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
  39. <PackageReference Include="Moq" Version="4.9.0" />
  40. <PackageReference Include="xunit" Version="2.4.0" />
  41. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <ProjectReference Include="..\..\src\MongoDB.Bson\MongoDB.Bson.csproj" />
  45. <ProjectReference Include="..\..\src\MongoDB.Driver.GridFS\MongoDB.Driver.GridFS.csproj" />
  46. <ProjectReference Include="..\..\src\MongoDB.Driver\MongoDB.Driver.csproj" />
  47. <ProjectReference Include="..\..\src\MongoDB.Driver.Core\MongoDB.Driver.Core.csproj" />
  48. <ProjectReference Include="..\MongoDB.Bson.TestHelpers\MongoDB.Bson.TestHelpers.csproj" />
  49. <ProjectReference Include="..\MongoDB.Driver.TestHelpers\MongoDB.Driver.TestHelpers.csproj" />
  50. <ProjectReference Include="..\MongoDB.Driver.Core.TestHelpers\MongoDB.Driver.Core.TestHelpers.csproj" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <None Remove="Specifications\**\tests\**\*.json" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <EmbeddedResource Include="Specifications\**\tests\**\*.json" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <None Remove="Specifications\**\prose-tests\**\*.json" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <EmbeddedResource Include="Specifications\**\prose-tests\**\*.json" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <None Update="testcert.pfx">
  66. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  67. </None>
  68. <None Update="xunit.runner.json">
  69. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  70. </None>
  71. </ItemGroup>
  72. <ItemGroup>
  73. <Folder Include="Specifications\transactions-convenient-api\tests\" />
  74. </ItemGroup>
  75. </Project>