Merge pull request #1325 from dotnet/brthor/1181/quickfix
hard code portable-net452+win81 to quickly unblock
This commit is contained in:
commit
bed4c37beb
1 changed files with 3 additions and 1 deletions
|
@ -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("}");
|
||||
|
|
Loading…
Reference in a new issue