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 dbe060b commit bebfdb1Copy full SHA for bebfdb1
src/CodeUpdater/CodeUpdater/Updaters/CSharpUpdater.cs
@@ -40,8 +40,8 @@ public async ValueTask<ImmutableArray<CSharpUpdateResult>> UpdateAllCSharpProjec
40
{
41
_logger.Information($"Updating '{csProjFilePath}'");
42
43
- var nugetUpdates = await UpdateNugetPackagesAsync(csProjFilePath);
44
var csProjUpdates = UpdateCsProjPropertyValues(csProjFilePath);
+ var nugetUpdates = await UpdateNugetPackagesAsync(csProjFilePath);
45
var dotnetFormatUpdate = await RunDotnetFormatAsync(csProjFilePath);
46
47
builder.Add(new CSharpUpdateResult(
0 commit comments