mirror of
https://github.com/github/codeql.git
synced 2026-04-22 15:25:18 +02:00
C#: Address review comments.
This commit is contained in:
@@ -33,7 +33,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Performs a C# dependency fetching.
|
||||
/// Performs C# dependency fetching.
|
||||
/// </summary>
|
||||
/// <param name="options">Dependency fetching options</param>
|
||||
/// <param name="logger">Logger for dependency fetching progress.</param>
|
||||
|
||||
@@ -53,9 +53,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
|
||||
public class DependencyOptions : IDependencyOptions
|
||||
{
|
||||
private static readonly DependencyOptions instance = new DependencyOptions();
|
||||
|
||||
public static IDependencyOptions Default => instance;
|
||||
public static IDependencyOptions Default => new DependencyOptions();
|
||||
|
||||
public IList<string> DllDirs { get; set; } = new List<string>();
|
||||
|
||||
|
||||
@@ -10,10 +10,10 @@
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
|
||||
<ProjectReference Include="..\Semmle.Extraction\Semmle.Extraction.csproj" />
|
||||
</ItemGroup>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
|
||||
Reference in New Issue
Block a user