-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ace7d69
commit 9d102f1
Showing
289 changed files
with
654,315 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.4.33103.184 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TelerikBlazorServerAdmin", "TelerikBlazorServerAdmin\TelerikBlazorServerAdmin.csproj", "{5E27769C-0C62-4798-A08E-1D87964CCD09}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{5E27769C-0C62-4798-A08E-1D87964CCD09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{5E27769C-0C62-4798-A08E-1D87964CCD09}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{5E27769C-0C62-4798-A08E-1D87964CCD09}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{5E27769C-0C62-4798-A08E-1D87964CCD09}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {5B31FD59-784D-4927-AAA8-81FEE269DF48} | ||
EndGlobalSection | ||
EndGlobal |
12 changes: 12 additions & 0 deletions
12
common/legacy-project-templates/TelerikBlazorServerAdmin/TelerikBlazorServerAdmin/App.razor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<CascadingAuthenticationState> | ||
<Router AppAssembly="@typeof(Program).Assembly"> | ||
<Found Context="routeData"> | ||
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" /> | ||
</Found> | ||
<NotFound> | ||
<LayoutView Layout="@typeof(MainLayout)"> | ||
<p>Sorry, there's nothing at this address.</p> | ||
</LayoutView> | ||
</NotFound> | ||
</Router> | ||
</CascadingAuthenticationState> |
Oops, something went wrong.