File tree Expand file tree Collapse file tree 5 files changed +45
-79
lines changed Expand file tree Collapse file tree 5 files changed +45
-79
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
-
3
2
<PropertyGroup >
4
3
<TargetFrameworks >netstandard2.0</TargetFrameworks >
4
+
5
+ <PackageId >SpotifyAPI.Web.Auth</PackageId >
6
+ <Title >SpotifyAPI.Web.Auth</Title >
7
+ <Authors >Jonas Dellinger</Authors >
8
+ <PackageLicenseUrl >https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/master/LICENSE</PackageLicenseUrl >
9
+ <PackageProjectUrl >https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl >
10
+ <PackageRequireLicenseAcceptance >False</PackageRequireLicenseAcceptance >
11
+ <Description >
12
+ Authorization Flows for the Spotify's Web API, written in .NET
13
+
14
+ For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
15
+ </Description >
16
+ <PackageTags >
17
+ spotify api music .net c# spotify-client
18
+ </PackageTags >
5
19
</PropertyGroup >
6
20
7
21
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
13
27
<DocumentationFile >bin\Release\netstandard2.0\SpotifyAPI.Web.Auth.xml</DocumentationFile >
14
28
<NoWarn >1701;1702;1705;1591</NoWarn >
15
29
</PropertyGroup >
16
-
17
- <ItemGroup >
18
- <PackageReference Include =" EmbedIO" Version =" 2.9.1" />
19
- </ItemGroup >
20
-
30
+
21
31
<ItemGroup >
22
- <ProjectReference Include =" ..\SpotifyAPI.Web\SpotifyAPI.Web.csproj" />
32
+ <PackageReference Include =" EmbedIO" Version =" 2.9.1" >
33
+ <PrivateAssets >None</PrivateAssets >
34
+ </PackageReference >
35
+ <ProjectReference Include =" ..\SpotifyAPI.Web\SpotifyAPI.Web.csproj" >
36
+ <SpecificVersion >False</SpecificVersion >
37
+ <PrivateAssets >None</PrivateAssets >
38
+ </ProjectReference >
23
39
</ItemGroup >
24
40
25
41
<ItemGroup >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net46;netstandard2.0</TargetFrameworks >
4
+ <TargetFrameworks >netstandard2.0</TargetFrameworks >
5
+ <PackageId >SpotifyAPI.Web</PackageId >
6
+ <Title >SpotifyAPI.Web</Title >
7
+ <Authors >Jonas Dellinger</Authors >
8
+ <PackageLicenseUrl >https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/master/LICENSE</PackageLicenseUrl >
9
+ <PackageProjectUrl >https://github.com/JohnnyCrazy/SpotifyAPI-NET/</PackageProjectUrl >
10
+ <PackageRequireLicenseAcceptance >False</PackageRequireLicenseAcceptance >
11
+ <Description >
12
+ An API for Spotify's Web API, written in .NET
13
+
14
+ For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
15
+ </Description >
16
+ <PackageTags >
17
+ spotify api music .net c# spotify-client
18
+ </PackageTags >
5
19
</PropertyGroup >
6
20
7
21
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
15
29
</PropertyGroup >
16
30
17
31
<ItemGroup >
18
- <PackageReference Include =" Newtonsoft.Json" Version =" 12.0.2" />
19
- </ItemGroup >
20
-
21
- <ItemGroup Condition =" '$(TargetFramework)' == 'net46' " >
22
- <Reference Include =" System.Net" />
23
- <Reference Include =" System.Net.Http" />
32
+ <PackageReference Include =" Newtonsoft.Json" Version =" 12.0.2" >
33
+ <PrivateAssets >None</PrivateAssets >
34
+ </PackageReference >
24
35
</ItemGroup >
25
-
26
36
</Project >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
if " %APPVEYOR_REPO_TAG% " == " true" (
2
2
3
3
echo Publishing...
4
-
5
4
cd ./SpotifyAPI.Web
6
- nuget pack ./ SpotifyAPI.Web.nuspec -Version %APPVEYOR_REPO_TAG_NAME%
7
- nuget push ./SpotifyAPI.Web.%APPVEYOR_REPO_TAG_NAME% .nupkg -ApiKey %NUGET_TOKEN% -NonInteractive -Source https://www.nuget.org/api/v2/package
5
+ dotnet pack -c Release SpotifyAPI.Web.csproj -p:PackageVersion= %APPVEYOR_REPO_TAG_NAME%
6
+ nuget push ./bin/Release/ SpotifyAPI.Web.%APPVEYOR_REPO_TAG_NAME% .nupkg -ApiKey %NUGET_TOKEN% -NonInteractive -Source https://www.nuget.org/api/v2/package
8
7
9
8
cd ../SpotifyAPI.Web.Auth
10
- nuget pack ./ SpotifyAPI.Web.Auth.nuspec -Version %APPVEYOR_REPO_TAG_NAME%
11
- nuget push ./SpotifyAPI.Web.Auth.%APPVEYOR_REPO_TAG_NAME% .nupkg -ApiKey %NUGET_TOKEN% -NonInteractive -Source https://www.nuget.org/api/v2/package
9
+ dotnet pack -c Release SpotifyAPI.Web.Auth.csproj -p:PackageVersion= %APPVEYOR_REPO_TAG_NAME%
10
+ nuget push ./bin/Release/ SpotifyAPI.Web.Auth.%APPVEYOR_REPO_TAG_NAME% .nupkg -ApiKey %NUGET_TOKEN% -NonInteractive -Source https://www.nuget.org/api/v2/package
12
11
13
12
cd ..
14
13
You can’t perform that action at this time.
0 commit comments