We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4448369 commit 7cea2adCopy full SHA for 7cea2ad
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DotNet.cs
@@ -2,7 +2,6 @@
2
using System.Collections.Generic;
3
using System.IO;
4
using System.Linq;
5
-using System.Text;
6
using Newtonsoft.Json.Linq;
7
8
using Semmle.Util;
@@ -77,7 +76,7 @@ private string GetRestoreArgs(RestoreSettings restoreSettings)
77
76
args += " /p:EnableWindowsTargeting=true";
78
}
79
80
- if (restoreSettings.ExtraArgs != null)
+ if (restoreSettings.ExtraArgs is not null)
81
{
82
args += $" {restoreSettings.ExtraArgs}";
83
0 commit comments