Skip to content

Commit

Permalink
Packed LICENSE and README.md within the nupkg (see: NuGet/Home#4628) …
Browse files Browse the repository at this point in the history
…(part 2)
  • Loading branch information
jaaufauvre committed Jan 15, 2019
1 parent 360d4e8 commit bd1e922
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
<Authors>Mastercard.Developer.OAuth1Signer.Core</Authors>
<Company>Mastercard Worldwide</Company>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<DocumentationFile>README.md</DocumentationFile>
<Documentation>README.md</Documentation>
<PackageProjectUrl>https:/Mastercard/oauth1-signer-csharp</PackageProjectUrl>
<PackageReleaseNotes>See: https:/Mastercard/oauth1-signer-csharp/releases</PackageReleaseNotes>
<RepositoryUrl>https:/Mastercard/oauth1-signer-csharp</RepositoryUrl>
<Description>Zero dependency library for generating a Mastercard API compliant OAuth signature</Description>
</PropertyGroup>

<ItemGroup>
<None Include="../LICENSE" Pack="true" PackagePath=""/>
<None Include="../README.md" Pack="true" PackagePath=""/>
<None Include="../LICENSE" Pack="true" PackagePath="LICENSE"/>
<None Include="../README.md" Pack="true" PackagePath="README.md"/>
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions Mastercard.Developer.OAuth1Signer.Core/OAuth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Security.Cryptography;
using System.Text;
using Mastercard.Developer.OAuth1Signer.Core.Utils;
#pragma warning disable 1591

namespace Mastercard.Developer.OAuth1Signer.Core
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Security.Cryptography;
using System.Text;
// ReSharper disable InconsistentNaming
#pragma warning disable 1591

namespace Mastercard.Developer.OAuth1Signer.Core.Signers
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Threading.Tasks;
using Mastercard.Developer.OAuth1Signer.RestSharp.Signers;
using RestSharp.Portable;
#pragma warning disable 1591

namespace Mastercard.Developer.OAuth1Signer.RestSharp.Authenticators
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
<Product>Mastercard.Developer.OAuth1Signer.RestSharp</Product>
<Company>Mastercard Worldwide</Company>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<DocumentationFile>README.md</DocumentationFile>
<Documentation>README.md</Documentation>
<PackageProjectUrl>https:/Mastercard/oauth1-signer-csharp</PackageProjectUrl>
<PackageReleaseNotes>See: https:/Mastercard/oauth1-signer-csharp/releases</PackageReleaseNotes>
<RepositoryUrl>https:/Mastercard/oauth1-signer-csharp</RepositoryUrl>
<Description>Zero dependency library for generating a Mastercard API compliant OAuth signature</Description>
</PropertyGroup>

<ItemGroup>
<None Include="../LICENSE" Pack="true" PackagePath=""/>
<None Include="../README.md" Pack="true" PackagePath=""/>
<None Include="../LICENSE" Pack="true" PackagePath="LICENSE"/>
<None Include="../README.md" Pack="true" PackagePath="README.md"/>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using Mastercard.Developer.OAuth1Signer.Core;
using Mastercard.Developer.OAuth1Signer.Core.Signers;
using RestSharp.Portable;
#pragma warning disable 1591

namespace Mastercard.Developer.OAuth1Signer.RestSharp.Signers
{
Expand Down

0 comments on commit bd1e922

Please sign in to comment.