diff --git a/eng/Baseline.Designer.props b/eng/Baseline.Designer.props index d8730cc347..80bc739545 100644 --- a/eng/Baseline.Designer.props +++ b/eng/Baseline.Designer.props @@ -2,7 +2,7 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 2.2.4 + 2.2.5 @@ -77,11 +77,12 @@ - 2.2.1 + 2.2.5 + - 2.2.4 + 2.2.5 @@ -221,27 +222,27 @@ - 2.2.2 + 2.2.5 - - + + - - + + - - + + - 2.2.2 + 2.2.5 - + @@ -326,11 +327,11 @@ - 2.2.0 + 2.2.5 - + @@ -581,14 +582,14 @@ - 2.2.0 + 2.2.5 - + @@ -657,7 +658,7 @@ - 2.2.2 + 2.2.5 @@ -755,7 +756,7 @@ - 2.2.0 + 2.2.5 @@ -1127,19 +1128,19 @@ - 1.1.0 + 1.1.5 + - - 1.1.0 + 1.1.5 + - @@ -1163,13 +1164,13 @@ - 1.1.0 + 1.1.5 + - - + diff --git a/eng/Baseline.xml b/eng/Baseline.xml index c9ebacb3b9..49a2c044e3 100644 --- a/eng/Baseline.xml +++ b/eng/Baseline.xml @@ -1,10 +1,10 @@ - - + @@ -12,8 +12,8 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch. - - + + @@ -30,8 +30,8 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch. - - + + @@ -42,7 +42,7 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch. - + @@ -66,7 +66,7 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch. - + @@ -75,7 +75,7 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch. - + @@ -83,7 +83,7 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch. - + @@ -115,10 +115,10 @@ build of ASP.NET Core 2.2.x. Update this list when preparing for a new patch. - - + + - + diff --git a/eng/PatchConfig.props b/eng/PatchConfig.props index efc05a36c7..8342295e7b 100644 --- a/eng/PatchConfig.props +++ b/eng/PatchConfig.props @@ -61,5 +61,4 @@ Later on, this will be checked using this condition: Microsoft.AspNetCore.Mvc.Api.Analyzers; - diff --git a/eng/tools/BaselineGenerator/Program.cs b/eng/tools/BaselineGenerator/Program.cs index b8089832f0..f8ea164d53 100644 --- a/eng/tools/BaselineGenerator/Program.cs +++ b/eng/tools/BaselineGenerator/Program.cs @@ -61,7 +61,11 @@ namespace PackageBaselineGenerator var sourceRepository = new SourceRepository(packageSource, providers); if (_update.HasValue()) { - return await RunUpdateAsync(inputPath, input, sourceRepository); + var updateResult = await RunUpdateAsync(inputPath, input, sourceRepository); + if (updateResult != 0) + { + return updateResult; + } } var feedType = await sourceRepository.GetFeedType(CancellationToken.None); diff --git a/eng/tools/BaselineGenerator/README.md b/eng/tools/BaselineGenerator/README.md index 821209aa5e..6f14df37d8 100644 --- a/eng/tools/BaselineGenerator/README.md +++ b/eng/tools/BaselineGenerator/README.md @@ -8,8 +8,8 @@ Add `--package-source {source}` to the commands below if the packages of interes ### Auto-update -1. Run `dotnet run --update` in this project folder. -2. Run `dotnet run` in this project. +Run `dotnet run --update` in this project folder. This will attempt to find the latest patch version of packages and +update the baseline file. ### Manual update