From 9c9dd44d8116a4c4065108c9e648602311ffd82b Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Sat, 26 Nov 2022 12:54:07 +0100 Subject: [PATCH] Move project to root folder --- zotan.pw-web/Migrations.cs => Migrations.cs | 0 {zotan.pw-web/Pages => Pages}/Error.cshtml | 0 {zotan.pw-web/Pages => Pages}/Error.cshtml.cs | 0 {zotan.pw-web/Pages => Pages}/Index.cshtml | 0 {zotan.pw-web/Pages => Pages}/Index.cshtml.cs | 0 {zotan.pw-web/Pages => Pages}/NowPlaying.cshtml | 0 {zotan.pw-web/Pages => Pages}/NowPlaying.cshtml.cs | 0 {zotan.pw-web/Pages => Pages}/Shared/_Layout.cshtml | 0 {zotan.pw-web/Pages => Pages}/_ViewImports.cshtml | 0 {zotan.pw-web/Pages => Pages}/_ViewStart.cshtml | 0 {zotan.pw-web/Pages => Pages}/blog/Blog.cshtml | 0 {zotan.pw-web/Pages => Pages}/blog/Blog.cshtml.cs | 0 {zotan.pw-web/Pages => Pages}/blog/BlogPost.cshtml | 0 {zotan.pw-web/Pages => Pages}/blog/JsonFeed.cs | 0 .../Pages => Pages}/blog/posts/adhd-and-notes.md | 0 .../Pages => Pages}/blog/posts/ipv6-networking.md | 0 .../Pages => Pages}/blog/posts/tdor-2022.md | 0 .../LogPlayback.cs | 0 .../LogPlaybackRequest.cs | 0 zotan.pw-web/Program.cs => Program.cs | 0 .../Properties => Properties}/launchSettings.json | 0 {zotan.pw-web/Travelynx => Travelynx}/Travelynx.cs | 0 .../Travelynx => Travelynx}/WebhookRequest.cs | 0 zotan.pw-web/Utils.cs => Utils.cs | 0 ...Development.json => appsettings.Development.json | 0 zotan.pw-web/appsettings.json => appsettings.json | 0 {zotan.pw-web/database => database}/Database.cs | 0 .../database => database}/Tables/AlbumHistory.cs | 0 .../database => database}/Tables/DbInfo.cs | 0 .../database => database}/Tables/PlaylistHistory.cs | 0 .../database => database}/Tables/TravelynxInfo.cs | 0 {zotan.pw-web/well-known => well-known}/Pronouns.cs | 0 {zotan.pw-web/wwwroot => wwwroot}/css/site.css | 0 {zotan.pw-web/wwwroot => wwwroot}/favicon.ico | Bin .../wwwroot => wwwroot}/files/SmartHome.pdf | Bin .../wwwroot => wwwroot}/files/StreamingCrypto.pdf | Bin .../files/blog/adhd-and-notes.png | Bin {zotan.pw-web/wwwroot => wwwroot}/files/help.svg | 0 {zotan.pw-web/wwwroot => wwwroot}/files/primary.gpg | 0 .../zotan.pw-web.csproj => zotan.pw-web.csproj | 0 zotan.pw-web.sln | 2 +- 41 files changed, 1 insertion(+), 1 deletion(-) rename zotan.pw-web/Migrations.cs => Migrations.cs (100%) rename {zotan.pw-web/Pages => Pages}/Error.cshtml (100%) rename {zotan.pw-web/Pages => Pages}/Error.cshtml.cs (100%) rename {zotan.pw-web/Pages => Pages}/Index.cshtml (100%) rename {zotan.pw-web/Pages => Pages}/Index.cshtml.cs (100%) rename {zotan.pw-web/Pages => Pages}/NowPlaying.cshtml (100%) rename {zotan.pw-web/Pages => Pages}/NowPlaying.cshtml.cs (100%) rename {zotan.pw-web/Pages => Pages}/Shared/_Layout.cshtml (100%) rename {zotan.pw-web/Pages => Pages}/_ViewImports.cshtml (100%) rename {zotan.pw-web/Pages => Pages}/_ViewStart.cshtml (100%) rename {zotan.pw-web/Pages => Pages}/blog/Blog.cshtml (100%) rename {zotan.pw-web/Pages => Pages}/blog/Blog.cshtml.cs (100%) rename {zotan.pw-web/Pages => Pages}/blog/BlogPost.cshtml (100%) rename {zotan.pw-web/Pages => Pages}/blog/JsonFeed.cs (100%) rename {zotan.pw-web/Pages => Pages}/blog/posts/adhd-and-notes.md (100%) rename {zotan.pw-web/Pages => Pages}/blog/posts/ipv6-networking.md (100%) rename {zotan.pw-web/Pages => Pages}/blog/posts/tdor-2022.md (100%) rename {zotan.pw-web/PlaybackHistory => PlaybackHistory}/LogPlayback.cs (100%) rename {zotan.pw-web/PlaybackHistory => PlaybackHistory}/LogPlaybackRequest.cs (100%) rename zotan.pw-web/Program.cs => Program.cs (100%) rename {zotan.pw-web/Properties => Properties}/launchSettings.json (100%) rename {zotan.pw-web/Travelynx => Travelynx}/Travelynx.cs (100%) rename {zotan.pw-web/Travelynx => Travelynx}/WebhookRequest.cs (100%) rename zotan.pw-web/Utils.cs => Utils.cs (100%) rename zotan.pw-web/appsettings.Development.json => appsettings.Development.json (100%) rename zotan.pw-web/appsettings.json => appsettings.json (100%) rename {zotan.pw-web/database => database}/Database.cs (100%) rename {zotan.pw-web/database => database}/Tables/AlbumHistory.cs (100%) rename {zotan.pw-web/database => database}/Tables/DbInfo.cs (100%) rename {zotan.pw-web/database => database}/Tables/PlaylistHistory.cs (100%) rename {zotan.pw-web/database => database}/Tables/TravelynxInfo.cs (100%) rename {zotan.pw-web/well-known => well-known}/Pronouns.cs (100%) rename {zotan.pw-web/wwwroot => wwwroot}/css/site.css (100%) rename {zotan.pw-web/wwwroot => wwwroot}/favicon.ico (100%) rename {zotan.pw-web/wwwroot => wwwroot}/files/SmartHome.pdf (100%) rename {zotan.pw-web/wwwroot => wwwroot}/files/StreamingCrypto.pdf (100%) rename {zotan.pw-web/wwwroot => wwwroot}/files/blog/adhd-and-notes.png (100%) rename {zotan.pw-web/wwwroot => wwwroot}/files/help.svg (100%) rename {zotan.pw-web/wwwroot => wwwroot}/files/primary.gpg (100%) rename zotan.pw-web/zotan.pw-web.csproj => zotan.pw-web.csproj (100%) diff --git a/zotan.pw-web/Migrations.cs b/Migrations.cs similarity index 100% rename from zotan.pw-web/Migrations.cs rename to Migrations.cs diff --git a/zotan.pw-web/Pages/Error.cshtml b/Pages/Error.cshtml similarity index 100% rename from zotan.pw-web/Pages/Error.cshtml rename to Pages/Error.cshtml diff --git a/zotan.pw-web/Pages/Error.cshtml.cs b/Pages/Error.cshtml.cs similarity index 100% rename from zotan.pw-web/Pages/Error.cshtml.cs rename to Pages/Error.cshtml.cs diff --git a/zotan.pw-web/Pages/Index.cshtml b/Pages/Index.cshtml similarity index 100% rename from zotan.pw-web/Pages/Index.cshtml rename to Pages/Index.cshtml diff --git a/zotan.pw-web/Pages/Index.cshtml.cs b/Pages/Index.cshtml.cs similarity index 100% rename from zotan.pw-web/Pages/Index.cshtml.cs rename to Pages/Index.cshtml.cs diff --git a/zotan.pw-web/Pages/NowPlaying.cshtml b/Pages/NowPlaying.cshtml similarity index 100% rename from zotan.pw-web/Pages/NowPlaying.cshtml rename to Pages/NowPlaying.cshtml diff --git a/zotan.pw-web/Pages/NowPlaying.cshtml.cs b/Pages/NowPlaying.cshtml.cs similarity index 100% rename from zotan.pw-web/Pages/NowPlaying.cshtml.cs rename to Pages/NowPlaying.cshtml.cs diff --git a/zotan.pw-web/Pages/Shared/_Layout.cshtml b/Pages/Shared/_Layout.cshtml similarity index 100% rename from zotan.pw-web/Pages/Shared/_Layout.cshtml rename to Pages/Shared/_Layout.cshtml diff --git a/zotan.pw-web/Pages/_ViewImports.cshtml b/Pages/_ViewImports.cshtml similarity index 100% rename from zotan.pw-web/Pages/_ViewImports.cshtml rename to Pages/_ViewImports.cshtml diff --git a/zotan.pw-web/Pages/_ViewStart.cshtml b/Pages/_ViewStart.cshtml similarity index 100% rename from zotan.pw-web/Pages/_ViewStart.cshtml rename to Pages/_ViewStart.cshtml diff --git a/zotan.pw-web/Pages/blog/Blog.cshtml b/Pages/blog/Blog.cshtml similarity index 100% rename from zotan.pw-web/Pages/blog/Blog.cshtml rename to Pages/blog/Blog.cshtml diff --git a/zotan.pw-web/Pages/blog/Blog.cshtml.cs b/Pages/blog/Blog.cshtml.cs similarity index 100% rename from zotan.pw-web/Pages/blog/Blog.cshtml.cs rename to Pages/blog/Blog.cshtml.cs diff --git a/zotan.pw-web/Pages/blog/BlogPost.cshtml b/Pages/blog/BlogPost.cshtml similarity index 100% rename from zotan.pw-web/Pages/blog/BlogPost.cshtml rename to Pages/blog/BlogPost.cshtml diff --git a/zotan.pw-web/Pages/blog/JsonFeed.cs b/Pages/blog/JsonFeed.cs similarity index 100% rename from zotan.pw-web/Pages/blog/JsonFeed.cs rename to Pages/blog/JsonFeed.cs diff --git a/zotan.pw-web/Pages/blog/posts/adhd-and-notes.md b/Pages/blog/posts/adhd-and-notes.md similarity index 100% rename from zotan.pw-web/Pages/blog/posts/adhd-and-notes.md rename to Pages/blog/posts/adhd-and-notes.md diff --git a/zotan.pw-web/Pages/blog/posts/ipv6-networking.md b/Pages/blog/posts/ipv6-networking.md similarity index 100% rename from zotan.pw-web/Pages/blog/posts/ipv6-networking.md rename to Pages/blog/posts/ipv6-networking.md diff --git a/zotan.pw-web/Pages/blog/posts/tdor-2022.md b/Pages/blog/posts/tdor-2022.md similarity index 100% rename from zotan.pw-web/Pages/blog/posts/tdor-2022.md rename to Pages/blog/posts/tdor-2022.md diff --git a/zotan.pw-web/PlaybackHistory/LogPlayback.cs b/PlaybackHistory/LogPlayback.cs similarity index 100% rename from zotan.pw-web/PlaybackHistory/LogPlayback.cs rename to PlaybackHistory/LogPlayback.cs diff --git a/zotan.pw-web/PlaybackHistory/LogPlaybackRequest.cs b/PlaybackHistory/LogPlaybackRequest.cs similarity index 100% rename from zotan.pw-web/PlaybackHistory/LogPlaybackRequest.cs rename to PlaybackHistory/LogPlaybackRequest.cs diff --git a/zotan.pw-web/Program.cs b/Program.cs similarity index 100% rename from zotan.pw-web/Program.cs rename to Program.cs diff --git a/zotan.pw-web/Properties/launchSettings.json b/Properties/launchSettings.json similarity index 100% rename from zotan.pw-web/Properties/launchSettings.json rename to Properties/launchSettings.json diff --git a/zotan.pw-web/Travelynx/Travelynx.cs b/Travelynx/Travelynx.cs similarity index 100% rename from zotan.pw-web/Travelynx/Travelynx.cs rename to Travelynx/Travelynx.cs diff --git a/zotan.pw-web/Travelynx/WebhookRequest.cs b/Travelynx/WebhookRequest.cs similarity index 100% rename from zotan.pw-web/Travelynx/WebhookRequest.cs rename to Travelynx/WebhookRequest.cs diff --git a/zotan.pw-web/Utils.cs b/Utils.cs similarity index 100% rename from zotan.pw-web/Utils.cs rename to Utils.cs diff --git a/zotan.pw-web/appsettings.Development.json b/appsettings.Development.json similarity index 100% rename from zotan.pw-web/appsettings.Development.json rename to appsettings.Development.json diff --git a/zotan.pw-web/appsettings.json b/appsettings.json similarity index 100% rename from zotan.pw-web/appsettings.json rename to appsettings.json diff --git a/zotan.pw-web/database/Database.cs b/database/Database.cs similarity index 100% rename from zotan.pw-web/database/Database.cs rename to database/Database.cs diff --git a/zotan.pw-web/database/Tables/AlbumHistory.cs b/database/Tables/AlbumHistory.cs similarity index 100% rename from zotan.pw-web/database/Tables/AlbumHistory.cs rename to database/Tables/AlbumHistory.cs diff --git a/zotan.pw-web/database/Tables/DbInfo.cs b/database/Tables/DbInfo.cs similarity index 100% rename from zotan.pw-web/database/Tables/DbInfo.cs rename to database/Tables/DbInfo.cs diff --git a/zotan.pw-web/database/Tables/PlaylistHistory.cs b/database/Tables/PlaylistHistory.cs similarity index 100% rename from zotan.pw-web/database/Tables/PlaylistHistory.cs rename to database/Tables/PlaylistHistory.cs diff --git a/zotan.pw-web/database/Tables/TravelynxInfo.cs b/database/Tables/TravelynxInfo.cs similarity index 100% rename from zotan.pw-web/database/Tables/TravelynxInfo.cs rename to database/Tables/TravelynxInfo.cs diff --git a/zotan.pw-web/well-known/Pronouns.cs b/well-known/Pronouns.cs similarity index 100% rename from zotan.pw-web/well-known/Pronouns.cs rename to well-known/Pronouns.cs diff --git a/zotan.pw-web/wwwroot/css/site.css b/wwwroot/css/site.css similarity index 100% rename from zotan.pw-web/wwwroot/css/site.css rename to wwwroot/css/site.css diff --git a/zotan.pw-web/wwwroot/favicon.ico b/wwwroot/favicon.ico similarity index 100% rename from zotan.pw-web/wwwroot/favicon.ico rename to wwwroot/favicon.ico diff --git a/zotan.pw-web/wwwroot/files/SmartHome.pdf b/wwwroot/files/SmartHome.pdf similarity index 100% rename from zotan.pw-web/wwwroot/files/SmartHome.pdf rename to wwwroot/files/SmartHome.pdf diff --git a/zotan.pw-web/wwwroot/files/StreamingCrypto.pdf b/wwwroot/files/StreamingCrypto.pdf similarity index 100% rename from zotan.pw-web/wwwroot/files/StreamingCrypto.pdf rename to wwwroot/files/StreamingCrypto.pdf diff --git a/zotan.pw-web/wwwroot/files/blog/adhd-and-notes.png b/wwwroot/files/blog/adhd-and-notes.png similarity index 100% rename from zotan.pw-web/wwwroot/files/blog/adhd-and-notes.png rename to wwwroot/files/blog/adhd-and-notes.png diff --git a/zotan.pw-web/wwwroot/files/help.svg b/wwwroot/files/help.svg similarity index 100% rename from zotan.pw-web/wwwroot/files/help.svg rename to wwwroot/files/help.svg diff --git a/zotan.pw-web/wwwroot/files/primary.gpg b/wwwroot/files/primary.gpg similarity index 100% rename from zotan.pw-web/wwwroot/files/primary.gpg rename to wwwroot/files/primary.gpg diff --git a/zotan.pw-web/zotan.pw-web.csproj b/zotan.pw-web.csproj similarity index 100% rename from zotan.pw-web/zotan.pw-web.csproj rename to zotan.pw-web.csproj diff --git a/zotan.pw-web.sln b/zotan.pw-web.sln index 387c260..6e8579f 100644 --- a/zotan.pw-web.sln +++ b/zotan.pw-web.sln @@ -1,6 +1,6 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "zotan.pw-web", "zotan.pw-web\zotan.pw-web.csproj", "{C13FBB14-C41C-440F-BFB3-61E476E1902D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "zotan.pw-web", "zotan.pw-web.csproj", "{C13FBB14-C41C-440F-BFB3-61E476E1902D}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution