MongoDB.Bson.csproj 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <LangVersion>7.3</LangVersion>
  4. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  5. <WarningsAsErrors />
  6. <CodeAnalysisRuleSet>../MongoDBLegacy.ruleset</CodeAnalysisRuleSet>
  7. <TargetFramework>netcoreapp3.1</TargetFramework>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AssemblyTitle>MongoDB.Bson</AssemblyTitle>
  11. <Product>MongoDB.Bson</Product>
  12. <Company>MongoDB Inc.</Company>
  13. <Copyright>Copyright © 2010-present MongoDB Inc.</Copyright>
  14. <Description>Official MongoDB supported BSON library. 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>MongoDB's Official Bson Library.</PackageDescription>
  19. <PackageProjectUrl>http://www.mongodb.org/display/DOCS/CSharp+Language+Center</PackageProjectUrl>
  20. <PackageLicenseFile>License.txt</PackageLicenseFile>
  21. <PackageTags>mongodb;mongo;nosql;bson</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.Collections.NonGeneric" Version="4.0.1" />
  48. <PackageReference Include="System.Diagnostics.Process" Version="4.1.0" />
  49. <PackageReference Include="System.Dynamic.Runtime" Version="4.0.11" />
  50. <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="..\MongoDB.Shared\Hasher.cs" Link="Hasher.cs" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <None Include="..\..\License.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
  57. </ItemGroup>
  58. </Project>