Skip to content

Commit 84f11db

Browse files
committed
Change namespace
1 parent 19c3006 commit 84f11db

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

text-counter-razor/Pages/ErrorModel.cshtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace text_counter_razor.Pages
1+
namespace TextCounterRazor.Pages
22
{
33
using System.Diagnostics;
44
using Microsoft.AspNetCore.Mvc;

text-counter-razor/Pages/IndexModel.cshtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace text_counter_razor.Pages
1+
namespace TextCounterRazor.Pages
22
{
33
using Microsoft.AspNetCore.Mvc;
44
using Microsoft.AspNetCore.Mvc.RazorPages;

text-counter-razor/Pages/Shared/_Layout.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>@ViewData["Title"] - text_counter_razor</title>
7+
<title>@ViewData["Title"] - Text Counter in Razor Pages</title>
88
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
99
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
1010
<link rel="stylesheet" href="~/text-counter-razor.styles.css" asp-append-version="true" />
@@ -14,7 +14,7 @@
1414
<header>
1515
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
1616
<div class="container">
17-
<a class="navbar-brand" asp-area="" asp-page="/Index">text_counter_razor</a>
17+
<a class="navbar-brand" asp-area="" asp-page="/Index">TextCounterRazor</a>
1818
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse"
1919
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
2020
<span class="navbar-toggler-icon"></span>
@@ -40,7 +40,7 @@
4040

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

text-counter-razor/Pages/TextCounterModel.cshtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace text_counter_razor.Pages
1+
namespace TextCounterRazor.Pages
22
{
33
using Microsoft.AspNetCore.Mvc;
44
using Microsoft.AspNetCore.Mvc.RazorPages;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
@using text_counter_razor
2-
@namespace text_counter_razor.Pages
1+
@using TextCounterRazor
2+
@namespace TextCounterRazor.Pages
33
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

text-counter-razor/text-counter-razor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<RootNamespace>text_counter_razor</RootNamespace>
7+
<RootNamespace>TextCounterRazor</RootNamespace>
88
</PropertyGroup>
99

1010
</Project>

0 commit comments

Comments
 (0)