summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-12-22 18:01:00 +0000
committerGitHub <noreply@github.com>2021-12-22 18:01:00 +0000
commit5e2c1acfa3e8921280bbb9ff868567cb41a096f8 (patch)
tree6558a5d51863ebf7df9d22a3482665eb0b04e97d /doc
parent03b5b0daac564dc54db4ea75f629406dc2516a06 (diff)
parentedabc5267d3a872eea9d619964bf22b1e61fa440 (diff)
downloadnixpkgs-5e2c1acfa3e8921280bbb9ff868567cb41a096f8.tar
nixpkgs-5e2c1acfa3e8921280bbb9ff868567cb41a096f8.tar.gz
nixpkgs-5e2c1acfa3e8921280bbb9ff868567cb41a096f8.tar.bz2
nixpkgs-5e2c1acfa3e8921280bbb9ff868567cb41a096f8.tar.lz
nixpkgs-5e2c1acfa3e8921280bbb9ff868567cb41a096f8.tar.xz
nixpkgs-5e2c1acfa3e8921280bbb9ff868567cb41a096f8.tar.zst
nixpkgs-5e2c1acfa3e8921280bbb9ff868567cb41a096f8.zip
Merge master into staging-next
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 159347008e8..88e1a0b2959 100644
--- a/doc/languages-frameworks/dotnet.section.md
+++ b/doc/languages-frameworks/dotnet.section.md
@@ -90,7 +90,7 @@ To package Dotnet applications, you can use `buildDotnetModule`. This has simila
 * `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.
-* `testProjectFile` is useful in cases where the regular project file does not contain the unit tests. By default, this is set to the `projectFile` attribute.
+* `testProjectFile` is useful in cases where the regular project file does not contain the unit tests. It gets restored and build, but not installed. You may need to regenerate your nuget lockfile after setting this.
 * `disabledTests` is used to disable running specific unit tests. This gets passed as: `dotnet test --filter "FullyQualifiedName!={}"`, to ensure compatibility with all unit test frameworks.
 * `dotnetRestoreFlags` can be used to pass flags to `dotnet restore`.
 * `dotnetBuildFlags` can be used to pass flags to `dotnet build`.