| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <LangVersion>7.3</LangVersion>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <WarningsAsErrors />
- <CodeAnalysisRuleSet>../MongoDBLegacy.ruleset</CodeAnalysisRuleSet>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- </PropertyGroup>
- <PropertyGroup>
- <AssemblyTitle>MongoDB.Bson</AssemblyTitle>
- <Product>MongoDB.Bson</Product>
- <Company>MongoDB Inc.</Company>
- <Copyright>Copyright © 2010-present MongoDB Inc.</Copyright>
- <Description>Official MongoDB supported BSON library. See http://www.mongodb.org/display/DOCS/CSharp+Language+Center for more details.</Description>
- <Authors>rstam;craiggwilson</Authors>
- <PackageIconUrl>http://jobs.mongodb.org/files/logos/889002/889002.png</PackageIconUrl>
- <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
- <PackageDescription>MongoDB's Official Bson Library.</PackageDescription>
- <PackageProjectUrl>http://www.mongodb.org/display/DOCS/CSharp+Language+Center</PackageProjectUrl>
- <PackageLicenseFile>License.txt</PackageLicenseFile>
- <PackageTags>mongodb;mongo;nosql;bson</PackageTags>
- <PackageLanguage>en-US</PackageLanguage>
- <IncludeSymbols>true</IncludeSymbols>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Version)'==''">
- <Version>0.0.0-local</Version>
- </PropertyGroup>
- <PropertyGroup>
- <DefineConstants>TRACE</DefineConstants>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(TargetFramework)'=='netstandard1.5'">
- <NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
- </PropertyGroup>
- <PropertyGroup>
- <GenerateDocumentationFile>true</GenerateDocumentationFile>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>..\..\..\..\Bin\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <OutputPath>..\..\..\..\Bin\</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.6.1" PrivateAssets="All" />
- </ItemGroup>
- <ItemGroup Condition="'$(TargetFramework)'=='netstandard1.5'">
- <PackageReference Include="System.Collections.NonGeneric" Version="4.0.1" />
- <PackageReference Include="System.Diagnostics.Process" Version="4.1.0" />
- <PackageReference Include="System.Dynamic.Runtime" Version="4.0.11" />
- <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="..\MongoDB.Shared\Hasher.cs" Link="Hasher.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="..\..\License.txt" Pack="true" PackagePath="$(PackageLicenseFile)" />
- </ItemGroup>
- </Project>
|