diff --git a/Ticket Office.sln b/Ticket Office.sln index f7b3347..7f43670 100644 --- a/Ticket Office.sln +++ b/Ticket Office.sln @@ -1,6 +1,6 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ticket Office", "Ticket Office\Ticket Office.csproj", "{9ED20EB5-21A4-451A-8DED-C95DFD068D16}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TicketOffice", "TicketOffice\TicketOffice.csproj", "{9ED20EB5-21A4-451A-8DED-C95DFD068D16}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Ticket Office/Pages/Index.cshtml b/Ticket Office/Pages/Index.cshtml deleted file mode 100644 index fd28464..0000000 --- a/Ticket Office/Pages/Index.cshtml +++ /dev/null @@ -1,10 +0,0 @@ -@page -@model IndexModel -@{ - ViewData["Title"] = "Home page"; -} - -
-

Welcome

-

Learn about building Web apps with ASP.NET Core.

-
\ No newline at end of file diff --git a/Ticket Office/Pages/Privacy.cshtml b/Ticket Office/Pages/Privacy.cshtml deleted file mode 100644 index a840fbb..0000000 --- a/Ticket Office/Pages/Privacy.cshtml +++ /dev/null @@ -1,8 +0,0 @@ -@page -@model PrivacyModel -@{ - ViewData["Title"] = "Privacy Policy"; -} -

@ViewData["Title"]

- -

Use this page to detail your site's privacy policy.

\ No newline at end of file diff --git a/Ticket Office/Pages/Privacy.cshtml.cs b/Ticket Office/Pages/Privacy.cshtml.cs deleted file mode 100644 index d6503b0..0000000 --- a/Ticket Office/Pages/Privacy.cshtml.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; - -namespace Ticket_Office.Pages; - -public class PrivacyModel : PageModel -{ - private readonly ILogger _logger; - - public PrivacyModel(ILogger logger) - { - _logger = logger; - } - - public void OnGet() - { - } -} \ No newline at end of file diff --git a/Ticket Office/Pages/_ViewImports.cshtml b/Ticket Office/Pages/_ViewImports.cshtml deleted file mode 100644 index 1ccc52f..0000000 --- a/Ticket Office/Pages/_ViewImports.cshtml +++ /dev/null @@ -1,3 +0,0 @@ -@using Ticket_Office -@namespace Ticket_Office.Pages -@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers \ No newline at end of file diff --git a/Ticket Office/Ticket Office.csproj b/Ticket Office/Ticket Office.csproj deleted file mode 100644 index 01fc371..0000000 --- a/Ticket Office/Ticket Office.csproj +++ /dev/null @@ -1,10 +0,0 @@ - - - - net6.0 - enable - enable - Ticket_Office - - - diff --git a/Ticket Office/appsettings.json b/Ticket Office/appsettings.json deleted file mode 100644 index 10f68b8..0000000 --- a/Ticket Office/appsettings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*" -} diff --git a/Ticket Office/Pages/Error.cshtml b/TicketOffice/Pages/Error.cshtml similarity index 100% rename from Ticket Office/Pages/Error.cshtml rename to TicketOffice/Pages/Error.cshtml diff --git a/Ticket Office/Pages/Error.cshtml.cs b/TicketOffice/Pages/Error.cshtml.cs similarity index 95% rename from Ticket Office/Pages/Error.cshtml.cs rename to TicketOffice/Pages/Error.cshtml.cs index 8d28833..6c7cf07 100644 --- a/Ticket Office/Pages/Error.cshtml.cs +++ b/TicketOffice/Pages/Error.cshtml.cs @@ -2,7 +2,7 @@ using System.Diagnostics; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; -namespace Ticket_Office.Pages; +namespace TicketOffice.Pages; [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] [IgnoreAntiforgeryToken] diff --git a/TicketOffice/Pages/Index.cshtml b/TicketOffice/Pages/Index.cshtml new file mode 100644 index 0000000..72a89fb --- /dev/null +++ b/TicketOffice/Pages/Index.cshtml @@ -0,0 +1,9 @@ +@page +@model IndexModel +@{ + ViewData["Title"] = "Home page"; +} + +
+ +
\ No newline at end of file diff --git a/Ticket Office/Pages/Index.cshtml.cs b/TicketOffice/Pages/Index.cshtml.cs similarity index 65% rename from Ticket Office/Pages/Index.cshtml.cs rename to TicketOffice/Pages/Index.cshtml.cs index 003b009..ea6a2d3 100644 --- a/Ticket Office/Pages/Index.cshtml.cs +++ b/TicketOffice/Pages/Index.cshtml.cs @@ -1,17 +1,15 @@ -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; +using Microsoft.AspNetCore.Mvc.RazorPages; -namespace Ticket_Office.Pages; +namespace TicketOffice.Pages; public class IndexModel : PageModel { private readonly ILogger _logger; - public IndexModel(ILogger logger) { _logger = logger; } - + public void OnGet() { } diff --git a/Ticket Office/Pages/Shared/_Layout.cshtml b/TicketOffice/Pages/Shared/_Layout.cshtml similarity index 83% rename from Ticket Office/Pages/Shared/_Layout.cshtml rename to TicketOffice/Pages/Shared/_Layout.cshtml index 1245a5e..c75010d 100644 --- a/Ticket Office/Pages/Shared/_Layout.cshtml +++ b/TicketOffice/Pages/Shared/_Layout.cshtml @@ -3,7 +3,7 @@ - @ViewData["Title"] - Ticket_Office + @ViewData["Title"] - Ticket Office @@ -12,7 +12,7 @@