about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorDavid McFarland <corngood@gmail.com>2024-05-23 14:05:46 -0300
committerGitHub <noreply@github.com>2024-05-23 14:05:46 -0300
commitf17d1f9302326b1bddb79ae37014bc5c1a104998 (patch)
tree111de6bb62c6f72678e1d00da26827c81cdbec3a /doc
parent2ee89d5a0167a8aa0f2a5615d2b8aefb1f299cd4 (diff)
parentcfd1bd614134e3705c380c217f6c34bb6621d051 (diff)
Merge pull request #313514 from tie/dotnet-cross-split
buildDotnetModule: fix cross-compilation and remove dotnet-test-sdk
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/dotnet.section.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/languages-frameworks/dotnet.section.md b/doc/languages-frameworks/dotnet.section.md
index a4e9d6cf9a6c6..36c20a9e9c507 100644
--- a/doc/languages-frameworks/dotnet.section.md
+++ b/doc/languages-frameworks/dotnet.section.md
@@ -117,7 +117,6 @@ For more detail about managing the `deps.nix` file, see [Generating and updating
 * `useDotnetFromEnv` will change the binary wrapper so that it uses the .NET from the environment. The runtime specified by `dotnet-runtime` is given as a fallback in case no .NET is installed in the user's environment. This is most useful for .NET global tools and LSP servers, which often extend the .NET CLI and their runtime should match the users' .NET runtime.
 * `dotnet-sdk` is useful in cases where you need to change what dotnet SDK is being used. You can also set this to the result of `dotnetSdkPackages.combinePackages`, if the project uses multiple SDKs to build.
 * `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. It gets restored and build, but not installed. You may need to regenerate your nuget lockfile after setting this. Note that if set, only tests from this project are executed.
 * `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`.