From 9170993cf03b4aafdae85c9ee8c86694725ad1ed Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Tue, 15 Apr 2025 12:46:31 +0200 Subject: [PATCH] C#: Adjust comments and remove compilation warnings. --- csharp/autobuilder/Semmle.Autobuild.Shared/Project.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp/autobuilder/Semmle.Autobuild.Shared/Project.cs b/csharp/autobuilder/Semmle.Autobuild.Shared/Project.cs index 37a8feee186c..32c5cdeca28d 100644 --- a/csharp/autobuilder/Semmle.Autobuild.Shared/Project.cs +++ b/csharp/autobuilder/Semmle.Autobuild.Shared/Project.cs @@ -34,9 +34,9 @@ private static bool AnyElement(XmlNodeList l, Func f) => /// /// According to https://learn.microsoft.com/en-us/visualstudio/msbuild/how-to-use-project-sdk?view=vs-2022#reference-a-project-sdk /// there are three ways to reference a project SDK: - /// 1. As an attribute on the . - /// 2. As a top level element of . - /// 3. As an attribute on an element. + /// 1. As an attribute on the <Project/>. + /// 2. As a top level element of <Project>. + /// 3. As an attribute on an <Import> element. /// /// Returns true, if the Sdk attribute is used, otherwise false. ///