MongoDB.Driver.GridFS.csproj 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.GridFS</AssemblyTitle>
  11. <Product>MongoDB.Driver.GridFS</Product>
  12. <Company>MongoDB Inc.</Company>
  13. <Copyright>Copyright © 2010-present MongoDB Inc.</Copyright>
  14. <Description>Official MongoDB supported driver for MongoDB GridFS implementation. 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>GridFS Component of the Official MongoDB .NET Driver.</PackageDescription>
  19. <PackageProjectUrl>http://www.mongodb.org/display/DOCS/CSharp+Language+Center</PackageProjectUrl>
  20. <PackageLicenseFile>License.txt</PackageLicenseFile>
  21. <PackageTags>mongodb;mongo;nosql;gridfs</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>
  47. <ProjectReference Include="..\MongoDB.Bson\MongoDB.Bson.csproj" />
  48. <ProjectReference Include="..\MongoDB.Driver\MongoDB.Driver.csproj" />
  49. <ProjectReference Include="..\MongoDB.Driver.Core\MongoDB.Driver.Core.csproj" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="..\MongoDB.Shared\IncrementalMD5.cs" Link="IncrementalMD5.cs" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <None Include="..\..\License.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
  56. </ItemGroup>
  57. </Project>