Skip to content

Commit ff69730

Browse files
committed
Use markdown alerts
1 parent bb818d7 commit ff69730

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To learn more about the war and how you can help, [click here](https://tyrrrz.me
3737

3838
## Why?
3939

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.
4141
Both of them come with a set of obvious and somewhat less obvious drawbacks.
4242

4343
- **Framework-dependent** deployment:
@@ -99,12 +99,12 @@ MyApp.deps.json
9999

100100
Make sure to include all highlighted files in your application distribution.
101101

102-
> **Warning**:
102+
> [!WARNING]
103103
> Single-file deployment (`/p:PublishSingleFile=true`) is not supported by the bootstrapper.
104104
105105
### Application host
106106

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).
108108
It's generated during the build process by injecting project-specific instructions into a special pre-compiled executable provided by the package.
109109
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.
110110

@@ -167,7 +167,7 @@ If you want to also have it created on regular builds as well, set the `<Generat
167167
</Project>
168168
```
169169

170-
> **Warning**:
170+
> [!WARNING]
171171
> Bootstrapper's application host does not support debugging.
172172
> In order to retain debugging capabilities of your application during local development, keep `<GenerateBootstrapperOnBuild>` set to `false` (default).
173173

0 commit comments

Comments
 (0)