Merge pull request #1325 from dotnet/brthor/1181/quickfix

hard code portable-net452+win81 to quickly unblock
This commit is contained in:
Bryan Thornbury 2016-02-09 14:32:34 -08:00
commit bed4c37beb

View file

@ -203,7 +203,9 @@ namespace Microsoft.DotNet.Tools.Restore
sb.AppendLine(" \"frameworks\": {");
foreach (var framework in frameworks)
{
sb.AppendLine($" \"{framework}\": {{}}");
var importsStatement = "\"imports\": \"portable-net452+win81\"";
sb.AppendLine($" \"{framework}\": {{ {importsStatement} }}");
}
sb.AppendLine(" }");
sb.AppendLine("}");