From 265b43ad36a28408b6c13a2b224342a427831be2 Mon Sep 17 00:00:00 2001 From: Richard Webb Date: Mon, 1 Jan 2024 22:34:19 +0000 Subject: [PATCH 1/2] Fix a typo in the docs --- docs/content/Getting Started Using.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/Getting Started Using.md b/docs/content/Getting Started Using.md index c309e05..b3fb4a4 100644 --- a/docs/content/Getting Started Using.md +++ b/docs/content/Getting Started Using.md @@ -119,7 +119,7 @@ dotnet msbuild YourSolution.sln /t:AnalyzeFSharpProject ### Select specific projects -As we don't want to targt all projects of the solution, we create a second custom MSBuild target that calls the project-specific target for all relevant projects. +As we don't want to target all projects of the solution, we create a second custom MSBuild target that calls the project-specific target for all relevant projects. Add the following custom target to the [Directory.Solution.targets](https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-solution-build?view=vs-2022) file to be able to invoke analysis from all selected projects in one simple command: ```xml From e705efa81255f0afb7ea90c924cd9f3b34fdd1b8 Mon Sep 17 00:00:00 2001 From: dawe Date: Tue, 2 Jan 2024 08:25:45 +0100 Subject: [PATCH 2/2] Update docs/content/Getting Started Using.md --- docs/content/Getting Started Using.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/Getting Started Using.md b/docs/content/Getting Started Using.md index b3fb4a4..f4043c4 100644 --- a/docs/content/Getting Started Using.md +++ b/docs/content/Getting Started Using.md @@ -119,7 +119,7 @@ dotnet msbuild YourSolution.sln /t:AnalyzeFSharpProject ### Select specific projects -As we don't want to target all projects of the solution, we create a second custom MSBuild target that calls the project-specific target for all relevant projects. +As we don't want to target all projects in the solution, we create a second custom MSBuild target that calls the project-specific target for all relevant projects. Add the following custom target to the [Directory.Solution.targets](https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-solution-build?view=vs-2022) file to be able to invoke analysis from all selected projects in one simple command: ```xml