mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
* reoves the old implemetnation of sourcelink and uses the newer one present in the .net SDK * cleans up appveyor * updates proj with sourcelink props * adds deterministic build check as well. * Update docs/debugging-source.md Co-authored-by: Keegan Campbell <me@kfcampbell.com> --------- Co-authored-by: Keegan Campbell <me@kfcampbell.com>
51 lines
2.3 KiB
XML
51 lines
2.3 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>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<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>
|
|
<DefineConstants>$(DefineConstants);SIMPLE_JSON_INTERNAL;SIMPLE_JSON_OBJARRAYINTERNAL;SIMPLE_JSON_READONLY_COLLECTIONS;SIMPLE_JSON_TYPEINFO</DefineConstants>
|
|
<NoWarn>$(NoWarn);1591;1701;1702;1705</NoWarn>
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="Source Link">
|
|
<!-- Optional: Declare that the Repository URL can be published to NuSpec -->
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<!-- Optional: Embed source files that are not tracked by the source control manager to the PDB -->
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<!-- Optional: Include PDB in the built .nupkg -->
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="images\octokit.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Label="InternalsVisibleTo attributes">
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
<_Parameter1>Octokit.Tests$(StrongNameSuffix)</_Parameter1>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
</Project>
|