File tree Expand file tree Collapse file tree 3 files changed +21
-9
lines changed
aspnetcore/blazor/common/samples/3.x/BlazorSample Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change 1
- <Router AppAssembly =" typeof(Program).Assembly" />
1
+ <Router AppAssembly =" typeof(Program).Assembly" >
2
+ <NotFoundContent >
3
+ <p >Sorry, there's nothing at this address.</p >
4
+ </NotFoundContent >
5
+ </Router >
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk.Web" >
1
+ <Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
4
<TargetFramework >netstandard2.0</TargetFramework >
5
- <RestoreAdditionalProjectSources >
6
- https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json;
7
- https://dotnet.myget.org/F/blazor-dev/api/v3/index.json;
8
- </RestoreAdditionalProjectSources >
9
5
<LangVersion >7.3</LangVersion >
10
6
<RazorLangVersion >3.0</RazorLangVersion >
11
7
</PropertyGroup >
12
8
13
9
<ItemGroup >
14
- <PackageReference Include =" Microsoft.AspNetCore.Blazor" Version =" 3.0.0-preview4-19216-03 " />
15
- <PackageReference Include =" Microsoft.AspNetCore.Blazor.Build" Version =" 3.0.0-preview4-19216-03 " PrivateAssets =" all" />
16
- <PackageReference Include =" Microsoft.AspNetCore.Blazor.DevServer" Version =" 3.0.0-preview4-19216-03 " PrivateAssets =" all" />
10
+ <PackageReference Include =" Microsoft.AspNetCore.Blazor" Version =" 3.0.0-preview6.19307.2 " />
11
+ <PackageReference Include =" Microsoft.AspNetCore.Blazor.Build" Version =" 3.0.0-preview6.19307.2 " PrivateAssets =" all" />
12
+ <PackageReference Include =" Microsoft.AspNetCore.Blazor.DevServer" Version =" 3.0.0-preview6.19307.2 " PrivateAssets =" all" />
17
13
</ItemGroup >
18
14
19
15
</Project >
Original file line number Diff line number Diff line change 84
84
background-color : rgba (255 , 255 , 255 , 0.1 );
85
85
}
86
86
87
+ .valid .modified : not ([type = checkbox ]) {
88
+ outline : 1px solid # 26b050 ;
89
+ }
90
+
91
+ .invalid {
92
+ outline : 1px solid red;
93
+ }
94
+
95
+ .validation-message {
96
+ color : red;
97
+ }
98
+
87
99
.panel {
88
100
margin-bottom : 20px ;
89
101
border : 1px solid transparent;
You can’t perform that action at this time.
0 commit comments