about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-07-28 11:59:09 +0200
committerGitHub <noreply@github.com>2022-07-28 11:59:09 +0200
commitf358b0d40d93bfb77552360ff5d0ca62f73e834f (patch)
tree3cb46d8094ac1c8ec24003ad1af0250eee3bc274 /doc
parent68efafbe134d1e356cf7e9dd1c4e944bbed27d6b (diff)
parent124fa63a8838fe8ad532e8278f154c09c47e6eec (diff)
downloadnixlib-f358b0d40d93bfb77552360ff5d0ca62f73e834f.tar
nixlib-f358b0d40d93bfb77552360ff5d0ca62f73e834f.tar.gz
nixlib-f358b0d40d93bfb77552360ff5d0ca62f73e834f.tar.bz2
nixlib-f358b0d40d93bfb77552360ff5d0ca62f73e834f.tar.lz
nixlib-f358b0d40d93bfb77552360ff5d0ca62f73e834f.tar.xz
nixlib-f358b0d40d93bfb77552360ff5d0ca62f73e834f.tar.zst
nixlib-f358b0d40d93bfb77552360ff5d0ca62f73e834f.zip
Merge pull request #182273 from mdarocha/dotnet-self-contained-build
buildDotnetModule: add option to make a self-contained build
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/dotnet.section.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/languages-frameworks/dotnet.section.md b/doc/languages-frameworks/dotnet.section.md
index 408446674e90..4c245a7544e1 100644
--- a/doc/languages-frameworks/dotnet.section.md
+++ b/doc/languages-frameworks/dotnet.section.md
@@ -87,6 +87,7 @@ To package Dotnet applications, you can use `buildDotnetModule`. This has simila
 * `executables` is used to specify which executables get wrapped to `$out/bin`, relative to `$out/lib/$pname`. If this is unset, all executables generated will get installed. If you do not want to install any, set this to `[]`. This gets done in the `preFixup` phase.
 * `runtimeDeps` is used to wrap libraries into `LD_LIBRARY_PATH`. This is how dotnet usually handles runtime dependencies.
 * `buildType` is used to change the type of build. Possible values are `Release`, `Debug`, etc. By default, this is set to `Release`.
+* `selfContainedBuild` allows to enable the [self-contained](https://docs.microsoft.com/en-us/dotnet/core/deploying/#publish-self-contained) build flag. By default, it is set to false and generated applications have a dependency on the selected dotnet runtime. If enabled, the dotnet runtime is bundled into the executable and the built app has no dependency on Dotnet.
 * `dotnet-sdk` is useful in cases where you need to change what dotnet SDK is being used.
 * `dotnet-runtime` is useful in cases where you need to change what dotnet runtime is being used. This can be either a regular dotnet runtime, or an aspnetcore.
 * `dotnet-test-sdk` is useful in cases where unit tests expect a different dotnet SDK. By default, this is set to the `dotnet-sdk` attribute.