diff --git a/.github/workflows/deploy-azure-naming-tool-to-azure-webapps-dotnet-core.yml b/.github/workflows/deploy-azure-naming-tool-to-azure-webapps-dotnet-core.yml
index 8c881cc..12dda2d 100644
--- a/.github/workflows/deploy-azure-naming-tool-to-azure-webapps-dotnet-core.yml
+++ b/.github/workflows/deploy-azure-naming-tool-to-azure-webapps-dotnet-core.yml
@@ -21,7 +21,7 @@ name: Azure Naming Tool - Build and deploy to an Azure Web App
env:
AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
- DOTNET_VERSION: '8.0.x' # set this to the .NET Core version to use
+ DOTNET_VERSION: '7.0.x' # set this to the .NET Core version to use
on:
push:
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 3f4985b..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,9 +0,0 @@
-################################################################################
-# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
-################################################################################
-
-/src/obj
-/src/Properties/PublishProfiles
-/src/Properties/ServiceDependencies/azurenamingtool-dev - Zip Deploy
-/src/.vs
-/src/bin
diff --git a/src/.dockerignore b/src/.dockerignore
index fe1152b..3729ff0 100644
--- a/src/.dockerignore
+++ b/src/.dockerignore
@@ -22,9 +22,4 @@
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
-README.md
-!**/.gitignore
-!.git/HEAD
-!.git/config
-!.git/packed-refs
-!.git/refs/heads/**
\ No newline at end of file
+README.md
\ No newline at end of file
diff --git a/src/.gitattributes b/src/.gitattributes
new file mode 100644
index 0000000..1ff0c42
--- /dev/null
+++ b/src/.gitattributes
@@ -0,0 +1,63 @@
+###############################################################################
+# Set default behavior to automatically normalize line endings.
+###############################################################################
+* text=auto
+
+###############################################################################
+# Set default behavior for command prompt diff.
+#
+# This is need for earlier builds of msysgit that does not have it on by
+# default for csharp files.
+# Note: This is only used by command line
+###############################################################################
+#*.cs diff=csharp
+
+###############################################################################
+# Set the merge driver for project and solution files
+#
+# Merging from the command prompt will add diff markers to the files if there
+# are conflicts (Merging from VS is not affected by the settings below, in VS
+# the diff markers are never inserted). Diff markers may cause the following
+# file extensions to fail to load in VS. An alternative would be to treat
+# these files as binary and thus will always conflict and require user
+# intervention with every merge. To do so, just uncomment the entries below
+###############################################################################
+#*.sln merge=binary
+#*.csproj merge=binary
+#*.vbproj merge=binary
+#*.vcxproj merge=binary
+#*.vcproj merge=binary
+#*.dbproj merge=binary
+#*.fsproj merge=binary
+#*.lsproj merge=binary
+#*.wixproj merge=binary
+#*.modelproj merge=binary
+#*.sqlproj merge=binary
+#*.wwaproj merge=binary
+
+###############################################################################
+# behavior for image files
+#
+# image files are treated as binary by default.
+###############################################################################
+#*.jpg binary
+#*.png binary
+#*.gif binary
+
+###############################################################################
+# diff behavior for common document formats
+#
+# Convert binary document formats to text before diffing them. This feature
+# is only available from the command line. Turn it on by uncommenting the
+# entries below.
+###############################################################################
+#*.doc diff=astextplain
+#*.DOC diff=astextplain
+#*.docx diff=astextplain
+#*.DOCX diff=astextplain
+#*.dot diff=astextplain
+#*.DOT diff=astextplain
+#*.pdf diff=astextplain
+#*.PDF diff=astextplain
+#*.rtf diff=astextplain
+#*.RTF diff=astextplain
diff --git a/src/.gitignore b/src/.gitignore
new file mode 100644
index 0000000..2dde792
--- /dev/null
+++ b/src/.gitignore
@@ -0,0 +1,367 @@
+## Ignore Visual Studio temporary files, build results, and
+## files generated by popular Visual Studio add-ons.
+##
+## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
+
+# User-specific files
+*.rsuser
+*.suo
+*.user
+*.userosscache
+*.sln.docstates
+
+# User-specific files (MonoDevelop/Xamarin Studio)
+*.userprefs
+
+# Mono auto generated files
+mono_crash.*
+
+# Build results
+[Dd]ebug/
+[Dd]ebugPublic/
+[Rr]elease/
+[Rr]eleases/
+x64/
+x86/
+[Ww][Ii][Nn]32/
+[Aa][Rr][Mm]/
+[Aa][Rr][Mm]64/
+bld/
+[Bb]in/
+[Oo]bj/
+[Oo]ut/
+[Ll]og/
+[Ll]ogs/
+
+# Visual Studio 2015/2017 cache/options directory
+.vs/
+# Uncomment if you have tasks that create the project's static files in wwwroot
+#wwwroot/
+
+# Visual Studio 2017 auto generated files
+Generated\ Files/
+
+# MSTest test Results
+[Tt]est[Rr]esult*/
+[Bb]uild[Ll]og.*
+
+# NUnit
+*.VisualState.xml
+TestResult.xml
+nunit-*.xml
+
+# Build Results of an ATL Project
+[Dd]ebugPS/
+[Rr]eleasePS/
+dlldata.c
+
+# Benchmark Results
+BenchmarkDotNet.Artifacts/
+
+# .NET Core
+project.lock.json
+project.fragment.lock.json
+artifacts/
+
+# ASP.NET Scaffolding
+ScaffoldingReadMe.txt
+
+# StyleCop
+StyleCopReport.xml
+
+# Files built by Visual Studio
+*_i.c
+*_p.c
+*_h.h
+*.ilk
+*.meta
+*.obj
+*.iobj
+*.pch
+*.pdb
+*.ipdb
+*.pgc
+*.pgd
+*.rsp
+*.sbr
+*.tlb
+*.tli
+*.tlh
+*.tmp
+*.tmp_proj
+*_wpftmp.csproj
+*.log
+*.vspscc
+*.vssscc
+.builds
+*.pidb
+*.svclog
+*.scc
+
+# Chutzpah Test files
+_Chutzpah*
+
+# Visual C++ cache files
+ipch/
+*.aps
+*.ncb
+*.opendb
+*.opensdf
+*.sdf
+*.cachefile
+*.VC.db
+*.VC.VC.opendb
+
+# Visual Studio profiler
+*.psess
+*.vsp
+*.vspx
+*.sap
+
+# Visual Studio Trace Files
+*.e2e
+
+# TFS 2012 Local Workspace
+$tf/
+
+# Guidance Automation Toolkit
+*.gpState
+
+# ReSharper is a .NET coding add-in
+_ReSharper*/
+*.[Rr]e[Ss]harper
+*.DotSettings.user
+
+# TeamCity is a build add-in
+_TeamCity*
+
+# DotCover is a Code Coverage Tool
+*.dotCover
+
+# AxoCover is a Code Coverage Tool
+.axoCover/*
+!.axoCover/settings.json
+
+# Coverlet is a free, cross platform Code Coverage Tool
+coverage*.json
+coverage*.xml
+coverage*.info
+
+# Visual Studio code coverage results
+*.coverage
+*.coveragexml
+
+# NCrunch
+_NCrunch_*
+.*crunch*.local.xml
+nCrunchTemp_*
+
+# MightyMoose
+*.mm.*
+AutoTest.Net/
+
+# Web workbench (sass)
+.sass-cache/
+
+# Installshield output folder
+[Ee]xpress/
+
+# DocProject is a documentation generator add-in
+DocProject/buildhelp/
+DocProject/Help/*.HxT
+DocProject/Help/*.HxC
+DocProject/Help/*.hhc
+DocProject/Help/*.hhk
+DocProject/Help/*.hhp
+DocProject/Help/Html2
+DocProject/Help/html
+
+# Click-Once directory
+publish/
+
+# Publish Web Output
+*.[Pp]ublish.xml
+*.azurePubxml
+# Note: Comment the next line if you want to checkin your web deploy settings,
+# but database connection strings (with potential passwords) will be unencrypted
+*.pubxml
+*.publishproj
+
+# Microsoft Azure Web App publish settings. Comment the next line if you want to
+# checkin your Azure Web App publish settings, but sensitive information contained
+# in these scripts will be unencrypted
+PublishScripts/
+
+# NuGet Packages
+*.nupkg
+# NuGet Symbol Packages
+*.snupkg
+# The packages folder can be ignored because of Package Restore
+**/[Pp]ackages/*
+# except build/, which is used as an MSBuild target.
+!**/[Pp]ackages/build/
+# Uncomment if necessary however generally it will be regenerated when needed
+#!**/[Pp]ackages/repositories.config
+# NuGet v3's project.json files produces more ignorable files
+*.nuget.props
+*.nuget.targets
+
+# Microsoft Azure Build Output
+csx/
+*.build.csdef
+
+# Microsoft Azure Emulator
+ecf/
+rcf/
+
+# Windows Store app package directories and files
+AppPackages/
+BundleArtifacts/
+Package.StoreAssociation.xml
+_pkginfo.txt
+*.appx
+*.appxbundle
+*.appxupload
+
+# Visual Studio cache files
+# files ending in .cache can be ignored
+*.[Cc]ache
+# but keep track of directories ending in .cache
+!?*.[Cc]ache/
+
+# Others
+ClientBin/
+~$*
+*~
+*.dbmdl
+*.dbproj.schemaview
+*.jfm
+*.pfx
+*.publishsettings
+orleans.codegen.cs
+
+# Including strong name files can present a security risk
+# (https://github.com/github/gitignore/pull/2483#issue-259490424)
+#*.snk
+
+# Since there are multiple workflows, uncomment next line to ignore bower_components
+# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
+#bower_components/
+
+# RIA/Silverlight projects
+Generated_Code/
+
+# Backup & report files from converting an old project file
+# to a newer Visual Studio version. Backup files are not needed,
+# because we have git ;-)
+_UpgradeReport_Files/
+Backup*/
+UpgradeLog*.XML
+UpgradeLog*.htm
+ServiceFabricBackup/
+*.rptproj.bak
+
+# SQL Server files
+*.mdf
+*.ldf
+*.ndf
+
+# Business Intelligence projects
+*.rdl.data
+*.bim.layout
+*.bim_*.settings
+*.rptproj.rsuser
+*- [Bb]ackup.rdl
+*- [Bb]ackup ([0-9]).rdl
+*- [Bb]ackup ([0-9][0-9]).rdl
+
+# Microsoft Fakes
+FakesAssemblies/
+
+# GhostDoc plugin setting file
+*.GhostDoc.xml
+
+# Node.js Tools for Visual Studio
+.ntvs_analysis.dat
+node_modules/
+
+# Visual Studio 6 build log
+*.plg
+
+# Visual Studio 6 workspace options file
+*.opt
+
+# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
+*.vbw
+
+# Visual Studio LightSwitch build output
+**/*.HTMLClient/GeneratedArtifacts
+**/*.DesktopClient/GeneratedArtifacts
+**/*.DesktopClient/ModelManifest.xml
+**/*.Server/GeneratedArtifacts
+**/*.Server/ModelManifest.xml
+_Pvt_Extensions
+
+# Paket dependency manager
+.paket/paket.exe
+paket-files/
+
+# FAKE - F# Make
+.fake/
+
+# CodeRush personal settings
+.cr/personal
+
+# Python Tools for Visual Studio (PTVS)
+__pycache__/
+*.pyc
+
+# Cake - Uncomment if you are using it
+# tools/**
+# !tools/packages.config
+
+# Tabs Studio
+*.tss
+
+# Telerik's JustMock configuration file
+*.jmconfig
+
+# BizTalk build output
+*.btp.cs
+*.btm.cs
+*.odx.cs
+*.xsd.cs
+
+# OpenCover UI analysis results
+OpenCover/
+
+# Azure Stream Analytics local run output
+ASALocalRun/
+
+# MSBuild Binary and Structured Log
+*.binlog
+
+# NVidia Nsight GPU debugger configuration file
+*.nvuser
+
+# MFractors (Xamarin productivity tool) working folder
+.mfractor/
+
+# Local History for Visual Studio
+.localhistory/
+
+# BeatPulse healthcheck temp database
+healthchecksdb
+
+# Backup folder for Package Reference Convert tool in Visual Studio 2017
+MigrationBackup/
+
+# Ionide (cross platform F# VS Code tools) working folder
+.ionide/
+
+# Fody - auto-generated XML schema
+FodyWeavers.xsd
+
+# Settings files
+settings/*
+!settings/blank.txt
\ No newline at end of file
diff --git a/src/App.razor b/src/App.razor
new file mode 100644
index 0000000..344f424
--- /dev/null
+++ b/src/App.razor
@@ -0,0 +1,23 @@
+@using AzureNamingTool.Models;
+
+
+
+
+
+
+
+
+
+ Not found
+
+
+
Whoa, it looks like that page went and r-u-n-n-o-f-t! Try again!
Whoa, it looks like that page doesn't exist! Please check the URL and try again!
-@code {
-
-}
\ No newline at end of file
diff --git a/src/Components/Pages/Error.razor b/src/Components/Pages/Error.razor
deleted file mode 100644
index 576cc2d..0000000
--- a/src/Components/Pages/Error.razor
+++ /dev/null
@@ -1,36 +0,0 @@
-@page "/Error"
-@using System.Diagnostics
-
-Error
-
-
Error.
-
An error occurred while processing your request.
-
-@if (ShowRequestId)
-{
-
- Request ID:@RequestId
-
-}
-
-
Development Mode
-
- Swapping to Development environment will display more detailed information about the error that occurred.
-
-
- The Development environment shouldn't be enabled for deployed applications.
- It can result in displaying sensitive information from exceptions to end users.
- For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
- and restarting the app.
-
-
-@code{
- [CascadingParameter]
- private HttpContext? HttpContext { get; set; }
-
- private string? RequestId { get; set; }
- private bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
-
- protected override void OnInitialized() =>
- RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier;
-}
diff --git a/src/Components/Routes.razor b/src/Components/Routes.razor
deleted file mode 100644
index 074e87d..0000000
--- a/src/Components/Routes.razor
+++ /dev/null
@@ -1,16 +0,0 @@
-@using AzureNamingTool.Models
-
-
-
-
-
-
-
-
-
-
-
-@code {
- [Parameter]
- public IdentityProviderDetails? identityProviderDetails { get; set; }
-}
\ No newline at end of file
diff --git a/src/Dockerfile b/src/Dockerfile
index d2def0b..4663c62 100644
--- a/src/Dockerfile
+++ b/src/Dockerfile
@@ -1,11 +1,11 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
-FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
+FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
-FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
+FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY ["AzureNamingTool.csproj", "."]
RUN dotnet restore "./AzureNamingTool.csproj"
@@ -19,4 +19,4 @@ RUN dotnet publish "AzureNamingTool.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
-ENTRYPOINT ["dotnet", "AzureNamingTool.dll"]
+ENTRYPOINT ["dotnet", "AzureNamingTool.dll"]
\ No newline at end of file
diff --git a/src/Helpers/GeneralHelper.cs b/src/Helpers/GeneralHelper.cs
index 7390756..9e0cbe8 100644
--- a/src/Helpers/GeneralHelper.cs
+++ b/src/Helpers/GeneralHelper.cs
@@ -1,7 +1,7 @@
using AzureNamingTool.Models;
-using AzureNamingTool.Components.Pages;
+using AzureNamingTool.Pages;
using AzureNamingTool.Services;
-using AzureNamingTool.Components;
+using AzureNamingTool.Shared;
using Blazored.Modal;
using Blazored.Modal.Services;
using System;
diff --git a/src/Helpers/ModalHelper.cs b/src/Helpers/ModalHelper.cs
index 3c5215e..bd51e93 100644
--- a/src/Helpers/ModalHelper.cs
+++ b/src/Helpers/ModalHelper.cs
@@ -1,6 +1,6 @@
using AzureNamingTool.Models;
using AzureNamingTool.Services;
-using AzureNamingTool.Components.Modals;
+using AzureNamingTool.Shared.Modals;
using Blazored.Modal;
using Blazored.Modal.Services;
diff --git a/src/Models/ConfigurationData.cs b/src/Models/ConfigurationData.cs
index 72ddc8a..fc3e75d 100644
--- a/src/Models/ConfigurationData.cs
+++ b/src/Models/ConfigurationData.cs
@@ -1,24 +1,24 @@
using AzureNamingTool.Models;
-using AzureNamingTool.Components.Pages;
+using AzureNamingTool.Pages;
using System.Collections.Generic;
namespace AzureNamingTool.Models
{
public class ConfigurationData
{
- public List ResourceComponents { get; set; } = [];
- public List ResourceDelimiters { get; set; } = [];
- public List ResourceEnvironments { get; set; } = [];
- public List ResourceLocations { get; set; } = [];
- public List ResourceOrgs { get; set; } = [];
- public List ResourceProjAppSvcs { get; set; } = [];
- public List ResourceTypes { get; set; } = [];
- public List ResourceUnitDepts { get; set; } = [];
- public List ResourceFunctions { get; set; } = [];
- public List CustomComponents { get; set; } = [];
- public List GeneratedNames { get; set; } = [];
- public List? AdminLogs { get; set; } = [];
- public List AdminUsers { get; set; } = [];
+ public List ResourceComponents { get; set; } = new();
+ public List ResourceDelimiters { get; set; } = new();
+ public List ResourceEnvironments { get; set; } = new();
+ public List ResourceLocations { get; set; } = new();
+ public List ResourceOrgs { get; set; } = new();
+ public List ResourceProjAppSvcs { get; set; } = new();
+ public List ResourceTypes { get; set; } = new();
+ public List ResourceUnitDepts { get; set; } = new();
+ public List ResourceFunctions { get; set; } = new();
+ public List CustomComponents { get; set; } = new();
+ public List GeneratedNames { get; set; } = new();
+ public List? AdminLogs { get; set; } = new();
+ public List AdminUsers { get; set; } = new();
public string? SALTKey { get; set; }
public string? AdminPassword { get; set; }
@@ -31,8 +31,5 @@ public class ConfigurationData
public string? IdentityHeaderName { get; set; }
public string? ResourceTypeEditingAllowed { get; set; } = "False";
public string? AutoIncrementResourceInstance { get; set; } = "False";
- public string? InstructionsEnabled { get; set; } = "True";
- public string? GeneratedNamesLogEnabled { get; set; } = "True";
- public string? LatestNewsEnabled { get; set; } = "False";
}
}
diff --git a/src/Models/SiteConfiguration.cs b/src/Models/SiteConfiguration.cs
index f2d61a8..4344692 100644
--- a/src/Models/SiteConfiguration.cs
+++ b/src/Models/SiteConfiguration.cs
@@ -15,8 +15,5 @@ public class SiteConfiguration
public string? IdentityHeaderName { get; set; }
public string? ResourceTypeEditingAllowed { get; set; } = "False";
public string? AutoIncrementResourceInstance { get; set; } = "False";
- public string? InstructionsEnabled { get; set; } = "True";
- public string? GeneratedNamesLogEnabled { get; set; } = "True";
- public string? LatestNewsEnabled { get; set; } = "False";
}
}
diff --git a/src/Models/StateContainer.cs b/src/Models/StateContainer.cs
index fe7af55..db9c259 100644
--- a/src/Models/StateContainer.cs
+++ b/src/Models/StateContainer.cs
@@ -6,7 +6,7 @@ public class StateContainer
private bool? _admin;
private bool? _password;
private string _apptheme = String.Empty;
- private bool? _latestnewsenabled;
+ private bool? _newsenabled;
public bool _reloadnav;
public bool? _configurationdatasynced;
@@ -74,19 +74,19 @@ public void SetAppTheme(string value)
NotifyStateChanged();
}
- public bool LatestNewsEnabled
+ public bool NewsEnabled
{
- get => _latestnewsenabled ?? true;
+ get => _newsenabled ?? true;
set
{
- _latestnewsenabled = value;
+ _newsenabled = value;
NotifyStateChanged();
}
}
- public void SetLatestNewsEnabled(bool latestnewsenabled)
+ public void SetNewsEnabled(bool newsenabled)
{
- _latestnewsenabled = latestnewsenabled;
+ _newsenabled = newsenabled;
NotifyStateChanged();
}
diff --git a/src/Components/Pages/Admin.razor b/src/Pages/Admin.razor
similarity index 86%
rename from src/Components/Pages/Admin.razor
rename to src/Pages/Admin.razor
index 3b8cae5..c9a89a3 100644
--- a/src/Components/Pages/Admin.razor
+++ b/src/Pages/Admin.razor
@@ -1,12 +1,10 @@
@page "/admin"
-@using AzureNamingTool.Components.Modals
@using AzureNamingTool.Helpers;
@using AzureNamingTool.Models;
@using System.Runtime.Caching;
@using AzureNamingTool.Services;
@using Blazored.Toast.Configuration;
@using Microsoft.AspNetCore.Html
-@using Microsoft.AspNetCore.WebUtilities
@using Microsoft.Extensions.Logging
@using System.Reflection;
@inject IJSRuntime JsRuntime
@@ -415,69 +413,6 @@
-
+ Swapping to the Development environment displays detailed information about the error that occurred.
+
+
+ The Development environment shouldn't be enabled for deployed applications.
+ It can result in displaying sensitive information from exceptions to end users.
+ For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
+ and restarting the app.
+
+
+
+
+
+
diff --git a/src/Pages/Error.cshtml.cs b/src/Pages/Error.cshtml.cs
new file mode 100644
index 0000000..05d7b96
--- /dev/null
+++ b/src/Pages/Error.cshtml.cs
@@ -0,0 +1,27 @@
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.Mvc.RazorPages;
+using System.Diagnostics;
+
+namespace AzureNamingTool.Pages
+{
+ [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
+ [IgnoreAntiforgeryToken]
+ public class ErrorModel : PageModel
+ {
+ public string RequestId { get; set; } = String.Empty;
+
+ public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
+
+ private readonly ILogger _logger;
+
+ public ErrorModel(ILogger logger)
+ {
+ _logger = logger;
+ }
+
+ public void OnGet()
+ {
+ RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Components/Pages/Generate.razor b/src/Pages/Generate.razor
similarity index 99%
rename from src/Components/Pages/Generate.razor
rename to src/Pages/Generate.razor
index 3b85373..6863639 100644
--- a/src/Components/Pages/Generate.razor
+++ b/src/Pages/Generate.razor
@@ -2,9 +2,9 @@
@using AzureNamingTool.Helpers
@using AzureNamingTool.Models
@using AzureNamingTool.Services
-@using AzureNamingTool.Components.Modals;
+@using AzureNamingTool.Shared.Modals;
@using System.Text;
-@using AzureNamingTool.Components.General;
+@using AzureNamingTool.Shared.Components;
@inject ILogger Logger
@inject NavigationManager NavigationManager
@inject StateContainer state
diff --git a/src/Components/Pages/GeneratedNamesLog.razor b/src/Pages/GeneratedNamesLog.razor
similarity index 97%
rename from src/Components/Pages/GeneratedNamesLog.razor
rename to src/Pages/GeneratedNamesLog.razor
index 4c5d115..39ac163 100644
--- a/src/Components/Pages/GeneratedNamesLog.razor
+++ b/src/Pages/GeneratedNamesLog.razor
@@ -199,7 +199,6 @@
public DateTime startdate { get; set; } = DateTime.Today.AddDays(-30);
public DateTime enddate { get; set; } = DateTime.Today;
private string currentuser = String.Empty;
- private SiteConfiguration config = ConfigurationHelper.GetConfigurationData();
protected override async Task OnAfterRenderAsync(bool firstRender)
{
@@ -208,11 +207,6 @@
{
var result = await session.GetAsync("admin");
admin = (bool)result.Value;
- if (!Convert.ToBoolean(config.GeneratedNamesLogEnabled) && !admin)
- {
- toastService.ShowWarning("The Generated Names Log is disabled in the site settings.");
- NavigationManager.NavigateTo("/");
- }
await LoadData();
duplicatenamesallowed = Convert.ToBoolean(ConfigurationHelper.GetAppSetting("DuplicateNamesAllowed"));
StateHasChanged();
@@ -309,7 +303,7 @@
if (confirm)
{
await LogHelper.PurgeGeneratedNames();
- toastService.ShowSuccess("Generated Names Log purged!");
+ toastService.ShowSuccess("Generated Log purged!");
AdminLogService.PostItem(new AdminLogMessage() { Source = currentuser, Title = "INFORMATION", Message = "Generated Names log purged." });
await LoadData();
StateHasChanged();
diff --git a/src/Components/Pages/Index.razor b/src/Pages/Index.razor
similarity index 73%
rename from src/Components/Pages/Index.razor
rename to src/Pages/Index.razor
index 4e33605..1170fb0 100644
--- a/src/Components/Pages/Index.razor
+++ b/src/Pages/Index.razor
@@ -15,28 +15,25 @@
+
- Disclaimer
-
+
Disclaimer
This tool was designed using the best practices in the Azure Cloud Adoption Framework which adheres to a few rules and allows the complete customization of your naming convention. While most of the customizations can be made in your web browser, this tool also includes an API.
- The Instructions page provides documentation for the site pages. Each page of the site contains a documentation link (top right) that will open contextual instructions for the current page.
-
- }
+
Instructions
+
+ The Instructions page provides documentation for the site pages. Each page of the site contains a documentation link (top right) that will open contextual instructions for the current page.
+
Configuration
- The Configuration page provides all the data points that make up your naming convention. There are 8 standard components that may be used to name each Azure resource. The data within each of those components can be completely customized, except for the resource types. For the resource types, only the short name, optional, and excluded values may be updated. A delimiter may be selected to separate each component in your resource names. However, the delimiter will be included in a resource name if that character is allowed. The tool also supports the ability to define custom components. This allows administrators to create new components for the naming convention. Your configuration may be exported under the Global Configuration header. We recommend doing that after defining your naming convention as a backup. @*Lastly, use the Policy export feature to create an Azure Policy Definition. That can be applied to your Azure environment to enforce your naming convention.*@
+ The Configuration page provides all the data points that make up your naming convention. There are 8 standard components that may be used to name each Azure resource. The data within each of those components can be completely customized, except for the resource types. For the resource types, only the short name, optional, and excluded values may be updated. A delimiter may be selected to separate each component in your resource names. However, the delimiter will be included in a resource name if that character is allowed. The tool also supports the ability to define custom components. This allows administratos to create new components for the naming convention. Your configuration may be exported under the Global Configuration header. We recommend doing that after defining your naming convention as a backup. @*Lastly, use the Policy export feature to create an Azure Policy Definition. That can be applied to your Azure environment to enforce your naming convention.*@
Reference
@@ -47,21 +44,15 @@
The Generate page provides a drop-down menu to select an Azure resource type. Once a resource is selected, the naming component options are provided. Read-only components cannot be changed, like the value for a resource type. Optional components, if unselected, will be null and not shown in the output. Required components do not allow a null value and will require a selection from the menu.
- The Generated Names Log contains a record of all names generated in the Azure Naming Tool. This includes the date, user, generated name, resource type, and components selected. This log can be exported to a .csv file.
-
+ The Generated Names Log contains a record of all names generated in the Azure Naming Tool. This includes the date, user, generated name, resource type, and components selected. This log can be exported to a .csv file.
+
+
+
+
@code {
@@ -70,7 +61,6 @@
[CascadingParameter]
public IModalService? Modal { get; set; }
private bool admin;
- private SiteConfiguration config = ConfigurationHelper.GetConfigurationData();
private string appversion = ConfigurationHelper.GetAssemblyVersion();
private string updateurl = "https://github.com/mspnp/AzureNamingTool/wiki/Updating";
@@ -78,11 +68,7 @@
protected override async Task OnAfterRenderAsync(bool firstRender)
{
var resultAdmin = await session.GetAsync("admin");
- if (admin != (bool)resultAdmin.Value)
- {
- admin = (bool)resultAdmin.Value;
- StateHasChanged();
- }
+ admin = (bool)resultAdmin.Value;
// Determine if the version notification has been dismissed
var resultNotification = await session.GetAsync("versionnotification");
bool notificationshown = resultNotification.Success ? resultNotification.Value : false;
diff --git a/src/Components/Pages/Instructions.razor b/src/Pages/Instructions.razor
similarity index 83%
rename from src/Components/Pages/Instructions.razor
rename to src/Pages/Instructions.razor
index 955b116..658cd7e 100644
--- a/src/Components/Pages/Instructions.razor
+++ b/src/Pages/Instructions.razor
@@ -1,12 +1,10 @@
@page "/instructions"
-@using AzureNamingTool.Components.Instructions
@using AzureNamingTool.Helpers
@using AzureNamingTool.Models
-@using AzureNamingTool.Components.General
+@using AzureNamingTool.Shared.Components
+@using AzureNamingTool.Shared.Instructions
@inject StateContainer state
@inject ProtectedSessionStorage session
-@inject IToastService toastService
-@inject NavigationManager NavigationManager
@@ -91,8 +89,8 @@
@code {
[CascadingParameter]
protected ThemeInfo? theme { get; set; }
+
private bool admin = false;
- private SiteConfiguration config = ConfigurationHelper.GetConfigurationData();
protected override async Task OnAfterRenderAsync(bool firstRender)
{
@@ -100,11 +98,6 @@
{
var result = await session.GetAsync("admin");
admin = (bool)result.Value;
- if (!Convert.ToBoolean(config.InstructionsEnabled) && !admin)
- {
- toastService.ShowWarning("The Instructions page is disabled in the site settings.");
- NavigationManager.NavigateTo("/");
- }
StateHasChanged();
}
}
diff --git a/src/Components/Pages/Reference.razor b/src/Pages/Reference.razor
similarity index 100%
rename from src/Components/Pages/Reference.razor
rename to src/Pages/Reference.razor
diff --git a/src/Components/App.razor b/src/Pages/_Host.cshtml
similarity index 56%
rename from src/Components/App.razor
rename to src/Pages/_Host.cshtml
index f241777..6787bee 100644
--- a/src/Components/App.razor
+++ b/src/Pages/_Host.cshtml
@@ -1,25 +1,27 @@
-@using AzureNamingTool.Helpers
-@using AzureNamingTool.Models
+@page "/"
+@namespace AzureNamingTool.Pages
+@using AzureNamingTool.Helpers;
+@using AzureNamingTool.Models;
@inject StateContainer state
-@inject IHttpContextAccessor httpContextAccessor;
+@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
- //Layout = "_Layout";
+ Layout = "_Layout";
// Verify the site configration files are present
ConfigurationHelper.VerifyConfiguration(state);
ConfigurationHelper.VerifySecurity(state);
var identityProviderDetails = new IdentityProviderDetails();
- //Check if there is an HttpContext object
- if (GeneralHelper.IsNotNull(httpContextAccessor))
+ // Check if there is an HttpContext object
+ if (GeneralHelper.IsNotNull(this.HttpContext))
{
- if (GeneralHelper.IsNotNull(httpContextAccessor.HttpContext!.Request.Headers))
+ if (GeneralHelper.IsNotNull(this.HttpContext.Request.Headers))
{
// Get the Identity provider, if using Azure App Service Authentication
- if (httpContextAccessor.HttpContext.Request.Headers.ContainsKey("X-MS-CLIENT-PRINCIPAL-IDP"))
+ if (this.HttpContext.Request.Headers.ContainsKey("X-MS-CLIENT-PRINCIPAL-IDP"))
{
// Set the identity provider
- identityProviderDetails.CurrentIdentityProvider = httpContextAccessor.HttpContext.Request.Headers["X-MS-CLIENT-PRINCIPAL-IDP"]!;
+ identityProviderDetails.CurrentIdentityProvider = this.HttpContext.Request.Headers["X-MS-CLIENT-PRINCIPAL-IDP"]!;
}
}
@@ -28,16 +30,16 @@
{
string headername = ConfigurationHelper.GetAppSetting("IdentityHeaderName", true);
// Check if the IdentityHeaderName header is present
- if (GeneralHelper.IsNotNull(httpContextAccessor.HttpContext))
+ if(GeneralHelper.IsNotNull(this.HttpContext))
{
- if (GeneralHelper.IsNotNull(httpContextAccessor.HttpContext.Request))
+ if(GeneralHelper.IsNotNull(this.HttpContext.Request))
{
- if (GeneralHelper.IsNotNull(httpContextAccessor.HttpContext.Request.Headers))
+ if (GeneralHelper.IsNotNull(this.HttpContext.Request.Headers))
{
- if (httpContextAccessor.HttpContext.Request.Headers.ContainsKey(headername))
+ if (this.HttpContext.Request.Headers.ContainsKey(headername))
{
// Set the current user
- identityProviderDetails.CurrentUser = httpContextAccessor.HttpContext.Request.Headers[headername]!;
+ identityProviderDetails.CurrentUser = this.HttpContext.Request.Headers[headername]!;
}
}
}
@@ -45,27 +47,11 @@
}
}
}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Pages/_Layout.cshtml b/src/Pages/_Layout.cshtml
new file mode 100644
index 0000000..011b2c9
--- /dev/null
+++ b/src/Pages/_Layout.cshtml
@@ -0,0 +1,44 @@
+@using AzureNamingTool.Models;
+@using Microsoft.AspNetCore.Components.Web
+@using AzureNamingTool.Helpers
+@inject StateContainer state
+@namespace AzureNamingTool.Pages
+@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @RenderBody()
+
+
+
+ An error has occurred. This application may no longer respond until reloaded.
+
+
+ An unhandled exception has occurred. See browser dev tools for details.
+
+ Reload
+ 🗙
+
+
+
+
+
+
+
diff --git a/src/Program.cs b/src/Program.cs
index 1cbfff2..dff7840 100644
--- a/src/Program.cs
+++ b/src/Program.cs
@@ -1,30 +1,26 @@
using AzureNamingTool.Attributes;
-using AzureNamingTool.Components;
-using AzureNamingTool.Helpers;
-using AzureNamingTool.Models;
using BlazorDownloadFile;
-using Blazored.Modal;
using Blazored.Toast;
using Microsoft.OpenApi.Models;
+using Blazored.Modal;
using System.Reflection;
+using AzureNamingTool.Models;
+using AzureNamingTool.Helpers;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
-builder.Services.AddRazorComponents()
- .AddInteractiveServerComponents().AddHubOptions(options =>
- {
- options.ClientTimeoutInterval = TimeSpan.FromSeconds(30);
- options.EnableDetailedErrors = false;
- options.HandshakeTimeout = TimeSpan.FromSeconds(15);
- options.KeepAliveInterval = TimeSpan.FromSeconds(15);
- options.MaximumParallelInvocationsPerClient = 1;
- options.MaximumReceiveMessageSize = 102400000;
- options.StreamBufferCapacity = 10;
- });
-
-
+builder.Services.AddMvcCore().AddApiExplorer();
+builder.Services.AddRazorPages();
builder.Services.AddHealthChecks();
+if (builder.Environment.IsDevelopment())
+{
+ builder.Services.AddServerSideBlazor().AddCircuitOptions(x => x.DetailedErrors = true).AddHubOptions(x => x.MaximumReceiveMessageSize = 102400000);
+}
+else
+{
+ builder.Services.AddServerSideBlazor().AddHubOptions(x => x.MaximumReceiveMessageSize = 102400000);
+}
builder.Services.AddBlazorDownloadFile();
builder.Services.AddBlazoredToast();
builder.Services.AddBlazoredModal();
@@ -32,7 +28,6 @@
builder.Services.AddSingleton();
-builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen(c =>
{
c.OperationFilter();
@@ -47,23 +42,36 @@
c.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, xmlFilename));
});
-// Add services to the container.
-//builder.Services.AddMvcCore().AddApiExplorer();
-builder.Services.AddBlazorDownloadFile();
-builder.Services.AddBlazoredToast();
-builder.Services.AddBlazoredModal();
-builder.Services.AddMemoryCache();
-builder.Services.AddMvcCore().AddApiExplorer();
+builder.Services.AddCors(options =>
+{
+ options.AddDefaultPolicy(
+ builder =>
+ {
+ builder.WithOrigins("http://localhost:44332")
+ .AllowAnyHeader()
+ .AllowAnyMethod();
+ });
+});
+builder.Services.AddMemoryCache();
var app = builder.Build();
app.MapHealthChecks("/healthcheck/ping");
// Configure the HTTP request pipeline.
-if (!app.Environment.IsDevelopment())
+if (app.Environment.IsDevelopment())
{
- app.UseExceptionHandler("/Error", createScopeForErrors: true);
- // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
+ app.UseDeveloperExceptionPage();
+ app.UseCors(x => x
+ .AllowAnyMethod()
+ .AllowAnyHeader()
+ .SetIsOriginAllowed(origin => true) // allow any origin
+ .AllowCredentials()); // allow credentials
+}
+else
+{
+ app.UseExceptionHandler("/Error");
+ // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
@@ -73,12 +81,14 @@
app.UseHttpsRedirection();
app.UseStaticFiles();
-app.UseAntiforgery();
-app.MapRazorComponents()
- .AddInteractiveServerRenderMode();
+app.UseRouting();
-app.UseStatusCodePagesWithRedirects("/404");
+//app.UseAuthentication();
+//app.UseAuthorization();
app.MapControllers();
+app.MapBlazorHub();
+app.MapFallbackToPage("/_Host");
+
app.Run();
diff --git a/src/Properties/launchSettings.json b/src/Properties/launchSettings.json
index 10bb4cb..a22b73c 100644
--- a/src/Properties/launchSettings.json
+++ b/src/Properties/launchSettings.json
@@ -1,49 +1,19 @@
{
"profiles": {
- "http": {
+ "AzureNamingTool": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
- "dotnetRunMessages": true,
- "applicationUrl": "http://localhost:5222"
- },
- "https": {
- "commandName": "Project",
- "launchBrowser": true,
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- },
- "dotnetRunMessages": true,
- "applicationUrl": "https://localhost:7184;http://localhost:5222"
- },
- "IIS Express": {
- "commandName": "IISExpress",
- "launchBrowser": true,
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
+ "applicationUrl": "https://localhost:51656;http://localhost:51657"
},
"Docker": {
"commandName": "Docker",
"launchBrowser": true,
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
- "environmentVariables": {
- "ASPNETCORE_HTTPS_PORTS": "8081",
- "ASPNETCORE_HTTP_PORTS": "8080"
- },
"publishAllPorts": true,
"useSSL": true
}
- },
- "$schema": "http://json.schemastore.org/launchsettings.json",
- "iisSettings": {
- "windowsAuthentication": false,
- "anonymousAuthentication": true,
- "iisExpress": {
- "applicationUrl": "http://localhost:60381",
- "sslPort": 44346
- }
}
}
\ No newline at end of file
diff --git a/src/Services/AdminLogService.cs b/src/Services/AdminLogService.cs
index 629db9a..cc3f985 100644
--- a/src/Services/AdminLogService.cs
+++ b/src/Services/AdminLogService.cs
@@ -1,6 +1,6 @@
using AzureNamingTool.Helpers;
using AzureNamingTool.Models;
-using AzureNamingTool.Components.Pages;
+using AzureNamingTool.Pages;
using System.Text.Json;
namespace AzureNamingTool.Services
diff --git a/src/Services/ImportExportService.cs b/src/Services/ImportExportService.cs
index 6fb6c03..5a634d9 100644
--- a/src/Services/ImportExportService.cs
+++ b/src/Services/ImportExportService.cs
@@ -110,9 +110,6 @@ public static async Task ExportConfig(bool includeadmin = false
configdata.GenerationWebhook = config.GenerationWebhook;
configdata.ResourceTypeEditingAllowed = config.ResourceTypeEditingAllowed;
configdata.AutoIncrementResourceInstance = config.AutoIncrementResourceInstance;
- configdata.InstructionsEnabled = config.InstructionsEnabled;
- configdata.GeneratedNamesLogEnabled = config.GeneratedNamesLogEnabled;
- configdata.LatestNewsEnabled = config.LatestNewsEnabled;
// Get the security settings
if (includeadmin)
@@ -203,18 +200,6 @@ public static async Task PostConfig(ConfigurationData configdat
{
config.AutoIncrementResourceInstance = configdata.AutoIncrementResourceInstance;
}
- if (GeneralHelper.IsNotNull(configdata.InstructionsEnabled))
- {
- config.InstructionsEnabled = configdata.InstructionsEnabled;
- }
- if (GeneralHelper.IsNotNull(configdata.GeneratedNamesLogEnabled))
- {
- config.GeneratedNamesLogEnabled = configdata.GeneratedNamesLogEnabled;
- }
- if (GeneralHelper.IsNotNull(configdata.LatestNewsEnabled))
- {
- config.LatestNewsEnabled = configdata.LatestNewsEnabled;
- }
var jsonWriteOptions = new JsonSerializerOptions()
{
WriteIndented = true
diff --git a/src/Services/ResourceNamingRequestService.cs b/src/Services/ResourceNamingRequestService.cs
index 8484438..6223b89 100644
--- a/src/Services/ResourceNamingRequestService.cs
+++ b/src/Services/ResourceNamingRequestService.cs
@@ -786,33 +786,31 @@ public static async Task RequestName(ResourceNameRequest r
// Check if the request contains Resource Instance is a selected componoent
if (!String.IsNullOrEmpty(GeneralHelper.GetPropertyValue(request, "ResourceInstance")?.ToString()))
{
- // Check if the name should be auto-incremented
+ // CHeck if the name should be auto-incremented
if (Convert.ToBoolean(ConfigurationHelper.GetAppSetting("AutoIncrementResourceInstance")))
{
// Check if there was a ResourceInstance value supplied
if (GeneralHelper.IsNotNull(GeneralHelper.GetPropertyValue(request, "ResourceInstance")))
{
// Attempt to auto-increement the instance
- // Set the original name value
- string originalname = name;
// Get the instance value
string originalinstance = GeneralHelper.GetPropertyValue(request, "ResourceInstance")?.ToString() ?? "";
- // Determine the next instance value
- string newinstance = String.Empty;
- int i = 1;
- while (await ConfigurationHelper.CheckIfGeneratedNameExists(name))
+ // Increase the instance by 1
+ string newinstance = (Convert.ToInt32(originalinstance) + 1).ToString();
+ // Make sure the instance pattern matches the entered values (leading zeros)
+ while (newinstance.Length < originalinstance.Length)
{
- newinstance = (Convert.ToInt32(originalinstance) + i).ToString();
- // Make sure the instance pattern matches the entered values (leading zeros)
- while (newinstance.Length < originalinstance.Length)
- {
- newinstance = "0" + newinstance;
- }
- // Replace the new instance in the original name
- name = originalname.Replace(originalinstance, newinstance);
- // Increase the counter
- i += 1;
+ newinstance = "0" + newinstance;
+ }
+ // Update the generated name with the new instance
+ string newname = name.Replace(originalinstance, newinstance);
+ // Check to make sure the new name is unique
+ while (await ConfigurationHelper.CheckIfGeneratedNameExists(newname))
+ {
+ newinstance = (Convert.ToInt32(newinstance) + 1).ToString();
+ newname = name.Replace(originalinstance, newinstance);
}
+ name = newname;
sbMessage.Append("The resource instance has been auto-incremented to the next value.");
sbMessage.Append(Environment.NewLine);
}
diff --git a/src/Components/General/AnchorNavigation.razor b/src/Shared/Components/AnchorNavigation.razor
similarity index 100%
rename from src/Components/General/AnchorNavigation.razor
rename to src/Shared/Components/AnchorNavigation.razor
diff --git a/src/Components/General/ExternalContent.razor b/src/Shared/Components/ExternalContent.razor
similarity index 100%
rename from src/Components/General/ExternalContent.razor
rename to src/Shared/Components/ExternalContent.razor
diff --git a/src/Components/General/LatestNews.razor b/src/Shared/Components/LatestNews.razor
similarity index 100%
rename from src/Components/General/LatestNews.razor
rename to src/Shared/Components/LatestNews.razor
diff --git a/src/Components/General/NavMenu.razor b/src/Shared/Components/NavMenu.razor
similarity index 92%
rename from src/Components/General/NavMenu.razor
rename to src/Shared/Components/NavMenu.razor
index 5da4ba1..be81f06 100644
--- a/src/Components/General/NavMenu.razor
+++ b/src/Shared/Components/NavMenu.razor
@@ -127,7 +127,7 @@
- If enabled, the Instructions page will be enabled and listed in the navigation menu for non-admin users. This setting does not apply to admin users.
-
-
-
- Generated Named Log
-
- If enabled, the Generated Name Log page will be enabled and listed in the navigation menu for non-admin users. This setting does not apply to admin users.
-
-
-
- Latest News
-
- If enabled, the Latest News component will be displayed in the navigation menu. This setting will apply to all users.
-
-
Connectivity Check
diff --git a/src/Components/Instructions/AdminLogInstructions.razor b/src/Shared/Instructions/AdminLogInstructions.razor
similarity index 100%
rename from src/Components/Instructions/AdminLogInstructions.razor
rename to src/Shared/Instructions/AdminLogInstructions.razor
diff --git a/src/Components/Instructions/AdminPasswordInstructions.razor b/src/Shared/Instructions/AdminPasswordInstructions.razor
similarity index 100%
rename from src/Components/Instructions/AdminPasswordInstructions.razor
rename to src/Shared/Instructions/AdminPasswordInstructions.razor
diff --git a/src/Components/Instructions/ConfigurationInstructions.razor b/src/Shared/Instructions/ConfigurationInstructions.razor
similarity index 100%
rename from src/Components/Instructions/ConfigurationInstructions.razor
rename to src/Shared/Instructions/ConfigurationInstructions.razor
diff --git a/src/Components/Instructions/GenerateInstructions.razor b/src/Shared/Instructions/GenerateInstructions.razor
similarity index 100%
rename from src/Components/Instructions/GenerateInstructions.razor
rename to src/Shared/Instructions/GenerateInstructions.razor
diff --git a/src/Components/Instructions/GeneratedNamesLogInstructions.razor b/src/Shared/Instructions/GeneratedNamesLogInstructions.razor
similarity index 100%
rename from src/Components/Instructions/GeneratedNamesLogInstructions.razor
rename to src/Shared/Instructions/GeneratedNamesLogInstructions.razor
diff --git a/src/Components/Instructions/ReferenceInstructions.razor b/src/Shared/Instructions/ReferenceInstructions.razor
similarity index 100%
rename from src/Components/Instructions/ReferenceInstructions.razor
rename to src/Shared/Instructions/ReferenceInstructions.razor
diff --git a/src/Components/Layout/MainLayout.razor b/src/Shared/MainLayout.razor
similarity index 96%
rename from src/Components/Layout/MainLayout.razor
rename to src/Shared/MainLayout.razor
index ef6cb2d..445a4fa 100644
--- a/src/Components/Layout/MainLayout.razor
+++ b/src/Shared/MainLayout.razor
@@ -1,7 +1,7 @@
-@using AzureNamingTool.Components.Modals
-@using AzureNamingTool.Helpers
+@using AzureNamingTool.Helpers
@using AzureNamingTool.Models
-@using Blazored.Toast.Configuration
+@using AzureNamingTool.Shared.Components
+@using AzureNamingTool.Shared.Modals;
@inherits LayoutComponentBase
@implements IDisposable
@inject StateContainer state
@@ -10,6 +10,7 @@
@inject ILogger Logger
@inject NavigationManager NavigationManager
@using AzureNamingTool.Services;
+@using Blazored.Toast.Configuration
@using System.Security.Claims;
@inject ProtectedLocalStorage storage
@inject ProtectedSessionStorage session
@@ -18,7 +19,7 @@
Azure Naming Tool