You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `{ASSEMBLY NAME}` placeholder is the project's assembly name.
80
+
The `{PACKAGE ID/ASSEMBLY NAME}` placeholder is the project's package ID (`<PackageId>` in the project file) for a library or assembly name for an app.
81
81
82
82
:::moniker range="< aspnetcore-8.0"
83
83
@@ -95,7 +95,7 @@ Within the bundled file, each component is associated with a scope identifier. F
95
95
<h1b-3xxtam6d07>
96
96
```
97
97
98
-
The `{ASSEMBLY NAME}.styles.css` file uses the scope identifier to group a style declaration with its component. The following example provides the style for the preceding `<h1>` element:
98
+
The `{PACKAGE ID/ASSEMBLY NAME}.styles.css` file uses the scope identifier to group a style declaration with its component. The following example provides the style for the preceding `<h1>` element:
99
99
100
100
```css
101
101
/* /Components/Pages/Counter.razor.rz.scp.css */
@@ -104,11 +104,11 @@ h1[b-3xxtam6d07] {
104
104
}
105
105
```
106
106
107
-
At build time, a project bundle is created with the convention `obj/{CONFIGURATION}/{TARGET FRAMEWORK}/scopedcss/projectbundle/{ASSEMBLY NAME}.bundle.scp.css`, where the placeholders are:
107
+
At build time, a project bundle is created with the convention `obj/{CONFIGURATION}/{TARGET FRAMEWORK}/scopedcss/projectbundle/{PACKAGE ID/ASSEMBLY NAME}.bundle.scp.css`, where the placeholders are:
108
108
109
109
*`{CONFIGURATION}`: The app's build configuration (for example, `Debug`, `Release`).
110
110
*`{TARGET FRAMEWORK}`: The target framework (for example, `net6.0`).
111
-
*`{ASSEMBLY NAME}`: The app's assembly name (for example, `BlazorSample`).
111
+
*`{PACKAGE ID/ASSEMBLY NAME}`: The project's package ID (`<PackageId>` in the project file) for a library or assembly name for an app (for example, `BlazorSample`).
Copy file name to clipboardExpand all lines: aspnetcore/blazor/fundamentals/configuration.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -300,12 +300,12 @@ var hostname = builder.Configuration["HostName"];
300
300
301
301
## Cached configuration
302
302
303
-
Configuration files are cached for offline use. With [Progressive Web Applications (PWAs)](xref:blazor/progressive-web-app), you can only update configuration files when creating a new deployment. Editing configuration files between deployments has no effect because:
303
+
Configuration files are cached for offline use. With [Progressive Web Applications (PWAs)](xref:blazor/progressive-web-app/index), you can only update configuration files when creating a new deployment. Editing configuration files between deployments has no effect because:
304
304
305
305
* Users have cached versions of the files that they continue to use.
306
306
* The PWA's `service-worker.js` and `service-worker-assets.js` files must be rebuilt on compilation, which signal to the app on the user's next online visit that the app has been redeployed.
307
307
308
-
For more information on how background updates are handled by PWAs, see <xref:blazor/progressive-web-app#background-updates>.
308
+
For more information on how background updates are handled by PWAs, see <xref:blazor/progressive-web-app/index#background-updates>.
0 commit comments