From f9e334871387d0eb51049f3a8287fd19827c9aa7 Mon Sep 17 00:00:00 2001 From: Blake Niemyjski Date: Tue, 12 Jul 2016 12:33:00 -0500 Subject: [PATCH] Fixed an issue with nuget is unable to install packages --- src/Nito.Collections.Deque/project.json | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/Nito.Collections.Deque/project.json b/src/Nito.Collections.Deque/project.json index 84c3dac..55b72a7 100644 --- a/src/Nito.Collections.Deque/project.json +++ b/src/Nito.Collections.Deque/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-delta-8", + "version": "1.0.0-delta-9", "authors": [ "Stephen Cleary" ], "description": "A double-ended queue.", "buildOptions": { @@ -19,10 +19,17 @@ }, ".NETPortable,Version=v4.5,Profile=Profile259": { "frameworkAssemblies": { - "System.Collections": "", - "System.Diagnostics.Debug": "", - "System.Runtime": "" + "System.Collections": { + "type": "build" + }, + "System.Diagnostics.Debug": { + "type": "build" + }, + "System.Runtime": { + "type": "build" + } } - } + }, + "NET46": {} } }