Skip to content

Commit 8c1241b

Browse files
authored
Merge pull request #1330 from Perkles/update-troubleshooting-the-codeql-workflow
Restructure sentence to include .NET Framework
2 parents f84ba23 + 8b85649 commit 8c1241b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-the-codeql-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ For more information, see the workflow extract in "[Automatic build for a compil
6666
* Building using a distributed build system external to GitHub Actions, using a daemon process.
6767
* {% data variables.product.prodname_codeql %} isn't aware of the specific compiler you are using.
6868

69-
For C# projects using either `dotnet build` or `msbuild` which target .NET Core 2, you should specify `/p:UseSharedCompilation=false` in your workflow's `run` step, when you build your code. The `UseSharedCompilation` flag isn't necessary for .NET Core 3.0 and later.
69+
For .NET Framework projects, and for C# projects using either `dotnet build` or `msbuild` that target .NET Core 2, you should specify `/p:UseSharedCompilation=false` in your workflow's `run` step, when you build your code. The `UseSharedCompilation` flag isn't necessary for .NET Core 3.0 and later.
7070

7171
For example, the following configuration for C# will pass the flag during the first build step.
7272

0 commit comments

Comments
 (0)