summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorIvarWithoutBones <ivar.scholten@protonmail.com>2021-12-20 22:31:18 +0100
committerIvarWithoutBones <ivar.scholten@protonmail.com>2021-12-20 22:31:18 +0100
commite0b652c3cbd0c44f8536b54f4c39782ec3502079 (patch)
tree1bb2caf7d799ac8cdbeb4539b519f5a93808b93f /doc
parent0f3d546116d7e035a7d201256bd9c6121103a884 (diff)
downloadnixpkgs-e0b652c3cbd0c44f8536b54f4c39782ec3502079.tar
nixpkgs-e0b652c3cbd0c44f8536b54f4c39782ec3502079.tar.gz
nixpkgs-e0b652c3cbd0c44f8536b54f4c39782ec3502079.tar.bz2
nixpkgs-e0b652c3cbd0c44f8536b54f4c39782ec3502079.tar.lz
nixpkgs-e0b652c3cbd0c44f8536b54f4c39782ec3502079.tar.xz
nixpkgs-e0b652c3cbd0c44f8536b54f4c39782ec3502079.tar.zst
nixpkgs-e0b652c3cbd0c44f8536b54f4c39782ec3502079.zip
buildDotnetModule: restore and build testProjectFile
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`.