summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorIvarWithoutBones <ivar.scholten@protonmail.com>2021-11-21 22:47:53 +0100
committerIvarWithoutBones <ivar.scholten@protonmail.com>2021-11-21 22:47:53 +0100
commit1b366cb92b2640816c54df8af17c8d3914f088dd (patch)
tree8e65d757eb82786c675401229b8d653ad9f57f65 /doc
parent4f871e232b8827b0b1d22bc40bc1b0dfa4473156 (diff)
downloadnixpkgs-1b366cb92b2640816c54df8af17c8d3914f088dd.tar
nixpkgs-1b366cb92b2640816c54df8af17c8d3914f088dd.tar.gz
nixpkgs-1b366cb92b2640816c54df8af17c8d3914f088dd.tar.bz2
nixpkgs-1b366cb92b2640816c54df8af17c8d3914f088dd.tar.lz
nixpkgs-1b366cb92b2640816c54df8af17c8d3914f088dd.tar.xz
nixpkgs-1b366cb92b2640816c54df8af17c8d3914f088dd.tar.zst
nixpkgs-1b366cb92b2640816c54df8af17c8d3914f088dd.zip
buildDotnetModule: support setting projectFile as an array && properly interpret disabledTests
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/dotnet.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/dotnet.section.md b/doc/languages-frameworks/dotnet.section.md
index f2a5efd05db..f3d9fb87573 100644
--- a/doc/languages-frameworks/dotnet.section.md
+++ b/doc/languages-frameworks/dotnet.section.md
@@ -71,7 +71,7 @@ The `dotnetCorePackages.sdk` contains both a runtime and the full sdk of a given
 
 To package Dotnet applications, you can use `buildDotnetModule`. This has similar arguments to `stdenv.mkDerivation`, with the following additions:
 
-* `projectFile` has to be used for specifying the dotnet project file relative to the source root. These usually have `.sln` or `.csproj` file extensions.
+* `projectFile` has to be used for specifying the dotnet project file relative to the source root. These usually have `.sln` or `.csproj` file extensions. This can be an array of multiple projects as well.
 * `nugetDeps` has to be used to specify the NuGet dependency file. Unfortunately, these cannot be deterministically fetched without a lockfile. This file should be generated using `nuget-to-nix` tool, which is available in nixpkgs.
 * `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 `[]`.
 * `runtimeDeps` is used to wrap libraries into `LD_LIBRARY_PATH`. This is how dotnet usually handles runtime dependencies.