21 |
22 | An error has occurred. This application may no longer respond until reloaded.
23 |
24 |
25 | An unhandled exception has occurred. See browser dev tools for details.
26 |
27 | Reload
28 | 🗙
29 |
2 |
3 | @Title
4 |
5 |
6 | Please take our
7 | brief survey
8 |
9 | and tell us what you think.
10 |
11 |
12 | @code {
13 | // Demonstrates how a parent component can supply parameters
14 | [Parameter]
15 | public string? Title { get; set; }
16 | }
17 |
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/_Imports.razor:
--------------------------------------------------------------------------------
1 | @using System.Net.Http
2 | @using Microsoft.AspNetCore.Authorization
3 | @using Microsoft.AspNetCore.Components.Authorization
4 | @using Microsoft.AspNetCore.Components.Forms
5 | @using Microsoft.AspNetCore.Components.Routing
6 | @using Microsoft.AspNetCore.Components.Web
7 | @using Microsoft.AspNetCore.Components.Web.Virtualization
8 | @using Microsoft.JSInterop
9 | @using BlazorTransitionableRouteDemoServer
10 | @using BlazorTransitionableRouteDemoServer.Shared
11 |
12 | @using BlazorTransitionableRoute
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "DetailedErrors": true,
3 | "Logging": {
4 | "LogLevel": {
5 | "Default": "Information",
6 | "Microsoft.AspNetCore": "Warning"
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "ConnectionStrings": {
3 | "DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=aspnet-BlazorTransitionableRouteDemoServer-11461F12-7E71-4527-BBC9-42FF794AAA67;Trusted_Connection=True;MultipleActiveResultSets=true"
4 | },
5 | "Logging": {
6 | "LogLevel": {
7 | "Default": "Information",
8 | "Microsoft.AspNetCore": "Warning"
9 | }
10 | },
11 | "AllowedHosts": "*"
12 | }
13 |
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/ICON-LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Waybury
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/App.razor:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | Not found
16 |
17 |
2 |
3 | @Title
4 |
5 |
6 | Please take our
7 | brief survey
8 |
9 | and tell us what you think.
10 |
11 |
12 | @code {
13 | // Demonstrates how a parent component can supply parameters
14 | [Parameter]
15 | public string? Title { get; set; }
16 | }
17 |
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/_Imports.razor:
--------------------------------------------------------------------------------
1 | @using System.Net.Http
2 | @using System.Net.Http.Json
3 | @using Microsoft.AspNetCore.Components.Authorization
4 | @using Microsoft.AspNetCore.Components.Forms
5 | @using Microsoft.AspNetCore.Components.Routing
6 | @using Microsoft.AspNetCore.Components.Web
7 | @using Microsoft.AspNetCore.Components.Web.Virtualization
8 | @using Microsoft.AspNetCore.Components.WebAssembly.Http
9 | @using Microsoft.JSInterop
10 | @using BlazorTransitionableRouteDemoWasm.Client
11 | @using BlazorTransitionableRouteDemoWasm.Client.Shared
12 |
13 | @using BlazorTransitionableRoute
14 |
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/ICON-LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Waybury
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/icon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/icon-192.png
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/icon-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/icon-512.png
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | BlazorTransitionableRouteDemoWasm
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
Loading...
20 |
21 |
22 | An unhandled error has occurred.
23 | Reload
24 | 🗙
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "BlazorTransitionableRouteDemoWasm",
3 | "short_name": "BlazorTransitionableRouteDemoWasm",
4 | "start_url": "./",
5 | "display": "standalone",
6 | "background_color": "#ffffff",
7 | "theme_color": "#03173d",
8 | "prefer_related_applications": false,
9 | "icons": [
10 | {
11 | "src": "icon-512.png",
12 | "type": "image/png",
13 | "sizes": "512x512"
14 | },
15 | {
16 | "src": "icon-192.png",
17 | "type": "image/png",
18 | "sizes": "192x192"
19 | }
20 | ]
21 | }
22 |
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Client/wwwroot/service-worker.js:
--------------------------------------------------------------------------------
1 | // In development, always fetch from the network and do not enable offline support.
2 | // This is because caching would make development more difficult (changes would not
3 | // be reflected on the first load after each change).
4 | self.addEventListener('fetch', () => { });
5 |
--------------------------------------------------------------------------------
/demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoWasm/Server/Areas/Identity/Pages/Shared/_LoginPartial.cshtml:
--------------------------------------------------------------------------------
1 | @using Microsoft.AspNetCore.Identity
2 | @using BlazorTransitionableRouteDemoWasm.Server.Models
3 | @inject SignInManager SignInManager
4 | @inject UserManager UserManager
5 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
6 |
7 | @{
8 | var returnUrl = "/";
9 | if (Context.Request.Query.TryGetValue("returnUrl", out var existingUrl)) {
10 | returnUrl = existingUrl;
11 | }
12 | }
13 |
14 |
9 | Swapping to Development environment will display more detailed information about the error that occurred.
10 |
11 |
12 | The Development environment shouldn't be enabled for deployed applications.
13 | It can result in displaying sensitive information from exceptions to end users.
14 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
15 | and restarting the app.
16 |
27 |
28 | An error has occurred. This application may no longer respond until reloaded.
29 |
30 |
31 | An unhandled exception has occurred. See browser dev tools for details.
32 |
33 | Reload
34 | 🗙
35 |
2 |
3 | @Title
4 |
5 |
6 | Please take our
7 | brief survey
8 |
9 | and tell us what you think.
10 |
11 |
12 | @code {
13 | // Demonstrates how a parent component can supply parameters
14 | [Parameter]
15 | public string Title { get; set; }
16 | }
17 |
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/_Imports.razor:
--------------------------------------------------------------------------------
1 | @using System.Net.Http
2 | @using System.Net.Http.Json
3 | @using Microsoft.AspNetCore.Components.Forms
4 | @using Microsoft.AspNetCore.Components.Routing
5 | @using Microsoft.AspNetCore.Components.Web
6 | @using Microsoft.AspNetCore.Components.WebAssembly.Http
7 | @using Microsoft.JSInterop
8 | @using BlazorTransitionableRouteDemoWasm.Client
9 | @using BlazorTransitionableRouteDemoWasm.Client.Shared
10 |
11 | @using BlazorTransitionableRoute
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/ICON-LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Waybury
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/icon-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/icon-512.png
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v2/BlazorTransitionableRouteDemoWasm/Client/wwwroot/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | BlazorTransitionableRouteDemoWasm
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | Loading...
19 |
20 |
21 | An unhandled error has occurred.
22 | Reload
23 | 🗙
24 |
20 | Swapping to the Development environment displays detailed information about the error that occurred.
21 |
22 |
23 | The Development environment shouldn't be enabled for deployed applications.
24 | It can result in displaying sensitive information from exceptions to end users.
25 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
26 | and restarting the app.
27 |
9 | Swapping to Development environment will display more detailed information about the error that occurred.
10 |
11 |
12 | The Development environment shouldn't be enabled for deployed applications.
13 | It can result in displaying sensitive information from exceptions to end users.
14 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
15 | and restarting the app.
16 |
2 |
3 | @Title
4 |
5 |
6 | Please take our
7 | brief survey
8 |
9 | and tell us what you think.
10 |
11 |
12 | @code {
13 | // Demonstrates how a parent component can supply parameters
14 | [Parameter]
15 | public string Title { get; set; }
16 | }
17 |
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/_Imports.razor:
--------------------------------------------------------------------------------
1 | @using System.Net.Http
2 | @using System.Net.Http.Json
3 | @using Microsoft.AspNetCore.Components.Forms
4 | @using Microsoft.AspNetCore.Components.Routing
5 | @using Microsoft.AspNetCore.Components.Web
6 | @using Microsoft.AspNetCore.Components.WebAssembly.Http
7 | @using Microsoft.JSInterop
8 | @using BlazorTransitionableRouteDemoWasm.Client
9 | @using BlazorTransitionableRouteDemoWasm.Client.Shared
10 |
11 | @using BlazorTransitionableRoute
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/ICON-LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Waybury
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/icon-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JByfordRew/BlazorTransitionableRoute/197f197c422e16e1f14f8fba322368bd57281a6c/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/icon-512.png
--------------------------------------------------------------------------------
/demo/dotnetcore3.1/v3/BlazorTransitionableRouteDemoWasm/Client/wwwroot/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | BlazorTransitionableRouteDemoWasm
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | Loading...
19 |
20 |
21 | An unhandled error has occurred.
22 | Reload
23 | 🗙
24 |
20 | Swapping to the Development environment displays detailed information about the error that occurred.
21 |
22 |
23 | The Development environment shouldn't be enabled for deployed applications.
24 | It can result in displaying sensitive information from exceptions to end users.
25 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
26 | and restarting the app.
27 |