Skip to content

Commit

Permalink
Change namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
lulunac27a committed Nov 11, 2024
1 parent 19c3006 commit 84f11db
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion text-counter-razor/Pages/ErrorModel.cshtml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace text_counter_razor.Pages
namespace TextCounterRazor.Pages
{
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
Expand Down
2 changes: 1 addition & 1 deletion text-counter-razor/Pages/IndexModel.cshtml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace text_counter_razor.Pages
namespace TextCounterRazor.Pages
{
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
Expand Down
6 changes: 3 additions & 3 deletions text-counter-razor/Pages/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - text_counter_razor</title>
<title>@ViewData["Title"] - Text Counter in Razor Pages</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/text-counter-razor.styles.css" asp-append-version="true" />
Expand All @@ -14,7 +14,7 @@
<header>
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
<div class="container">
<a class="navbar-brand" asp-area="" asp-page="/Index">text_counter_razor</a>
<a class="navbar-brand" asp-area="" asp-page="/Index">TextCounterRazor</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
Expand All @@ -40,7 +40,7 @@

<footer class="border-top footer text-muted">
<div class="container">
&copy; 2023 - text_counter_razor - <a asp-area="" asp-page="/Privacy">Privacy</a>
&copy; 2023 - Text Counter in Razor Pages - <a asp-area="" asp-page="/Privacy">Privacy</a>
</div>
</footer>

Expand Down
2 changes: 1 addition & 1 deletion text-counter-razor/Pages/TextCounterModel.cshtml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace text_counter_razor.Pages
namespace TextCounterRazor.Pages
{
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
Expand Down
4 changes: 2 additions & 2 deletions text-counter-razor/Pages/_ViewImports.cshtml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@using text_counter_razor
@namespace text_counter_razor.Pages
@using TextCounterRazor
@namespace TextCounterRazor.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
2 changes: 1 addition & 1 deletion text-counter-razor/text-counter-razor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>text_counter_razor</RootNamespace>
<RootNamespace>TextCounterRazor</RootNamespace>
</PropertyGroup>

</Project>

0 comments on commit 84f11db

Please sign in to comment.