17 | An unhandled error has occurred.
18 |
Reload
19 |
🗙
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/src/BlazorDeferredRemove.Sample/wwwroot/sample-data/weather.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "date": "2018-05-06",
4 | "temperatureC": 1,
5 | "summary": "Freezing"
6 | },
7 | {
8 | "date": "2018-05-07",
9 | "temperatureC": 14,
10 | "summary": "Bracing"
11 | },
12 | {
13 | "date": "2018-05-08",
14 | "temperatureC": -13,
15 | "summary": "Freezing"
16 | },
17 | {
18 | "date": "2018-05-09",
19 | "temperatureC": -16,
20 | "summary": "Balmy"
21 | },
22 | {
23 | "date": "2018-05-10",
24 | "temperatureC": -2,
25 | "summary": "Chilly"
26 | }
27 | ]
28 |
--------------------------------------------------------------------------------
/src/BlazorDeferredRemove.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio Version 16
4 | VisualStudioVersion = 16.0.29230.61
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorDeferredRemove", "BlazorDeferredRemove\BlazorDeferredRemove.csproj", "{22CE8F54-ED36-470F-8EB1-F4027E07175F}"
7 | EndProject
8 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{00C556FD-0AF9-4ECF-A09E-ADD00374BD26}"
9 | ProjectSection(SolutionItems) = preProject
10 | ..\.gitignore = ..\.gitignore
11 | ..\appveyor.yml = ..\appveyor.yml
12 | ..\azure-pipelines.yml = ..\azure-pipelines.yml
13 | Directory.Build.props = Directory.Build.props
14 | global.json = global.json
15 | ..\README.md = ..\README.md
16 | EndProjectSection
17 | EndProject
18 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlazorDeferredRemove.Sample", "BlazorDeferredRemove.Sample\BlazorDeferredRemove.Sample.csproj", "{1DF81EF7-3DF7-45F4-94D1-82E9EF8B11A5}"
19 | EndProject
20 | Global
21 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
22 | Debug|Any CPU = Debug|Any CPU
23 | Release|Any CPU = Release|Any CPU
24 | EndGlobalSection
25 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
26 | {22CE8F54-ED36-470F-8EB1-F4027E07175F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27 | {22CE8F54-ED36-470F-8EB1-F4027E07175F}.Debug|Any CPU.Build.0 = Debug|Any CPU
28 | {22CE8F54-ED36-470F-8EB1-F4027E07175F}.Release|Any CPU.ActiveCfg = Release|Any CPU
29 | {22CE8F54-ED36-470F-8EB1-F4027E07175F}.Release|Any CPU.Build.0 = Release|Any CPU
30 | {1DF81EF7-3DF7-45F4-94D1-82E9EF8B11A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31 | {1DF81EF7-3DF7-45F4-94D1-82E9EF8B11A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
32 | {1DF81EF7-3DF7-45F4-94D1-82E9EF8B11A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
33 | {1DF81EF7-3DF7-45F4-94D1-82E9EF8B11A5}.Release|Any CPU.Build.0 = Release|Any CPU
34 | EndGlobalSection
35 | GlobalSection(SolutionProperties) = preSolution
36 | HideSolutionNode = FALSE
37 | EndGlobalSection
38 | GlobalSection(ExtensibilityGlobals) = postSolution
39 | SolutionGuid = {DA88AA8D-21D2-4A09-8762-B75BF6DEC1E1}
40 | EndGlobalSection
41 | EndGlobal
42 |
--------------------------------------------------------------------------------
/src/BlazorDeferredRemove/BlazorDeferredRemove.csproj:
--------------------------------------------------------------------------------
1 |