aspnetcore/eng/tools/BaselineGenerator
John Luo dd16bf5645
Fix Baseline.xml version updates (#23545)
Use https://www.nuget.org/packages/Microsoft.AspNetCore.App.Runtime.win-x64/5.0.0-preview.6.20312.15 instead.
2020-07-14 15:45:45 -07:00
..
BaselineGenerator.csproj
Program.cs Fix Baseline.xml version updates (#23545) 2020-07-14 15:45:45 -07:00
README.md

README.md

BaselineGenerator

This tool is used to generate an MSBuild file which sets the "baseline" against which servicing updates are built.

Usage

Add --package-source {source} to the commands below if the packages of interest are not all hosted on NuGet.org.

Auto-update

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

  1. Add to the Baseline.xml a list of package ID's and their latest released versions. The source of this information can typically be found in the build.xml file generated during ProdCon builds. See file://vsufile/patches/sign/NET/CORE_BUILDS/3.0.X/3.0.0/preview5/3.0.100-preview5-011568/manifest.txt for example. Update the version at the top of baseline.xml to match prior release (even if no packages changed in the prior release).
  2. Run dotnet run on this project.