Skip to content

Commit bebfdb1

Browse files
committed
Changed order of updates done to csproj files. I think this will help with file lock errors
1 parent dbe060b commit bebfdb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CodeUpdater/CodeUpdater/Updaters/CSharpUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ public async ValueTask<ImmutableArray<CSharpUpdateResult>> UpdateAllCSharpProjec
4040
{
4141
_logger.Information($"Updating '{csProjFilePath}'");
4242

43-
var nugetUpdates = await UpdateNugetPackagesAsync(csProjFilePath);
4443
var csProjUpdates = UpdateCsProjPropertyValues(csProjFilePath);
44+
var nugetUpdates = await UpdateNugetPackagesAsync(csProjFilePath);
4545
var dotnetFormatUpdate = await RunDotnetFormatAsync(csProjFilePath);
4646

4747
builder.Add(new CSharpUpdateResult(

0 commit comments

Comments
 (0)