Finish renaming props file to remove Microsoft.Dotnet.Cli prefix

This commit is contained in:
Justin Goshi 2017-02-16 11:16:20 -08:00
parent dfde101b7c
commit 8e58a247b0
5 changed files with 24 additions and 24 deletions

View file

@ -62,7 +62,7 @@ namespace Microsoft.DotNet.Scripts
private static IEnumerable<IDependencyUpdater> GetUpdaters()
{
yield return CreateRegexUpdater(Path.Combine("build", "Microsoft.DotNet.Cli.DependencyVersions.props"), "CLI_SharedFrameworkVersion", "Microsoft.NETCore.App");
yield return CreateRegexUpdater(Path.Combine("build", "DependencyVersions.props"), "CLI_SharedFrameworkVersion", "Microsoft.NETCore.App");
}
private static IDependencyUpdater CreateRegexUpdater(string repoRelativePath, string propertyName, string packageId)