Skip to content

Commit e1c0285

Browse files
author
Julien Loir
authored
Merge pull request #48 from LukeMarlin/fix-nuget-build
Remove .nuspec and fully rely on csproj to fix build
2 parents db30a07 + f20019d commit e1c0285

File tree

3 files changed

+9
-17
lines changed

3 files changed

+9
-17
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
script:
1010
- dotnet restore
1111
- dotnet test test
12-
- dotnet pack -c release csharp-ovh/csharp-ovh.csproj -p:NuspecFile=.nuspec
12+
- dotnet pack -c Release csharp-ovh/csharp-ovh.csproj
1313

1414
deploy:
1515
- provider: releases

csharp-ovh/.nuspec

-16
This file was deleted.

csharp-ovh/csharp-ovh.csproj

+8
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,19 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<AssemblyName>csharp-ovh</AssemblyName>
6+
<Title>OVH C# API Wrapper</Title>
7+
<PackageVersion>4.0.4</PackageVersion>
8+
<PackageDescription>A set of classes and helpers to make calls to OVH's APIs.</PackageDescription>
9+
<authors>Luke Marlin; Julien Loir</authors>
10+
<RepositoryUrl>https://github.com/ovh/csharp-ovh</RepositoryUrl>
11+
<RepositoryType>git</RepositoryType>
12+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
613
</PropertyGroup>
714

815
<ItemGroup>
916
<PackageReference Include="Microsoft.Extensions.Configuration.Ini" Version="2.1.1" />
1017
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
18+
<None Include="../LICENSE" Pack="true" Visible="false" PackagePath=""/>
1119
</ItemGroup>
1220

1321
<ItemGroup>

0 commit comments

Comments
 (0)