C#: Rename DotnetVersion to DotNetVersion.

This commit is contained in:
Michael Nebel
2023-09-15 14:29:49 +02:00
parent 31327f4f73
commit 6c0afab0aa
4 changed files with 15 additions and 15 deletions

View File

@@ -8,13 +8,13 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
{
internal class Razor
{
private readonly DotnetVersion sdk;
private readonly DotNetVersion sdk;
private readonly ProgressMonitor progressMonitor;
private readonly IDotNet dotNet;
private readonly string sourceGeneratorFolder;
private readonly string cscPath;
public Razor(DotnetVersion sdk, IDotNet dotNet, ProgressMonitor progressMonitor)
public Razor(DotNetVersion sdk, IDotNet dotNet, ProgressMonitor progressMonitor)
{
this.sdk = sdk;
this.progressMonitor = progressMonitor;