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
Copy file name to clipboardExpand all lines: Readme.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ To learn more about the war and how you can help, [click here](https://tyrrrz.me
37
37
38
38
## Why?
39
39
40
-
Currently, .NET offers two main ways of [distributing applications](https://docs.microsoft.com/en-us/dotnet/core/deploying): **framework-dependent** deployment and **self-contained** deployment.
40
+
Currently, .NET offers two main ways of [distributing applications](https://docs.microsoft.com/dotnet/core/deploying): **framework-dependent** deployment and **self-contained** deployment.
41
41
Both of them come with a set of obvious and somewhat less obvious drawbacks.
42
42
43
43
-**Framework-dependent** deployment:
@@ -99,12 +99,12 @@ MyApp.deps.json
99
99
100
100
Make sure to include all highlighted files in your application distribution.
101
101
102
-
> **Warning**:
102
+
> [!WARNING]
103
103
> Single-file deployment (`/p:PublishSingleFile=true`) is not supported by the bootstrapper.
104
104
105
105
### Application host
106
106
107
-
The client-facing side of **.NET Runtime Bootstrapper** is implemented as a [custom .NET runtime host](https://docs.microsoft.com/en-us/dotnet/core/tutorials/netcore-hosting).
107
+
The client-facing side of **.NET Runtime Bootstrapper** is implemented as a [custom .NET runtime host](https://docs.microsoft.com/dotnet/core/tutorials/netcore-hosting).
108
108
It's generated during the build process by injecting project-specific instructions into a special pre-compiled executable provided by the package.
109
109
Internally, the host executable is a managed .NET Framework v3.5 assembly, which allows it to run out-of-the-box on all platforms starting with Windows 7.
110
110
@@ -167,7 +167,7 @@ If you want to also have it created on regular builds as well, set the `<Generat
167
167
</Project>
168
168
```
169
169
170
-
> **Warning**:
170
+
> [!WARNING]
171
171
> Bootstrapper's application host does not support debugging.
172
172
> In order to retain debugging capabilities of your application during local development, keep `<GenerateBootstrapperOnBuild>` set to `false` (default).
0 commit comments