MongoDB.Driver.csproj 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <LangVersion>7.3</LangVersion>
  4. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  5. <WarningsAsErrors />
  6. <CodeAnalysisRuleSet>../MongoDB.ruleset</CodeAnalysisRuleSet>
  7. <TargetFramework>netcoreapp3.1</TargetFramework>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AssemblyTitle>MongoDB.Driver</AssemblyTitle>
  11. <Product>MongoDB.Driver</Product>
  12. <Company>MongoDB Inc.</Company>
  13. <Copyright>Copyright © 2010-present MongoDB Inc.</Copyright>
  14. <Description>Official MongoDB supported driver for MongoDB. See http://www.mongodb.org/display/DOCS/CSharp+Language+Center for more details.</Description>
  15. <Authors>rstam;craiggwilson</Authors>
  16. <PackageIconUrl>http://jobs.mongodb.org/files/logos/889002/889002.png</PackageIconUrl>
  17. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  18. <PackageDescription>Official .NET driver for MongoDB.</PackageDescription>
  19. <PackageProjectUrl>http://www.mongodb.org/display/DOCS/CSharp+Language+Center</PackageProjectUrl>
  20. <PackageLicenseFile>License.txt</PackageLicenseFile>
  21. <PackageTags>mongodb;mongo;nosql</PackageTags>
  22. <PackageLanguage>en-US</PackageLanguage>
  23. <IncludeSymbols>true</IncludeSymbols>
  24. </PropertyGroup>
  25. <PropertyGroup Condition="'$(Version)'==''">
  26. <Version>0.0.0-local</Version>
  27. </PropertyGroup>
  28. <PropertyGroup>
  29. <DefineConstants>TRACE</DefineConstants>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="'$(TargetFramework)'=='netstandard1.5'">
  32. <NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
  33. </PropertyGroup>
  34. <PropertyGroup>
  35. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  38. <OutputPath>..\..\..\..\Bin\</OutputPath>
  39. </PropertyGroup>
  40. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  41. <OutputPath>..\..\..\..\Bin\</OutputPath>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.6.1" PrivateAssets="All" />
  45. </ItemGroup>
  46. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.5'">
  47. <PackageReference Include="System.ComponentModel.TypeConverter" Version="4.1.0" />
  48. <PackageReference Include="System.Linq.Queryable" Version="4.0.1" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\MongoDB.Bson\MongoDB.Bson.csproj" />
  52. <ProjectReference Include="..\MongoDB.Driver.Core\MongoDB.Driver.Core.csproj" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="..\MongoDB.Shared\ApplicationNameHelper.cs" Link="ApplicationNameHelper.cs" />
  56. <Compile Include="..\MongoDB.Shared\Hasher.cs" Link="Support\Hasher.cs" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <None Include="..\..\License.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
  60. </ItemGroup>
  61. </Project>