Skip to content

Commit

Permalink
Merge pull request #38 from eBay/dllFix
Browse files Browse the repository at this point in the history
Updated nuspec to include DLLs when creating nupkg
  • Loading branch information
LokeshRishi authored Sep 5, 2023
2 parents 87c2435 + 54af93b commit 06565ea
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ version of the .NET Standard.

# Add the eBay.OAuth.Client NuGet Package

**Current Version** : 2.0.1
**Current Version** : 2.0.2

Use of this source code is governed by [Apache-2.0
license](https://opensource.org/licenses/Apache-2.0).If you’re looking
for the latest stable version (2.0.1), you can grab it directly from
for the latest stable version (2.0.2), you can grab it directly from
NuGet.org.

``` xml
Expand All @@ -54,15 +54,15 @@ https://www.nuget.org/packages/eBay.OAuth.Client
**eBay.OAuth.Client** package:

``` xml
Install-Package eBay.OAuth.Client -Version 2.0.1
Install-Package eBay.OAuth.Client -Version 2.0.2
```

- After the command completes, open the **.csproj** file to see the
added reference:

``` xml
<ItemGroup>
<PackageReference Include="eBay.OAuth.Client" Version="2.0.1" />
<PackageReference Include="eBay.OAuth.Client" Version="2.0.2" />
</ItemGroup>
```

Expand All @@ -72,15 +72,15 @@ Install-Package eBay.OAuth.Client -Version 2.0.1
**eBay.OAuth.Client** package:

``` xml
dotnet add package eBay.OAuth.Client --version 2.0.1
dotnet add package eBay.OAuth.Client --version 2.0.2
```

- After the command completes, open the **.csproj** file to see the
added reference:

``` xml
<ItemGroup>
<PackageReference Include="eBay.OAuth.Client" Version="2.0.1" />
<PackageReference Include="eBay.OAuth.Client" Version="2.0.2" />
</ItemGroup>
```

Expand All @@ -90,15 +90,15 @@ dotnet add package eBay.OAuth.Client --version 2.0.1
**eBay.OAuth.Client** package:

``` xml
paket add eBay.OAuth.Client --version 2.0.1
paket add eBay.OAuth.Client --version 2.0.2
```

- After the command completes, open the **.csproj** file to see the
added reference:

``` xml
<ItemGroup>
<PackageReference Include="eBay.OAuth.Client" Version="2.0.1" />
<PackageReference Include="eBay.OAuth.Client" Version="2.0.2" />
</ItemGroup>
```

Expand Down
5 changes: 3 additions & 2 deletions ebay-oauth-csharp-client/ebay-oauth-csharp-client.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<package >
<metadata>
<id>eBay.OAuth.Client</id>
<version>2.0.1</version>
<version>2.0.2</version>
<title>eBay OAuth C# Client</title>
<owners>eBay Inc.</owners>
<authors>Sandeep Dhiman</authors>
<authors>Sandeep Dhiman, Lokesh Rishi</authors>
<licenseUrl>https://github.com/ebay/ebay-oauth-csharp-client/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/ebay/ebay-oauth-csharp-client/</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
Expand All @@ -27,5 +27,6 @@
</metadata>
<files>
<file src="..\README.md" target="" />
<file src="bin\Release\net6.0\*.dll" target="lib\net6.0" />
</files>
</package>

0 comments on commit 06565ea

Please sign in to comment.