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 +)