|
54 | 54 | {
|
55 | 55 | "condition": "(!UseWebAssembly)",
|
56 | 56 | "exclude": [
|
57 |
| - "BlazorWeb-CSharp/wwwroot/appsettings.Development.json", |
58 |
| - "BlazorWeb-CSharp/wwwroot/appsettings.json", |
59 | 57 | "BlazorWeb-CSharp.Client/**",
|
60 | 58 | "*.sln"
|
61 | 59 | ],
|
|
67 | 65 | "condition": "(UseWebAssembly && InteractiveAtRoot)",
|
68 | 66 | "rename": {
|
69 | 67 | "BlazorWeb-CSharp/Components/Layout/": "./BlazorWeb-CSharp.Client/Layout/",
|
70 |
| - "BlazorWeb-CSharp/Components/Pages/": "./BlazorWeb-CSharp.Client/Pages/", |
| 68 | + "BlazorWeb-CSharp/Components/Pages/Home.razor": "./BlazorWeb-CSharp.Client/Pages/Home.razor", |
| 69 | + "BlazorWeb-CSharp/Components/Pages/Weather.razor": "./BlazorWeb-CSharp.Client/Pages/Weather.razor", |
71 | 70 | "BlazorWeb-CSharp/Components/Routes.razor": "./BlazorWeb-CSharp.Client/Routes.razor"
|
72 | 71 | }
|
73 | 72 | },
|
|
101 | 100 | {
|
102 | 101 | "condition": "(!SampleContent)",
|
103 | 102 | "exclude": [
|
| 103 | + "BlazorWeb-CSharp/Components/Pages/Auth.*", |
104 | 104 | "BlazorWeb-CSharp/Components/Pages/Counter.*",
|
105 | 105 | "BlazorWeb-CSharp/Components/Pages/Weather.*",
|
106 | 106 | "BlazorWeb-CSharp/Components/Layout/NavMenu.*",
|
|
113 | 113 | {
|
114 | 114 | "condition": "(!IndividualLocalAuth)",
|
115 | 115 | "exclude": [
|
116 |
| - "BlazorWeb-CSharp/Components/Identity/**", |
117 |
| - "BlazorWeb-CSharp/Components/Layout/ManageLayout.razor", |
118 |
| - "BlazorWeb-CSharp/Components/Layout/ManageNavMenu.razor", |
119 |
| - "BlazorWeb-CSharp/Components/Pages/Account/**", |
| 116 | + "BlazorWeb-CSharp/Components/Account/**", |
120 | 117 | "BlazorWeb-CSharp/Data/**",
|
121 |
| - "BlazorWeb-CSharp/Identity/**", |
122 | 118 | "BlazorWeb-CSharp.Client/PersistentAuthenticationStateProvider.cs",
|
123 | 119 | "BlazorWeb-CSharp.Client/UserInfo.cs",
|
124 | 120 | "BlazorWeb-CSharp.Client/Pages/Auth.razor"
|
|
127 | 123 | {
|
128 | 124 | "condition": "(!(IndividualLocalAuth && !UseLocalDB))",
|
129 | 125 | "exclude": [
|
130 |
| - "BlazorWeb-CSharp/app.db" |
| 126 | + "BlazorWeb-CSharp/Data/app.db" |
131 | 127 | ]
|
132 | 128 | },
|
133 | 129 | {
|
|
139 | 135 | {
|
140 | 136 | "condition": "(!(IndividualLocalAuth && UseServer && UseWebAssembly))",
|
141 | 137 | "exclude": [
|
142 |
| - "BlazorWeb-CSharp/Identity/PersistingRevalidatingAuthenticationStateProvider.cs" |
| 138 | + "BlazorWeb-CSharp/Components/Account/PersistingRevalidatingAuthenticationStateProvider.cs" |
143 | 139 | ]
|
144 | 140 | },
|
145 | 141 | {
|
146 | 142 | "condition": "(!(IndividualLocalAuth && UseServer && !UseWebAssembly))",
|
147 | 143 | "exclude": [
|
148 |
| - "BlazorWeb-CSharp/Identity/IdentityRevalidatingAuthenticationStateProvider.cs" |
| 144 | + "BlazorWeb-CSharp/Components/Account/IdentityRevalidatingAuthenticationStateProvider.cs" |
149 | 145 | ]
|
150 | 146 | },
|
151 | 147 | {
|
152 | 148 | "condition": "(!(IndividualLocalAuth && !UseServer && UseWebAssembly))",
|
153 | 149 | "exclude": [
|
154 |
| - "BlazorWeb-CSharp/Identity/PersistingServerAuthenticationStateProvider.cs" |
| 150 | + "BlazorWeb-CSharp/Components/Account/PersistingServerAuthenticationStateProvider.cs" |
155 | 151 | ]
|
156 | 152 | },
|
157 | 153 | {
|
|
189 | 185 | "exclude": [
|
190 | 186 | "BlazorWeb-CSharp/Data/SqlServer/**"
|
191 | 187 | ]
|
| 188 | + }, |
| 189 | + { |
| 190 | + "condition": "(IndividualLocalAuth && UseWebAssembly)", |
| 191 | + "rename": { |
| 192 | + "BlazorWeb-CSharp/Components/Account/Shared/RedirectToLogin.razor": "BlazorWeb-CSharp.Client/RedirectToLogin.razor" |
| 193 | + } |
192 | 194 | }
|
193 | 195 | ]
|
194 | 196 | }
|
|
250 | 252 | "sourceVariableName": "kestrelHttpPort",
|
251 | 253 | "fallbackVariableName": "kestrelHttpPortGenerated"
|
252 | 254 | },
|
253 |
| - "replaces": "5000" |
| 255 | + "replaces": "5500" |
254 | 256 | },
|
255 | 257 | "kestrelHttpsPort": {
|
256 | 258 | "type": "parameter",
|
|
272 | 274 | "sourceVariableName": "kestrelHttpsPort",
|
273 | 275 | "fallbackVariableName": "kestrelHttpsPortGenerated"
|
274 | 276 | },
|
275 |
| - "replaces": "5001" |
| 277 | + "replaces": "5501" |
276 | 278 | },
|
277 | 279 | "iisHttpPort": {
|
278 | 280 | "type": "parameter",
|
|
349 | 351 | "defaultValue": "InteractivePerPage",
|
350 | 352 | "displayName": "_Interactivity location",
|
351 | 353 | "description": "Chooses which components will have interactive rendering enabled",
|
352 |
| - "isEnabled": "(InteractivityPlatform != \"None\" && auth == \"None\")", |
| 354 | + "isEnabled": "(InteractivityPlatform != \"None\")", |
353 | 355 | "choices": [
|
354 | 356 | {
|
355 | 357 | "choice": "InteractivePerPage",
|
|
413 | 415 | "AllInteractive": {
|
414 | 416 | "type": "parameter",
|
415 | 417 | "datatype": "bool",
|
416 |
| - "isEnabled": "(InteractivityPlatform != \"None\" && auth == \"None\")", |
| 418 | + "isEnabled": "(InteractivityPlatform != \"None\")", |
417 | 419 | "defaultValue": "false",
|
418 | 420 | "displayName": "_Enable interactive rendering globally throughout the site",
|
419 | 421 | "description": "Configures whether to make every page interactive by applying an interactive render mode at the top level. If false, pages will use static server rendering by default, and can be marked interactive on a per-page or per-component basis."
|
|
0 commit comments