PageRenderTime 53ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 1ms

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

http://github.com/mongodb/mongo-csharp-driver
MSBuild | 68 lines | 57 code | 11 blank | 0 comment | 0 complexity | 2d586cd93c227d39cb8a06a26675f646 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.GridFS.Tests</AssemblyTitle>
  12. <Product>MongoDB.Driver.GridFS.Tests</Product>
  13. <Company>MongoDB Inc.</Company>
  14. <Copyright>Copyright © 2010-present MongoDB Inc.</Copyright>
  15. <Description>MongoDB.Driver.GridFS 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. xUnit1026 <!--Theory methods should use all of their parameters (https://xunit.github.io/xunit.analyzers/rules/xUnit1026.html)-->
  27. </NoWarn>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <PackageReference Include="FluentAssertions" Version="4.12.0" />
  31. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.6.2" />
  32. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
  33. <PackageReference Include="Moq" Version="4.9.0" />
  34. <PackageReference Include="xunit" Version="2.4.0" />
  35. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <ProjectReference Include="..\..\src\MongoDB.Bson\MongoDB.Bson.csproj" />
  39. <ProjectReference Include="..\..\src\MongoDB.Driver\MongoDB.Driver.csproj" />
  40. <ProjectReference Include="..\..\src\MongoDB.Driver.Core\MongoDB.Driver.Core.csproj" />
  41. <ProjectReference Include="..\..\src\MongoDB.Driver.GridFS\MongoDB.Driver.GridFS.csproj" />
  42. <ProjectReference Include="..\MongoDB.Bson.TestHelpers\MongoDB.Bson.TestHelpers.csproj" />
  43. <ProjectReference Include="..\MongoDB.Driver.TestHelpers\MongoDB.Driver.TestHelpers.csproj" />
  44. <ProjectReference Include="..\MongoDB.Driver.Core.TestHelpers\MongoDB.Driver.Core.TestHelpers.csproj" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <None Remove="Specifications\**\tests\**\*.json" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <EmbeddedResource Include="Specifications\**\tests\**\*.json" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <None Update="xunit.runner.json">
  54. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  55. </None>
  56. </ItemGroup>
  57. </Project>