diff --git a/README.md b/README.md index 586ddc3..de41f2b 100644 --- a/README.md +++ b/README.md @@ -109,13 +109,6 @@ See tests and `SpotifyApi.NetCore.Samples` for more usage examples. > There is a working demo using the sample project here: -## In this repo - -| Path | Remarks | -| ---- | ------- | -| `src/SpotifyApi.NetCore` | SpotifyApi.NetCore project | -| `src/SpotifyApi.NetCore.Tests` | Tests | - ## Spotify Web API Coverage | Spotify API | Endpoints | Implemented | % | | diff --git a/src/SpotifyApi.NetCore.Authorization/AssemblyInfo.cs b/src/SpotifyApi.NetCore.Authorization/AssemblyInfo.cs deleted file mode 100644 index 803755c..0000000 --- a/src/SpotifyApi.NetCore.Authorization/AssemblyInfo.cs +++ /dev/null @@ -1,2 +0,0 @@ -using System.Runtime.CompilerServices; -[assembly:InternalsVisibleTo("SpotifyApi.NetCore.Tests")] \ No newline at end of file diff --git a/src/SpotifyApi.NetCore.Authorization/SpotifyApi.NetCore.Authorization.csproj b/src/SpotifyApi.NetCore.Authorization/SpotifyApi.NetCore.Authorization.csproj deleted file mode 100644 index e18917b..0000000 --- a/src/SpotifyApi.NetCore.Authorization/SpotifyApi.NetCore.Authorization.csproj +++ /dev/null @@ -1,18 +0,0 @@ - - - - netstandard2.0 - - - - - - - - - - - - - - diff --git a/src/SpotifyApi.NetCore.Core/SpotifyApi.NetCore.Core.csproj b/src/SpotifyApi.NetCore.Core/SpotifyApi.NetCore.Core.csproj deleted file mode 100644 index df269c6..0000000 --- a/src/SpotifyApi.NetCore.Core/SpotifyApi.NetCore.Core.csproj +++ /dev/null @@ -1,13 +0,0 @@ - - - - netstandard2.0 - - - - - - - - - diff --git a/src/SpotifyApi.NetCore.Tests/SpotifyApi.NetCore.Tests.csproj b/src/SpotifyApi.NetCore.Tests/SpotifyApi.NetCore.Tests.csproj index 7ca54a2..a789f19 100644 --- a/src/SpotifyApi.NetCore.Tests/SpotifyApi.NetCore.Tests.csproj +++ b/src/SpotifyApi.NetCore.Tests/SpotifyApi.NetCore.Tests.csproj @@ -18,7 +18,6 @@ - diff --git a/src/SpotifyApi.NetCore.sln b/src/SpotifyApi.NetCore.sln index 9e31c60..1f99d46 100644 --- a/src/SpotifyApi.NetCore.sln +++ b/src/SpotifyApi.NetCore.sln @@ -7,10 +7,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpotifyApi.NetCore", "Spoti EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpotifyApi.NetCore.Tests", "SpotifyApi.NetCore.Tests\SpotifyApi.NetCore.Tests.csproj", "{86644469-0957-4363-A185-32E6ADEB0C3E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpotifyApi.NetCore.Authorization", "SpotifyApi.NetCore.Authorization\SpotifyApi.NetCore.Authorization.csproj", "{D2E70BD3-DAAC-4CBE-878C-616D98917131}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SpotifyApi.NetCore.Core", "SpotifyApi.NetCore.Core\SpotifyApi.NetCore.Core.csproj", "{46A62F5C-7512-42D9-AB3A-A4158B6713AF}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -25,14 +21,6 @@ Global {86644469-0957-4363-A185-32E6ADEB0C3E}.Debug|Any CPU.Build.0 = Debug|Any CPU {86644469-0957-4363-A185-32E6ADEB0C3E}.Release|Any CPU.ActiveCfg = Release|Any CPU {86644469-0957-4363-A185-32E6ADEB0C3E}.Release|Any CPU.Build.0 = Release|Any CPU - {D2E70BD3-DAAC-4CBE-878C-616D98917131}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D2E70BD3-DAAC-4CBE-878C-616D98917131}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D2E70BD3-DAAC-4CBE-878C-616D98917131}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D2E70BD3-DAAC-4CBE-878C-616D98917131}.Release|Any CPU.Build.0 = Release|Any CPU - {46A62F5C-7512-42D9-AB3A-A4158B6713AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {46A62F5C-7512-42D9-AB3A-A4158B6713AF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {46A62F5C-7512-42D9-AB3A-A4158B6713AF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {46A62F5C-7512-42D9-AB3A-A4158B6713AF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/SpotifyApi.NetCore.Authorization/AccountsService.cs b/src/SpotifyApi.NetCore/Authorization/AccountsService.cs similarity index 100% rename from src/SpotifyApi.NetCore.Authorization/AccountsService.cs rename to src/SpotifyApi.NetCore/Authorization/AccountsService.cs diff --git a/src/SpotifyApi.NetCore.Authorization/BearerAccessRefreshToken.cs b/src/SpotifyApi.NetCore/Authorization/BearerAccessRefreshToken.cs similarity index 100% rename from src/SpotifyApi.NetCore.Authorization/BearerAccessRefreshToken.cs rename to src/SpotifyApi.NetCore/Authorization/BearerAccessRefreshToken.cs diff --git a/src/SpotifyApi.NetCore.Core/Authorization/IAccessTokenProvider.cs b/src/SpotifyApi.NetCore/Authorization/IAccessTokenProvider.cs similarity index 100% rename from src/SpotifyApi.NetCore.Core/Authorization/IAccessTokenProvider.cs rename to src/SpotifyApi.NetCore/Authorization/IAccessTokenProvider.cs diff --git a/src/SpotifyApi.NetCore.Authorization/IAccountsService.cs b/src/SpotifyApi.NetCore/Authorization/IAccountsService.cs similarity index 100% rename from src/SpotifyApi.NetCore.Authorization/IAccountsService.cs rename to src/SpotifyApi.NetCore/Authorization/IAccountsService.cs diff --git a/src/SpotifyApi.NetCore.Authorization/IBearerTokenStore.cs b/src/SpotifyApi.NetCore/Authorization/IBearerTokenStore.cs similarity index 100% rename from src/SpotifyApi.NetCore.Authorization/IBearerTokenStore.cs rename to src/SpotifyApi.NetCore/Authorization/IBearerTokenStore.cs diff --git a/src/SpotifyApi.NetCore.Authorization/MemoryBearerTokenStore.cs b/src/SpotifyApi.NetCore/Authorization/MemoryBearerTokenStore.cs similarity index 100% rename from src/SpotifyApi.NetCore.Authorization/MemoryBearerTokenStore.cs rename to src/SpotifyApi.NetCore/Authorization/MemoryBearerTokenStore.cs diff --git a/src/SpotifyApi.NetCore.Authorization/UserAccountsService.cs b/src/SpotifyApi.NetCore/Authorization/UserAccountsService.cs similarity index 100% rename from src/SpotifyApi.NetCore.Authorization/UserAccountsService.cs rename to src/SpotifyApi.NetCore/Authorization/UserAccountsService.cs diff --git a/src/SpotifyApi.NetCore.Core/Http/RestHttpClient.cs b/src/SpotifyApi.NetCore/Http/RestHttpClient.cs similarity index 100% rename from src/SpotifyApi.NetCore.Core/Http/RestHttpClient.cs rename to src/SpotifyApi.NetCore/Http/RestHttpClient.cs diff --git a/src/SpotifyApi.NetCore.Core/Logger/Logger.cs b/src/SpotifyApi.NetCore/Logger/Logger.cs similarity index 100% rename from src/SpotifyApi.NetCore.Core/Logger/Logger.cs rename to src/SpotifyApi.NetCore/Logger/Logger.cs diff --git a/src/SpotifyApi.NetCore/SpotifyApi.NetCore.csproj b/src/SpotifyApi.NetCore/SpotifyApi.NetCore.csproj index 0f10f28..b96e740 100644 --- a/src/SpotifyApi.NetCore/SpotifyApi.NetCore.csproj +++ b/src/SpotifyApi.NetCore/SpotifyApi.NetCore.csproj @@ -28,7 +28,4 @@ - - - diff --git a/src/SpotifyApi.NetCore.Core/SpotifyApiErrorException.cs b/src/SpotifyApi.NetCore/SpotifyApiErrorException.cs similarity index 100% rename from src/SpotifyApi.NetCore.Core/SpotifyApiErrorException.cs rename to src/SpotifyApi.NetCore/SpotifyApiErrorException.cs