From c020172469de0137e355faa47a726e6c6b6b1839 Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Sun, 16 Jul 2017 22:47:06 +0200 Subject: [PATCH] Added publish script for nuget --- SpotifyAPI/SpotifyAPI.nuspec | 25 +++++++++++++++++++++++++ SpotifyAPI/publish.cmd | 11 +++++++++++ 2 files changed, 36 insertions(+) create mode 100644 SpotifyAPI/SpotifyAPI.nuspec create mode 100644 SpotifyAPI/publish.cmd diff --git a/SpotifyAPI/SpotifyAPI.nuspec b/SpotifyAPI/SpotifyAPI.nuspec new file mode 100644 index 00000000..eec9370e --- /dev/null +++ b/SpotifyAPI/SpotifyAPI.nuspec @@ -0,0 +1,25 @@ + + + + SpotifyAPI-NET + 1.0.0 + SpotifyAPI-NET + JohnnyCrazy + JohnnyCrazy + https://github.com/JohnnyCrazy/SpotifyAPI-NET/blob/master/LICENSE + https://github.com/JohnnyCrazy/SpotifyAPI-NET/ + false + An API for the Spotify-Client and Spotify's Web API, written in .NET + +For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET + + spotify api music .net c# spotify-client + + + + + + + + + diff --git a/SpotifyAPI/publish.cmd b/SpotifyAPI/publish.cmd new file mode 100644 index 00000000..3196ffff --- /dev/null +++ b/SpotifyAPI/publish.cmd @@ -0,0 +1,11 @@ +if "%APPVEYOR_REPO_TAG %" == "true" ( +echo Publishing... + +cd ./SpotifyAPI + +nuget pack -Version %APPVEYOR_REPO_TAG_NAME% + +cd ../ +) else ( + echo Skipping Publishing +)