diff --git a/.gitignore b/.gitignore index a2ad9c0..76b6e3f 100644 --- a/.gitignore +++ b/.gitignore @@ -51,5 +51,5 @@ node_modules output .tmp *.ncrunchsolution -/_NCrunch_Website +_NCrunch_Website *.DotSettings \ No newline at end of file diff --git a/.nuke b/.nuke index ad357e2..a57ba7a 100644 --- a/.nuke +++ b/.nuke @@ -1 +1 @@ -Website.sln \ No newline at end of file +src/Website.sln \ No newline at end of file diff --git a/build/Build.cs b/build/Build.cs index 83e1a24..a18d34b 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -19,6 +19,7 @@ class Build : NukeBuild [Solution] readonly Solution Solution; AbsolutePath OutputDirectory => RootDirectory / "output"; + AbsolutePath SourceDirectory => RootDirectory / "src"; Target Clean => _ => _ .Before(Restore) @@ -57,7 +58,7 @@ class Build : NukeBuild .DependsOn(Test) .Executes(() =>{ DotNetPublish(s => s - .SetProject(RootDirectory / "Website/Website.csproj") + .SetProject(SourceDirectory / "Website/Website.csproj") .SetConfiguration(Configuration) .SetOutput(OutputDirectory)); diff --git a/Website.Markdig.Extensions/BlogImageRendererExtension.cs b/src/Website.Markdig.Extensions/BlogImageRendererExtension.cs similarity index 100% rename from Website.Markdig.Extensions/BlogImageRendererExtension.cs rename to src/Website.Markdig.Extensions/BlogImageRendererExtension.cs diff --git a/Website.Markdig.Extensions/BlogLinkAndImageRenderer.cs b/src/Website.Markdig.Extensions/BlogLinkAndImageRenderer.cs similarity index 100% rename from Website.Markdig.Extensions/BlogLinkAndImageRenderer.cs rename to src/Website.Markdig.Extensions/BlogLinkAndImageRenderer.cs diff --git a/Website.Markdig.Extensions/MarkdownPipelineBuilderExtensions.cs b/src/Website.Markdig.Extensions/MarkdownPipelineBuilderExtensions.cs similarity index 100% rename from Website.Markdig.Extensions/MarkdownPipelineBuilderExtensions.cs rename to src/Website.Markdig.Extensions/MarkdownPipelineBuilderExtensions.cs diff --git a/Website.Markdig.Extensions/Website.Markdig.Extensions.csproj b/src/Website.Markdig.Extensions/Website.Markdig.Extensions.csproj similarity index 100% rename from Website.Markdig.Extensions/Website.Markdig.Extensions.csproj rename to src/Website.Markdig.Extensions/Website.Markdig.Extensions.csproj diff --git a/Website.Tests/Data/ApiClientTests.cs b/src/Website.Tests/Data/ApiClientTests.cs similarity index 100% rename from Website.Tests/Data/ApiClientTests.cs rename to src/Website.Tests/Data/ApiClientTests.cs diff --git a/Website.Tests/Data/AuthenticationProviderTests.cs b/src/Website.Tests/Data/AuthenticationProviderTests.cs similarity index 100% rename from Website.Tests/Data/AuthenticationProviderTests.cs rename to src/Website.Tests/Data/AuthenticationProviderTests.cs diff --git a/Website.Tests/Data/BlogApiTests.cs b/src/Website.Tests/Data/BlogApiTests.cs similarity index 100% rename from Website.Tests/Data/BlogApiTests.cs rename to src/Website.Tests/Data/BlogApiTests.cs diff --git a/Website.Tests/Data/GitApiTests.cs b/src/Website.Tests/Data/GitApiTests.cs similarity index 100% rename from Website.Tests/Data/GitApiTests.cs rename to src/Website.Tests/Data/GitApiTests.cs diff --git a/Website.Tests/HttpClientBuilder.cs b/src/Website.Tests/HttpClientBuilder.cs similarity index 100% rename from Website.Tests/HttpClientBuilder.cs rename to src/Website.Tests/HttpClientBuilder.cs diff --git a/Website.Tests/VIewModels/BlogPostPreviewViewModelTests.cs b/src/Website.Tests/VIewModels/BlogPostPreviewViewModelTests.cs similarity index 100% rename from Website.Tests/VIewModels/BlogPostPreviewViewModelTests.cs rename to src/Website.Tests/VIewModels/BlogPostPreviewViewModelTests.cs diff --git a/Website.Tests/VIewModels/BlogPostViewModelTests.cs b/src/Website.Tests/VIewModels/BlogPostViewModelTests.cs similarity index 100% rename from Website.Tests/VIewModels/BlogPostViewModelTests.cs rename to src/Website.Tests/VIewModels/BlogPostViewModelTests.cs diff --git a/Website.Tests/Website.Tests.csproj b/src/Website.Tests/Website.Tests.csproj similarity index 100% rename from Website.Tests/Website.Tests.csproj rename to src/Website.Tests/Website.Tests.csproj diff --git a/Website.sln b/src/Website.sln similarity index 97% rename from Website.sln rename to src/Website.sln index d6498f9..5843727 100644 --- a/Website.sln +++ b/src/Website.sln @@ -7,7 +7,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Website", "Website\Website. EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Website.Tests", "Website.Tests\Website.Tests.csproj", "{FAF08828-0677-403F-A627-2793749DB7F1}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "build\_build.csproj", "{0752E29F-71E3-4CCD-BEA6-8F171322380F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "..\build\_build.csproj", "{0752E29F-71E3-4CCD-BEA6-8F171322380F}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Website.Markdig.Extensions", "Website.Markdig.Extensions\Website.Markdig.Extensions.csproj", "{370DEBB3-6309-45AB-82A0-03E663823302}" EndProject diff --git a/Website/Controllers/AccountController.cs b/src/Website/Controllers/AccountController.cs similarity index 100% rename from Website/Controllers/AccountController.cs rename to src/Website/Controllers/AccountController.cs diff --git a/Website/Controllers/BlogController.cs b/src/Website/Controllers/BlogController.cs similarity index 100% rename from Website/Controllers/BlogController.cs rename to src/Website/Controllers/BlogController.cs diff --git a/Website/Controllers/ErrorController.cs b/src/Website/Controllers/ErrorController.cs similarity index 100% rename from Website/Controllers/ErrorController.cs rename to src/Website/Controllers/ErrorController.cs diff --git a/Website/Controllers/HomeController.cs b/src/Website/Controllers/HomeController.cs similarity index 100% rename from Website/Controllers/HomeController.cs rename to src/Website/Controllers/HomeController.cs diff --git a/Website/Data/ApiCallException.cs b/src/Website/Data/ApiCallException.cs similarity index 100% rename from Website/Data/ApiCallException.cs rename to src/Website/Data/ApiCallException.cs diff --git a/Website/Data/ApiClient.cs b/src/Website/Data/ApiClient.cs similarity index 100% rename from Website/Data/ApiClient.cs rename to src/Website/Data/ApiClient.cs diff --git a/Website/Data/AuthenticationProvider.cs b/src/Website/Data/AuthenticationProvider.cs similarity index 100% rename from Website/Data/AuthenticationProvider.cs rename to src/Website/Data/AuthenticationProvider.cs diff --git a/Website/Data/BlogApi.cs b/src/Website/Data/BlogApi.cs similarity index 100% rename from Website/Data/BlogApi.cs rename to src/Website/Data/BlogApi.cs diff --git a/Website/Data/GitApi.cs b/src/Website/Data/GitApi.cs similarity index 100% rename from Website/Data/GitApi.cs rename to src/Website/Data/GitApi.cs diff --git a/Website/Data/IAuthenticationProvider.cs b/src/Website/Data/IAuthenticationProvider.cs similarity index 100% rename from Website/Data/IAuthenticationProvider.cs rename to src/Website/Data/IAuthenticationProvider.cs diff --git a/Website/Data/IBlogApi.cs b/src/Website/Data/IBlogApi.cs similarity index 100% rename from Website/Data/IBlogApi.cs rename to src/Website/Data/IBlogApi.cs diff --git a/Website/Data/IGitApi.cs b/src/Website/Data/IGitApi.cs similarity index 100% rename from Website/Data/IGitApi.cs rename to src/Website/Data/IGitApi.cs diff --git a/Website/Extensions/DateTimeExtensions.cs b/src/Website/Extensions/DateTimeExtensions.cs similarity index 100% rename from Website/Extensions/DateTimeExtensions.cs rename to src/Website/Extensions/DateTimeExtensions.cs diff --git a/Website/Models/Auth/LoginRequest.cs b/src/Website/Models/Auth/LoginRequest.cs similarity index 100% rename from Website/Models/Auth/LoginRequest.cs rename to src/Website/Models/Auth/LoginRequest.cs diff --git a/Website/Models/Auth/User.cs b/src/Website/Models/Auth/User.cs similarity index 100% rename from Website/Models/Auth/User.cs rename to src/Website/Models/Auth/User.cs diff --git a/Website/Models/Blog/BlogPost.cs b/src/Website/Models/Blog/BlogPost.cs similarity index 100% rename from Website/Models/Blog/BlogPost.cs rename to src/Website/Models/Blog/BlogPost.cs diff --git a/Website/Models/Blog/BlogPostSubmission.cs b/src/Website/Models/Blog/BlogPostSubmission.cs similarity index 100% rename from Website/Models/Blog/BlogPostSubmission.cs rename to src/Website/Models/Blog/BlogPostSubmission.cs diff --git a/Website/Models/Git/Branch.cs b/src/Website/Models/Git/Branch.cs similarity index 100% rename from Website/Models/Git/Branch.cs rename to src/Website/Models/Git/Branch.cs diff --git a/Website/Models/Git/Commit.cs b/src/Website/Models/Git/Commit.cs similarity index 100% rename from Website/Models/Git/Commit.cs rename to src/Website/Models/Git/Commit.cs diff --git a/Website/Models/Git/Repository.cs b/src/Website/Models/Git/Repository.cs similarity index 100% rename from Website/Models/Git/Repository.cs rename to src/Website/Models/Git/Repository.cs diff --git a/Website/Program.cs b/src/Website/Program.cs similarity index 100% rename from Website/Program.cs rename to src/Website/Program.cs diff --git a/Website/Properties/launchSettings.json b/src/Website/Properties/launchSettings.json similarity index 100% rename from Website/Properties/launchSettings.json rename to src/Website/Properties/launchSettings.json diff --git a/Website/Startup.cs b/src/Website/Startup.cs similarity index 100% rename from Website/Startup.cs rename to src/Website/Startup.cs diff --git a/Website/ViewComponents/BlogNavigationViewComponent.cs b/src/Website/ViewComponents/BlogNavigationViewComponent.cs similarity index 100% rename from Website/ViewComponents/BlogNavigationViewComponent.cs rename to src/Website/ViewComponents/BlogNavigationViewComponent.cs diff --git a/Website/ViewComponents/ProjectNavigationViewComponent.cs b/src/Website/ViewComponents/ProjectNavigationViewComponent.cs similarity index 100% rename from Website/ViewComponents/ProjectNavigationViewComponent.cs rename to src/Website/ViewComponents/ProjectNavigationViewComponent.cs diff --git a/Website/ViewModels/Blog/BlogPostSnippetViewModel.cs b/src/Website/ViewModels/Blog/BlogPostSnippetViewModel.cs similarity index 100% rename from Website/ViewModels/Blog/BlogPostSnippetViewModel.cs rename to src/Website/ViewModels/Blog/BlogPostSnippetViewModel.cs diff --git a/Website/ViewModels/Blog/BlogPostViewModel.cs b/src/Website/ViewModels/Blog/BlogPostViewModel.cs similarity index 100% rename from Website/ViewModels/Blog/BlogPostViewModel.cs rename to src/Website/ViewModels/Blog/BlogPostViewModel.cs diff --git a/Website/ViewModels/Blog/BlogViewModel.cs b/src/Website/ViewModels/Blog/BlogViewModel.cs similarity index 100% rename from Website/ViewModels/Blog/BlogViewModel.cs rename to src/Website/ViewModels/Blog/BlogViewModel.cs diff --git a/Website/ViewModels/ErrorViewModel.cs b/src/Website/ViewModels/ErrorViewModel.cs similarity index 100% rename from Website/ViewModels/ErrorViewModel.cs rename to src/Website/ViewModels/ErrorViewModel.cs diff --git a/Website/ViewModels/GitCommitViewModel.cs b/src/Website/ViewModels/GitCommitViewModel.cs similarity index 100% rename from Website/ViewModels/GitCommitViewModel.cs rename to src/Website/ViewModels/GitCommitViewModel.cs diff --git a/Website/ViewModels/HomeViewModel.cs b/src/Website/ViewModels/HomeViewModel.cs similarity index 100% rename from Website/ViewModels/HomeViewModel.cs rename to src/Website/ViewModels/HomeViewModel.cs diff --git a/Website/ViewModels/LoginViewModel.cs b/src/Website/ViewModels/LoginViewModel.cs similarity index 100% rename from Website/ViewModels/LoginViewModel.cs rename to src/Website/ViewModels/LoginViewModel.cs diff --git a/Website/Views/Account/Index.cshtml b/src/Website/Views/Account/Index.cshtml similarity index 100% rename from Website/Views/Account/Index.cshtml rename to src/Website/Views/Account/Index.cshtml diff --git a/Website/Views/Account/Login.cshtml b/src/Website/Views/Account/Login.cshtml similarity index 100% rename from Website/Views/Account/Login.cshtml rename to src/Website/Views/Account/Login.cshtml diff --git a/Website/Views/Blog/Edit.cshtml b/src/Website/Views/Blog/Edit.cshtml similarity index 100% rename from Website/Views/Blog/Edit.cshtml rename to src/Website/Views/Blog/Edit.cshtml diff --git a/Website/Views/Blog/Entry.cshtml b/src/Website/Views/Blog/Entry.cshtml similarity index 100% rename from Website/Views/Blog/Entry.cshtml rename to src/Website/Views/Blog/Entry.cshtml diff --git a/Website/Views/Blog/Manage.cshtml b/src/Website/Views/Blog/Manage.cshtml similarity index 100% rename from Website/Views/Blog/Manage.cshtml rename to src/Website/Views/Blog/Manage.cshtml diff --git a/Website/Views/Blog/Page.cshtml b/src/Website/Views/Blog/Page.cshtml similarity index 100% rename from Website/Views/Blog/Page.cshtml rename to src/Website/Views/Blog/Page.cshtml diff --git a/Website/Views/Error/PageNotFound.cshtml b/src/Website/Views/Error/PageNotFound.cshtml similarity index 100% rename from Website/Views/Error/PageNotFound.cshtml rename to src/Website/Views/Error/PageNotFound.cshtml diff --git a/Website/Views/Error/ServerError.cshtml b/src/Website/Views/Error/ServerError.cshtml similarity index 100% rename from Website/Views/Error/ServerError.cshtml rename to src/Website/Views/Error/ServerError.cshtml diff --git a/Website/Views/Home/Index.cshtml b/src/Website/Views/Home/Index.cshtml similarity index 100% rename from Website/Views/Home/Index.cshtml rename to src/Website/Views/Home/Index.cshtml diff --git a/Website/Views/Shared/Components/BlogNavigation/Default.cshtml b/src/Website/Views/Shared/Components/BlogNavigation/Default.cshtml similarity index 100% rename from Website/Views/Shared/Components/BlogNavigation/Default.cshtml rename to src/Website/Views/Shared/Components/BlogNavigation/Default.cshtml diff --git a/Website/Views/Shared/Components/ProjectNavigation/Default.cshtml b/src/Website/Views/Shared/Components/ProjectNavigation/Default.cshtml similarity index 100% rename from Website/Views/Shared/Components/ProjectNavigation/Default.cshtml rename to src/Website/Views/Shared/Components/ProjectNavigation/Default.cshtml diff --git a/Website/Views/Shared/_Layout.cshtml b/src/Website/Views/Shared/_Layout.cshtml similarity index 100% rename from Website/Views/Shared/_Layout.cshtml rename to src/Website/Views/Shared/_Layout.cshtml diff --git a/Website/Views/Shared/_ValidationScriptsPartial.cshtml b/src/Website/Views/Shared/_ValidationScriptsPartial.cshtml similarity index 100% rename from Website/Views/Shared/_ValidationScriptsPartial.cshtml rename to src/Website/Views/Shared/_ValidationScriptsPartial.cshtml diff --git a/Website/Views/_ViewImports.cshtml b/src/Website/Views/_ViewImports.cshtml similarity index 100% rename from Website/Views/_ViewImports.cshtml rename to src/Website/Views/_ViewImports.cshtml diff --git a/Website/Views/_ViewStart.cshtml b/src/Website/Views/_ViewStart.cshtml similarity index 100% rename from Website/Views/_ViewStart.cshtml rename to src/Website/Views/_ViewStart.cshtml diff --git a/Website/Website.csproj b/src/Website/Website.csproj similarity index 100% rename from Website/Website.csproj rename to src/Website/Website.csproj diff --git a/Website/appsettings.Development.json b/src/Website/appsettings.Development.json similarity index 100% rename from Website/appsettings.Development.json rename to src/Website/appsettings.Development.json diff --git a/Website/appsettings.json b/src/Website/appsettings.json similarity index 100% rename from Website/appsettings.json rename to src/Website/appsettings.json diff --git a/Website/bundleconfig.json b/src/Website/bundleconfig.json similarity index 100% rename from Website/bundleconfig.json rename to src/Website/bundleconfig.json diff --git a/Website/gulpfile.js b/src/Website/gulpfile.js similarity index 100% rename from Website/gulpfile.js rename to src/Website/gulpfile.js diff --git a/Website/package-lock.json b/src/Website/package-lock.json similarity index 100% rename from Website/package-lock.json rename to src/Website/package-lock.json diff --git a/Website/package.json b/src/Website/package.json similarity index 100% rename from Website/package.json rename to src/Website/package.json diff --git a/Website/wwwroot/css/blog.scss b/src/Website/wwwroot/css/blog.scss similarity index 100% rename from Website/wwwroot/css/blog.scss rename to src/Website/wwwroot/css/blog.scss diff --git a/Website/wwwroot/css/colours.scss b/src/Website/wwwroot/css/colours.scss similarity index 100% rename from Website/wwwroot/css/colours.scss rename to src/Website/wwwroot/css/colours.scss diff --git a/Website/wwwroot/css/home.scss b/src/Website/wwwroot/css/home.scss similarity index 100% rename from Website/wwwroot/css/home.scss rename to src/Website/wwwroot/css/home.scss diff --git a/Website/wwwroot/css/material_colours.scss b/src/Website/wwwroot/css/material_colours.scss similarity index 100% rename from Website/wwwroot/css/material_colours.scss rename to src/Website/wwwroot/css/material_colours.scss diff --git a/Website/wwwroot/css/style.scss b/src/Website/wwwroot/css/style.scss similarity index 100% rename from Website/wwwroot/css/style.scss rename to src/Website/wwwroot/css/style.scss diff --git a/Website/wwwroot/images/add.svg b/src/Website/wwwroot/images/add.svg similarity index 100% rename from Website/wwwroot/images/add.svg rename to src/Website/wwwroot/images/add.svg diff --git a/Website/wwwroot/images/add_album.svg b/src/Website/wwwroot/images/add_album.svg similarity index 100% rename from Website/wwwroot/images/add_album.svg rename to src/Website/wwwroot/images/add_album.svg diff --git a/Website/wwwroot/images/background.png b/src/Website/wwwroot/images/background.png similarity index 100% rename from Website/wwwroot/images/background.png rename to src/Website/wwwroot/images/background.png diff --git a/Website/wwwroot/images/blog.svg b/src/Website/wwwroot/images/blog.svg similarity index 100% rename from Website/wwwroot/images/blog.svg rename to src/Website/wwwroot/images/blog.svg diff --git a/Website/wwwroot/images/chevron.png b/src/Website/wwwroot/images/chevron.png similarity index 100% rename from Website/wwwroot/images/chevron.png rename to src/Website/wwwroot/images/chevron.png diff --git a/Website/wwwroot/images/delete.svg b/src/Website/wwwroot/images/delete.svg similarity index 100% rename from Website/wwwroot/images/delete.svg rename to src/Website/wwwroot/images/delete.svg diff --git a/Website/wwwroot/images/desktop.svg b/src/Website/wwwroot/images/desktop.svg similarity index 100% rename from Website/wwwroot/images/desktop.svg rename to src/Website/wwwroot/images/desktop.svg diff --git a/Website/wwwroot/images/done.svg b/src/Website/wwwroot/images/done.svg similarity index 100% rename from Website/wwwroot/images/done.svg rename to src/Website/wwwroot/images/done.svg diff --git a/Website/wwwroot/images/edit.svg b/src/Website/wwwroot/images/edit.svg similarity index 100% rename from Website/wwwroot/images/edit.svg rename to src/Website/wwwroot/images/edit.svg diff --git a/Website/wwwroot/images/error.svg b/src/Website/wwwroot/images/error.svg similarity index 100% rename from Website/wwwroot/images/error.svg rename to src/Website/wwwroot/images/error.svg diff --git a/Website/wwwroot/images/gallery.svg b/src/Website/wwwroot/images/gallery.svg similarity index 100% rename from Website/wwwroot/images/gallery.svg rename to src/Website/wwwroot/images/gallery.svg diff --git a/Website/wwwroot/images/header.jpg b/src/Website/wwwroot/images/header.jpg similarity index 100% rename from Website/wwwroot/images/header.jpg rename to src/Website/wwwroot/images/header.jpg diff --git a/Website/wwwroot/images/headshot.jpg b/src/Website/wwwroot/images/headshot.jpg similarity index 100% rename from Website/wwwroot/images/headshot.jpg rename to src/Website/wwwroot/images/headshot.jpg diff --git a/Website/wwwroot/images/home.svg b/src/Website/wwwroot/images/home.svg similarity index 100% rename from Website/wwwroot/images/home.svg rename to src/Website/wwwroot/images/home.svg diff --git a/Website/wwwroot/images/library.svg b/src/Website/wwwroot/images/library.svg similarity index 100% rename from Website/wwwroot/images/library.svg rename to src/Website/wwwroot/images/library.svg diff --git a/Website/wwwroot/images/logo.png b/src/Website/wwwroot/images/logo.png similarity index 100% rename from Website/wwwroot/images/logo.png rename to src/Website/wwwroot/images/logo.png diff --git a/Website/wwwroot/images/logo_email.png b/src/Website/wwwroot/images/logo_email.png similarity index 100% rename from Website/wwwroot/images/logo_email.png rename to src/Website/wwwroot/images/logo_email.png diff --git a/Website/wwwroot/images/member.svg b/src/Website/wwwroot/images/member.svg similarity index 100% rename from Website/wwwroot/images/member.svg rename to src/Website/wwwroot/images/member.svg diff --git a/Website/wwwroot/images/menu.svg b/src/Website/wwwroot/images/menu.svg similarity index 100% rename from Website/wwwroot/images/menu.svg rename to src/Website/wwwroot/images/menu.svg diff --git a/Website/wwwroot/images/next.svg b/src/Website/wwwroot/images/next.svg similarity index 100% rename from Website/wwwroot/images/next.svg rename to src/Website/wwwroot/images/next.svg diff --git a/Website/wwwroot/images/photo.svg b/src/Website/wwwroot/images/photo.svg similarity index 100% rename from Website/wwwroot/images/photo.svg rename to src/Website/wwwroot/images/photo.svg diff --git a/Website/wwwroot/images/power.svg b/src/Website/wwwroot/images/power.svg similarity index 100% rename from Website/wwwroot/images/power.svg rename to src/Website/wwwroot/images/power.svg diff --git a/Website/wwwroot/images/previous.svg b/src/Website/wwwroot/images/previous.svg similarity index 100% rename from Website/wwwroot/images/previous.svg rename to src/Website/wwwroot/images/previous.svg diff --git a/Website/wwwroot/images/projects.svg b/src/Website/wwwroot/images/projects.svg similarity index 100% rename from Website/wwwroot/images/projects.svg rename to src/Website/wwwroot/images/projects.svg diff --git a/Website/wwwroot/images/register.svg b/src/Website/wwwroot/images/register.svg similarity index 100% rename from Website/wwwroot/images/register.svg rename to src/Website/wwwroot/images/register.svg diff --git a/Website/wwwroot/images/save.svg b/src/Website/wwwroot/images/save.svg similarity index 100% rename from Website/wwwroot/images/save.svg rename to src/Website/wwwroot/images/save.svg diff --git a/Website/wwwroot/images/send.svg b/src/Website/wwwroot/images/send.svg similarity index 100% rename from Website/wwwroot/images/send.svg rename to src/Website/wwwroot/images/send.svg diff --git a/Website/wwwroot/images/spinner.svg b/src/Website/wwwroot/images/spinner.svg similarity index 100% rename from Website/wwwroot/images/spinner.svg rename to src/Website/wwwroot/images/spinner.svg diff --git a/Website/wwwroot/images/status.svg b/src/Website/wwwroot/images/status.svg similarity index 100% rename from Website/wwwroot/images/status.svg rename to src/Website/wwwroot/images/status.svg diff --git a/Website/wwwroot/images/temperature.svg b/src/Website/wwwroot/images/temperature.svg similarity index 100% rename from Website/wwwroot/images/temperature.svg rename to src/Website/wwwroot/images/temperature.svg diff --git a/Website/wwwroot/images/upload.svg b/src/Website/wwwroot/images/upload.svg similarity index 100% rename from Website/wwwroot/images/upload.svg rename to src/Website/wwwroot/images/upload.svg diff --git a/Website/wwwroot/images/weight.svg b/src/Website/wwwroot/images/weight.svg similarity index 100% rename from Website/wwwroot/images/weight.svg rename to src/Website/wwwroot/images/weight.svg diff --git a/Website/wwwroot/js/javascript.js b/src/Website/wwwroot/js/javascript.js similarity index 100% rename from Website/wwwroot/js/javascript.js rename to src/Website/wwwroot/js/javascript.js diff --git a/Website/wwwroot/webfonts b/src/Website/wwwroot/webfonts similarity index 100% rename from Website/wwwroot/webfonts rename to src/Website/wwwroot/webfonts