Updating the msbuild templates in the CLI to use TargetFramework (singular).

This commit is contained in:
Livar Cunha 2016-10-18 15:00:37 -07:00
commit e2e72a9662
8 changed files with 48 additions and 20 deletions

View file

@ -108,7 +108,7 @@ namespace Microsoft.DotNet.Cli.Utils
{
return _project
.AllEvaluatedProperties
.Where(p => p.Name.Equals("ProjectLockFile"))
.Where(p => p.Name.Equals("ProjectAssetsFile"))
.Select(p => p.EvaluatedValue)
.FirstOrDefault(p => File.Exists(p));
}