mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
* drop mentions of net45 from core * Bump System.Reactive from 3.1.0 to 4.3.2 Bumps [System.Reactive](https://github.com/dotnet/reactive) from 3.1.0 to 4.3.2. - [Release notes](https://github.com/dotnet/reactive/releases) - [Commits](https://github.com/dotnet/reactive/compare/v3.1.0...rxnet-v4.3.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * upgrade from net452 to net46 in test projects * drop netstandard1.1 support * correct this test reference * add necessary dependency for test project * add new dependency needed for integration tests * upload net462 code coverage * upgrade environment for validating linqpad examples * bump linqpad to latest 5.x release Co-authored-by: Brendan Forster <brendan@github.com>
51 lines
2.2 KiB
XML
51 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>An async-based GitHub API client library for .NET and .NET Core</Description>
|
|
<AssemblyTitle>Octokit</AssemblyTitle>
|
|
<Authors>GitHub</Authors>
|
|
<Version>0.0.0-dev</Version>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
|
|
<AssemblyName>Octokit</AssemblyName>
|
|
<PackageId>Octokit</PackageId>
|
|
<DebugType>embedded</DebugType>
|
|
<RepositoryUrl>https://github.com/octokit/octokit.net</RepositoryUrl>
|
|
<PackageProjectUrl>https://github.com/octokit/octokit.net</PackageProjectUrl>
|
|
<PackageIconUrl>https://f.cloud.github.com/assets/19977/1510987/64af2b26-4a9d-11e3-89fc-96a185171c75.png</PackageIconUrl>
|
|
<PackageIcon>octokit.png</PackageIcon>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageTags>GitHub API Octokit linqpad-samples dotnetcore</PackageTags>
|
|
<Copyright>Copyright GitHub 2017</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
|
|
<DefineConstants>$(DefineConstants);HAS_TYPEINFO;SIMPLE_JSON_INTERNAL;SIMPLE_JSON_OBJARRAYINTERNAL;SIMPLE_JSON_READONLY_COLLECTIONS;SIMPLE_JSON_TYPEINFO</DefineConstants>
|
|
<NetStandardImplicitPackageVersion>2.0.0</NetStandardImplicitPackageVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
|
<DefineConstants>$(DefineConstants);HAS_ENVIRONMENT;HAS_REGEX_COMPILED_OPTIONS;SIMPLE_JSON_INTERNAL;SIMPLE_JSON_OBJARRAYINTERNAL;SIMPLE_JSON_READONLY_COLLECTIONS;HAS_SERVICEPOINTMANAGER</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoWarn>1591;1701;1702;1705</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
|
<Reference Include="System.Net.Http" />
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="images\octokit.png" Pack="true" PackagePath="\"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|