tag wrappers
$.moogle.contextmenu.replaceFirstTextNodeChild($("div", item), title);
}
}
});
}));
================================================
FILE: Azure/WebSite/source/ConnectTheDotsWebSite/js/qrcode.js
================================================
/**
* @fileoverview
* - Using the 'QRCode for Javascript library'
* - Fixed dataset of 'QRCode for Javascript library' for support full-spec.
* - this library has no dependencies.
*
* @author davidshimjs
* @see
http://www.d-project.com/
* @see
http://jeromeetienne.github.com/jquery-qrcode/
*/
var QRCode;
(function () {
//---------------------------------------------------------------------
// QRCode for JavaScript
//
// Copyright (c) 2009 Kazuhiko Arase
//
// URL: http://www.d-project.com/
//
// Licensed under the MIT license:
// http://www.opensource.org/licenses/mit-license.php
//
// The word "QR Code" is registered trademark of
// DENSO WAVE INCORPORATED
// http://www.denso-wave.com/qrcode/faqpatent-e.html
//
//---------------------------------------------------------------------
function QR8bitByte(data) {
this.mode = QRMode.MODE_8BIT_BYTE;
this.data = data;
this.parsedData = [];
// Added to support UTF-8 Characters
for (var i = 0, l = this.data.length; i < l; i++) {
var byteArray = [];
var code = this.data.charCodeAt(i);
if (code > 0x10000) {
byteArray[0] = 0xF0 | ((code & 0x1C0000) >>> 18);
byteArray[1] = 0x80 | ((code & 0x3F000) >>> 12);
byteArray[2] = 0x80 | ((code & 0xFC0) >>> 6);
byteArray[3] = 0x80 | (code & 0x3F);
} else if (code > 0x800) {
byteArray[0] = 0xE0 | ((code & 0xF000) >>> 12);
byteArray[1] = 0x80 | ((code & 0xFC0) >>> 6);
byteArray[2] = 0x80 | (code & 0x3F);
} else if (code > 0x80) {
byteArray[0] = 0xC0 | ((code & 0x7C0) >>> 6);
byteArray[1] = 0x80 | (code & 0x3F);
} else {
byteArray[0] = code;
}
this.parsedData.push(byteArray);
}
this.parsedData = Array.prototype.concat.apply([], this.parsedData);
if (this.parsedData.length != this.data.length) {
this.parsedData.unshift(191);
this.parsedData.unshift(187);
this.parsedData.unshift(239);
}
}
QR8bitByte.prototype = {
getLength: function (buffer) {
return this.parsedData.length;
},
write: function (buffer) {
for (var i = 0, l = this.parsedData.length; i < l; i++) {
buffer.put(this.parsedData[i], 8);
}
}
};
function QRCodeModel(typeNumber, errorCorrectLevel) {
this.typeNumber = typeNumber;
this.errorCorrectLevel = errorCorrectLevel;
this.modules = null;
this.moduleCount = 0;
this.dataCache = null;
this.dataList = [];
}
QRCodeModel.prototype={addData:function(data){var newData=new QR8bitByte(data);this.dataList.push(newData);this.dataCache=null;},isDark:function(row,col){if(row<0||this.moduleCount<=row||col<0||this.moduleCount<=col){throw new Error(row+","+col);}
return this.modules[row][col];},getModuleCount:function(){return this.moduleCount;},make:function(){this.makeImpl(false,this.getBestMaskPattern());},makeImpl:function(test,maskPattern){this.moduleCount=this.typeNumber*4+17;this.modules=new Array(this.moduleCount);for(var row=0;row
=7){this.setupTypeNumber(test);}
if(this.dataCache==null){this.dataCache=QRCodeModel.createData(this.typeNumber,this.errorCorrectLevel,this.dataList);}
this.mapData(this.dataCache,maskPattern);},setupPositionProbePattern:function(row,col){for(var r=-1;r<=7;r++){if(row+r<=-1||this.moduleCount<=row+r)continue;for(var c=-1;c<=7;c++){if(col+c<=-1||this.moduleCount<=col+c)continue;if((0<=r&&r<=6&&(c==0||c==6))||(0<=c&&c<=6&&(r==0||r==6))||(2<=r&&r<=4&&2<=c&&c<=4)){this.modules[row+r][col+c]=true;}else{this.modules[row+r][col+c]=false;}}}},getBestMaskPattern:function(){var minLostPoint=0;var pattern=0;for(var i=0;i<8;i++){this.makeImpl(true,i);var lostPoint=QRUtil.getLostPoint(this);if(i==0||minLostPoint>lostPoint){minLostPoint=lostPoint;pattern=i;}}
return pattern;},createMovieClip:function(target_mc,instance_name,depth){var qr_mc=target_mc.createEmptyMovieClip(instance_name,depth);var cs=1;this.make();for(var row=0;row>i)&1)==1);this.modules[Math.floor(i/3)][i%3+this.moduleCount-8-3]=mod;}
for(var i=0;i<18;i++){var mod=(!test&&((bits>>i)&1)==1);this.modules[i%3+this.moduleCount-8-3][Math.floor(i/3)]=mod;}},setupTypeInfo:function(test,maskPattern){var data=(this.errorCorrectLevel<<3)|maskPattern;var bits=QRUtil.getBCHTypeInfo(data);for(var i=0;i<15;i++){var mod=(!test&&((bits>>i)&1)==1);if(i<6){this.modules[i][8]=mod;}else if(i<8){this.modules[i+1][8]=mod;}else{this.modules[this.moduleCount-15+i][8]=mod;}}
for(var i=0;i<15;i++){var mod=(!test&&((bits>>i)&1)==1);if(i<8){this.modules[8][this.moduleCount-i-1]=mod;}else if(i<9){this.modules[8][15-i-1+1]=mod;}else{this.modules[8][15-i-1]=mod;}}
this.modules[this.moduleCount-8][8]=(!test);},mapData:function(data,maskPattern){var inc=-1;var row=this.moduleCount-1;var bitIndex=7;var byteIndex=0;for(var col=this.moduleCount-1;col>0;col-=2){if(col==6)col--;while(true){for(var c=0;c<2;c++){if(this.modules[row][col-c]==null){var dark=false;if(byteIndex>>bitIndex)&1)==1);}
var mask=QRUtil.getMask(maskPattern,row,col-c);if(mask){dark=!dark;}
this.modules[row][col-c]=dark;bitIndex--;if(bitIndex==-1){byteIndex++;bitIndex=7;}}}
row+=inc;if(row<0||this.moduleCount<=row){row-=inc;inc=-inc;break;}}}}};QRCodeModel.PAD0=0xEC;QRCodeModel.PAD1=0x11;QRCodeModel.createData=function(typeNumber,errorCorrectLevel,dataList){var rsBlocks=QRRSBlock.getRSBlocks(typeNumber,errorCorrectLevel);var buffer=new QRBitBuffer();for(var i=0;itotalDataCount*8){throw new Error("code length overflow. ("
+buffer.getLengthInBits()
+">"
+totalDataCount*8
+")");}
if(buffer.getLengthInBits()+4<=totalDataCount*8){buffer.put(0,4);}
while(buffer.getLengthInBits()%8!=0){buffer.putBit(false);}
while(true){if(buffer.getLengthInBits()>=totalDataCount*8){break;}
buffer.put(QRCodeModel.PAD0,8);if(buffer.getLengthInBits()>=totalDataCount*8){break;}
buffer.put(QRCodeModel.PAD1,8);}
return QRCodeModel.createBytes(buffer,rsBlocks);};QRCodeModel.createBytes=function(buffer,rsBlocks){var offset=0;var maxDcCount=0;var maxEcCount=0;var dcdata=new Array(rsBlocks.length);var ecdata=new Array(rsBlocks.length);for(var r=0;r=0)?modPoly.get(modIndex):0;}}
var totalCodeCount=0;for(var i=0;i=0){d^=(QRUtil.G15<<(QRUtil.getBCHDigit(d)-QRUtil.getBCHDigit(QRUtil.G15)));}
return((data<<10)|d)^QRUtil.G15_MASK;},getBCHTypeNumber:function(data){var d=data<<12;while(QRUtil.getBCHDigit(d)-QRUtil.getBCHDigit(QRUtil.G18)>=0){d^=(QRUtil.G18<<(QRUtil.getBCHDigit(d)-QRUtil.getBCHDigit(QRUtil.G18)));}
return(data<<12)|d;},getBCHDigit:function(data){var digit=0;while(data!=0){digit++;data>>>=1;}
return digit;},getPatternPosition:function(typeNumber){return QRUtil.PATTERN_POSITION_TABLE[typeNumber-1];},getMask:function(maskPattern,i,j){switch(maskPattern){case QRMaskPattern.PATTERN000:return(i+j)%2==0;case QRMaskPattern.PATTERN001:return i%2==0;case QRMaskPattern.PATTERN010:return j%3==0;case QRMaskPattern.PATTERN011:return(i+j)%3==0;case QRMaskPattern.PATTERN100:return(Math.floor(i/2)+Math.floor(j/3))%2==0;case QRMaskPattern.PATTERN101:return(i*j)%2+(i*j)%3==0;case QRMaskPattern.PATTERN110:return((i*j)%2+(i*j)%3)%2==0;case QRMaskPattern.PATTERN111:return((i*j)%3+(i+j)%2)%2==0;default:throw new Error("bad maskPattern:"+maskPattern);}},getErrorCorrectPolynomial:function(errorCorrectLength){var a=new QRPolynomial([1],0);for(var i=0;i5){lostPoint+=(3+sameCount-5);}}}
for(var row=0;row=256){n-=255;}
return QRMath.EXP_TABLE[n];},EXP_TABLE:new Array(256),LOG_TABLE:new Array(256)};for(var i=0;i<8;i++){QRMath.EXP_TABLE[i]=1<>>(7-index%8))&1)==1;},put:function(num,length){for(var i=0;i>>(length-i-1))&1)==1);}},getLengthInBits:function(){return this.length;},putBit:function(bit){var bufIndex=Math.floor(this.length/8);if(this.buffer.length<=bufIndex){this.buffer.push(0);}
if(bit){this.buffer[bufIndex]|=(0x80>>>(this.length%8));}
this.length++;}};var QRCodeLimitLength=[[17,14,11,7],[32,26,20,14],[53,42,32,24],[78,62,46,34],[106,84,60,44],[134,106,74,58],[154,122,86,64],[192,152,108,84],[230,180,130,98],[271,213,151,119],[321,251,177,137],[367,287,203,155],[425,331,241,177],[458,362,258,194],[520,412,292,220],[586,450,322,250],[644,504,364,280],[718,560,394,310],[792,624,442,338],[858,666,482,382],[929,711,509,403],[1003,779,565,439],[1091,857,611,461],[1171,911,661,511],[1273,997,715,535],[1367,1059,751,593],[1465,1125,805,625],[1528,1190,868,658],[1628,1264,908,698],[1732,1370,982,742],[1840,1452,1030,790],[1952,1538,1112,842],[2068,1628,1168,898],[2188,1722,1228,958],[2303,1809,1283,983],[2431,1911,1351,1051],[2563,1989,1423,1093],[2699,2099,1499,1139],[2809,2213,1579,1219],[2953,2331,1663,1273]];
function _isSupportCanvas() {
return typeof CanvasRenderingContext2D != "undefined";
}
// android 2.x doesn't support Data-URI spec
function _getAndroid() {
var android = false;
var sAgent = navigator.userAgent;
if (/android/i.test(sAgent)) { // android
android = true;
var aMat = sAgent.toString().match(/android ([0-9]\.[0-9])/i);
if (aMat && aMat[1]) {
android = parseFloat(aMat[1]);
}
}
return android;
}
var svgDrawer = (function() {
var Drawing = function (el, htOption) {
this._el = el;
this._htOption = htOption;
};
Drawing.prototype.draw = function (oQRCode) {
var _htOption = this._htOption;
var _el = this._el;
var nCount = oQRCode.getModuleCount();
var nWidth = Math.floor(_htOption.width / nCount);
var nHeight = Math.floor(_htOption.height / nCount);
this.clear();
function makeSVG(tag, attrs) {
var el = document.createElementNS('http://www.w3.org/2000/svg', tag);
for (var k in attrs)
if (attrs.hasOwnProperty(k)) el.setAttribute(k, attrs[k]);
return el;
}
var svg = makeSVG("svg" , {'viewBox': '0 0 ' + String(nCount) + " " + String(nCount), 'width': '100%', 'height': '100%', 'fill': _htOption.colorLight});
svg.setAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns:xlink", "http://www.w3.org/1999/xlink");
_el.appendChild(svg);
svg.appendChild(makeSVG("rect", {"fill": _htOption.colorLight, "width": "100%", "height": "100%"}));
svg.appendChild(makeSVG("rect", {"fill": _htOption.colorDark, "width": "1", "height": "1", "id": "template"}));
for (var row = 0; row < nCount; row++) {
for (var col = 0; col < nCount; col++) {
if (oQRCode.isDark(row, col)) {
var child = makeSVG("use", {"x": String(col), "y": String(row)});
child.setAttributeNS("http://www.w3.org/1999/xlink", "href", "#template")
svg.appendChild(child);
}
}
}
};
Drawing.prototype.clear = function () {
while (this._el.hasChildNodes())
this._el.removeChild(this._el.lastChild);
};
return Drawing;
})();
var useSVG = document.documentElement.tagName.toLowerCase() === "svg";
// Drawing in DOM by using Table tag
var Drawing = useSVG ? svgDrawer : !_isSupportCanvas() ? (function () {
var Drawing = function (el, htOption) {
this._el = el;
this._htOption = htOption;
};
/**
* Draw the QRCode
*
* @param {QRCode} oQRCode
*/
Drawing.prototype.draw = function (oQRCode) {
var _htOption = this._htOption;
var _el = this._el;
var nCount = oQRCode.getModuleCount();
var nWidth = Math.floor(_htOption.width / nCount);
var nHeight = Math.floor(_htOption.height / nCount);
var aHTML = [''];
for (var row = 0; row < nCount; row++) {
aHTML.push('');
for (var col = 0; col < nCount; col++) {
aHTML.push(' ');
}
aHTML.push(' ');
}
aHTML.push('
');
_el.innerHTML = aHTML.join('');
// Fix the margin values as real size.
var elTable = _el.childNodes[0];
var nLeftMarginTable = (_htOption.width - elTable.offsetWidth) / 2;
var nTopMarginTable = (_htOption.height - elTable.offsetHeight) / 2;
if (nLeftMarginTable > 0 && nTopMarginTable > 0) {
elTable.style.margin = nTopMarginTable + "px " + nLeftMarginTable + "px";
}
};
/**
* Clear the QRCode
*/
Drawing.prototype.clear = function () {
this._el.innerHTML = '';
};
return Drawing;
})() : (function () { // Drawing in Canvas
function _onMakeImage() {
this._elImage.src = this._elCanvas.toDataURL("image/png");
this._elImage.style.display = "block";
this._elCanvas.style.display = "none";
}
// Android 2.1 bug workaround
// http://code.google.com/p/android/issues/detail?id=5141
if (this._android && this._android <= 2.1) {
var factor = 1 / window.devicePixelRatio;
var drawImage = CanvasRenderingContext2D.prototype.drawImage;
CanvasRenderingContext2D.prototype.drawImage = function (image, sx, sy, sw, sh, dx, dy, dw, dh) {
if (("nodeName" in image) && /img/i.test(image.nodeName)) {
for (var i = arguments.length - 1; i >= 1; i--) {
arguments[i] = arguments[i] * factor;
}
} else if (typeof dw == "undefined") {
arguments[1] *= factor;
arguments[2] *= factor;
arguments[3] *= factor;
arguments[4] *= factor;
}
drawImage.apply(this, arguments);
};
}
/**
* Check whether the user's browser supports Data URI or not
*
* @private
* @param {Function} fSuccess Occurs if it supports Data URI
* @param {Function} fFail Occurs if it doesn't support Data URI
*/
function _safeSetDataURI(fSuccess, fFail) {
var self = this;
self._fFail = fFail;
self._fSuccess = fSuccess;
// Check it just once
if (self._bSupportDataURI === null) {
var el = document.createElement("img");
var fOnError = function() {
self._bSupportDataURI = false;
if (self._fFail) {
self._fFail.call(self);
}
};
var fOnSuccess = function() {
self._bSupportDataURI = true;
if (self._fSuccess) {
self._fSuccess.call(self);
}
};
el.onabort = fOnError;
el.onerror = fOnError;
el.onload = fOnSuccess;
el.src = "data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="; // the Image contains 1px data.
return;
} else if (self._bSupportDataURI === true && self._fSuccess) {
self._fSuccess.call(self);
} else if (self._bSupportDataURI === false && self._fFail) {
self._fFail.call(self);
}
};
/**
* Drawing QRCode by using canvas
*
* @constructor
* @param {HTMLElement} el
* @param {Object} htOption QRCode Options
*/
var Drawing = function (el, htOption) {
this._bIsPainted = false;
this._android = _getAndroid();
this._htOption = htOption;
this._elCanvas = document.createElement("canvas");
this._elCanvas.width = htOption.width;
this._elCanvas.height = htOption.height;
el.appendChild(this._elCanvas);
this._el = el;
this._oContext = this._elCanvas.getContext("2d");
this._bIsPainted = false;
this._elImage = document.createElement("img");
this._elImage.alt = "Scan me!";
this._elImage.style.display = "none";
this._el.appendChild(this._elImage);
this._bSupportDataURI = null;
};
/**
* Draw the QRCode
*
* @param {QRCode} oQRCode
*/
Drawing.prototype.draw = function (oQRCode) {
var _elImage = this._elImage;
var _oContext = this._oContext;
var _htOption = this._htOption;
var nCount = oQRCode.getModuleCount();
var nWidth = _htOption.width / nCount;
var nHeight = _htOption.height / nCount;
var nRoundedWidth = Math.round(nWidth);
var nRoundedHeight = Math.round(nHeight);
_elImage.style.display = "none";
this.clear();
for (var row = 0; row < nCount; row++) {
for (var col = 0; col < nCount; col++) {
var bIsDark = oQRCode.isDark(row, col);
var nLeft = col * nWidth;
var nTop = row * nHeight;
_oContext.strokeStyle = bIsDark ? _htOption.colorDark : _htOption.colorLight;
_oContext.lineWidth = 1;
_oContext.fillStyle = bIsDark ? _htOption.colorDark : _htOption.colorLight;
_oContext.fillRect(nLeft, nTop, nWidth, nHeight);
// 안티 앨리어싱 방지 처리
_oContext.strokeRect(
Math.floor(nLeft) + 0.5,
Math.floor(nTop) + 0.5,
nRoundedWidth,
nRoundedHeight
);
_oContext.strokeRect(
Math.ceil(nLeft) - 0.5,
Math.ceil(nTop) - 0.5,
nRoundedWidth,
nRoundedHeight
);
}
}
this._bIsPainted = true;
};
/**
* Make the image from Canvas if the browser supports Data URI.
*/
Drawing.prototype.makeImage = function () {
if (this._bIsPainted) {
_safeSetDataURI.call(this, _onMakeImage);
}
};
/**
* Return whether the QRCode is painted or not
*
* @return {Boolean}
*/
Drawing.prototype.isPainted = function () {
return this._bIsPainted;
};
/**
* Clear the QRCode
*/
Drawing.prototype.clear = function () {
this._oContext.clearRect(0, 0, this._elCanvas.width, this._elCanvas.height);
this._bIsPainted = false;
};
/**
* @private
* @param {Number} nNumber
*/
Drawing.prototype.round = function (nNumber) {
if (!nNumber) {
return nNumber;
}
return Math.floor(nNumber * 1000) / 1000;
};
return Drawing;
})();
/**
* Get the type by string length
*
* @private
* @param {String} sText
* @param {Number} nCorrectLevel
* @return {Number} type
*/
function _getTypeNumber(sText, nCorrectLevel) {
var nType = 1;
var length = _getUTF8Length(sText);
for (var i = 0, len = QRCodeLimitLength.length; i <= len; i++) {
var nLimit = 0;
switch (nCorrectLevel) {
case QRErrorCorrectLevel.L :
nLimit = QRCodeLimitLength[i][0];
break;
case QRErrorCorrectLevel.M :
nLimit = QRCodeLimitLength[i][1];
break;
case QRErrorCorrectLevel.Q :
nLimit = QRCodeLimitLength[i][2];
break;
case QRErrorCorrectLevel.H :
nLimit = QRCodeLimitLength[i][3];
break;
}
if (length <= nLimit) {
break;
} else {
nType++;
}
}
if (nType > QRCodeLimitLength.length) {
throw new Error("Too long data");
}
return nType;
}
function _getUTF8Length(sText) {
var replacedText = encodeURI(sText).toString().replace(/\%[0-9a-fA-F]{2}/g, 'a');
return replacedText.length + (replacedText.length != sText ? 3 : 0);
}
/**
* @class QRCode
* @constructor
* @example
* new QRCode(document.getElementById("test"), "http://jindo.dev.naver.com/collie");
*
* @example
* var oQRCode = new QRCode("test", {
* text : "http://naver.com",
* width : 128,
* height : 128
* });
*
* oQRCode.clear(); // Clear the QRCode.
* oQRCode.makeCode("http://map.naver.com"); // Re-create the QRCode.
*
* @param {HTMLElement|String} el target element or 'id' attribute of element.
* @param {Object|String} vOption
* @param {String} vOption.text QRCode link data
* @param {Number} [vOption.width=256]
* @param {Number} [vOption.height=256]
* @param {String} [vOption.colorDark="#000000"]
* @param {String} [vOption.colorLight="#ffffff"]
* @param {QRCode.CorrectLevel} [vOption.correctLevel=QRCode.CorrectLevel.H] [L|M|Q|H]
*/
QRCode = function (el, vOption) {
this._htOption = {
width : 256,
height : 256,
typeNumber : 4,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRErrorCorrectLevel.H
};
if (typeof vOption === 'string') {
vOption = {
text : vOption
};
}
// Overwrites options
if (vOption) {
for (var i in vOption) {
this._htOption[i] = vOption[i];
}
}
if (typeof el == "string") {
el = document.getElementById(el);
}
if (this._htOption.useSVG) {
Drawing = svgDrawer;
}
this._android = _getAndroid();
this._el = el;
this._oQRCode = null;
this._oDrawing = new Drawing(this._el, this._htOption);
if (this._htOption.text) {
this.makeCode(this._htOption.text);
}
};
/**
* Make the QRCode
*
* @param {String} sText link data
*/
QRCode.prototype.makeCode = function (sText) {
this._oQRCode = new QRCodeModel(_getTypeNumber(sText, this._htOption.correctLevel), this._htOption.correctLevel);
this._oQRCode.addData(sText);
this._oQRCode.make();
this._el.title = sText;
this._oDrawing.draw(this._oQRCode);
this.makeImage();
};
/**
* Make the Image from Canvas element
* - It occurs automatically
* - Android below 3 doesn't support Data-URI spec.
*
* @private
*/
QRCode.prototype.makeImage = function () {
if (typeof this._oDrawing.makeImage == "function" && (!this._android || this._android >= 3)) {
this._oDrawing.makeImage();
}
};
/**
* Clear the QRCode
*/
QRCode.prototype.clear = function () {
this._oDrawing.clear();
};
/**
* @name QRCode.CorrectLevel
*/
QRCode.CorrectLevel = QRErrorCorrectLevel;
})();
================================================
FILE: Azure/WebSite/source/ConnectTheDotsWebSite/packages.config
================================================
================================================
FILE: Azure/WebSite/source/ConnectTheDotsWebSite.sln
================================================
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConnectTheDotsWebSite", "ConnectTheDotsWebSite\ConnectTheDotsWebSite.csproj", "{2E3E7496-59D5-48BC-909E-207120886E3E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2E3E7496-59D5-48BC-909E-207120886E3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2E3E7496-59D5-48BC-909E-207120886E3E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2E3E7496-59D5-48BC-909E-207120886E3E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2E3E7496-59D5-48BC-909E-207120886E3E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
================================================
FILE: Contribute.md
================================================
## How to contribute
There are many ways that you can contribute to the ConnectTheDots project:
* Submit a bug
* Submit a code fix for a bug
* Submit code to add a new device or sensor to the project, or modify existing device code
* Submit code to add a new device gateway to the project, or modify existing gateway code (e.g. in a different programming language)
* Submit code or configuration for storing or analyzing the data in Azure
* Submit a new website design
* Submit additions or modifications to the documentation
* Submit a feature request
The key design principle is that the code makes it easy for people to get data from sensors into Azure and to utilize IoT services in Azure such as Azure Stream Analytics and Machine Learning.
## Contributing Code
To contribute code you need to issue a Pull Request. All code submissions will be reviewed and tested by the team, and those that meet a high bar for both quality and design/roadmap appropriateness will be merged into the source. Be sure to follow the existing file/folder structure when adding new boards or sensors.
You must sign a [Contribution License Agreement](https://cla.microsoft.com/) ([CLA](https://cla.microsoft.com/)) before submitting a Pull Request. To complete the CLA, you will need to submit the request via the form and then electronically sign the CLA when you receive the email containing the link to the document.
This needs to only be done once, for your first contribution to the ConnectTheDots project.
================================================
FILE: Devices/DirectlyConnectedDevices/Common/csharp/ConnectTheDotsHelper.cs
================================================
using Microsoft.Azure.Devices.Client;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
namespace ConnectTheDotsHelper
{
// Data contract defining Connect The Dots data telemetry format
[DataContract]
public class D2CMessage
{
[DataMember]
public string guid;
[DataMember]
public string displayname;
[DataMember]
public string organization;
[DataMember]
public string location;
[DataMember]
public string measurename;
[DataMember]
public string unitofmeasure;
[DataMember]
public string timecreated;
[DataMember]
public double value;
}
[DataContract]
public class CTDSensor
{
[DataMember]
public D2CMessage message;
[DataMember]
public bool send;
}
// Data contract defining Connect The Dots Cloud to Device message format
[DataContract]
public class C2DMessage
{
[DataMember]
public string alerttype;
[DataMember]
public string message;
[DataMember]
public string guid;
[DataMember]
public string displayname;
[DataMember]
public string organization;
[DataMember]
public string location;
[DataMember]
public string measurename;
[DataMember]
public string unitofmeasure;
[DataMember]
public string timecreated;
[DataMember]
public double value;
}
///
/// ConnectTheDots class
/// Provides helper functions for easily connect a device to Azure IoT Hub and send and receive messages to and from a ConnectTheDots website
///
public class ConnectTheDots
{
// Azure IoT Hub client
private DeviceClient deviceClient;
// Collection of sensors
public Dictionary Sensors { get; set; } = new Dictionary();
public void AddSensor(string MeasureName, string UnitOfMeasure, bool send = true)
{
CTDSensor sensor = new CTDSensor();
sensor.message = new D2CMessage {
guid = Guid,
displayname = DisplayName,
location = Location,
organization = Organization,
measurename = MeasureName,
unitofmeasure = UnitOfMeasure,
timecreated = DateTime.UtcNow.ToString("o"),
value = 0
};
sensor.send = send;
Sensors.Add(MeasureName, sensor);
}
public void setSensorStreaming(string MeasureName, bool on)
{
if ((Sensors != null) && (Sensors[MeasureName] != null))
{
Sensors[MeasureName].send = on;
}
}
// ConnectTheDots properties
private string _ConnectionString;
public string ConnectionString {
get
{
return _ConnectionString;
}
set
{
this._ConnectionString = value;
this.Guid = ExtractDeviceIdFromConnectionString(value);
}
}
public string Guid { get; set; }
public string DisplayName { get; set; }
public string Organization { get; set; }
public string Location { get; set; }
public bool SendTelemetryData { get; set; }
public int SendTelemetryFreq { get; set; } = 1000;
public bool IsConnected { get; set; } = false;
// Sending and receiving tasks
CancellationTokenSource TokenSource = new CancellationTokenSource();
// Event Handler for notifying the reception of a new message from IoT Hub
public event EventHandler ReceivedMessage;
///
/// ReceivedMessageEventArgs class
/// Class to pass event arguments for new message received from ConnectTheDots dashboard
///
public class ReceivedMessageEventArgs : System.EventArgs
{
// Provide one or more constructors, as well as fields and
// accessors for the arguments.
public C2DMessage Message { get; set; }
public ReceivedMessageEventArgs(C2DMessage message)
{
Message = message;
}
}
// Trigger for notifying reception of new message from Connect The Dots dashboard
protected virtual void OnReceivedMessage(ReceivedMessageEventArgs e)
{
if (ReceivedMessage != null)
ReceivedMessage(this, e);
}
///
/// Serialize message
///
private byte[] Serialize(object obj)
{
string json = JsonConvert.SerializeObject(obj);
return Encoding.UTF8.GetBytes(json);
}
///
/// DeSerialize message
///
private C2DMessage DeSerialize(byte[] data)
{
string text = Encoding.UTF8.GetString(data, 0, data.Length);
return JsonConvert.DeserializeObject(text);
}
///
/// Send device's telemetry data to Azure IoT Hub
///
public async void sendDeviceTelemetryData(D2CMessage[] data)
{
try
{
var msg = new Message(Serialize(data));
if (deviceClient != null)
{
await deviceClient.SendEventAsync(msg);
Debug.WriteLine("Sent telemetry data to IoT Hub\n" + data.ToString());
}
else Debug.WriteLine("Connection To IoT Hub is not established. Cannot send message now");
}
catch (System.Exception e)
{
Debug.WriteLine("Exception while sending device telemetry data :\n" + e.Message.ToString());
}
}
///
/// ExtractDeviceIdFromConnectionString
/// Extract DeviceId from connectionstring to use as guid in ConnectTheDots dashboard
///
///
///
public string ExtractDeviceIdFromConnectionString(string connectionString)
{
Regex pattern = new Regex(@"HostName=(?[^\s/]*);DeviceId=(?[^\s/]*);SharedAccessKey=(?[^\s/]*)");
Match match = pattern.Match(connectionString);
return match.Groups["deviceId"].Value;
}
///
/// Connect
/// Connect to Azure IoT Hub ans start the send and receive loops
///
///
public bool Connect()
{
try
{
// Create Azure IoT Hub Client and open messaging channel
deviceClient = DeviceClient.CreateFromConnectionString(this.ConnectionString, TransportType.Http1);
deviceClient.OpenAsync();
IsConnected = true;
// Create send and receive tasks
CancellationToken ct = TokenSource.Token;
Task.Factory.StartNew(async()=> {
while (true)
{
if (SendTelemetryData)
{
// Create message to be sent
D2CMessage[] dataToSend = new D2CMessage[Sensors.Count];
int index = 0;
foreach (KeyValuePair sensor in Sensors)
{
// Update the values that
sensor.Value.message.guid = this.Guid;
sensor.Value.message.displayname = DisplayName;
sensor.Value.message.location = Location;
sensor.Value.message.timecreated = DateTime.UtcNow.ToString("o");
if (sensor.Value.send)
dataToSend[index++] = sensor.Value.message;
}
// Send message
sendDeviceTelemetryData(dataToSend);
}
await Task.Delay(SendTelemetryFreq);
if (ct.IsCancellationRequested)
{
// Cancel was called
Debug.WriteLine("Sending task canceled");
break;
}
}
}, ct);
Task.Factory.StartNew(async() =>
{
while (true)
{
if (deviceClient != null)
{
Message message = null;
try
{
// Receive message from Cloud (for now this is a pull because only HTTP is available for UWP applications)
message = await deviceClient.ReceiveAsync();
}
catch (Exception e)
{
// Something went wrong. Indicate the backend that we coudn't accept the message
Debug.WriteLine("Something went wrong when receiving message from IoT Hub: " + e.Message);
}
if (message != null)
{
try
{
// Read message and deserialize
C2DMessage command = DeSerialize(message.GetBytes());
// Invoke message received callback
OnReceivedMessage(new ReceivedMessageEventArgs(command));
// We received the message, indicate IoTHub we treated it
await deviceClient.CompleteAsync(message);
}
catch (Exception e)
{
Debug.WriteLine("Something went wrong when receiving message from IoT Hub: " + e.Message);
// Something went wrong. Indicate the backend that we coudn't accept the message
await deviceClient.RejectAsync(message);
}
}
} else
{
await Task.Delay(200);
}
if (ct.IsCancellationRequested)
{
// Cancel was called
Debug.WriteLine("Receiving task canceled");
break;
}
}
}, ct);
}
catch (Exception e)
{
Debug.WriteLine("Error while trying to connect to IoT Hub: " + e.Message);
deviceClient = null;
return false;
}
return true;
}
///
/// Disconnect
/// Disconnect from IoT Hub
///
///
public bool Disconnect()
{
if (deviceClient != null)
{
try
{
deviceClient.CloseAsync();
deviceClient = null;
IsConnected = false;
}
catch
{
Debug.WriteLine("Error while trying close the IoT Hub connection");
return false;
}
}
return true;
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/Common/javascript/connectthedots.js
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
var clientFromConnectionString = require('azure-iot-device-mqtt').clientFromConnectionString;
var Message = require('azure-iot-device').Message;
// Using a json settings file for Events Hub connectivity
var devicesettings;
// Iot Hub client instance
var client;
var is_connected = false;
var init_callback;
var receive_callback;
// ---------------------------------------------------------------
// validate settings from JSON file passed as a parameter to the app
function validate_settings(settings, options) {
console.log("Validating device settings");
var missing = [];
for (var idx in options) {
if (settings[options[idx]] === undefined) missing.push(options[idx]);
}
if (missing.length > 0) {
// app is terminated if settings are missing
throw new Error('Required settings ' + (missing.join(', ')) + ' missing.');
}
}
// ---------------------------------------------------------------
// Format sensor data into JSON
function format_sensor_data(deviceid, displayname, organization, location, measurename, unitofmeasure, timecreated, value) {
var JSON_obj = {
"guid": deviceid,
"displayname": displayname,
"organization": organization,
"location": location,
"measurename": measurename,
"unitofmeasure": unitofmeasure,
"timecreated": timecreated,
"value": value
};
return JSON.stringify(JSON_obj);
}
// ---------------------------------------------------------------
// Initializes connection settings to Event Hub
var connectCallback = function (err) {
if (err) {
console.error('Could not connect: ' + err.message);
} else {
console.log('IoT Hub Client connected');
client.on('message', function (msg) {
// Invoke receive callback to notify the user of a new message
if (receive_callback!==undefined) {
receive_callback(msg);
}
client.complete(msg, printResultFor('completed'));
// TODO:Implement sending the received message up to the connectthedots user
// reject and abandon follow the same pattern.
// /!\ reject and abandon are not available with MQTT
});
client.on('error', function (err) {
console.error(err.message);
});
client.on('disconnect', function () {
is_connected = false;
client.removeAllListeners();
client.connect(connectCallback);
});
is_connected = true;
init_callback();
}
}
exports.init_connection = function(settings, initCallback, receiveCallback)
{
console.log("Initializig the connection with Azure IoT Hub");
devicesettings = settings;
console.log("Validating connection settings");
// Validate settings
validate_settings(devicesettings, ['deviceid', 'iothubconnectionstring', 'displayname', 'organization', 'location']);
console.log("Connecting to Azure IoT Hub");
// Create Iot Hub Client instance
client = clientFromConnectionString(devicesettings.iothubconnectionstring);
init_callback = initCallback;
if (receiveCallback!==undefined) receive_callback = receiveCallback;
// Open the transport stack
client.open(connectCallback);
};
function send_raw_message(raw_message)
{
if (is_connected)
{
var message = new Message(raw_message);
console.log('Sending message: ' + message.getData());
client.sendEvent(message, printResultFor('send'));
} else
{
console.log("Transport channel is not opened. Trying to open it...");
}
}
// ---------------------------------------------------------------
// Send message to Event Hub
exports.send_message = function(measurename, unitofmeasure, value)
{
var currentTime = new Date().toISOString();
var message = format_sensor_data(devicesettings.deviceid, devicesettings.displayname, devicesettings.organization, devicesettings.location, measurename, unitofmeasure, currentTime, value);
console.log("Sending message: " + message);
send_raw_message(message);
}
// ---------------------------------------------------------------
// Send bulk messages to Event Hub
exports.send_bulk_message = function(messages)
{
var currentTime = new Date().toISOString();
var message;
messages.forEach( function(element, index, array){
message+= format_sensor_data(devicesettings.deviceid, devicesettings.displayname, devicesettings.organization, devicesettings.location, element.measurename, element.unitofmeasure, currentTime, element.value);
});
console.log("Sending bulk message: " + message);
send_raw_message(message);
}
// Helper function to print results in the console
function printResultFor(op) {
return function printResult(err, res) {
if (err) console.log(op + ' error: ' + err.toString());
if (res) console.log(op + ' status: ' + res.constructor.name);
};
}
================================================
FILE: Devices/DirectlyConnectedDevices/Common/javascript/package.json
================================================
{
"name": "connectthedots",
"version": "1.0.3",
"description": "Simple library to connect a node app to Azure IoT Hub using ConnectTheDots.io",
"main": "connectthedots.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"azure-iot-device": "1.0.15",
"azure-iot-device-amqp": "1.0.15",
"azure-iot-device-http": "1.0.15",
"azure-iot-device-mqtt": "1.0.15"
},
"author": "Microsoft",
"license": "MIT"
}
================================================
FILE: Devices/DirectlyConnectedDevices/Common/javascript/readme.md
================================================
[ConnectTheDots.io](http://connectthedots.io) is an open source project created by Microsoft to help you get tiny devices connected to Microsoft Azure IoT and to implement great IoT solutions taking advantage of Microsoft Azure advanced analytic services such as Azure Stream Analytics and Azure Machine Learning.
This library is a helper for node developers to make it easy to connect their apps to a ConnectTheDots solution.
Learn more about the project on [http://connectthedots.io](http://connectthedots.io)
================================================
FILE: Devices/DirectlyConnectedDevices/ESP8266/ESP8266_setup.md
================================================
This document explains how to connect a ESP8266 Adafruit Huzzah device to ConnectTheDots
##Prerequisites ##
### Required Software
- Azure Subscription (this is the subscription you want the services to be deployed to if you have several Azure subscriptions)
- [Git](https://git-scm.com/downloads) - For cloning the current repository
- Arduino IDE, version 1.6.8. (Earlier versions will not work with the Azure IoT library)
- Sensor libraries from Adafruit: DHT Sensor library, Adafruit Unified Sensor
- Deploy an instance of ConnectTheDots (see related chapter below)
### Required Hardware
- Adafruit Huzzah ESP8266 IoT kit
- Huzzah ESP8266 board
- DHT22 Sensor
- breadboard
- M/M jumper wires
- 10k Ohm Resistor (brown, black, orange)
- A microB USB cable
- A desktop or laptop computer which can run **Arduino IDE 1.6.8**
## Deploy The ConnectTheDots solution to your Azure subscription
If you have not done so already, follow all the instructions in the "Setup Tasks" paragraph of the [getting started guide](../../../GettingStarted.md).
Once the solution is deployed, you will need to create a unique id for your device in the IoT Hub device registry as instructed in the same paragraph of the getting started guide.
## Connect the DHT22 Sensor Module to your Device
- Using [this image](https://github.com/Azure/connectthedots/blob/master/Devices/DirectlyConnectedDevices/ESP8266/images/huzzah_connect_the_dots.png?raw=true) as a reference, connect your DHT22 and Adafruit Huzzah ESP8266 to the breadboard
***
**Note:** Column on the left corresponds to sensor and on the Right to board. On the image, the board is place between 10 and 30 and sensor between 1 and 9. Additionally, when counting the - pins, start from the right and count in, as these do not align with the numbers indicated on the board.
***
- Connect the board, sensor, and parts on the breadboard:
| Start | End | Connector |
| ----------------------- | ---------------------- | ------------ |
| Huzzah RST (Pin 30i) | Huzzah CHPD (Pin 15i) | Huzzah ESP8266 |
| DHT22 (Pin 1J) | DHT22 (Pin 4J) | DHT22 |
| NULL (Pin 2I) | Pin 1F | 10k Ohm Resistor |
- For the pins, we will use the following wiring:
| Start | End | Cable Color | Connected to |
| ----------------------- | ---------------------- | ------------ | ------------- |
| VDD (Pin 1G) | Pin 29J | Red cable | DHT22 |
| DATA (Pin 2G) | Pin 17B | White cable | DHT22 |
| GND (Pin 4G) | Pin 9- | Black cable | DHT22 |
| GND (Pin 27J) | Pin 25- | Black cable | Huzzah ESP8266 |
| Pin 22B | Pin 6A | Red cable | Red LED |
| Pin 21B | Pin 3A | Green cable | Green LED |
- For more information, see: [Adafruit DHT22 sensor setup](https://learn.adafruit.com/dht/connecting-to-a-dhtxx-sensor).
**At the end of your work, your Adafruit Huzzah ESP8266 should be connected with a working sensor.**
## Run the application on the ESP8266
### Add the Adafruit Huzzah ESP8266 to the Arduino IDE
You will need to install the Adafruit Huzzah ESP8266 board extension for the Arduino IDE:
- Follow the instructions [here](https://learn.adafruit.com/adafruit-huzzah-esp8266-breakout/using-arduino-ide). There you will see how to add a URL pointing to Adafruit's repository of board extensions, how to make the Adafruit Huzzah ESP8266 board selectable under the **Tools** menu, and how to get the Blink sketch to run.
- **Note**: There are two versions of Huzzah board, one with microB USB connector and other with a USB cable connected directly to the board. Both works properly with Azure IoT.
- Boards with microB connector don't have the GPIO0 button. So, in the 'Blink Test', ignore the steps to put the board in the bootload mode, and go directly to the step to upload the sketch via the IDE.
- After going through this, you should have a working sample with a blinking light on your board.
- If you run into any connection issues, unplug the board, hold the reset button, and while still holding it, plug the board back in. This will flash to board to try again.
### Install Library Dependencies
Open the file Devices\DirectlyConnectedDevices\ESP8266\connect_the_dots\connect_the_dots.ino in the Arduino IDE.
For this project, we'll need the below libraries. To install them, click on the `Sketch -> Include Library -> Manage Libraries`. Search for each library using the box in the upper-right to filter your search, click on the found library, and click the "Install" button.
- DHT Sensor Library
- Adafruit Unified Sensor
- AzureIoTHub
- AzureIoTUtility
- AzureIoTProtocol_MQTT
- ArduinoJSON
### Modify the code
- In the connect_the_dots.ino file, look for the following lines of code:
```
static char ssid[] = "[Your WiFi network SSID or name]";
static char pass[] = "[Your WiFi network WPA password or WEP key]";
```
- Replace the placeholders with your WiFi name (SSID), WiFi password, and the device connection string you created at the beginning of this tutorial. Save with `Control-s`
- Open up the file `connect_the_dots.cpp`. Look for the following lines of code and replace the placeholders connection information (this is the Device information that you've created when adding a new device id in the IoT Hub device registry):
```
static const char* deviceId = "[deviceid]";
static const char* connectionString = "[connectionstring]";
```
- You can also change the location, organization and displayname values to the ones of your choice
- Save all changes
### Compile and deploy the sample
- Select the COM port on the Arduino IDE. Use **Tools -> Port -> COM** to select it.
- Use **Sketch -> Upload** on Arduino IDE to compile and upload to the device.
At this point your device should connect to Azure IoT Hub and start sending telemetry data to your ConnectTheDots solution.
================================================
FILE: Devices/DirectlyConnectedDevices/ESP8266/connect_the_dots/connect_the_dots.cpp
================================================
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#include
#include
#include
// Includes and variables for serializing messages
#include
#define JSON_BUFFER_SIZE 512
StaticJsonBuffer jsonBuffer;
// Includes and variables for the DHT22 temperature/humidity sensor
#include
#define DHTPIN 2 // Digital pin the sensor is connected to
#define DHTTYPE DHT22 // You'd need to change this one if you want to use a DHT1 or DHT21 sensor
DHT dht(DHTPIN, DHTTYPE);
// Find under Microsoft Azure IoT Suite -> DEVICES -> -> Device Details and Authentication Keys
static const char* deviceId = "[device-id]";
static const char* connectionString = "[Device Connection String]";
static const char* organization = "My Organization";
static const char* location = "My Location";
static const char* tempMeasureName = "Temperature";
static const char* tempUnitOfMeasure = "C";
static const char* hmdtMeasureName = "Humidity";
static const char* hmdtUnitOfMeasure = "%";
static void sendMessage(IOTHUB_CLIENT_LL_HANDLE iotHubClientHandle, const unsigned char* buffer, size_t size)
{
IOTHUB_MESSAGE_HANDLE messageHandle = IoTHubMessage_CreateFromByteArray(buffer, size);
if (messageHandle == NULL)
{
LogInfo("unable to create a new IoTHubMessage\r\n");
}
else
{
if (IoTHubClient_LL_SendEventAsync(iotHubClientHandle, messageHandle, NULL, NULL) != IOTHUB_CLIENT_OK)
{
LogInfo("failed to hand over the message to IoTHubClient");
}
else
{
LogInfo("IoTHubClient accepted the message for delivery\r\n");
}
IoTHubMessage_Destroy(messageHandle);
}
}
/*this function "links" IoTHub to the serialization library*/
static IOTHUBMESSAGE_DISPOSITION_RESULT IoTHubMessage(IOTHUB_MESSAGE_HANDLE message, void* userContextCallback)
{
IOTHUBMESSAGE_DISPOSITION_RESULT result;
const unsigned char* buffer;
size_t size;
if (IoTHubMessage_GetByteArray(message, &buffer, &size) != IOTHUB_MESSAGE_OK)
{
LogInfo("unable to IoTHubMessage_GetByteArray\r\n");
result = IOTHUBMESSAGE_ABANDONED;
}
else
{
/*buffer is not zero terminated*/
char* temp = (char*)malloc(size + 1);
if (temp == NULL)
{
LogInfo("failed to malloc\r\n");
result = IOTHUBMESSAGE_ABANDONED;
}
else
{
// TODO: add code to react to command
memcpy(temp, buffer, size);
temp[size] = '\0';
LogInfo("Received message from IoTHub: %s\r\n", temp);
result = IOTHUBMESSAGE_ACCEPTED;
free(temp);
}
}
return result;
}
void connect_the_dots_run(void)
{
dht.begin();
IOTHUB_CLIENT_LL_HANDLE iotHubClientHandle = IoTHubClient_LL_CreateFromConnectionString(connectionString, MQTT_Protocol);
if (iotHubClientHandle == NULL)
{
LogInfo("Failed on IoTHubClient_CreateFromConnectionString\r\n");
}
else
{
#ifdef MBED_BUILD_TIMESTAMP
// For mbed add the certificate information
if (IoTHubClient_LL_SetOption(iotHubClientHandle, "TrustedCerts", certificates) != IOTHUB_CLIENT_OK)
{
LogInfo("failure to set option \"TrustedCerts\"\r\n");
}
#endif // MBED_BUILD_TIMESTAMP
if (IoTHubClient_LL_SetMessageCallback(iotHubClientHandle, IoTHubMessage, NULL) != IOTHUB_CLIENT_OK)
{
LogInfo("unable to IoTHubClient_SetMessageCallback\r\n");
}
else
{
// Prepare json buffer for sending data
JsonArray& data = jsonBuffer.createArray();
JsonObject& tempRoot = jsonBuffer.createObject();
data.add(tempRoot);
JsonObject& hmdtRoot = jsonBuffer.createObject();
data.add(hmdtRoot);
tempRoot["guid"] = (char*)deviceId;
tempRoot["displayname"] = (char*)deviceId;
tempRoot["location"] = (char*)location;
tempRoot["organization"] = (char*)organization;
tempRoot["measurename"] = (char*)tempMeasureName;
tempRoot["unitofmeasure"] = (char*)tempUnitOfMeasure;
float Temp = 0;
hmdtRoot["guid"] = (char*)deviceId;
hmdtRoot["displayname"] = (char*)deviceId;
hmdtRoot["location"] = (char*)location;
hmdtRoot["organization"] = (char*)organization;
hmdtRoot["measurename"] = (char*)hmdtMeasureName;
hmdtRoot["unitofmeasure"] = (char*)hmdtUnitOfMeasure;
float Hmdt = 0;
char dataBuffer[JSON_BUFFER_SIZE];
unsigned char* dataUCBuffer;
// Variables for time stamp creation
time_t epochTime;
struct tm* currentTime;
char timeISOString[25];
// Send new data point regularly.
while (1)
{
// Get sensor data
Temp = dht.readTemperature();
Hmdt = dht.readHumidity();
// Get current time stamp
epochTime = time(NULL);
currentTime = localtime(&epochTime);
sprintf(timeISOString, "%d-%02d-%02dT%02d:%02d:%02d.000Z",currentTime->tm_year+1900, currentTime->tm_mon+1, currentTime->tm_mday, currentTime->tm_hour, currentTime->tm_min, currentTime->tm_sec);
// Prepare JSON message
tempRoot["timecreated"] = (char*)timeISOString;
tempRoot["value"] = Temp;
hmdtRoot["timecreated"] = (char*)timeISOString;
hmdtRoot["value"] = Hmdt;
// Create JSON buffer
data.printTo(dataBuffer, sizeof(dataBuffer));
// We need to convert the char* buffer into an unsigned char* one, as we need UTF8 encoded data sent to Azure
dataUCBuffer = (unsigned char*) &dataBuffer[0];
LogInfo("Sending message: %s\r\n", dataUCBuffer);
// Send JSON message to Azure IoT Hub
sendMessage(iotHubClientHandle, dataUCBuffer, strlen(dataBuffer)*sizeof(unsigned char));
IoTHubClient_LL_DoWork(iotHubClientHandle);
ThreadAPI_Sleep(500);
}
}
IoTHubClient_LL_Destroy(iotHubClientHandle);
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/ESP8266/connect_the_dots/connect_the_dots.h
================================================
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#ifndef CONNECT_THE_DOTS_H
#define CONNECT_THE_DOTS_H
#ifdef __cplusplus
//extern "C" {
#endif
void connect_the_dots_run(void);
#ifdef __cplusplus
//}
#endif
#endif /* CONNECT_THE_DOTS_H */
================================================
FILE: Devices/DirectlyConnectedDevices/ESP8266/connect_the_dots/connect_the_dots.ino
================================================
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// Please use an Arduino IDE 1.6.8 or greater
#if ARDUINO_ARCH_ESP8266 //============================
// for ESP8266
#include
#include
#include
static WiFiClientSecure sslClient;
#elif ARDUINO_SAMD_FEATHER_M0 //-----------------------
// for Adafruit WINC1500
#include
#include
#include
#include
// for the Adafruit WINC1500 we need to create our own WiFi instance
// Define the WINC1500 board connections below.
#define WINC_CS 8
#define WINC_IRQ 7
#define WINC_RST 4
#define WINC_EN 2 // or, tie EN to VCC
// Setup the WINC1500 connection with the pins above and the default hardware SPI.
Adafruit_WINC1500 WiFi(WINC_CS, WINC_IRQ, WINC_RST);
static Adafruit_WINC1500SSLClient sslClient; // for Adafruit WINC1500
#else //-----------------------------------------------
// For WiFi101 based boards/shields
#include
#include
#include
static WiFiSSLClient sslClient;
#endif //==============================================
#include
#include "connect_the_dots.h"
static char ssid[] = "Tech Summit";
static char pass[] = "Microsoft";
/*
* The new version of AzureIoTHub library change the AzureIoTHubClient signature.
* As a temporary solution, we will test the definition of AzureIoTHubVersion, which is only defined
* in the new AzureIoTHub library version. Once we totally deprecate the last version, we can take
* the ‘#ifdef’ out.
*/
#ifdef AzureIoTHubVersion
static AzureIoTHubClient iotHubClient;
#else
AzureIoTHubClient iotHubClient(sslClient);
#endif
void setup() {
initSerial();
initWifi();
initTime();
#ifdef AzureIoTHubVersion
iotHubClient.begin(sslClient);
#else
iotHubClient.begin();
#endif
}
void loop() {
// Run the Connect The Dots from the Azure IoT Hub C SDK
// You must set the device id, device key, IoT Hub name and IotHub suffix in
// connect_the_dots.c
connect_the_dots_run();
}
void initSerial() {
#if ARDUINO_ARCH_ESP8266 //============================
// For ESP8266 boards
Serial.begin(115200);
Serial.setDebugOutput(true);
#else //-----------------------------------------------
// For SAMD boards (e.g. MKR1000, Adafruit WINC1500 based)
Serial.begin(9600);
#endif //==============================================
}
void initWifi() {
#if ARDUINO_SAMD_FEATHER_M0 //=========================
// for the Adafruit WINC1500 we need to enable the chip
pinMode(WINC_EN, OUTPUT);
digitalWrite(WINC_EN, HIGH);
#endif //==============================================
// Attempt to connect to Wifi network:
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
// Connect to WPA/WPA2 network. Change this line if using open or WEP network:
WiFi.begin(ssid, pass);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("Connected to wifi");
}
void initTime() {
#if ARDUINO_ARCH_ESP8266 //============================
time_t epochTime;
configTime(0, 0, "pool.ntp.org", "time.nist.gov");
while (true) {
epochTime = time(NULL);
if (epochTime == 0) {
Serial.println("Fetching NTP epoch time failed! Waiting 2 seconds to retry.");
delay(2000);
} else {
Serial.print("Fetched NTP epoch time is: ");
Serial.println(epochTime);
break;
}
}
#elif ARDUINO_SAMD_FEATHER_M0 //-----------------------
Adafruit_WINC1500UDP ntpUdp;
NTPClient ntpClient(ntpUdp);
ntpClient.begin();
while (!ntpClient.update()) {
Serial.println("Fetching NTP epoch time failed! Waiting 5 seconds to retry.");
delay(5000);
}
ntpClient.end();
unsigned long epochTime = ntpClient.getEpochTime();
Serial.print("Fetched NTP epoch time is: ");
Serial.println(epochTime);
iotHubClient.setEpochTime(epochTime);
#else -------------------------------------------------
// for WiFi101 based boards
WiFiUDP ntpUdp;
NTPClient ntpClient(ntpUdp);
ntpClient.begin();
while (!ntpClient.update()) {
Serial.println("Fetching NTP epoch time failed! Waiting 5 seconds to retry.");
delay(5000);
}
ntpClient.end();
unsigned long epochTime = ntpClient.getEpochTime();
Serial.print("Fetched NTP epoch time is: ");
Serial.println(epochTime);
iotHubClient.setEpochTime(epochTime);
#endif ===============================================
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/BeagleBoneBlack/BeagleBone_Black_setup.md
================================================
This document explains how to set up a BeagleBone Black board to send data to Azure IoT services Hub using the REST interface.
##Hardware requirements ##
Check out the hardware requirements [here](hardware.md).
##Prerequisites ##
To deploy the application you will need the following:
* For Windows, download PuTTY and PSCP from [here](http://www.putty.org/).
* Wired Internet access for the device.
To work on the code of the project, you can use your favorite code editor.
## Configure the BeagleBone Black##
* Connect the Grove Cape on the BeagleBone Black board
* Connect the light sensor on the connector J7 of the Grove Cape
* Connect the Temperature sensor on the connector J3 of the Grove Cape
* Follow the instructions on the [BeagleBone.org site](http://beagleboard.org/getting-started) to setup the board.
* Update the image to the latest as instructed on the site
* Connect to the BeagleBone Black from your laptop, via a USB cable and use PuTTY (or your favorite remote terminal tool) to login to the OS (default user is "root" with no pasword)
The default BBB image comes with node.js preinstalled.
##Setup the app on the board##
* In the remote terminal, type the following commands:
mkdir node_app_slot
cd node_app_slot
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/BeagleBoneBlack/beagleboneblackctd.js
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/BeagleBoneBlack/package.json
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/BeagleBoneBlack/settings.json
npm install
* Before running the app, you need to update the settings.json file to input the device's connetion string and a unique device id.
Following the instructions [here](../../../readme.md), get the connection string for your device.
* In the remote terminal, open the file settings.json and edit the settings based on the configuration of your ehdevices Event Hub (if you want to use nano, just type nano settings.json and once your edits are done, type CTRL+X then Y to save). Note that the device id shall be unique per device so that data is not messed up in the connectthedots portal.
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "BeagleBoneBlack",
"organization": "My Org",
"location": "My location"
* Once you have changed the settings file, you can test, you can test the app by typing the following command in the remote terminal (you need to be in the /node_app_slot folder):
node .
##Setup the app to start automatically at boot##
In order to have the application start automatically at boot, you need to modify the startup script rc.local.
In the sample we are using forever, a very convinient node tool that starts a node app as a daemon and keeps it alive
* Type the following commands in the remote terminal:
npm install -g forever
nano /etc/rc.local
* In nano, edit the rc.local file by adding the following lines just before the "exit 0" line
/usr/local/bin/forever start -a -f --spinSleepTime 5000 /root/node_app_slot/beagleboneblackctd.js
* To save the file, press CTRL + X then Y and ENTER
* You can now reboot the board typing
reboot
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/BeagleBoneBlack/Hardware.md
================================================
# Hardware requirements for BeagleBone Black & Grove sensors #
- [BeagleBone Black][1]
##Supported Sensors
- [Seeed Grove Cape for BeagleBone series ][2]
- [Seeed Grove Light Sensor ][3]
- [Seeed Grove temperature sensor ][4]
[1]: http://beagleboard.org/black
[2]: http://www.seeedstudio.com/depot/Grove-Cape-for-BeagleBone-Series-p-1718.html
[3]: http://www.seeedstudio.com/depot/Grove-Light-Sensor-p-746.html
[4]: http://www.seeedstudio.com/depot/Grove-Temperature-Sensor-p-774.html
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/BeagleBoneBlack/beagleboneblackctd.js
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
// We are using the johnny-five library to access the hardware resources,'
var five = require('johnny-five');
var BeagleBone = require("beaglebone-io");
var connectthedots = require('connectthedots');
var devicesettings = require('./settings.json');
// ---------------------------------------------------------------
// Let's connect_the_dots
// You can adapt the below code to your own sensors configuration
var connect_the_dots=function()
{
console.log("Device Ready to connect its dots");
var lght = 0;
var temp = 25;
var light = new five.Sensor({
pin: "A2"
});
light.on("change", function() {
console.log("light: %d", this.value);
lght = this.value;
});
var temperature = new five.Temperature({
controller: "GROVE",
pin: "A0"
});
temperature.on("change", function() {
console.log("celsius: %d", this.celsius);
console.log("fahrenheit: %d", this.fahrenheit);
console.log("kelvin: %d", this.kelvin);
temp = this.celsius;
});
// send data to Azure every 500 milliseconds
setInterval(function(){
connectthedots.send_message("Light", "L", lght);
connectthedots.send_message("Temp", "C", temp);
}, 500);
};
var initCallback = function (err) {
// Init board
var board = new five.Board({io: new BeagleBone()});
// Attach callbacks for board events
board.on("ready", connect_the_dots);
board.on("message", function(event){
console.log("Received a %s message, from %s, reporting: %s", event.type, event.class, event.message);
} );
board.on("fail", function(event) {
console.log("%s sent a 'fail' message: %s", event.class, event.message);
});
board.on("warn", function(event) {
console.log("%s sent a 'warn' message: %s", event.class, event.message);
});
};
// ---------------------------------------------------------------
// Init app
// Init connection to Azure IoT
connectthedots.init_connection(devicesettings, initCallback);
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/BeagleBoneBlack/package.json
================================================
{
"name": "ConnectTheDotsBeagleBoneBlack",
"version": "1.0.1",
"description": "Simple Node app sending data from BeagleBone Black + Grove sensors to Azure IoT services",
"main": "beagleboneblackctd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"johnny-five": "^0.8.91",
"beaglebone-io": "^1.3.0",
"connectthedots":"^1.0.2"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/BeagleBoneBlack/settings.json
================================================
{
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "BeagleBoneBlack",
"organization": "My Org",
"location": "My location"
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Desktop/Desktop_setup.md
================================================
This document explains how to run a simple node sample on a desktop machine (Windows, Linux, OSX)
##Prerequisites ##
To run the application you will need to have [node.js](http://nodejs.org) installed on your system.
The machine will also need to be connected to the internet
To work on the code of the project, you can use your favorite code editor.
##Setup the app on the desktop##
* Once you have cloned or downloaded the repository, open a command prompt, and navigate to the application folder (Devices\DirectlyConnectedDevices\NodeJS\Desktop) and type the following command:
npm install
* Before running the app, you need to update the settings.json file to input the device's connection string and a unique device id.
Following the instructions [here](../../../readme.md), get the connection string for your device.
* Open the file settings.json in your favorite text editor and edit the settings using the device id and connection string generated following the previous instructions.
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "BeagleBoneBlack",
"organization": "My Org",
"location": "My location"
##Run the app##
* To run the app, type the folowing command in the application folder:
node .
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Desktop/desktop.js
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
var connectthedots = require('connectthedots');
var devicesettings = require('./settings.json');
// ---------------------------------------------------------------
// Let's connect_the_dots
// You can adapt the below code to your own sensors configuration
var connect_the_dots=function()
{
console.log("Device Ready to connect its dots");
var lght = 10;
var temp = 80;
// send data to Azure every 1000 milliseconds
setInterval(function(){
lght = lght + (Math.random()*2 -1);
if (lght < 0 ) lght = 0;
temp = temp + (Math.random()*2 -1);
if (temp < 0 ) temp = 0;
connectthedots.send_message("Light", "L", lght);
connectthedots.send_message("Temperature", "C", temp);
}, 1000);
};
var initCallback = function (err) {
// Once the connection to Azure IoT Hub is establish you can initialize your hardware and start sending data
// This is where you would insert your sensors code
connect_the_dots();
};
var receiveCallback = function (msg) {
// A message was received
console.log("Message Id: " + msg.messageId + " ; Message data:" + msg.data.toString() );
};
// ---------------------------------------------------------------
// Init app
// Init connection to Azure IoT
connectthedots.init_connection(devicesettings, initCallback, receiveCallback);
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Desktop/package.json
================================================
{
"name": "ConnectTheDotsDesktop",
"version": "1.0.2",
"description": "Simple Node app sending fake data from desktop to Azure IoT services",
"main": "desktop.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"connectthedots":"^1.0.3"
},
"files": {
"settings":"./settings.json"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Desktop/settings.json
================================================
{
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "My PC",
"organization": "My Org",
"location": "My location"
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonGrove/Hardware.md
================================================
# Hardware requirements for Intel Edison + Seeed Xadow wearable kit #
- [Intel Edison kit for Arduino][1]
##Supported Sensors
- [Seeed Grove starter kit for Intel IoT][2]
- and [Seeed Grove Environment Kit for Intel Edison][3]
[1]: http://www.intel.com/buy/us/en/product/emergingtechnologies/intel-edison-kit-462187
[2]: http://www.seeedstudio.com/depot/Grove-starter-kit-plus-Intel-IoT-Edition-for-Intel-Galileo-Gen-2-and-Edison-p-1978.html?cPath=84_13
[3]: http://www.seeedstudio.com/depot/Grove-Indoor-Environment-Kit-for-Intel-Edison-p-2427.html
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonGrove/Intel_Edison_setup.md
================================================
This document explains how to set up an Intel Edison board to send data to AzureIoT services using the REST interface.
It assumes that you have already deployed a connectthedots solution following the instructions [here](../../../../Azure/ARMTemplate/Readme.md).
##Hardware requirements ##
Check out the hardware requirements [here](hardware.md).
Connect the sensors as follows on the Grove Base shield (itself plugged onto the Intel Edison Arduino brakout board). Note that you can change the connections, but will have to adapt the code if you do so.
Grove Light Sensor - A0
Grove Moisture Sensor - A1
Grove Rotary potentiometer - A2
Grove UV Sensor - A3
Grove LCD RGB Backlight - I2C
Grove Temperature&Humidity - I2C
Grove PIR motion Sensor - D7
Grove Buzzer - D4
Grove Button - D6
Note that all sensors are not required to run the sample. Just edit inteledisonctd.js to comment the lines related to the sensor you don't have.
##Prerequisites##
To deploy the application you will need the following:
* For Windows, download PuTTY from [here](http://www.putty.org/).
* WiFi Internet access for the device.
To work on the code of the project, you can use your favorite editor.
##Configure the Edison##
* Follow the instructions on the [Intel support page](https://communities.intel.com/docs/DOC-23192) to setup the Yocto image on the Edison board.
* Connect to the Intel Edison from your laptop, via a USB using PuTTY (or your favorite remote terminal tool)
* In the remote terminal, you can setup the WiFi connection typing:
configure_edison --wifi
* Once WiFi is setup you can connect your SSH tool through the network using the IP address displayed when doing the setup at previous step or using the command ifconfig.
* the VI text editor comes by default on the Yocto image for the Intel Edison, but if you prefer Nano, connect with SSH and type the following commands:
echo "src/gz all http://repo.opkg.net/edison/repo/all" >> /etc/opkg/base-feeds.conf
echo "src/gz edison http://repo.opkg.net/edison/repo/edison" >> /etc/opkg/base-feeds.conf
echo "src/gz core2-32 http://repo.opkg.net/edison/repo/core2-32" >> /etc/opkg/base-feeds.conf
opkg update
opkg install nano
##Setup the app on the board##
* In the remote terminal, type the following commands:
cd /node_app_slot
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonGrove/inteledisonctd.js
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonGrove/package.json
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonGrove/settings.json
npm install
* Before running the app, you need to update the settings.json file to input the device's connetion string and a unique device id.
Following the instructions [here](../../../readme.md), get the connection string for your device.
* In the remote terminal, open the file settings.json and edit the settings based on the configuration of your ehdevices Event Hub (if you want to use nano, just type nano settings.json and once your edits are done, type CTRL+X then Y to save). Note that the device id shall be unique per device so that data is not messed up in the connectthedots portal.
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "Edison",
"organization": "My Org",
"location": "My location"
##Run the app##
You can run the app manually typing the following in the remote terminal:
node .
Because the application is deployed in the node_app_slot on the Intel Edison, it will start automatically at boot time.
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonGrove/inteledisonctd.js
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
// We are using the johnny-five library to access the hardware resources,'
var five = require('johnny-five');
var Edison = require("edison-io");
var TH02 = require("th02js");
var connectthedots = require('connectthedots');
var devicesettings = require('./settings.json');
// [Linear Interpolation](https://en.wikipedia.org/wiki/Linear_interpolation)
function linear(start, end, step, steps) {
return (end - start) * step / steps + start;
}
// ---------------------------------------------------------------
// Let's connect_the_dots
// You can adapt the below code to your own sensors configuration
var connect_the_dots = function()
{
console.log("Device Ready to connect its dots");
// Initialize LCD
var lcd = new five.LCD({
controller: "JHD1313M1"
});
lcd.bgColor(0xFF, 0xFF, 0xFF).cursor(0,0).print('ConnectTheDots');
lcd.bgColor(0xFF, 0xFF, 0xFF).cursor(1,0).print('Azure IoT');
// Initialize temperature sensor
var data_temperature = {"measurename":"Temperature", "unitofmeasure":"C", "value":0};
var data_humidity = {"measurename":"Humidity", "unitofmeasure":"%", "value":0};
var temperature_humidity = new TH02(6);
setInterval(function(){
data_temperature.value = temperature_humidity.getCelsiusTemp();
data_humidity.value = temperature_humidity.getHumidity();
// Jut for the fun of it, let's color the LCD background based on temperature
var r = linear(0x00, 0xFF, data_temperature.value, 40);
var g = linear(0x00, 0x00, data_temperature.value, 40);
var b = linear(0xFF, 0x00, data_temperature.value, 40);
lcd.bgColor(r, g, b).cursor(1, 0).print("Temp:" +Math.round(data_temperature.value) + "C");
}, 500);
// Initialize moisture sensor
var data_moisture = {"measurename":"Moisture", "unitofmeasure":"%", "value":0};
var moisture = new five.Sensor("A1");
moisture.scale(0, 100).on("change", function() {
data_moisture.value = this.value;
});
// Initialize light sensor
var data_light = {"measurename":"Light", "unitofmeasure":"L", "value":0};
var light = new five.Sensor("A0");
light.on("change", function() {
data_light.value = this.value;
});
// Initialize light sensor
var data_uv = {"measurename":"UV", "unitofmeasure":"Index", "value":0};
var uv = new five.Sensor("A3");
uv.on("change", function() {
data_uv.value = this.value;
});
// Initialize Button
var data_button = {"measurename":"Button", "unitofmeasure":"Down", "value":0};
var button = new five.Button(6);
button.on("press", function(){
data_button.value = 1;
});
button.on("release", function(){
data_button.value = 0;
});
// Initialize Motion sensor
var data_motion = {"measurename":"Motion", "unitofmeasure":"Move", "value":0};
var motion = new five.Motion(7);
motion.on("motionstart", function(){ data_motion.value = 1;});
motion.on("motioned", function(){ data_motion.value = 0;});
// Initialize rotary potentiometer
var data_rotary = {"measurename":"Potentiometer", "unitofmeasure":"Value", "value":0};
var rotary = five.Sensor("A2");
rotary.scale(0,100).on("change", function() { data_rotary.value = this.value;});
// send data to Azure every second
setInterval(function(){
var messages = [
data_temperature,
data_humidity,
data_moisture,
data_light,
data_uv,
data_motion,
data_button,
data_rotary
];
// we have several sensors, let's use the bulk messaging option
connectthedots.send_bulk_message(messages);
// reset data motion data which gets updated only on
data_motion.value = 0;
}, 1000);
};
var initCallback = function (err) {
// Init board
var board = new five.Board({io: new Edison()});
board.on("ready",connect_the_dots);
board.on("message", function(event){
console.log("Received a %s message, from %s, reporting: %s", event.type, event.class, event.message);
} );
board.on("fail", function(event) {
console.log("%s sent a 'fail' message: %s", event.class, event.message);
});
board.on("warn", function(event) {
console.log("%s sent a 'warn' message: %s", event.class, event.message);
});
};
// ---------------------------------------------------------------
// Init app
// Init connection to Azure IoT
connectthedots.init_connection(devicesettings, initCallback);
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonGrove/package.json
================================================
{
"name": "ConnectTheDotsIntelEdison",
"version": "1.0.1",
"description": "Simple Node app sending data from sensors to Azure IoT services",
"main": "inteledisonctd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"johnny-five": "^0.8.91",
"edison-io": "^0.8.18",
"connectthedots":"^1.0.2",
"th02js": "^0.0.2"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonGrove/settings.json
================================================
{
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "IntelEdison",
"organization": "My Org",
"location": "My location"
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/Hardware.md
================================================
# Hardware requirements for Intel Edison + TI SensorTag project #
- [Intel Edison with the board for Arduino][1]
##Supported Sensors
- [TI SensorTag][2] (tested only with CC2541. Should work with newer version CC2650)
[1]: http://www.intel.com/content/www/us/en/do-it-yourself/edison.html
[2]: http://www.ti.com/sensortag
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/Intel_Edison_setup.md
================================================
This document explains how to set up an Intel Edison board to send data to Azure Event Hub using the REST interface.
It assumes that you have the right tools installed and that you have cloned or downloaded the ConnectTheDots.io project on your machine.
##Hardware requirements ##
Check out the hardware requirements [here](hardware.md).
##Prerequisites ##
To deploy the application you will need the following:
* For Windows, download PuTTY and PSCP from [here](http://www.putty.org/).
* WiFi Internet access for the device.
To work on the code of the project, you can use your favorite editor... or leverage the Visual Studio 2013 support for node.js development, in which case, you will need:
* Visual Studio 2013 [Community Edition](http://www.visualstudio.com/downloads/download-visual-studio-vs) or above.
* [Node.js tools for Visual Studio](https://nodejstools.codeplex.com/)
## Configure the Edison##
* Follow the instructions on the [Intel support page](https://communities.intel.com/docs/DOC-23192) to setup the Yocto image on the Edison board.
* Connect to the Intel Edison from your laptop, via a USB using PuTTY (or your favorite SSH tool)
* For Windows, you can download PuTTY and PSCP from [here](http://www.putty.org/).
* Connect to the Pi using the IP address of the Pi.
* Via SSH you can setup the WiFi connection typing:
configure_edison --wifi
* Once WiFi is setup you can connect your SSH tool through the network using the IP address displayed when doing the setup at previous step.
* First thing you will need to do is to update the links to opkg packages in order to install a few libraries. In SSH console, type the following commands:
echo "src/gz all http://repo.opkg.net/edison/repo/all" >> /etc/opkg/base-feeds.conf
echo "src/gz edison http://repo.opkg.net/edison/repo/edison" >> /etc/opkg/base-feeds.conf
echo "src/gz core2-32 http://repo.opkg.net/edison/repo/core2-32" >> /etc/opkg/base-feeds.conf
opkg update
* the VI text editor comes by default on the Yocto image for the Intel Edison, but if you prefer Nano, connect with SSH and type the following commands:
opkg install nano
* To connect with the TI SensorTag, you need to enable Bluetooth low energy on the Intel Edison. Connect to the baord via SSH and type the following commands:
* In SSH, type the following commands:
opkg install bluez5-dev
* To activate bluetooth low energy, you then have to type the following commands in SSH:
rfkill unblock bluetooth
hciconfig hci0 up
##Setup the app on the board##
* In the remote terminal, type the following commands:
cd /node_app_slot
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/inteledisonsensortagctd.js
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/package.json
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/settings.json
mkdir lib
cd lib
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/lib/cc2540.js
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/lib/cc2650.js
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/lib/common.js
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/lib/sensortag.js
npm install
* Before running the app, you need to update the settings.json file to input the device's connetion string and a unique device id.
Following the instructions [here](../../../readme.md), get the connection string for your device.
* In the remote terminal, open the file settings.json and edit the settings based on the configuration of your ehdevices Event Hub (if you want to use nano, just type nano settings.json and once your edits are done, type CTRL+X then Y to save). Note that the device id shall be unique per device so that data is not messed up in the connectthedots portal.
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "EdisonSensortag",
"organization": "My Org",
"location": "My location"
##Run the app##
You can run the app manually typing the following in the remote terminal:
node .
Because the application is deployed in the node_app_slot on the Intel Edison, it will start automatically at boot time.
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/inteledisonsensortagctd.js
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
// We are using the Cylon library to access the hardware resources,'
// and take advantage of its convinient model for running tasks
var Cylon = require('cylon');
// Using connectthedots npm package to connect to IoTHub
var connectthedots = require('connectthedots');
var devicesettings = require('./settings.json');
// Adding sensor tag librarries
var SensorTag = require('./lib/sensortag');
// Keeping track of sensortag connectivity
var SensorTagConnected = false;
var DiscoveringSensorTag = false;
// ---------------------------------------------------------------
// callback for SensorTag discovery
function onDiscover(sensorTag) {
DiscoveringSensorTag = false;
console.log('discovered: ' + sensorTag.uuid + ', type = ' + sensorTag.type);
// Connect the the SensorTag
sensorTag.connectAndSetUp(function (error) {
if (error) {
console.log('ConnectAndSetup Error:' + error);
SensorTagConnected = false;
} else {
// SensorTag connected and setup
SensorTagConnected = true;
// Set "disconnect" callback
sensorTag.on('disconnect', function () {
console.log('Sensortag disconnected');
SensorTagConnected = false;
});
// Enable IrTemperature sensor, setup 1s period and set callback to send AMQP message to Event Hubs
sensorTag.enableIrTemperature(function (error) { if (error) console.log('enableIrTemperature ' + error); });
sensorTag.setIrTemperaturePeriod(1000, function (error) { if (error) console.log('setIrTemperaturePeriod ' + error); });
sensorTag.notifyIrTemperature(function (error) { if (error) console.log('notifyIrTemperature ' + error); });
sensorTag.on('irTemperatureChange', function (objectTemperature, ambientTemperature) {
var currentTime = new Date().toISOString();
var irObjTemp = (objectTemperature.toFixed(1) * 9) / 5 + 32;
connectthedots.send_message("IRTemperature", "F", irObjTemp);
});
// Enable Humidity sensor, setup 1s period and set callback to send AMQP message to Event Hubs
sensorTag.enableHumidity(function (error) { if (error) console.log('enableHumidity ' + error); });
sensorTag.setHumidityPeriod(1000, function (error) { if (error) console.log('setHumidityPeriod ' + error); });
sensorTag.notifyHumidity(function (error) { if (error) console.log('notifyHumidity ' + error); });
sensorTag.on('humidityChange', function (temperature, humidity) {
var currentTime = new Date().toISOString();
var temp = (temperature.toFixed(1) * 9) / 5 + 32;
var hmdt = humidity.toFixed(1);
connectthedots.send_message("Temperature", "F", temp);
connectthedots.send_message("Humidity", "%", hmdt);
});
}
});
}
// ---------------------------------------------------------------
// Let's connect_the_dots
// You can adapt the below code to your own sensors configuration
var connect_the_dots = function()
{
console.log("Device Ready to connect its dots");
// ---------------------------------------------------------------
// Initialization of the Cylon object
Cylon.robot( {
connections: {
edison: { adaptor: 'intel-iot' }
},
devices: {
led: { driver: 'led', pin: 13 }
},
work: function (my) {
// Every second, try and connect to a SensorTag. Toggle Led when discovering. Keep led on when connected
every((1).second(), function () {
if (!SensorTagConnected && !DiscoveringSensorTag) {
console.log('Discovering sensortag...');
DiscoveringSensorTag = true;
SensorTag.discover(onDiscover);
} else {
if (DiscoveringSensorTag) my.led.toggle();
else if (SensorTagConnected) my.led.turnOn();
}
});
}
}).start();
}
// Init connection to Azure IoT
connectthedots.init_connection(devicesettings, connect_the_dots );
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/lib/cc2540.js
================================================
// Copyright(c) 2013 Sandeep Mistry
// from project https://github.com/sandeepmistry/node-sensortag
//
// The MIT License(MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files(the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
var NobleDevice = require('noble-device');
var Common = require('./common');
var ACCELEROMETER_UUID = 'f000aa1004514000b000000000000000';
var MAGNETOMETER_UUID = 'f000aa3004514000b000000000000000';
var GYROSCOPE_UUID = 'f000aa5004514000b000000000000000';
var BAROMETRIC_PRESSURE_UUID = 'f000aa4004514000b000000000000000';
var TEST_UUID = 'f000aa6004514000b000000000000000';
var OAD_UUID = 'f000ffc004514000b000000000000000';
var ACCELEROMETER_CONFIG_UUID = 'f000aa1204514000b000000000000000';
var ACCELEROMETER_DATA_UUID = 'f000aa1104514000b000000000000000';
var ACCELEROMETER_PERIOD_UUID = 'f000aa1304514000b000000000000000';
var MAGNETOMETER_CONFIG_UUID = 'f000aa3204514000b000000000000000';
var MAGNETOMETER_DATA_UUID = 'f000aa3104514000b000000000000000';
var MAGNETOMETER_PERIOD_UUID = 'f000aa3304514000b000000000000000';
var BAROMETRIC_PRESSURE_CONFIG_UUID = 'f000aa4204514000b000000000000000';
var BAROMETRIC_PRESSURE_CALIBRATION_UUID = 'f000aa4304514000b000000000000000';
var GYROSCOPE_CONFIG_UUID = 'f000aa5204514000b000000000000000';
var GYROSCOPE_DATA_UUID = 'f000aa5104514000b000000000000000';
var GYROSCOPE_PERIOD_UUID = 'f000aa5304514000b000000000000000';
var TEST_DATA_UUID = 'f000aa6104514000b000000000000000';
var TEST_CONFIGURATION_UUID = 'f000aa6204514000b000000000000000';
var CC2540SensorTag = function(peripheral) {
NobleDevice.call(this, peripheral);
Common.call(this);
this.type = 'cc2540';
this.onAccelerometerChangeBinded = this.onAccelerometerChange.bind(this);
this.onMagnetometerChangeBinded = this.onMagnetometerChange.bind(this);
this.onGyroscopeChangeBinded = this.onGyroscopeChange.bind(this);
};
CC2540SensorTag.is = function(peripheral) {
var localName = peripheral.advertisement.localName;
return (localName === 'SensorTag') ||
(localName === 'TI BLE Sensor Tag');
};
NobleDevice.Util.inherits(CC2540SensorTag, NobleDevice);
NobleDevice.Util.mixin(CC2540SensorTag, NobleDevice.DeviceInformationService);
NobleDevice.Util.mixin(CC2540SensorTag, Common);
CC2540SensorTag.prototype.convertIrTemperatureData = function(data, callback) {
// For computation refer : http://processors.wiki.ti.com/index.php/SensorTag_User_Guide#IR_Temperature_Sensor
var ambientTemperature = data.readInt16LE(2) / 128.0;
var Vobj2 = data.readInt16LE(0) * 0.00000015625;
var Tdie2 = ambientTemperature + 273.15;
var S0 = 5.593 * Math.pow(10, -14);
var a1 = 1.75 * Math.pow(10 , -3);
var a2 = -1.678 * Math.pow(10, -5);
var b0 = -2.94 * Math.pow(10, -5);
var b1 = -5.7 * Math.pow(10, -7);
var b2 = 4.63 * Math.pow(10, -9);
var c2 = 13.4;
var Tref = 298.15;
var S = S0 * (1 + a1 * (Tdie2 - Tref) + a2 * Math.pow((Tdie2 - Tref), 2));
var Vos = b0 + b1 * (Tdie2 - Tref) + b2 * Math.pow((Tdie2 - Tref), 2);
var fObj = (Vobj2 - Vos) + c2 * Math.pow((Vobj2 - Vos), 2);
var objectTemperature = Math.pow(Math.pow(Tdie2, 4) + (fObj/S), 0.25);
objectTemperature = (objectTemperature - 273.15);
callback(objectTemperature, ambientTemperature);
};
CC2540SensorTag.prototype.convertHumidityData = function(data, callback) {
var temperature = -46.85 + 175.72 / 65536.0 * data.readUInt16LE(0);
var humidity = -6.0 + 125.0 / 65536.0 * (data.readUInt16LE(2) & ~0x0003);
callback(temperature, humidity);
};
CC2540SensorTag.prototype.enableBarometricPressure = function(callback) {
this.writeUInt8Characteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_CONFIG_UUID, 0x02, function(error) {
if (error) {
return callback(error);
}
this.readDataCharacteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_CALIBRATION_UUID, function(error, data) {
if (error) {
return callback(error);
}
this._barometricPressureCalibrationData = data;
this.enableConfigCharacteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_CONFIG_UUID, callback);
}.bind(this));
}.bind(this));
};
CC2540SensorTag.prototype.convertBarometricPressureData = function(data, callback) {
// For computation refer : http://processors.wiki.ti.com/index.php/SensorTag_User_Guide#Barometric_Pressure_Sensor_2
var temp; // Temperature raw value from sensor
var pressure; // Pressure raw value from sensor
var S; // Interim value in calculation
var O; // Interim value in calculation
var p_a; // Pressure actual value in unit Pascal.
var Pa; // Computed value of the function
var c0 = this._barometricPressureCalibrationData.readUInt16LE(0);
var c1 = this._barometricPressureCalibrationData.readUInt16LE(2);
var c2 = this._barometricPressureCalibrationData.readUInt16LE(4);
var c3 = this._barometricPressureCalibrationData.readUInt16LE(6);
var c4 = this._barometricPressureCalibrationData.readInt16LE(8);
var c5 = this._barometricPressureCalibrationData.readInt16LE(10);
var c6 = this._barometricPressureCalibrationData.readInt16LE(12);
var c7 = this._barometricPressureCalibrationData.readInt16LE(14);
temp = data.readInt16LE(0);
pressure = data.readUInt16LE(2);
S = c2 + ((c3 * temp)/ 131072.0) + ((c4 * (temp * temp)) / 17179869184.0);
O = (c5 * 16384.0) + (((c6 * temp) / 8)) + ((c7 * (temp * temp)) / 524288.0);
Pa = (((S * pressure) + O) / 16384.0);
Pa /= 100.0;
callback(Pa);
};
CC2540SensorTag.prototype.enableAccelerometer = function(callback) {
this.enableConfigCharacteristic(ACCELEROMETER_UUID, ACCELEROMETER_CONFIG_UUID, callback);
};
CC2540SensorTag.prototype.disableAccelerometer = function(callback) {
this.disableConfigCharacteristic(ACCELEROMETER_UUID, ACCELEROMETER_CONFIG_UUID, callback);
};
CC2540SensorTag.prototype.readAccelerometer = function(callback) {
this.readDataCharacteristic(ACCELEROMETER_UUID, ACCELEROMETER_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertAccelerometerData(data, function(x, y, z) {
callback(null, x, y, z);
}.bind(this));
}.bind(this));
};
CC2540SensorTag.prototype.onAccelerometerChange = function(data) {
this.convertAccelerometerData(data, function(x, y, z) {
this.emit('accelerometerChange', x, y, z);
}.bind(this));
};
CC2540SensorTag.prototype.convertAccelerometerData = function(data, callback) {
var x = data.readInt8(0) / 16.0;
var y = data.readInt8(1) / 16.0;
var z = data.readInt8(2) / 16.0;
callback(x, y, z);
};
CC2540SensorTag.prototype.notifyAccelerometer = function(callback) {
this.notifyCharacteristic(ACCELEROMETER_UUID, ACCELEROMETER_DATA_UUID, true, this.onAccelerometerChangeBinded, callback);
};
CC2540SensorTag.prototype.unnotifyAccelerometer = function(callback) {
this.notifyCharacteristic(ACCELEROMETER_UUID, ACCELEROMETER_DATA_UUID, false, this.onAccelerometerChangeBinded, callback);
};
CC2540SensorTag.prototype.setAccelerometerPeriod = function(period, callback) {
this.writePeriodCharacteristic(ACCELEROMETER_UUID, ACCELEROMETER_PERIOD_UUID, period, callback);
};
CC2540SensorTag.prototype.enableMagnetometer = function(callback) {
this.enableConfigCharacteristic(MAGNETOMETER_UUID, MAGNETOMETER_CONFIG_UUID, callback);
};
CC2540SensorTag.prototype.disableMagnetometer = function(callback) {
this.disableConfigCharacteristic(MAGNETOMETER_UUID, MAGNETOMETER_CONFIG_UUID, callback);
};
CC2540SensorTag.prototype.readMagnetometer = function(callback) {
this.readDataCharacteristic(MAGNETOMETER_UUID, MAGNETOMETER_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertMagnetometerData(data, function(x, y, z) {
callback(null, x, y, z);
}.bind(this));
}.bind(this));
};
CC2540SensorTag.prototype.onMagnetometerChange = function(data) {
this.convertMagnetometerData(data, function(x, y, z) {
this.emit('magnetometerChange', x, y, z);
}.bind(this));
};
CC2540SensorTag.prototype.convertMagnetometerData = function(data, callback) {
var x = data.readInt16LE(0) * 2000.0 / 65536.0;
var y = data.readInt16LE(2) * 2000.0 / 65536.0;
var z = data.readInt16LE(4) * 2000.0 / 65536.0;
callback(x, y, z);
};
CC2540SensorTag.prototype.notifyMagnetometer = function(callback) {
this.notifyCharacteristic(MAGNETOMETER_UUID, MAGNETOMETER_DATA_UUID, true, this.onMagnetometerChangeBinded, callback);
};
CC2540SensorTag.prototype.unnotifyMagnetometer = function(callback) {
this.notifyCharacteristic(MAGNETOMETER_UUID, MAGNETOMETER_DATA_UUID, false, this.onMagnetometerChangeBinded, callback);
};
CC2540SensorTag.prototype.setMagnetometerPeriod = function(period, callback) {
this.writePeriodCharacteristic(MAGNETOMETER_UUID, MAGNETOMETER_PERIOD_UUID, period, callback);
};
CC2540SensorTag.prototype.setGyroscopePeriod = function(period, callback) {
this.writePeriodCharacteristic(GYROSCOPE_UUID, GYROSCOPE_PERIOD_UUID, period, callback);
};
CC2540SensorTag.prototype.enableGyroscope = function(callback) {
this.writeUInt8Characteristic(GYROSCOPE_UUID, GYROSCOPE_CONFIG_UUID, 0x07, callback);
};
CC2540SensorTag.prototype.disableGyroscope = function(callback) {
this.disableConfigCharacteristic(GYROSCOPE_UUID, GYROSCOPE_CONFIG_UUID, callback);
};
CC2540SensorTag.prototype.readGyroscope = function(callback) {
this.readDataCharacteristic(GYROSCOPE_UUID, GYROSCOPE_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertGyroscopeData(data, function(x, y, z) {
callback(null, x, y, z);
}.bind(this));
}.bind(this));
};
CC2540SensorTag.prototype.onGyroscopeChange = function(data) {
this.convertGyroscopeData(data, function(x, y, z) {
this.emit('gyroscopeChange', x, y, z);
}.bind(this));
};
CC2540SensorTag.prototype.convertGyroscopeData = function(data, callback) {
var x = data.readInt16LE(0) * (500.0 / 65536.0) * -1;
var y = data.readInt16LE(2) * (500.0 / 65536.0);
var z = data.readInt16LE(4) * (500.0 / 65536.0);
callback(x, y, z);
};
CC2540SensorTag.prototype.notifyGyroscope = function(callback) {
this.notifyCharacteristic(GYROSCOPE_UUID, GYROSCOPE_DATA_UUID, true, this.onGyroscopeChangeBinded, callback);
};
CC2540SensorTag.prototype.unnotifyGyroscope = function(callback) {
this.notifyCharacteristic(GYROSCOPE_UUID, GYROSCOPE_DATA_UUID, false, this.onGyroscopeChangeBinded, callback);
};
CC2540SensorTag.prototype.readTestData = function(callback) {
this.readUInt16LECharacteristic(TEST_UUID, TEST_DATA_UUID, callback);
};
CC2540SensorTag.prototype.readTestConfiguration = function(callback) {
this.readUInt8Characteristic(TEST_UUID, TEST_CONFIGURATION_UUID, callback);
};
module.exports = CC2540SensorTag;
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/lib/cc2650.js
================================================
// Copyright(c) 2013 Sandeep Mistry
// from project https://github.com/sandeepmistry/node-sensortag
//
// The MIT License(MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files(the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
var NobleDevice = require('noble-device');
var Common = require('./common');
var MPU9250_UUID = 'f000aa8004514000b000000000000000';
var BAROMETRIC_PRESSURE_UUID = 'f000aa4004514000b000000000000000';
var LUXOMTER_UUID = 'f000aa7004514000b000000000000000';
var BAROMETRIC_PRESSURE_CONFIG_UUID = 'f000aa4204514000b000000000000000';
var MPU9250_CONFIG_UUID = 'f000aa8204514000b000000000000000';
var MPU9250_DATA_UUID = 'f000aa8104514000b000000000000000';
var MPU9250_PERIOD_UUID = 'f000aa8304514000b000000000000000';
var MPU9250_GYROSCOPE_MASK = 0x0007;
var MPU9250_ACCELEROMETER_MASK = 0x0038;
var MPU9250_MAGNETOMETER_MASK = 0x0040;
var LUXOMTER_CONFIG_UUID = 'f000aa7204514000b000000000000000';
var LUXOMTER_DATA_UUID = 'f000aa7104514000b000000000000000';
var LUXOMTER_PERIOD_UUID = 'f000aa7304514000b000000000000000';
var IO_CONFIG_UUID = 'f000aa6604514000b000000000000000';
var IO_DATA_UUID = 'f000aa6504514000b000000000000000';
var CC2650SensorTag = function(peripheral) {
NobleDevice.call(this, peripheral);
Common.call(this);
this.type = 'cc2650';
this.mpu9250mask = 0;
this.mpu9250notifyCount = 0;
this.onMPU9250ChangeBinded = this.onMPU9250Change.bind(this);
this.onLuxometerChangeBinded = this.onLuxometerChange.bind(this);
};
CC2650SensorTag.is = function(peripheral) {
var localName = peripheral.advertisement.localName;
return (localName === 'CC2650 SensorTag') ||
(localName === 'SensorTag 2.0');
};
NobleDevice.Util.inherits(CC2650SensorTag, NobleDevice);
NobleDevice.Util.mixin(CC2650SensorTag, NobleDevice.DeviceInformationService);
NobleDevice.Util.mixin(CC2650SensorTag, Common);
CC2650SensorTag.prototype.convertIrTemperatureData = function(data, callback) {
var ambientTemperature = data.readInt16LE(2) / 128.0;
var objectTemperature = data.readInt16LE(0) / 128.0;
callback(objectTemperature, ambientTemperature);
};
CC2650SensorTag.prototype.convertHumidityData = function(data, callback) {
var temperature = -40 + ((165 * data.readUInt16LE(0)) / 65536.0);
var humidity = data.readUInt16LE(2) * 100 / 65536.0;
callback(temperature, humidity);
};
CC2650SensorTag.prototype.enableBarometricPressure = function(callback) {
this.enableConfigCharacteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_CONFIG_UUID, callback);
};
CC2650SensorTag.prototype.convertBarometricPressureData = function(data, callback) {
var tempBMP; // Temperature processed value from sensor
var pressure; // Pressure processed value from sensor
// data is returned as 16 bit single precision float, convert to float
// no idea at moment why divide by 10000 and not 100
var exponent;
var mantissa;
var flTempBMP;
var flPressure;
tempBMP = data.readUInt16LE(0);
exponent = (tempBMP & 0xF000) >> 12;
mantissa = (tempBMP & 0x0FFF);
flTempBMP = mantissa * Math.pow(2, exponent) / 10000;
pressure = data.readUInt16LE(2);
exponent = (pressure & 0xF000) >> 12;
mantissa = (pressure & 0x0FFF);
flPressure = mantissa * Math.pow(2, exponent) / 10000;
callback(flPressure);
};
CC2650SensorTag.prototype.setMPU9250Period = function(period, callback) {
this.writePeriodCharacteristic(MPU9250_UUID, MPU9250_PERIOD_UUID, period, callback);
};
CC2650SensorTag.prototype.enableMPU9250 = function(mask, callback) {
this.mpu9250mask |= mask;
// for now, always write 0x007f, magnetometer does not seem to notify is specific mask is used
this.writeUInt16LECharacteristic(MPU9250_UUID, MPU9250_CONFIG_UUID, 0x007f, callback);
};
CC2650SensorTag.prototype.disableMPU9250 = function(mask, callback) {
this.mpu9250mask &= ~mask;
if (this.mpu9250mask === 0) {
this.writeUInt16LECharacteristic(MPU9250_UUID, MPU9250_CONFIG_UUID, 0x0000, callback);
} else if (typeof(callback) === 'function') {
callback();
}
};
CC2650SensorTag.prototype.notifyMPU9250 = function(callback) {
this.mpu9250notifyCount++;
if (this.mpu9250notifyCount === 1) {
this.notifyCharacteristic(MPU9250_UUID, MPU9250_DATA_UUID, true, this.onMPU9250ChangeBinded, callback);
} else if (typeof(callback) === 'function') {
callback();
}
};
CC2650SensorTag.prototype.unnotifyMPU9250 = function(callback) {
this.mpu9250notifyCount--;
if (this.mpu9250notifyCount === 0) {
this.notifyCharacteristic(MPU9250_UUID, MPU9250_DATA_UUID, false, this.onMPU9250ChangeBinded, callback);
} else if (typeof(callback) === 'function') {
callback();
}
};
CC2650SensorTag.prototype.enableAccelerometer = function(callback) {
this.enableMPU9250(MPU9250_ACCELEROMETER_MASK, callback);
};
CC2650SensorTag.prototype.disableAccelerometer = function(callback) {
this.disableMPU9250(MPU9250_ACCELEROMETER_MASK, callback);
};
CC2650SensorTag.prototype.readAccelerometer = function(callback) {
this.readDataCharacteristic(MPU9250_UUID, MPU9250_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertMPU9250Data(data, function(x, y, z) {
callback(null, x, y, z);
}.bind(this));
}.bind(this));
};
CC2650SensorTag.prototype.onMPU9250Change = function(data) {
this.convertMPU9250Data(data, function(x, y, z, xG, yG, zG, xM, yM, zM) {
if (this.mpu9250mask & MPU9250_ACCELEROMETER_MASK) {
this.emit('accelerometerChange', x, y, z);
}
if (this.mpu9250mask & MPU9250_GYROSCOPE_MASK) {
this.emit('gyroscopeChange', xG, yG, zG);
}
if (this.mpu9250mask & MPU9250_MAGNETOMETER_MASK) {
this.emit('magnetometerChange', xM, yM, zM);
}
}.bind(this));
};
CC2650SensorTag.prototype.convertMPU9250Data = function(data, callback) {
// 250 deg/s range
var xG = data.readInt16LE(0) * (500.0 / 65536.0);
var yG = data.readInt16LE(2) * (500.0 / 65536.0);
var zG = data.readInt16LE(4) * (500.0 / 65536.0);
// we specify 2G range in setup
var x = data.readInt16LE(6) * 2.0 / 32768.0;
var y = data.readInt16LE(8) * 2.0 / 32768.0;
var z = data.readInt16LE(10) * 2.0 / 32768.0;
// magnetometer (page 50 of http://www.invensense.com/mems/gyro/documents/RM-MPU-9250A-00.pdf)
var xM = data.readInt16LE(12) * 4912.0 / 32760.0;
var yM = data.readInt16LE(14) * 4912.0 / 32760.0;
var zM = data.readInt16LE(16) * 4912.0 / 32760.0;
callback(x, y, z, xG, yG, zG, xM, yM, zM);
};
CC2650SensorTag.prototype.notifyAccelerometer = function(callback) {
this.notifyMPU9250(callback);
};
CC2650SensorTag.prototype.unnotifyAccelerometer = function(callback) {
this.unnotifyMPU9250(callback);
};
CC2650SensorTag.prototype.setAccelerometerPeriod = function(period, callback) {
this.setMPU9250Period(period, callback);
};
CC2650SensorTag.prototype.enableMagnetometer = function(callback) {
this.enableMPU9250(MPU9250_MAGNETOMETER_MASK, callback);
};
CC2650SensorTag.prototype.disableMagnetometer = function(callback) {
this.disableMPU9250(MPU9250_MAGNETOMETER_MASK, callback);
};
CC2650SensorTag.prototype.readMagnetometer = function(callback) {
this.readDataCharacteristic(MPU9250_UUID, MPU9250_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertMPU9250Data(data, function(x, y, z, xG, yG, zG, xM, yM, zM) {
callback(null, xM, yM, zM);
}.bind(this));
}.bind(this));
};
CC2650SensorTag.prototype.notifyMagnetometer = function(callback) {
this.notifyMPU9250(callback);
};
CC2650SensorTag.prototype.unnotifyMagnetometer = function(callback) {
this.unnotifyMPU9250(callback);
};
CC2650SensorTag.prototype.setMagnetometerPeriod = function(period, callback) {
this.setMPU9250Period(period, callback);
};
CC2650SensorTag.prototype.setGyroscopePeriod = function(period, callback) {
this.setMPU9250Period(period, callback);
};
CC2650SensorTag.prototype.enableGyroscope = function(callback) {
this.enableMPU9250(MPU9250_GYROSCOPE_MASK, callback);
};
CC2650SensorTag.prototype.disableGyroscope = function(callback) {
this.disableMPU9250(MPU9250_GYROSCOPE_MASK, callback);
};
CC2650SensorTag.prototype.readGyroscope = function(callback) {
this.readDataCharacteristic(MPU9250_UUID, MPU9250_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertMPU9250Data(data, function(x, y, z, xG, yG, zG) {
callback(null, xG, yG, zG);
}.bind(this));
}.bind(this));
};
CC2650SensorTag.prototype.notifyGyroscope = function(callback) {
this.notifyMPU9250(callback);
};
CC2650SensorTag.prototype.unnotifyGyroscope = function(callback) {
this.unnotifyMPU9250(callback);
};
CC2650SensorTag.prototype.enableLuxometer = function(callback) {
this.enableConfigCharacteristic(LUXOMTER_UUID, LUXOMTER_CONFIG_UUID, callback);
};
CC2650SensorTag.prototype.disableLuxometer = function(callback) {
this.disableConfigCharacteristic(LUXOMTER_UUID, LUXOMTER_CONFIG_UUID, callback);
};
CC2650SensorTag.prototype.readLuxometer = function(callback) {
this.readDataCharacteristic(LUXOMTER_UUID, LUXOMTER_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertLuxometerData(data, function(lux) {
callback(null, lux);
}.bind(this));
}.bind(this));
};
CC2650SensorTag.prototype.onLuxometerChange = function(data) {
this.convertLuxometerData(data, function(lux) {
this.emit('luxometerChange', lux);
}.bind(this));
};
CC2650SensorTag.prototype.convertLuxometerData = function(data, callback) {
var lux = data.readUInt16LE(0) /100;
callback(lux);
};
CC2650SensorTag.prototype.notifyLuxometer = function(callback) {
this.notifyCharacteristic(LUXOMTER_UUID, LUXOMTER_DATA_UUID, true, this.onLuxometerChangeBinded, callback);
};
CC2650SensorTag.prototype.unnotifyLuxometer = function(callback) {
this.notifyCharacteristic(LUXOMTER_UUID, LUXOMTER_DATA_UUID, false, this.onLuxometerChangeBinded, callback);
};
CC2650SensorTag.prototype.setLuxometerPeriod = function(period, callback) {
this.writePeriodCharacteristic(LUXOMTER_UUID, LUXOMTER_PERIOD_UUID, period, callback);
};
module.exports = CC2650SensorTag;
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/lib/common.js
================================================
// Copyright(c) 2013 Sandeep Mistry
// from project https://github.com/sandeepmistry/node-sensortag
//
// The MIT License(MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files(the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// http://processors.wiki.ti.com/index.php/SensorTag_User_Guide
var IR_TEMPERATURE_UUID = 'f000aa0004514000b000000000000000';
var HUMIDITY_UUID = 'f000aa2004514000b000000000000000';
var BAROMETRIC_PRESSURE_UUID = 'f000aa4004514000b000000000000000';
var SIMPLE_KEY_UUID = 'ffe0';
var IR_TEMPERATURE_CONFIG_UUID = 'f000aa0204514000b000000000000000';
var IR_TEMPERATURE_DATA_UUID = 'f000aa0104514000b000000000000000';
var IR_TEMPERATURE_PERIOD_UUID = 'f000aa0304514000b000000000000000';
var IR_TEMPERATURE_PERIOD_UUID = 'f000aa0304514000b000000000000000';
var HUMIDITY_CONFIG_UUID = 'f000aa2204514000b000000000000000';
var HUMIDITY_DATA_UUID = 'f000aa2104514000b000000000000000';
var HUMIDITY_PERIOD_UUID = 'f000aa2304514000b000000000000000';
var BAROMETRIC_PRESSURE_CONFIG_UUID = 'f000aa4204514000b000000000000000';
var BAROMETRIC_PRESSURE_DATA_UUID = 'f000aa4104514000b000000000000000';
var BAROMETRIC_PRESSURE_PERIOD_UUID = 'f000aa4404514000b000000000000000';
var SIMPLE_KEY_DATA_UUID = 'ffe1';
function SensorTagCommon() {
this.onIrTemperatureChangeBinded = this.onIrTemperatureChange.bind(this);
this.onHumidityChangeBinded = this.onHumidityChange.bind(this);
this.onBarometricPressureChangeBinded = this.onBarometricPressureChange.bind(this);
this.onSimpleKeyChangeBinded = this.onSimpleKeyChange.bind(this);
}
SensorTagCommon.prototype.toString = function() {
return JSON.stringify({
uuid: this.uuid,
type: this.type
});
};
SensorTagCommon.prototype.writePeriodCharacteristic = function(serviceUuid, characteristicUuid, period, callback) {
period /= 10; // input is scaled by units of 10ms
if (period < 10) {
period = 10;
} else if (period > 255) {
period = 255;
}
this.writeUInt8Characteristic(serviceUuid, characteristicUuid, period, callback);
};
SensorTagCommon.prototype.enableConfigCharacteristic = function(serviceUuid, characteristicUuid, callback) {
this.writeUInt8Characteristic(serviceUuid, characteristicUuid, 0x01, callback);
};
SensorTagCommon.prototype.disableConfigCharacteristic = function(serviceUuid, characteristicUuid, callback) {
this.writeUInt8Characteristic(serviceUuid, characteristicUuid, 0x00, callback);
};
SensorTagCommon.prototype.setIrTemperaturePeriod = function(period, callback) {
this.writePeriodCharacteristic(IR_TEMPERATURE_UUID, IR_TEMPERATURE_PERIOD_UUID, period, callback);
};
SensorTagCommon.prototype.enableIrTemperature = function(callback) {
this.enableConfigCharacteristic(IR_TEMPERATURE_UUID, IR_TEMPERATURE_CONFIG_UUID, callback);
};
SensorTagCommon.prototype.disableIrTemperature = function(callback) {
this.disableConfigCharacteristic(IR_TEMPERATURE_UUID, IR_TEMPERATURE_CONFIG_UUID, callback);
};
SensorTagCommon.prototype.readIrTemperature = function(callback) {
this.readDataCharacteristic(IR_TEMPERATURE_UUID, IR_TEMPERATURE_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertIrTemperatureData(data, function(objectTemperature, ambientTemperature) {
callback(null, objectTemperature, ambientTemperature);
}.bind(this));
}.bind(this));
};
SensorTagCommon.prototype.onIrTemperatureChange = function(data) {
this.convertIrTemperatureData(data, function(objectTemperature, ambientTemperature) {
this.emit('irTemperatureChange', objectTemperature, ambientTemperature);
}.bind(this));
};
SensorTagCommon.prototype.notifyIrTemperature = function(callback) {
this.notifyCharacteristic(IR_TEMPERATURE_UUID, IR_TEMPERATURE_DATA_UUID, true, this.onIrTemperatureChangeBinded, callback);
};
SensorTagCommon.prototype.unnotifyIrTemperature = function(callback) {
this.notifyCharacteristic(IR_TEMPERATURE_UUID, IR_TEMPERATURE_DATA_UUID, false, this.onIrTemperatureChangeBinded, callback);
};
SensorTagCommon.prototype.setIrTemperaturePeriod = function(period, callback) {
this.writePeriodCharacteristic(IR_TEMPERATURE_UUID, IR_TEMPERATURE_PERIOD_UUID, period, callback);
};
SensorTagCommon.prototype.setHumidityPeriod = function(period, callback) {
this.writePeriodCharacteristic(HUMIDITY_UUID, HUMIDITY_PERIOD_UUID, period, callback);
};
SensorTagCommon.prototype.enableHumidity = function(callback) {
this.enableConfigCharacteristic(HUMIDITY_UUID, HUMIDITY_CONFIG_UUID, callback);
};
SensorTagCommon.prototype.disableHumidity = function(callback) {
this.disableConfigCharacteristic(HUMIDITY_UUID, HUMIDITY_CONFIG_UUID, callback);
};
SensorTagCommon.prototype.readHumidity = function(callback) {
this.readDataCharacteristic(HUMIDITY_UUID, HUMIDITY_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertHumidityData(data, function(temperature, humidity) {
callback(null, temperature, humidity);
});
}.bind(this));
};
SensorTagCommon.prototype.onHumidityChange = function(data) {
this.convertHumidityData(data, function(temperature, humidity) {
this.emit('humidityChange', temperature, humidity);
}.bind(this));
};
SensorTagCommon.prototype.notifyHumidity = function(callback) {
this.notifyCharacteristic(HUMIDITY_UUID, HUMIDITY_DATA_UUID, true, this.onHumidityChangeBinded, callback);
};
SensorTagCommon.prototype.unnotifyHumidity = function(callback) {
this.notifyCharacteristic(HUMIDITY_UUID, HUMIDITY_DATA_UUID, false, this.onHumidityChangeBinded, callback);
};
SensorTagCommon.prototype.setBarometricPressurePeriod = function(period, callback) {
this.writePeriodCharacteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_PERIOD_UUID, period, callback);
};
SensorTagCommon.prototype.disableBarometricPressure = function(callback) {
this.disableConfigCharacteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_CONFIG_UUID, callback);
};
SensorTagCommon.prototype.readBarometricPressure = function(callback) {
this.readDataCharacteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_DATA_UUID, function(error, data) {
if (error) {
return callback(error);
}
this.convertBarometricPressureData(data, function(pressure) {
callback(null, pressure);
}.bind(this));
}.bind(this));
};
SensorTagCommon.prototype.onBarometricPressureChange = function(data) {
this.convertBarometricPressureData(data, function(pressure) {
this.emit('barometricPressureChange', pressure);
}.bind(this));
};
SensorTagCommon.prototype.notifyBarometricPressure = function(callback) {
this.notifyCharacteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_DATA_UUID, true, this.onBarometricPressureChangeBinded, callback);
};
SensorTagCommon.prototype.unnotifyBarometricPressure = function(callback) {
this.notifyCharacteristic(BAROMETRIC_PRESSURE_UUID, BAROMETRIC_PRESSURE_DATA_UUID, false, this.onBarometricPressureChangeBinded, callback);
};
SensorTagCommon.prototype.onSimpleKeyChange = function(data) {
this.convertSimpleKeyData(data, function(left, right) {
this.emit('simpleKeyChange', left, right);
}.bind(this));
};
SensorTagCommon.prototype.convertSimpleKeyData = function(data, callback) {
var b = data.readUInt8(0);
var left = (b & 0x2) ? true : false;
var right = (b & 0x1) ? true : false;
callback(left, right);
};
SensorTagCommon.prototype.notifySimpleKey = function(callback) {
this.notifyCharacteristic(SIMPLE_KEY_UUID, SIMPLE_KEY_DATA_UUID, true, this.onSimpleKeyChangeBinded, callback);
};
SensorTagCommon.prototype.unnotifySimpleKey = function(callback) {
this.notifyCharacteristic(SIMPLE_KEY_UUID, SIMPLE_KEY_DATA_UUID, false, this.onSimpleKeyChangeBinded, callback);
};
module.exports = SensorTagCommon;
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/lib/sensortag.js
================================================
// Copyright(c) 2013 Sandeep Mistry
// from project https://github.com/sandeepmistry/node-sensortag
//
// The MIT License(MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files(the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
var CC2540SensorTag = require('./cc2540');
var CC2650SensorTag = require('./cc2650');
var SensorTag = function() {
};
SensorTag.discoverAll = function(onDiscover) {
CC2540SensorTag.discoverAll(onDiscover);
CC2650SensorTag.discoverAll(onDiscover);
};
SensorTag.stopDiscoverAll = function(onDiscover) {
CC2540SensorTag.stopDiscoverAll(onDiscover);
CC2650SensorTag.stopDiscoverAll(onDiscover);
};
SensorTag.discover = function(callback) {
var onDiscover = function(sensorTag) {
SensorTag.stopDiscoverAll(onDiscover);
callback(sensorTag);
};
SensorTag.discoverAll(onDiscover);
};
SensorTag.discoverByUuid = function(uuid, callback) {
var onDiscoverByUuid = function(sensorTag) {
if (sensorTag.uuid === uuid) {
SensorTag.stopDiscoverAll(onDiscoverByUuid);
callback(sensorTag);
}
};
SensorTag.discoverAll(onDiscoverByUuid);
};
SensorTag.CC2540 = CC2540SensorTag;
SensorTag.CC2650 = CC2650SensorTag;
module.exports = SensorTag;
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/package.json
================================================
{
"name": "ConnectTheDotsIntelEdison",
"version": "1.0.0",
"description": "Simple Node app sending data from Arduino Weather Shield to Azure Event Hubs",
"main": "inteledisonsensortagctd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"cylon": "^0.22.1",
"cylon-gpio": "^0.22.1",
"cylon-intel-iot": "^0.5.2",
"noble": "^0.3.11",
"noble-device": "^1.0.0",
"connectthedots":"^1.0.2"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonSensorTag/settings.json
================================================
{
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "EdisonSensorTag",
"organization": "My Org",
"location": "My location"
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonXadow/Hardware.md
================================================
# Hardware requirements for Intel Edison + Seeed Xadow wearable kit #
- [Intel Edison kit for Arduino][1]
##Supported Sensors
- [Seeed Xadow wearable kit for Intel Edison][2]
[1]: http://www.intel.com/buy/us/en/product/emergingtechnologies/intel-edison-kit-462187
[2]: http://www.seeedstudio.com/depot/Xadow-Wearable-Kit-For-Intel-Edison-p-2428.html
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonXadow/Intel_Edison_setup.md
================================================
This document explains how to set up an Intel Edison board to send data to AzureIoT services using the REST interface.
It assumes that you have the right tools installed and that you have cloned or downloaded the ConnectTheDots.io project on your machine.
##Hardware requirements ##
Check out the hardware requirements [here](hardware.md).
##Prerequisites ##
To deploy the application you will need the following:
* For Windows, download PuTTY and PSCP from [here](http://www.putty.org/).
* WiFi Internet access for the device.
To work on the code of the project, you can use your favorite editor.
## Configure the Edison##
* Follow the instructions on the [Intel support page](https://communities.intel.com/docs/DOC-23192) to setup the Yocto image on the Edison board.
* Connect to the Intel Edison from your laptop, via a USB using PuTTY (or your favorite remote terminal tool)
* In the remote terminal, you can setup the WiFi connection typing:
configure_edison --wifi
* Once WiFi is setup you can connect your SSH tool through the network using the IP address displayed when doing the setup at previous step or using the command ifconfig.
* the VI text editor comes by default on the Yocto image for the Intel Edison, but if you prefer Nano, connect with SSH and type the following commands:
echo "src/gz all http://repo.opkg.net/edison/repo/all" >> /etc/opkg/base-feeds.conf
echo "src/gz edison http://repo.opkg.net/edison/repo/edison" >> /etc/opkg/base-feeds.conf
echo "src/gz core2-32 http://repo.opkg.net/edison/repo/core2-32" >> /etc/opkg/base-feeds.conf
opkg update
opkg install nano
##Setup the app on the board##
* In the remote terminal, type the following commands:
cd /node_app_slot
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonXadow/inteledisonctd.js
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonXadow/package.json
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonXadow/settings.json
npm install
* Before running the app, you need to update the settings.json file to input the device's connetion string and a unique device id.
Following the instructions [here](../../../readme.md), get the connection string for your device.
* In the remote terminal, open the file settings.json and edit the settings based on the configuration of your ehdevices Event Hub (if you want to use nano, just type nano settings.json and once your edits are done, type CTRL+X then Y to save). Note that the device id shall be unique per device so that data is not messed up in the connectthedots portal.
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "Edison",
"organization": "My Org",
"location": "My location"
##Run the app##
You can run the app manually typing the following in the remote terminal:
node .
Because the application is deployed in the node_app_slot on the Intel Edison, it will start automatically at boot time.
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonXadow/inteledisonctd.js
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
// We are using the johnny-five library to access the hardware resources,'
var five = require('johnny-five');
var Edison = require("edison-io");
var connectthedots = require('connectthedots');
var devicesettings = require('./settings.json');
// ---------------------------------------------------------------
// Let's connect_the_dots
// You can adapt the below code to your own sensors configuration
function connect_the_dots()
{
console.log("Device Ready to connect its dots");
var temp = 25;
var acc = 0;
var nbaccmeasures = 0;
// Initialize temperature sensor
var multi = new five.Multi({
controller: "BMP180"
});
multi.on("change", function() {
// console.log("BMP180");
// console.log(" pressure : ", this.barometer.pressure);
// console.log(" temperature : ", this.temperature.celsius)
// console.log("--------------------------------------");
temp = this.temperature.celsius;
// var currentTime = new Date().toISOString();
// send_message(format_sensor_data(settings.guid1, settings.displayname, settings.organization, settings.location, "Temperature", "C", currentTime , this.temperature.celsius), currentTime);
});
// Initialize accelerometer
var accelerometer = new five.Accelerometer({
controller: "ADXL345"
});
accelerometer.on("change", function() {
// console.log("accelerometer");
// console.log(" x : ", this.x);
// console.log(" y : ", this.y);
// console.log(" z : ", this.z);
// console.log(" pitch : ", this.pitch);
// console.log(" roll : ", this.roll);
// console.log(" acceleration : ", this.acceleration);
// console.log(" inclination : ", this.inclination);
// console.log(" orientation : ", this.orientation);
// console.log("--------------------------------------");
acc += this.acceleration;
nbaccmeasures++ ;
// var currentTime = new Date().toISOString();
// send_message(format_sensor_data(settings.guid2, settings.displayname, settings.organization, settings.location, "Acceleration", "G", currentTime , this.acceleration), currentTime);
});
// send data to Azure every 500 milliseconds
setInterval(function(){
connectthedots.send_message("Temperature", "C", temp);
if (nbaccmeasures>1)
{
acc = acc/nbaccmeasures;
connectthedots.send_message("Acceleration", "G", acc);
acc = 0;
nbaccmeasures = 0;
}
}, 500);
}
var initCallback = function (err) {
// Init board
var board = new five.Board({io: new Edison(Edison.Boards.Xadow)});
board.on("ready",connect_the_dots);
board.on("message", function(event){
console.log("Received a %s message, from %s, reporting: %s", event.type, event.class, event.message);
} );
board.on("fail", function(event) {
console.log("%s sent a 'fail' message: %s", event.class, event.message);
});
board.on("warn", function(event) {
console.log("%s sent a 'warn' message: %s", event.class, event.message);
});
}
// ---------------------------------------------------------------
// Init app
// Init connection to Azure IoT
connectthedots.init_connection(devicesettings, initCallback)
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonXadow/package.json
================================================
{
"name": "ConnectTheDotsIntelEdison",
"version": "1.0.1",
"description": "Simple Node app sending data from sensors to Azure IoT services",
"main": "inteledisonctd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"johnny-five": "^0.8.91",
"edison-io": "^0.8.18",
"connectthedots":"^1.0.2"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/IntelEdisonXadow/settings.json
================================================
{
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "IntelEdison",
"organization": "My Org",
"location": "My location"
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/SensorTag/Setup.md
================================================
### Generic SensorTag connection using a Raspberry PI, Linux, Mac OS and other Unix/Linux.
### Raspberry Pi requirements
You will need Bluez, you can follow [this](http://www.elinux.org/RPi_Bluetooth_LE) tutorial to achieve it.
Set up settings.json as with any other and you are ready to go
```
sudo npm start
```
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/SensorTag/index.js
================================================
'use strict'
// Common logic
var connectthedots = require('connectthedots');
// Settings
var devicesettings = require('./settings.json');
// Sensortag utility class
var worker = require('./sensorWorker.js');
var initCallback = function (err) {
// Once the connection to Azure IoT Hub is establish you can initialize your hardware and start sending data
// This is where you would insert your sensors code
// Start sensor worker with the send_message callback to the data reception
worker.start(connectthedots.send_message);
};
// Init connection to Azure IoT
connectthedots.init_connection(devicesettings, initCallback);
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/SensorTag/package.json
================================================
{
"name": "SensorTag",
"version": "1.0.0",
"description": "SensorTag connection to Connect The Dots",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Marian C Moldovan",
"license": "ISC",
"dependencies": {
"async": "^1.4.2",
"crypto": "0.0.3",
"moment": "^2.10.6",
"sensortag": "^1.1.1",
"connectthedots":"^1.0.2"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/SensorTag/sensorWorker.js
================================================
var SensorTag = require('sensortag');
var async = require('async');
var lastSensorTag;
var keepWorking = false;
var dataCallback;
function onErrorRestart(){
if(keepWorking)
SensorTag.discover(onDiscover);
}
function onDiscover(sensorTag) {
console.log('SensorTag discovered', sensorTag.id);
sensorTag.on('disconnect', function() {
console.log('SensorTag disconnected', sensorTag.id);
if(keepWorking)
SensorTag.discover(onDiscover);
});
sensorTag.connectAndSetUp(function(error){
if(error){
onErrorRestart();
}
else {
lastSensorTag = sensorTag;
sensorTag.enableIrTemperature(function (error) { if (error) console.log('enableIrTemperature ' + error); });
sensorTag.setIrTemperaturePeriod(1000, function (error) { if (error) console.log('setIrTemperaturePeriod ' + error); });
sensorTag.notifyIrTemperature(function (error) { if (error) console.log('notifyIrTemperature ' + error); });
sensorTag.on('irTemperatureChange', function (objectTemperature, ambientTemperature) {
if(dataCallback) dataCallback('Temperature', 'C', ambientTemperature);
});
sensorTag.enableHumidity(function (error) { if (error) console.log('enableHumidity ' + error); });
sensorTag.setHumidityPeriod(1000, function (error) { if (error) console.log('setHumidityPeriod ' + error); });
sensorTag.notifyHumidity(function (error) { if (error) console.log('notifyHumidity ' + error); });
sensorTag.on('humidityChange', function (temperature, humidity) {
if(dataCallback) dataCallback('Humidity', '%', humidity);
});
sensorTag.enableLuxometer(function (error) { if (error) console.log('enableLuxometer ' + error); });
sensorTag.setLuxometerPeriod(1000, function (error) { if (error) console.log('setLuxometerPeriod ' + error); });
sensorTag.notifyLuxometer(function (error) { if (error) console.log('notifyIrTemperature ' + error); });
sensorTag.on('luxometerChange', function (lux) {
if(dataCallback) dataCallback('Light', 'lux', lux);
});
sensorTag.enableBarometricPressure(function (error) { if (error) console.log('enableBarometricPressure ' + error); });
sensorTag.setBarometricPressurePeriod(1000, function (error) { if (error) console.log('setBarometricPressurePeriod ' + error); });
sensorTag.notifyBarometricPressure(function (error) { if (error) console.log('notifyBarometricPressure ' + error); });
sensorTag.on('barometricPressureChange', function (pressure) {
if(dataCallback) dataCallback('Barometric Pressure', 'mHg', pressure);
});
}
});
}
exports.start = function(cb){
dataCallback = cb;
SensorTag.discover(onDiscover);
}
exports.stop = function(){
keepWorking = false;
dataCallback = null;
if(lastSensorTag)
lastSensorTag.disconnect();
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/SensorTag/settings.json
================================================
{
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "SensorTag",
"organization": "My Org",
"location": "My location"
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Tessel2/Hardware.md
================================================
# Hardware requirements for Tessel 2 and modules #
- [Tessel 2][1]
## Supported Sensors ##
- [Tessel 2 Ambient Module][2]
[1]: https://tessel.io/
[2]: https://tessel.io/modules#module-ambient
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Tessel2/Tessel2_setup.md
================================================
This document explains how to set up a Tessel 2 board to send data to Azure IoT services Hub using the AMQP interface.
## Hardware requirements ##
Check out the hardware requirements [here](hardware.md).
## Prerequisites ##
To deploy the application you will need the following:
* Your preferred command line terminal
* Wifi internet access for the Tessel 2 and your computer
To work on the code of the project, you can use your favorite code editor.
## Configure the Tessel 2 ##
* Connect the Ambient module to Port A of the Tessel 2
* Connect to the Tessel 2 via USB from your computer
* Follow the instructions on the [Tessel 2 site](http://tessel.github.io/t2-start/) to install the t2 CLI tool, and connect the Tessel 2 to WiFi
## Set up the app on the board ##
* In your preferred terminal, type the following commands:
mkdir t2_connect_the_dots
cd t2_connect_the_dots
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/Tessel2/tessel2ctd.js
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/Tessel2/package.json
wget https://github.com/Azure/connectthedots/raw/IoTHub/Devices/DirectlyConnectedDevices/NodeJS/Tessel2/settings.json
npm install
* Before running the app, you need to update the settings.json file to input the device's connection string and a unique device id.
Following the instructions [here](../../../readme.md), to get the connection string for your device.
* In your preferred code editor, open the file settings.json and edit the settings based on the configuration of your ehdevices Event Hub. Note that the device id shall be unique per device so that data is not messed up in the connectthedots portal.
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "My Tessel 2",
"organization": "My Org",
"location": "My location"
* Once you have changed the settings file, you can test your app. To do this, you'll be using the t2 CLI to transfer your code over to the Tessel 2 while it's connected (you need to be in the /t2_connect_the_dots folder):
t2 run tessel2ctd.js
* In order to run your app on the Tessel without tethering, use the `push` command instead:
t2 push tessel2ctd.js
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Tessel2/package.json
================================================
{
"name": "ConnectTheDotsTessel2",
"version": "1.0.0",
"description": "Simple Node app sending data from a Tessel 2 + Ambient Module to Azure IoT services",
"main": "tessel2ctd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"ambient-attx4": "^0.2.11",
"connectthedots": "^1.0.3",
"tessel": "^0.3.25"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Tessel2/settings.json
================================================
{
"iothubconnectionstring": "",
"deviceid": "",
"displayname": "My Tessel 2",
"organization": "My Org",
"location": "My location"
}
================================================
FILE: Devices/DirectlyConnectedDevices/NodeJS/Tessel2/tessel2ctd.js
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
var connectthedots = require('connectthedots');
var devicesettings = require('./settings.json');
var tessel = require('tessel');
var ambientlib = require('ambient-attx4');
// main function to initialize the Tessel and start reading data
var connect_the_dots = function () {
// Connect to our ambient sensor.
var ambient = ambientlib.use(tessel.port['A']);
console.log('Tessel 2 is ready to connect its dots');
// Read light and sound data at a 1 second interval
setInterval(function () {
// read some sound level data
ambient.getSoundLevel(function (err, sdata) {
if (err) throw err;
console.log('sound: ', sdata)
// read some light level data
ambient.getLightLevel(function (err, ldata) {
if (err) throw err;
console.log('light: ', ldata);
// send data to IoT Hub
connectthedots.send_message("Sound", "units", sdata);
connectthedots.send_message("Light", "units", ldata);
});
});
}, 1000);
}
var initCallback = function (err) {
// Once the connection to Azure IoT Hub is establish you can initialize your hardware and start sending data
// This is where you would insert your sensors code
connect_the_dots();
};
var receiveCallback = function (msg) {
// A message was received
console.log("Received Message. Message Id: " + msg.messageId + " ; Message data:" + msg.data.toString() );
};
// ---------------------------------------------------------------
// Init app
// Init connection to Azure IoT
connectthedots.init_connection(devicesettings, initCallback, receiveCallback);
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/App.xaml
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/App.xaml.cs
================================================
using System;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;
namespace UWPMSBand
{
///
/// Provides application-specific behavior to supplement the default Application class.
///
sealed partial class App : Application
{
///
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
///
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
}
///
/// Invoked when the application is launched normally by the end user. Other entry points
/// will be used such as when the application is launched to open a specific file.
///
/// Details about the launch request and process.
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
#if DEBUG
if (System.Diagnostics.Debugger.IsAttached)
{
this.DebugSettings.EnableFrameRateCounter = true;
}
#endif
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
rootFrame.NavigationFailed += OnNavigationFailed;
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: Load state from previously suspended application
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
rootFrame.Navigate(typeof(MainPage), e.Arguments);
}
// Ensure the current window is active
Window.Current.Activate();
}
///
/// Invoked when Navigation to a certain page fails
///
/// The Frame which failed navigation
/// Details about the navigation failure
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
{
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
}
///
/// Invoked when application execution is being suspended. Application state is saved
/// without knowing whether the application will be terminated or resumed with the contents
/// of memory still intact.
///
/// The source of the suspend request.
/// Details about the suspend request.
private void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
//TODO: Save application state and stop any background activity
deferral.Complete();
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/MainPage.xaml
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/MainPage.xaml.cs
================================================
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Windows.UI.Popups;
using Windows.Devices.Geolocation;
using Windows.ApplicationModel.Core;
using Windows.UI.Core;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml;
using Microsoft.Band;
using Microsoft.Band.Sensors;
using System.Collections.Generic;
using System.Linq;
using ConnectTheDotsHelper;
namespace UWPMSBand
{
public sealed partial class MainPage : Page
{
private GeolocationAccessStatus LocationAccess = GeolocationAccessStatus.Unspecified;
private Windows.Storage.ApplicationDataContainer localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
private ConnectTheDots CTD;
private delegate void AppendAlert(string AlertText);
//private DeviceClient deviceClient;
private IBandClient bandClient;
public MainPage()
{
this.InitializeComponent();
// Initialize ConnectTheDots Helper
CTD = new ConnectTheDots();
// Restore local settings
if (localSettings.Values.ContainsKey("DisplayName"))
{
CTD.DisplayName = (string)localSettings.Values["DisplayName"];
this.TBDeviceName.Text = CTD.DisplayName;
}
if (localSettings.Values.ContainsKey("ConnectionString"))
{
CTD.ConnectionString = (string)localSettings.Values["ConnectionString"];
this.TBConnectionString.Text = CTD.ConnectionString;
}
// Check configuration settings
ConnectToggle.IsEnabled = checkConfig();
CTD.DisplayName = this.TBDeviceName.Text;
CTD.ConnectionString = this.TBConnectionString.Text;
CTD.Organization = "My Company";
CTD.Location = "Unknown";
// Hook up a callback to display message received from Azure
CTD.ReceivedMessage += CTD_ReceivedMessage;
// Get user consent for accessing location
Task.Run(async () =>
{
await CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
async () =>
{
this.LocationAccess = await Geolocator.RequestAccessAsync();
// Get device location
await updateLocation();
});
});
// Connect to MS Band
Task.Run(async () =>
{
await connectToBand();
});
}
private void CTD_ReceivedMessage(object sender, EventArgs e)
{
CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
async () =>
{
ConnectTheDotsHelper.C2DMessage message = ((ConnectTheDotsHelper.ConnectTheDots.ReceivedMessageEventArgs)e).Message;
var textToDisplay = message.timecreated + " - Alert received:" + message.message + ": " + message.value + " " + message.unitofmeasure + "\r\n";
TBAlerts.Text += textToDisplay;
});
}
///
/// checkConfig
/// Check stored configuration
///
///
private bool checkConfig()
{
return ((this.TBDeviceName.Text != null) && (this.TBConnectionString.Text != null) &&
(this.TBDeviceName.Text != "") && (this.TBConnectionString.Text != ""));
}
///
/// updateLocation
/// Updates current location of the device
///
///
private async Task updateLocation()
{
// Update current device location
try
{
if (LocationAccess == GeolocationAccessStatus.Allowed)
{
Geolocator geolocator = new Geolocator();
Geoposition pos = await geolocator.GetGeopositionAsync();
CTD.Location = pos.Coordinate.Point.Position.Longitude.ToString() + "," + pos.Coordinate.Point.Position.Latitude.ToString();
}
}
catch (Exception ex)
{
Debug.WriteLine("Error while trying to retreive device's location: " + ex.Message);
CTD.Location = "unknown";
}
}
///
/// toggleButton_Checked
///
///
///
private void toggleButton_Checked(object sender, RoutedEventArgs e)
{
SendDataToggle.Content = "Sending telemetry data";
CTD.SendTelemetryData = true;
}
///
/// toggleButton_Unchecked
///
///
///
private void toggleButton_Unchecked(object sender, RoutedEventArgs e)
{
SendDataToggle.Content = "Press to send telemetry data";
CTD.SendTelemetryData = false;
}
///
/// TBDeviceName_TextChanged
///
///
///
private void TBDeviceName_TextChanged(object sender, TextChangedEventArgs e)
{
CTD.DisplayName = TBDeviceName.Text;
localSettings.Values["DisplayName"] = CTD.DisplayName;
ConnectToggle.IsEnabled = checkConfig();
}
///
/// TBConnectionString_TextChanged
///
///
///
private void TBConnectionString_TextChanged(object sender, TextChangedEventArgs e)
{
CTD.ConnectionString = TBConnectionString.Text;
localSettings.Values["ConnectionString"] = CTD.ConnectionString;
ConnectToggle.IsEnabled = checkConfig();
}
///
/// ConnectToggle_Checked
///
///
///
private void ConnectToggle_Checked(object sender, RoutedEventArgs e)
{
if (CTD.Connect())
{
SendDataToggle.IsEnabled = true;
TBDeviceName.IsEnabled = false;
TBConnectionString.IsEnabled = false;
ConnectToggle.Content = "Dots connected";
}
}
///
/// ConnectToggle_Unchecked
///
///
///
private void ConnectToggle_Unchecked(object sender, RoutedEventArgs e)
{
if (CTD.Disconnect())
{
SendDataToggle.IsChecked = false;
SendDataToggle.IsEnabled = false;
TBDeviceName.IsEnabled = true;
TBConnectionString.IsEnabled = true;
ConnectToggle.Content = "Press to connect the dots";
}
}
private async void SkinTemperature_ReadingChanged(object sender, BandSensorReadingEventArgs args)
{
// do work when the reading changes (i.e., update a UI element)
CTD.Sensors["SkinTemperature"].message.value = args.SensorReading.Temperature;
await CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
async () =>
{
tbSkinTemperature.Text = string.Format("{0:0}", CTD.Sensors["SkinTemperature"].message.value);
});
//Debug.WriteLine("SkinTemperature Changed: " + string.Format("{0:0}", CTD.Sensors["SkinTemperature"].value));
}
private async void HeartRate_ReadingChanged(object sender, BandSensorReadingEventArgs args)
{
// do work when the reading changes (i.e., update a UI element)
CTD.Sensors["HeartRate"].message.value = args.SensorReading.HeartRate;
await CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
async () =>
{
tbHeartRate.Text = string.Format("{0:0}", CTD.Sensors["HeartRate"].message.value);
});
//Debug.WriteLine("HeartRate Changed: " + string.Format("{0:0}", CTD.Sensors["HeartRate"].value));
}
private async void Accelerometer_ReadingChanged(object sender, BandSensorReadingEventArgs args)
{
// do work when the reading changes (i.e., update a UI element)
CTD.Sensors["Acceleration"].message.value = args.SensorReading.AccelerationX;
await CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
async () =>
{
tbAcceleration.Text = string.Format("{0:0}", CTD.Sensors["Acceleration"].message.value);
});
//Debug.WriteLine("HeartRate Changed: " + string.Format("{0:0}", CTD.Sensors["HeartRate"].value));
}
private async void AddBandSensor(IBandSensor sensor,
string measurename,
string unitofmeasure,
EventHandler> ValueChangedEventHandler) where T : IBandSensorReading
{
// check current user consent for accessing Band sensor
if (sensor.GetCurrentUserConsent() != UserConsent.Granted)
{
// user hasn’t consented, request consent
await sensor.RequestUserConsentAsync();
if (sensor.GetCurrentUserConsent() != UserConsent.Granted) return;
}
// User granted consent
// Add Sensor to ConnectTheDots Helper
CTD.AddSensor(measurename, unitofmeasure);
// hook up to the Sensor ReadingChanged event
IEnumerable supportedHeartRateReportingIntervals = sensor.SupportedReportingIntervals;
sensor.ReportingInterval = supportedHeartRateReportingIntervals.First();
sensor.ReadingChanged += ValueChangedEventHandler;
// start reading from the sensor
await sensor.StartReadingsAsync();
}
private async Task connectToBand()
{
try
{
IBandInfo[] pairedBands = await BandClientManager.Instance.GetBandsAsync();
bandClient = await BandClientManager.Instance.ConnectAsync(pairedBands[0]);
AddBandSensor(bandClient.SensorManager.HeartRate,
"HeartRate",
"bpm",
HeartRate_ReadingChanged);
AddBandSensor(bandClient.SensorManager.SkinTemperature,
"SkinTemperature",
"C",
SkinTemperature_ReadingChanged);
AddBandSensor(bandClient.SensorManager.Accelerometer,
"Acceleration",
"G",
Accelerometer_ReadingChanged);
}
catch (BandException ex)
{
// handle a Band connection exception
var dialogbox = new MessageDialog("Error while connecting Band Sensors: " + ex.Message.ToString() + "\nRetrying...");
await dialogbox.ShowAsync();
await connectToBand();
}
}
private void cbHeartRate_Checked(object sender, RoutedEventArgs e)
{
if (CTD != null)
CTD.setSensorStreaming("HeartRate", true);
}
private void cbHeartRate_Unchecked(object sender, RoutedEventArgs e)
{
if (CTD != null)
CTD.setSensorStreaming("HeartRate", false);
}
private void cbSkinTemperature_Checked(object sender, RoutedEventArgs e)
{
if (CTD != null)
CTD.setSensorStreaming("SkinTemperature", true);
}
private void cbSkinTemperature_Unchecked(object sender, RoutedEventArgs e)
{
if (CTD != null)
CTD.setSensorStreaming("SkinTemperature", false);
}
private void cbSAccelerometer_Unchecked(object sender, RoutedEventArgs e)
{
if (CTD != null)
CTD.setSensorStreaming("Acceleration", false);
}
private void cbSAccelerometer_Checked(object sender, RoutedEventArgs e)
{
if (CTD != null)
CTD.setSensorStreaming("Acceleration", true);
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/Package.appxmanifest
================================================
UWPMSBand
olivi
Assets\StoreLogo.png
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/Properties/AssemblyInfo.cs
================================================
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("UWPMSBand")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("UWPMSBand")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)]
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/Properties/Default.rd.xml
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/UWPMSBand.csproj
================================================
Debug
x86
{38159BCB-2D15-4410-846F-C4E161FCDFEB}
AppContainerExe
Properties
UWPMSBand
UWPMSBand
en-US
UAP
10.0.10240.0
10.0.10240.0
14
512
{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
UWPMSBand_TemporaryKey.pfx
true
bin\x86\Debug\
DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
;2008
full
x86
false
prompt
true
bin\x86\Release\
TRACE;NETFX_CORE;WINDOWS_UWP
true
;2008
pdbonly
x86
false
prompt
true
true
true
bin\ARM\Debug\
DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
;2008
full
ARM
false
prompt
true
bin\ARM\Release\
TRACE;NETFX_CORE;WINDOWS_UWP
true
;2008
pdbonly
ARM
false
prompt
true
true
true
bin\x64\Debug\
DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
;2008
full
x64
false
prompt
true
bin\x64\Release\
TRACE;NETFX_CORE;WINDOWS_UWP
true
;2008
pdbonly
x64
false
prompt
true
true
ConnectTheDotsHelper.cs
App.xaml
MainPage.xaml
Designer
MSBuild:Compile
Designer
MSBuild:Compile
Designer
14.0
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/project.json
================================================
{
"dependencies": {
"Microsoft.Azure.Devices.Client": "1.1.1",
"Microsoft.Azure.Devices.Shared": "1.0.2",
"Microsoft.Band": "1.3.20628",
"Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2",
"Newtonsoft.Json": "9.0.1"
},
"frameworks": {
"uap10.0": {}
},
"runtimes": {
"win10-arm": {},
"win10-arm-aot": {},
"win10-x86": {},
"win10-x86-aot": {},
"win10-x64": {},
"win10-x64-aot": {}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand/project.lock.json
================================================
{
"locked": false,
"version": 2,
"targets": {
"UAP,Version=v10.0": {
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Band/1.3.20628": {
"type": "package",
"compile": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
},
"runtime": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package"
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"lib/netcore50/System.Core.dll": {},
"lib/netcore50/System.Net.dll": {},
"lib/netcore50/System.Numerics.dll": {},
"lib/netcore50/System.Runtime.Serialization.dll": {},
"lib/netcore50/System.ServiceModel.Web.dll": {},
"lib/netcore50/System.ServiceModel.dll": {},
"lib/netcore50/System.Windows.dll": {},
"lib/netcore50/System.Xml.Linq.dll": {},
"lib/netcore50/System.Xml.Serialization.dll": {},
"lib/netcore50/System.Xml.dll": {},
"lib/netcore50/System.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Core.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Net.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Numerics.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.ServiceModel.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Windows.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Xml.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/mscorlib.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"lib/netcore50/System.AppContext.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.AppContext.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Expressions.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
"assetType": "runtime",
"rid": "linux"
},
"runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
"assetType": "runtime",
"rid": "osx"
},
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {
"assetType": "runtime",
"rid": "win7"
}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/_._": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/_._": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.TypeExtensions.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {
"assetType": "runtime",
"rid": "win8-aot"
},
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {
"assetType": "runtime",
"rid": "win8"
}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {
"assetType": "runtime",
"rid": "win8"
}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Threading.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
}
},
"UAP,Version=v10.0/win10-arm": {
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Band/1.3.20628": {
"type": "package",
"compile": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
},
"runtime": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package"
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"lib/netcore50/System.Core.dll": {},
"lib/netcore50/System.Net.dll": {},
"lib/netcore50/System.Numerics.dll": {},
"lib/netcore50/System.Runtime.Serialization.dll": {},
"lib/netcore50/System.ServiceModel.Web.dll": {},
"lib/netcore50/System.ServiceModel.dll": {},
"lib/netcore50/System.Windows.dll": {},
"lib/netcore50/System.Xml.Linq.dll": {},
"lib/netcore50/System.Xml.Serialization.dll": {},
"lib/netcore50/System.Xml.dll": {},
"lib/netcore50/System.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.any.System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Collections.dll": {}
}
},
"runtime.any.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.any.System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.any.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.any.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.any.System.IO/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.IO.dll": {}
}
},
"runtime.any.System.Reflection/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.any.System.Reflection.Extensions/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.any.System.Reflection.Primitives/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.any.System.Resources.ResourceManager/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.any.System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.any.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"runtime.any.System.Runtime.InteropServices/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.any.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.any.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.any.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.any.System.Threading.Timer/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win8-arm.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Private.Uri.dll": {}
}
},
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll": {},
"runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll": {}
},
"native": {
"runtimes/win8-arm/native/System.Private.CoreLib.ni.dll": {},
"runtimes/win8-arm/native/clretwrc.dll": {},
"runtimes/win8-arm/native/coreclr.dll": {},
"runtimes/win8-arm/native/dbgshim.dll": {},
"runtimes/win8-arm/native/mscordaccore.dll": {},
"runtimes/win8-arm/native/mscordbi.dll": {},
"runtimes/win8-arm/native/mscorlib.ni.dll": {},
"runtimes/win8-arm/native/mscorrc.debug.dll": {},
"runtimes/win8-arm/native/mscorrc.dll": {},
"runtimes/win8-arm/native/sos.dll": {}
}
},
"runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"native": {
"runtimes/win8-arm/native/clrcompression.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Collections": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tracing": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.any.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Extensions": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Primitives": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Resources.ResourceManager": "4.0.1"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.any.System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.any.System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.any.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
}
},
"UAP,Version=v10.0/win10-arm-aot": {
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Band/1.3.20628": {
"type": "package",
"compile": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
},
"runtime": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package"
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"runtimes/aot/lib/netcore50/System.Core.dll": {},
"runtimes/aot/lib/netcore50/System.Net.dll": {},
"runtimes/aot/lib/netcore50/System.Numerics.dll": {},
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
"runtimes/aot/lib/netcore50/System.Windows.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.dll": {},
"runtimes/aot/lib/netcore50/System.dll": {},
"runtimes/aot/lib/netcore50/mscorlib.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.aot.System.Collections/4.0.10": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Collections.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.aot.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.aot.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.aot.System.IO/4.1.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.IO.dll": {}
}
},
"runtime.aot.System.Reflection/4.0.10": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.aot.System.Reflection.Extensions/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.aot.System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.aot.System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.aot.System.Runtime/4.0.20": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.aot.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {}
}
},
"runtime.aot.System.Runtime.InteropServices/4.0.20": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.aot.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.aot.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.aot.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.aot.System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"compile": {
"runtimes/win10-arm-aot/lib/netcore50/_._": {}
},
"runtime": {
"runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.Uri.dll": {}
}
},
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win8-arm-aot/lib/netstandard1.0/_._": {}
},
"native": {
"runtimes/win8-arm-aot/native/_._": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Collections": "4.0.10"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tracing": "4.0.20"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.aot.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection": "4.0.10"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Primitives": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Resources.ResourceManager": "4.0.0"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.aot.System.Runtime": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.aot.System.Runtime.InteropServices": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.aot.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
}
},
"UAP,Version=v10.0/win10-x64": {
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Band/1.3.20628": {
"type": "package",
"compile": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
},
"runtime": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"dependencies": {
"runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3"
}
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"lib/netcore50/System.Core.dll": {},
"lib/netcore50/System.Net.dll": {},
"lib/netcore50/System.Numerics.dll": {},
"lib/netcore50/System.Runtime.Serialization.dll": {},
"lib/netcore50/System.ServiceModel.Web.dll": {},
"lib/netcore50/System.ServiceModel.dll": {},
"lib/netcore50/System.Windows.dll": {},
"lib/netcore50/System.Xml.Linq.dll": {},
"lib/netcore50/System.Xml.Serialization.dll": {},
"lib/netcore50/System.Xml.dll": {},
"lib/netcore50/System.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.any.System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Collections.dll": {}
}
},
"runtime.any.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.any.System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.any.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.any.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.any.System.IO/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.IO.dll": {}
}
},
"runtime.any.System.Reflection/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.any.System.Reflection.Extensions/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.any.System.Reflection.Primitives/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.any.System.Resources.ResourceManager/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.any.System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.any.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"runtime.any.System.Runtime.InteropServices/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.any.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.any.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.any.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.any.System.Threading.Timer/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7-x64.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"native": {
"runtimes/win7-x64/native/clrjit.dll": {}
}
},
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll": {},
"runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll": {}
},
"native": {
"runtimes/win7-x64/native/System.Private.CoreLib.ni.dll": {},
"runtimes/win7-x64/native/clretwrc.dll": {},
"runtimes/win7-x64/native/coreclr.dll": {},
"runtimes/win7-x64/native/dbgshim.dll": {},
"runtimes/win7-x64/native/mscordaccore.dll": {},
"runtimes/win7-x64/native/mscordbi.dll": {},
"runtimes/win7-x64/native/mscorlib.ni.dll": {},
"runtimes/win7-x64/native/mscorrc.debug.dll": {},
"runtimes/win7-x64/native/mscorrc.dll": {},
"runtimes/win7-x64/native/sos.dll": {}
}
},
"runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"native": {
"runtimes/win7-x64/native/clrcompression.dll": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Private.Uri.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Collections": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tracing": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.any.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Extensions": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Primitives": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Resources.ResourceManager": "4.0.1"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.any.System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.any.System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.any.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
}
},
"UAP,Version=v10.0/win10-x64-aot": {
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Band/1.3.20628": {
"type": "package",
"compile": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
},
"runtime": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"dependencies": {
"runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3"
}
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"runtimes/aot/lib/netcore50/System.Core.dll": {},
"runtimes/aot/lib/netcore50/System.Net.dll": {},
"runtimes/aot/lib/netcore50/System.Numerics.dll": {},
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
"runtimes/aot/lib/netcore50/System.Windows.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.dll": {},
"runtimes/aot/lib/netcore50/System.dll": {},
"runtimes/aot/lib/netcore50/mscorlib.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.aot.System.Collections/4.0.10": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Collections.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.aot.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.aot.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.aot.System.IO/4.1.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.IO.dll": {}
}
},
"runtime.aot.System.Reflection/4.0.10": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.aot.System.Reflection.Extensions/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.aot.System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.aot.System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.aot.System.Runtime/4.0.20": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.aot.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {}
}
},
"runtime.aot.System.Runtime.InteropServices/4.0.20": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.aot.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.aot.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.aot.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.aot.System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"compile": {
"runtimes/win10-x64-aot/lib/netcore50/_._": {}
},
"runtime": {
"runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll": {}
}
},
"runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"native": {
"runtimes/win7-x64-aot/native/_._": {}
}
},
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win7-x64-aot/lib/netstandard1.0/_._": {}
},
"native": {
"runtimes/win7-x64-aot/native/_._": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.Uri.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Collections": "4.0.10"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tracing": "4.0.20"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.aot.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection": "4.0.10"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Primitives": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Resources.ResourceManager": "4.0.0"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.aot.System.Runtime": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.aot.System.Runtime.InteropServices": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.aot.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
}
},
"UAP,Version=v10.0/win10-x86": {
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Band/1.3.20628": {
"type": "package",
"compile": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
},
"runtime": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"dependencies": {
"runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3"
}
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"lib/netcore50/System.Core.dll": {},
"lib/netcore50/System.Net.dll": {},
"lib/netcore50/System.Numerics.dll": {},
"lib/netcore50/System.Runtime.Serialization.dll": {},
"lib/netcore50/System.ServiceModel.Web.dll": {},
"lib/netcore50/System.ServiceModel.dll": {},
"lib/netcore50/System.Windows.dll": {},
"lib/netcore50/System.Xml.Linq.dll": {},
"lib/netcore50/System.Xml.Serialization.dll": {},
"lib/netcore50/System.Xml.dll": {},
"lib/netcore50/System.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.any.System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Collections.dll": {}
}
},
"runtime.any.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.any.System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.any.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.any.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.any.System.IO/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.IO.dll": {}
}
},
"runtime.any.System.Reflection/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.any.System.Reflection.Extensions/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.any.System.Reflection.Primitives/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.any.System.Resources.ResourceManager/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.any.System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.any.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"runtime.any.System.Runtime.InteropServices/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.any.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.any.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.any.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.any.System.Threading.Timer/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7-x86.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"native": {
"runtimes/win7-x86/native/clrjit.dll": {}
}
},
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll": {},
"runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll": {}
},
"native": {
"runtimes/win7-x86/native/System.Private.CoreLib.ni.dll": {},
"runtimes/win7-x86/native/clretwrc.dll": {},
"runtimes/win7-x86/native/coreclr.dll": {},
"runtimes/win7-x86/native/dbgshim.dll": {},
"runtimes/win7-x86/native/mscordaccore.dll": {},
"runtimes/win7-x86/native/mscordbi.dll": {},
"runtimes/win7-x86/native/mscorlib.ni.dll": {},
"runtimes/win7-x86/native/mscorrc.debug.dll": {},
"runtimes/win7-x86/native/mscorrc.dll": {},
"runtimes/win7-x86/native/sos.dll": {}
}
},
"runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"native": {
"runtimes/win7-x86/native/clrcompression.dll": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Private.Uri.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Collections": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tracing": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.any.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Extensions": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Primitives": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Resources.ResourceManager": "4.0.1"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.any.System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.any.System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.any.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
}
},
"UAP,Version=v10.0/win10-x86-aot": {
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Band/1.3.20628": {
"type": "package",
"compile": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
},
"runtime": {
"lib/uap10.0/Google.Protobuf.dll": {},
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.Store_UAP.dll": {},
"lib/uap10.0/Microsoft.Band.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"dependencies": {
"runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3"
}
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"runtimes/aot/lib/netcore50/System.Core.dll": {},
"runtimes/aot/lib/netcore50/System.Net.dll": {},
"runtimes/aot/lib/netcore50/System.Numerics.dll": {},
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
"runtimes/aot/lib/netcore50/System.Windows.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.dll": {},
"runtimes/aot/lib/netcore50/System.dll": {},
"runtimes/aot/lib/netcore50/mscorlib.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.aot.System.Collections/4.0.10": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Collections.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.aot.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.aot.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.aot.System.IO/4.1.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.IO.dll": {}
}
},
"runtime.aot.System.Reflection/4.0.10": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.aot.System.Reflection.Extensions/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.aot.System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.aot.System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.aot.System.Runtime/4.0.20": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.aot.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {}
}
},
"runtime.aot.System.Runtime.InteropServices/4.0.20": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.aot.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.aot.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.aot.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.aot.System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"compile": {
"runtimes/win10-x86-aot/lib/netcore50/_._": {}
},
"runtime": {
"runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll": {}
}
},
"runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"native": {
"runtimes/win7-x86-aot/native/_._": {}
}
},
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win7-x86-aot/lib/netstandard1.0/_._": {}
},
"native": {
"runtimes/win7-x86-aot/native/_._": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.Uri.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Collections": "4.0.10"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tracing": "4.0.20"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.aot.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection": "4.0.10"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Primitives": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Resources.ResourceManager": "4.0.0"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.aot.System.Runtime": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.aot.System.Runtime.InteropServices": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.aot.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
}
}
},
"libraries": {
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"sha512": "3kiI8peSXbXHDDrRuo+QaX0iCEVRe0nvn2dBDRw656uPX32UalbBlSIDUDlJxu05eau4tnuhsikiUuugvvoUoQ==",
"type": "package",
"files": [
"Microsoft.AspNet.WebApi.Client.5.2.3.nupkg.sha512",
"Microsoft.AspNet.WebApi.Client.nuspec",
"lib/net45/System.Net.Http.Formatting.dll",
"lib/net45/System.Net.Http.Formatting.xml",
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll",
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml"
]
},
"Microsoft.Azure.Amqp/1.1.5": {
"sha512": "6+3lPVW46h3H2NvjGtrHv+C0P3PVH11pZyCePm+w8AuhmX59OY+fvbA9/wll0MRAj81LPpz1i55oIQm41wOv7g==",
"type": "package",
"files": [
"Microsoft.Azure.Amqp.1.1.5.nupkg.sha512",
"Microsoft.Azure.Amqp.nuspec",
"lib/net451/Microsoft.Azure.Amqp.XML",
"lib/net451/Microsoft.Azure.Amqp.dll",
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll"
]
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"sha512": "BLh4z61INbQtdVXkhYsIiNqbYy9w7jcem4lqlSX8qZUIxIYsldN2U0QsLOgH9CP67N2lXaDtdAdnondIWehMPw==",
"type": "package",
"path": "Microsoft.Azure.Devices.Client/1.1.1",
"files": [
"Microsoft.Azure.Devices.Client.1.1.1.nupkg.sha512",
"Microsoft.Azure.Devices.Client.nuspec",
"build/native/Microsoft.Azure.Devices.Client.targets",
"lib/native/Microsoft.Azure.Devices.Client.winmd",
"lib/net45/Microsoft.Azure.Devices.Client.dll",
"lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10/Microsoft.Azure.Devices.Client.PCL.dll",
"lib/uap10.0/Microsoft.Azure.Devices.Client.pri",
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd",
"thirdpartynotice.txt"
]
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"sha512": "4j+6UpDVNvIuzmZussC+sMi2GioiNyhNwGioVKqVj7wKk1oY7pfd6Yt8Qjc4za++IYhDRoRo3yHM5YeJWskCwQ==",
"type": "package",
"path": "Microsoft.Azure.Devices.Shared/1.0.2",
"files": [
"Microsoft.Azure.Devices.Shared.1.0.2.nupkg.sha512",
"Microsoft.Azure.Devices.Shared.nuspec",
"lib/net45/Microsoft.Azure.Devices.Shared.dll",
"lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10/Microsoft.Azure.Devices.Shared.PCL.dll",
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll",
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.pri",
"thirdpartynotice.txt"
]
},
"Microsoft.Band/1.3.20628": {
"sha512": "pXvYuw8wm+rqGmgWPGkg81UE43ZSPO3nqH1aPGUjekQM7J6SHVA7va31MdZbXbodtbnLWyj9ZnbM8crHwfZqHQ==",
"type": "package",
"files": [
"Microsoft.Band.1.3.20628.nupkg.sha512",
"Microsoft.Band.nuspec",
"content/netcore451/Package.appxmanifest.transform",
"content/wpa81/Package.appxmanifest.transform",
"lib/netcore451/Google.Protobuf.dll",
"lib/netcore451/Microsoft.Band.Store.dll",
"lib/netcore451/Microsoft.Band.Store.pri",
"lib/netcore451/Microsoft.Band.Windows.dll",
"lib/netcore451/Microsoft.Band.Windows.pri",
"lib/netcore451/Microsoft.Band.dll",
"lib/portable-net45+win+wpa81/Microsoft.Band.dll",
"lib/portable-win81+wpa81/Google.Protobuf.dll",
"lib/portable-win81+wpa81/Microsoft.Band.Store.dll",
"lib/portable-win81+wpa81/Microsoft.Band.Store.pri",
"lib/portable-win81+wpa81/Microsoft.Band.dll",
"lib/uap10.0/Google.Protobuf.dll",
"lib/uap10.0/Microsoft.Band.Phone_UAP.dll",
"lib/uap10.0/Microsoft.Band.Phone_UAP.pri",
"lib/uap10.0/Microsoft.Band.Store_UAP.dll",
"lib/uap10.0/Microsoft.Band.Store_UAP.pri",
"lib/uap10.0/Microsoft.Band.dll",
"lib/wpa81/Google.Protobuf.dll",
"lib/wpa81/Microsoft.Band.Phone.dll",
"lib/wpa81/Microsoft.Band.Phone.pri",
"lib/wpa81/Microsoft.Band.Store.dll",
"lib/wpa81/Microsoft.Band.Store.pri",
"lib/wpa81/Microsoft.Band.dll"
]
},
"Microsoft.Bcl/1.1.9": {
"sha512": "USQ55innJy8K+tAXvVa1O8dUTp2s7pmJ5cJj6Tl02HtGc2xBDj0P2QH5620HbGXIWKWYhydoeQF8Rm/JRDBGhw==",
"type": "package",
"files": [
"License-Stable.rtf",
"Microsoft.Bcl.1.1.9.nupkg.sha512",
"Microsoft.Bcl.nuspec",
"content/monoandroid/_._",
"content/monotouch/_._",
"content/net45/_._",
"content/portable-net45+win8+wp8+wpa81/_._",
"content/portable-net45+win8+wpa81/_._",
"content/portable-net451+win81+wpa81/_._",
"content/portable-net451+win81/_._",
"content/portable-win81+wp81+wpa81/_._",
"content/sl4/_._",
"content/sl5/_._",
"content/win8/_._",
"content/wp8/_._",
"content/wpa81/_._",
"lib/monoandroid/_._",
"lib/monotouch/_._",
"lib/net40/System.IO.dll",
"lib/net40/System.IO.xml",
"lib/net40/System.Runtime.dll",
"lib/net40/System.Runtime.xml",
"lib/net40/System.Threading.Tasks.dll",
"lib/net40/System.Threading.Tasks.xml",
"lib/net40/ensureRedirect.xml",
"lib/net45/_._",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.xml",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.xml",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.xml",
"lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml",
"lib/portable-net40+sl4+win8/System.IO.dll",
"lib/portable-net40+sl4+win8/System.IO.xml",
"lib/portable-net40+sl4+win8/System.Runtime.dll",
"lib/portable-net40+sl4+win8/System.Runtime.xml",
"lib/portable-net40+sl4+win8/System.Threading.Tasks.dll",
"lib/portable-net40+sl4+win8/System.Threading.Tasks.xml",
"lib/portable-net40+sl4+win8/ensureRedirect.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml",
"lib/portable-net40+win8+wp8+wpa81/System.IO.dll",
"lib/portable-net40+win8+wp8+wpa81/System.IO.xml",
"lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll",
"lib/portable-net40+win8+wp8+wpa81/System.Runtime.xml",
"lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll",
"lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.xml",
"lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml",
"lib/portable-net40+win8/System.IO.dll",
"lib/portable-net40+win8/System.IO.xml",
"lib/portable-net40+win8/System.Runtime.dll",
"lib/portable-net40+win8/System.Runtime.xml",
"lib/portable-net40+win8/System.Threading.Tasks.dll",
"lib/portable-net40+win8/System.Threading.Tasks.xml",
"lib/portable-net40+win8/ensureRedirect.xml",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/portable-net45+win8+wpa81/_._",
"lib/portable-net451+win81+wpa81/_._",
"lib/portable-net451+win81/_._",
"lib/portable-win81+wp81+wpa81/_._",
"lib/sl4-windowsphone71/System.IO.dll",
"lib/sl4-windowsphone71/System.IO.xml",
"lib/sl4-windowsphone71/System.Runtime.dll",
"lib/sl4-windowsphone71/System.Runtime.xml",
"lib/sl4-windowsphone71/System.Threading.Tasks.dll",
"lib/sl4-windowsphone71/System.Threading.Tasks.xml",
"lib/sl4-windowsphone71/ensureRedirect.xml",
"lib/sl4/System.IO.dll",
"lib/sl4/System.IO.xml",
"lib/sl4/System.Runtime.dll",
"lib/sl4/System.Runtime.xml",
"lib/sl4/System.Threading.Tasks.dll",
"lib/sl4/System.Threading.Tasks.xml",
"lib/sl5/System.IO.dll",
"lib/sl5/System.IO.xml",
"lib/sl5/System.Runtime.dll",
"lib/sl5/System.Runtime.xml",
"lib/sl5/System.Threading.Tasks.dll",
"lib/sl5/System.Threading.Tasks.xml",
"lib/win8/_._",
"lib/wp8/_._",
"lib/wpa81/_._"
]
},
"Microsoft.Bcl.Build/1.0.14": {
"sha512": "cDLKSvNvRa519hplsbSoYqO69TjdDIhfjtKUM0g20/nVROoWsGav9KCI9HtnGjLmdV1+TcUUDhbotcllibjPEA==",
"type": "package",
"files": [
"License-Stable.rtf",
"Microsoft.Bcl.Build.1.0.14.nupkg.sha512",
"Microsoft.Bcl.Build.nuspec",
"content/net40/_._",
"content/netcore45/_._",
"content/portable-net40+win8+sl4+wp71+wpa81/_._",
"content/sl4-windowsphone71/_._",
"content/sl4/_._",
"tools/Install.ps1",
"tools/Microsoft.Bcl.Build.Tasks.dll",
"tools/Microsoft.Bcl.Build.targets",
"tools/Uninstall.ps1"
]
},
"Microsoft.CSharp/4.0.1": {
"sha512": "/2JrH4hvYpwr7yFv3eSY2q2SG/74efeSmD0vgf2Obmgo4NsSceHgig62lYGgSEyWIpjEZZ0LJgOop7hTfB7WqQ==",
"type": "package",
"path": "Microsoft.CSharp/4.0.1",
"files": [
"Microsoft.CSharp.4.0.1.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/Microsoft.CSharp.dll",
"lib/netstandard1.3/Microsoft.CSharp.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/Microsoft.CSharp.dll",
"ref/netcore50/Microsoft.CSharp.xml",
"ref/netcore50/de/Microsoft.CSharp.xml",
"ref/netcore50/es/Microsoft.CSharp.xml",
"ref/netcore50/fr/Microsoft.CSharp.xml",
"ref/netcore50/it/Microsoft.CSharp.xml",
"ref/netcore50/ja/Microsoft.CSharp.xml",
"ref/netcore50/ko/Microsoft.CSharp.xml",
"ref/netcore50/ru/Microsoft.CSharp.xml",
"ref/netcore50/zh-hans/Microsoft.CSharp.xml",
"ref/netcore50/zh-hant/Microsoft.CSharp.xml",
"ref/netstandard1.0/Microsoft.CSharp.dll",
"ref/netstandard1.0/Microsoft.CSharp.xml",
"ref/netstandard1.0/de/Microsoft.CSharp.xml",
"ref/netstandard1.0/es/Microsoft.CSharp.xml",
"ref/netstandard1.0/fr/Microsoft.CSharp.xml",
"ref/netstandard1.0/it/Microsoft.CSharp.xml",
"ref/netstandard1.0/ja/Microsoft.CSharp.xml",
"ref/netstandard1.0/ko/Microsoft.CSharp.xml",
"ref/netstandard1.0/ru/Microsoft.CSharp.xml",
"ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
"ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"Microsoft.Net.Http/2.2.22": {
"sha512": "bqVLJ2UimlAEs2bn3y28lB1pmFRxuysv9pFyB0A86WEMYGYTfDyfjAGjm0fiaSRjlMNU1jVnp8Mxt8qe4OmpXQ==",
"type": "package",
"files": [
"License-Stable.rtf",
"Microsoft.Net.Http.2.2.22.nupkg.sha512",
"Microsoft.Net.Http.nuspec",
"lib/monoandroid/System.Net.Http.Extensions.XML",
"lib/monoandroid/System.Net.Http.Extensions.dll",
"lib/monoandroid/System.Net.Http.Primitives.dll",
"lib/monoandroid/System.Net.Http.Primitives.xml",
"lib/monotouch/System.Net.Http.Extensions.XML",
"lib/monotouch/System.Net.Http.Extensions.dll",
"lib/monotouch/System.Net.Http.Primitives.dll",
"lib/monotouch/System.Net.Http.Primitives.xml",
"lib/net40/System.Net.Http.Extensions.XML",
"lib/net40/System.Net.Http.Extensions.dll",
"lib/net40/System.Net.Http.Primitives.dll",
"lib/net40/System.Net.Http.Primitives.xml",
"lib/net40/System.Net.Http.WebRequest.dll",
"lib/net40/System.Net.Http.WebRequest.xml",
"lib/net40/System.Net.Http.dll",
"lib/net40/System.Net.Http.xml",
"lib/net40/ensureRedirect.xml",
"lib/net45/System.Net.Http.Extensions.XML",
"lib/net45/System.Net.Http.Extensions.dll",
"lib/net45/System.Net.Http.Primitives.dll",
"lib/net45/System.Net.Http.Primitives.xml",
"lib/net45/ensureRedirect.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.XML",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.XML",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml",
"lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.XML",
"lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.dll",
"lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.dll",
"lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.xml",
"lib/portable-net45+win8+wpa81/ensureRedirect.xml",
"lib/portable-net45+win8/System.Net.Http.Extensions.XML",
"lib/portable-net45+win8/System.Net.Http.Extensions.dll",
"lib/portable-net45+win8/System.Net.Http.Primitives.dll",
"lib/portable-net45+win8/System.Net.Http.Primitives.xml",
"lib/portable-net45+win8/ensureRedirect.xml",
"lib/sl4-windowsphone71/System.Net.Http.Extensions.XML",
"lib/sl4-windowsphone71/System.Net.Http.Extensions.dll",
"lib/sl4-windowsphone71/System.Net.Http.Primitives.XML",
"lib/sl4-windowsphone71/System.Net.Http.Primitives.dll",
"lib/sl4-windowsphone71/System.Net.Http.dll",
"lib/sl4-windowsphone71/System.Net.Http.xml",
"lib/win8/System.Net.Http.Extensions.XML",
"lib/win8/System.Net.Http.Extensions.dll",
"lib/win8/System.Net.Http.Primitives.dll",
"lib/win8/System.Net.Http.Primitives.xml",
"lib/wpa81/System.Net.Http.Extensions.XML",
"lib/wpa81/System.Net.Http.Extensions.dll",
"lib/wpa81/System.Net.Http.Primitives.dll",
"lib/wpa81/System.Net.Http.Primitives.xml"
]
},
"Microsoft.NETCore/5.0.2": {
"sha512": "wHb/fpL+6IxrZBAL2BwRJmj51RwYr3TVcnw5KIsxUtqLxjsqgasTbBmE9kZPAlhhljnt+m2EYMc7vcFuAhGNqA==",
"type": "package",
"files": [
"Microsoft.NETCore.5.0.2.nupkg.sha512",
"Microsoft.NETCore.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
]
},
"Microsoft.NETCore.Jit/1.0.3": {
"sha512": "/l8xYwtoJrFSx9zMWRClaKrgR+BTstCD1E5P90ADgiwH0GwlEqVhLoFIrsXpYj0j9vCB/fzOq7D/ZzuCbtmrTQ==",
"type": "package",
"files": [
"Microsoft.NETCore.Jit.1.0.3.nupkg.sha512",
"Microsoft.NETCore.Jit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
"Microsoft.NETCore.Platforms/1.0.1": {
"sha512": "mkZFCSzkvORyFJAf4xx0g6HgPUdwd/FqtJ+2Y0x3zPR987AOutHyY1F6XfNxRN1I2MJtmz00L8BxAFfd+Pnldw==",
"type": "package",
"path": "Microsoft.NETCore.Platforms/1.0.1",
"files": [
"Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.json"
]
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"sha512": "sR4m1GQ8Tbg+Xdbf8Y8yC+LXKSUJUVe/B5vckCAU9Jd5MYf84gC1D0u2YeA72B4WjeWewCyHRB20ddA8hyLmqQ==",
"type": "package",
"files": [
"Microsoft.NETCore.Portable.Compatibility.1.0.2.nupkg.sha512",
"Microsoft.NETCore.Portable.Compatibility.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.ComponentModel.DataAnnotations.dll",
"lib/netcore50/System.Core.dll",
"lib/netcore50/System.Net.dll",
"lib/netcore50/System.Numerics.dll",
"lib/netcore50/System.Runtime.Serialization.dll",
"lib/netcore50/System.ServiceModel.Web.dll",
"lib/netcore50/System.ServiceModel.dll",
"lib/netcore50/System.Windows.dll",
"lib/netcore50/System.Xml.Linq.dll",
"lib/netcore50/System.Xml.Serialization.dll",
"lib/netcore50/System.Xml.dll",
"lib/netcore50/System.dll",
"lib/netstandard1.0/System.ComponentModel.DataAnnotations.dll",
"lib/netstandard1.0/System.Core.dll",
"lib/netstandard1.0/System.Net.dll",
"lib/netstandard1.0/System.Numerics.dll",
"lib/netstandard1.0/System.Runtime.Serialization.dll",
"lib/netstandard1.0/System.ServiceModel.Web.dll",
"lib/netstandard1.0/System.ServiceModel.dll",
"lib/netstandard1.0/System.Windows.dll",
"lib/netstandard1.0/System.Xml.Linq.dll",
"lib/netstandard1.0/System.Xml.Serialization.dll",
"lib/netstandard1.0/System.Xml.dll",
"lib/netstandard1.0/System.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"ref/net45/_._",
"ref/netcore50/System.ComponentModel.DataAnnotations.dll",
"ref/netcore50/System.Core.dll",
"ref/netcore50/System.Net.dll",
"ref/netcore50/System.Numerics.dll",
"ref/netcore50/System.Runtime.Serialization.dll",
"ref/netcore50/System.ServiceModel.Web.dll",
"ref/netcore50/System.ServiceModel.dll",
"ref/netcore50/System.Windows.dll",
"ref/netcore50/System.Xml.Linq.dll",
"ref/netcore50/System.Xml.Serialization.dll",
"ref/netcore50/System.Xml.dll",
"ref/netcore50/System.dll",
"ref/netcore50/mscorlib.dll",
"ref/netstandard1.0/System.ComponentModel.DataAnnotations.dll",
"ref/netstandard1.0/System.Core.dll",
"ref/netstandard1.0/System.Net.dll",
"ref/netstandard1.0/System.Numerics.dll",
"ref/netstandard1.0/System.Runtime.Serialization.dll",
"ref/netstandard1.0/System.ServiceModel.Web.dll",
"ref/netstandard1.0/System.ServiceModel.dll",
"ref/netstandard1.0/System.Windows.dll",
"ref/netstandard1.0/System.Xml.Linq.dll",
"ref/netstandard1.0/System.Xml.Serialization.dll",
"ref/netstandard1.0/System.Xml.dll",
"ref/netstandard1.0/System.dll",
"ref/netstandard1.0/mscorlib.dll",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll",
"runtimes/aot/lib/netcore50/System.Core.dll",
"runtimes/aot/lib/netcore50/System.Net.dll",
"runtimes/aot/lib/netcore50/System.Numerics.dll",
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll",
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll",
"runtimes/aot/lib/netcore50/System.ServiceModel.dll",
"runtimes/aot/lib/netcore50/System.Windows.dll",
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll",
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll",
"runtimes/aot/lib/netcore50/System.Xml.dll",
"runtimes/aot/lib/netcore50/System.dll",
"runtimes/aot/lib/netcore50/mscorlib.dll"
]
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"sha512": "tjD5r9Lxy+MD+YRJcuds5+sT+xGHkVt2Hb5LfLZIgkFmwUewBRPm/42UXi4oxhV1OIdRtt4ymwsiuFCwT16T9w==",
"type": "package",
"files": [
"Microsoft.NETCore.Runtime.CoreCLR.1.0.3.nupkg.sha512",
"Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
"Microsoft.NETCore.Targets/1.0.2": {
"sha512": "yk4GtuNbFz2sxA5NNIp2bnOwGZVlB4U+F4gWy5YnMEKmGzzJfQ4wg7zQUx334+WMQ5PiQEuS4UuOpsW+V0PzVg==",
"type": "package",
"files": [
"Microsoft.NETCore.Targets.1.0.2.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.json"
]
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"sha512": "9UHv2YObWmcF8gqtBoDC4UW5gdHzFRtaZ5KtB9QKvCy+NC9LH1DMYyOI/ltupjVZlwYEulj3msjBXys9/QI6nw==",
"type": "package",
"files": [
"Microsoft.NETCore.UniversalWindowsPlatform.5.2.2.nupkg.sha512",
"Microsoft.NETCore.UniversalWindowsPlatform.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
]
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"sha512": "l4KtgtXhio03COnf9W6ywNK438XLTmXK0ODQJsHOXUpGdNXxnmaZk+dA/RQjve9sAgg9JtdWPTKeRFLQsM6xgw==",
"type": "package",
"path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
"files": [
"Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512",
"Microsoft.NETCore.Windows.ApiSets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
"Microsoft.VisualBasic/10.0.1": {
"sha512": "g0toSmwc+DVYDpAQSVYs9gNhgrCtkSZ+Y8+x3OKYH5UGbAuzEaAZ/exoRttqGaLgMTSg5c5DS0a4rshkc79W6g==",
"type": "package",
"path": "Microsoft.VisualBasic/10.0.1",
"files": [
"Microsoft.VisualBasic.10.0.1.nupkg.sha512",
"Microsoft.VisualBasic.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/Microsoft.VisualBasic.dll",
"lib/netstandard1.3/Microsoft.VisualBasic.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"ref/net45/_._",
"ref/netcore50/Microsoft.VisualBasic.dll",
"ref/netcore50/Microsoft.VisualBasic.xml",
"ref/netcore50/de/Microsoft.VisualBasic.xml",
"ref/netcore50/es/Microsoft.VisualBasic.xml",
"ref/netcore50/fr/Microsoft.VisualBasic.xml",
"ref/netcore50/it/Microsoft.VisualBasic.xml",
"ref/netcore50/ja/Microsoft.VisualBasic.xml",
"ref/netcore50/ko/Microsoft.VisualBasic.xml",
"ref/netcore50/ru/Microsoft.VisualBasic.xml",
"ref/netcore50/zh-hans/Microsoft.VisualBasic.xml",
"ref/netcore50/zh-hant/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/Microsoft.VisualBasic.dll",
"ref/netstandard1.1/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/de/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/es/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/fr/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/it/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ja/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ko/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ru/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._"
]
},
"Microsoft.Win32.Primitives/4.0.1": {
"sha512": "WKeQQypyEn4rSdl+GpSARGmCwnCZEgPG7eZknzuTR4Kk4txmHk7xL8Ek5xoVwgwoNghaa180ACGghMG8rK1hrA==",
"type": "package",
"path": "Microsoft.Win32.Primitives/4.0.1",
"files": [
"Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/Microsoft.Win32.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/Microsoft.Win32.Primitives.dll",
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
"ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"Newtonsoft.Json/9.0.1": {
"sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
"type": "package",
"files": [
"Newtonsoft.Json.9.0.1.nupkg.sha512",
"Newtonsoft.Json.nuspec",
"lib/net20/Newtonsoft.Json.dll",
"lib/net20/Newtonsoft.Json.xml",
"lib/net35/Newtonsoft.Json.dll",
"lib/net35/Newtonsoft.Json.xml",
"lib/net40/Newtonsoft.Json.dll",
"lib/net40/Newtonsoft.Json.xml",
"lib/net45/Newtonsoft.Json.dll",
"lib/net45/Newtonsoft.Json.xml",
"lib/netstandard1.0/Newtonsoft.Json.dll",
"lib/netstandard1.0/Newtonsoft.Json.xml",
"lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
"lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
"tools/install.ps1"
]
},
"PCLCrypto/1.0.86": {
"sha512": "rcmxw9Bb5GuEW1ubVBegCCbR7YU8Ptr8tGfmyVHBnK+UQlk29TuBryHXmsTglt64ZNDXpi8rWl8x5l55JylpOw==",
"type": "package",
"files": [
"PCLCrypto.1.0.86.nupkg.sha512",
"PCLCrypto.nuspec",
"lib/Xamarin.iOS/PCLCrypto.dll",
"lib/Xamarin.iOS/PCLCrypto.xml",
"lib/monoandroid/PCLCrypto.dll",
"lib/monoandroid/PCLCrypto.xml",
"lib/monotouch/PCLCrypto.dll",
"lib/monotouch/PCLCrypto.xml",
"lib/net40-Client/PCLCrypto.dll",
"lib/net40-Client/PCLCrypto.xml",
"lib/portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/PCLCrypto.dll",
"lib/portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/PCLCrypto.xml",
"lib/sl5/PCLCrypto.dll",
"lib/sl5/PCLCrypto.xml",
"lib/win81/PCLCrypto.dll",
"lib/win81/PCLCrypto.pri",
"lib/win81/PCLCrypto.xml",
"lib/wp8/PCLCrypto.dll",
"lib/wp8/PCLCrypto.xml",
"lib/wpa81/PCLCrypto.dll",
"lib/wpa81/PCLCrypto.pri",
"lib/wpa81/PCLCrypto.xml"
]
},
"runtime.any.System.Collections/4.0.11": {
"sha512": "MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Collections.dll",
"lib/netstandard1.3/System.Collections.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Collections.4.0.11.nupkg.sha512",
"runtime.any.System.Collections.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Diagnostics.Tools/4.0.1": {
"sha512": "GJkwEYbKw7qG29QrKMIEEZEGWxC+DQboeObhaM6WPKKgwk9Od8Qt8lWhr/+5xW3FF60TdMfjjUP8Zu6Y41wIkA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Tools.dll",
"lib/netstandard1.3/System.Diagnostics.Tools.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Diagnostics.Tools.4.0.1.nupkg.sha512",
"runtime.any.System.Diagnostics.Tools.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Diagnostics.Tracing/4.1.0": {
"sha512": "x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Tracing.dll",
"lib/netstandard1.5/System.Diagnostics.Tracing.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
"runtime.any.System.Diagnostics.Tracing.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Globalization/4.0.11": {
"sha512": "cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Globalization.dll",
"lib/netstandard1.3/System.Globalization.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Globalization.4.0.11.nupkg.sha512",
"runtime.any.System.Globalization.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Globalization.Calendars/4.0.1": {
"sha512": "SAdVwIKKKR3VG9NMKEgF+wbAKkQA60YOb4G9YGj4EUPsuwS+pH7FjjG6qQeXDyOaxUcrlRzI3LHcGloX/GHBxQ==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net/_._",
"lib/netcore50/System.Globalization.Calendars.dll",
"lib/netstandard1.3/System.Globalization.Calendars.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Globalization.Calendars.4.0.1.nupkg.sha512",
"runtime.any.System.Globalization.Calendars.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.IO/4.1.0": {
"sha512": "sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.IO.dll",
"lib/netstandard1.5/System.IO.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.IO.4.1.0.nupkg.sha512",
"runtime.any.System.IO.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Reflection/4.1.0": {
"sha512": "eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.dll",
"lib/netstandard1.5/System.Reflection.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Reflection.4.1.0.nupkg.sha512",
"runtime.any.System.Reflection.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Reflection.Extensions/4.0.1": {
"sha512": "ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Extensions.dll",
"lib/netstandard1.3/System.Reflection.Extensions.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Reflection.Extensions.4.0.1.nupkg.sha512",
"runtime.any.System.Reflection.Extensions.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Reflection.Primitives/4.0.1": {
"sha512": "oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Primitives.dll",
"lib/netstandard1.3/System.Reflection.Primitives.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Reflection.Primitives.4.0.1.nupkg.sha512",
"runtime.any.System.Reflection.Primitives.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Resources.ResourceManager/4.0.1": {
"sha512": "hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Resources.ResourceManager.dll",
"lib/netstandard1.3/System.Resources.ResourceManager.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Resources.ResourceManager.4.0.1.nupkg.sha512",
"runtime.any.System.Resources.ResourceManager.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Runtime/4.1.0": {
"sha512": "0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.dll",
"lib/netstandard1.5/System.Runtime.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Runtime.4.1.0.nupkg.sha512",
"runtime.any.System.Runtime.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Runtime.Handles/4.0.1": {
"sha512": "MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/_._",
"lib/netstandard1.3/System.Runtime.Handles.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Runtime.Handles.4.0.1.nupkg.sha512",
"runtime.any.System.Runtime.Handles.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Runtime.InteropServices/4.1.0": {
"sha512": "gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.InteropServices.dll",
"lib/netstandard1.5/System.Runtime.InteropServices.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Runtime.InteropServices.4.1.0.nupkg.sha512",
"runtime.any.System.Runtime.InteropServices.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Text.Encoding/4.0.11": {
"sha512": "uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Text.Encoding.dll",
"lib/netstandard1.3/System.Text.Encoding.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Text.Encoding.4.0.11.nupkg.sha512",
"runtime.any.System.Text.Encoding.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Text.Encoding.Extensions/4.0.11": {
"sha512": "3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Text.Encoding.Extensions.dll",
"lib/netstandard1.3/System.Text.Encoding.Extensions.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
"runtime.any.System.Text.Encoding.Extensions.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Threading.Tasks/4.0.11": {
"sha512": "CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.Tasks.dll",
"lib/netstandard1.3/System.Threading.Tasks.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Threading.Tasks.4.0.11.nupkg.sha512",
"runtime.any.System.Threading.Tasks.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Threading.Timer/4.0.1": {
"sha512": "C9d5eRAW/gd5iBZF78JRcwjvjCDRfU0oB48/wx/XbKnONZU4k6hWneTT4M7v3TmVqPFl7UDcLzKCtQ/24efOzw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.Timer.dll",
"lib/netstandard1.3/System.Threading.Timer.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Threading.Timer.4.0.1.nupkg.sha512",
"runtime.any.System.Threading.Timer.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.aot.System.Collections/4.0.10": {
"sha512": "JaNCSMYW8RoPTrzlqRp3IsPdbSp8IhnNQ3qeKVGtBggT/9bZFz6FjfU+YG3NEiy/yPo03NMQ5EtXMT2MCIrV1A==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Collections.4.0.10.nupkg.sha512",
"runtime.aot.System.Collections.nuspec",
"runtimes/aot/lib/netcore50/System.Collections.dll"
]
},
"runtime.aot.System.Diagnostics.Tools/4.0.1": {
"sha512": "29xXSZEpRNd2wJsEXX40CEaWhhQjfqFGal4f1DuqY7Gd7+ARcV7zJK9aKRX9SkHnQfx3qSm3+D/VWBPI7pgEYQ==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Diagnostics.Tools.4.0.1.nupkg.sha512",
"runtime.aot.System.Diagnostics.Tools.nuspec",
"runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll"
]
},
"runtime.aot.System.Diagnostics.Tracing/4.0.20": {
"sha512": "1zaLtCd4/msBeR4hDRjywdONAqnMl+mfsYO2er+kj9HEMQfrItSdApImXakl3CTRqb1S8upuBru2v/SLEY2vtg==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Diagnostics.Tracing.4.0.20.nupkg.sha512",
"runtime.aot.System.Diagnostics.Tracing.nuspec",
"runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll"
]
},
"runtime.aot.System.Globalization/4.0.11": {
"sha512": "eEPSEA2yUp1HLNlp8Cve/J6UpN2mFnWUJhjqVEw+d+JUkWrzE2+ebl+0kf91Nwls4Mnia0GkjRRDiDKt8XeAAQ==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Globalization.4.0.11.nupkg.sha512",
"runtime.aot.System.Globalization.nuspec",
"runtimes/aot/lib/netcore50/System.Globalization.dll"
]
},
"runtime.aot.System.Globalization.Calendars/4.0.1": {
"sha512": "nXHH2LS832GzQMr//792HTXyuUGlREv/8IZ24USS+q8QobtPwAis0mDumSoSd6z+IoiFGK7ol1Ev/ab+dRiVTg==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Globalization.Calendars.4.0.1.nupkg.sha512",
"runtime.aot.System.Globalization.Calendars.nuspec",
"runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll"
]
},
"runtime.aot.System.IO/4.1.0": {
"sha512": "zI0PBKDpAvTNbxTgcZutcb50D7jHJaC9vQLxKhUBn4gS7VHQqnZjqyEqXBxc4rnx6rdZzlMADNZAMUWNW42Sxw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.IO.4.1.0.nupkg.sha512",
"runtime.aot.System.IO.nuspec",
"runtimes/aot/lib/netcore50/System.IO.dll",
"runtimes/aot/lib/netstandard1.3/System.IO.dll"
]
},
"runtime.aot.System.Reflection/4.0.10": {
"sha512": "vrUbKdxXRNkmIsiMFP03cKLmzGoN7ObqU7rpjr/9ABL2ovHO7vyFhVfkpUXg4uX94ixgVaytbISLe+yxFQtl8w==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Reflection.4.0.10.nupkg.sha512",
"runtime.aot.System.Reflection.nuspec",
"runtimes/aot/lib/netcore50/System.Reflection.dll"
]
},
"runtime.aot.System.Reflection.Extensions/4.0.0": {
"sha512": "WWw59m7k4XZLWN6XbptSR0TOdrLgwh5XEBj77QaUZQ+PcmvSzdJ79Jfp76ncQb5SzJZVu5ByZ7ufWX2bIeDpFQ==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Reflection.Extensions.4.0.0.nupkg.sha512",
"runtime.aot.System.Reflection.Extensions.nuspec",
"runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll"
]
},
"runtime.aot.System.Reflection.Primitives/4.0.0": {
"sha512": "826QEny5/GvZ270fhG70vnzYlFnTxNAHiHfyRS2zMZ5X1MpAsiW0y0XHAJjq7MrrnRjyG3qHF0zqytpNPJLaFQ==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Reflection.Primitives.4.0.0.nupkg.sha512",
"runtime.aot.System.Reflection.Primitives.nuspec",
"runtimes/aot/lib/MonoAndroid10/_._",
"runtimes/aot/lib/MonoTouch10/_._",
"runtimes/aot/lib/net45/_._",
"runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll",
"runtimes/aot/lib/win8/_._",
"runtimes/aot/lib/wp80/_._",
"runtimes/aot/lib/wpa81/_._",
"runtimes/aot/lib/xamarinios10/_._",
"runtimes/aot/lib/xamarinmac20/_._",
"runtimes/aot/lib/xamarintvos10/_._",
"runtimes/aot/lib/xamarinwatchos10/_._"
]
},
"runtime.aot.System.Resources.ResourceManager/4.0.0": {
"sha512": "j+xK1M/oJ5ll7WT6UD9oQ/YUESFtT0YN3th1TIliJjK5J0Ek4vDPTMDQceu3WFy7aQOThDmIxjkAVSxZV7OWIA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Resources.ResourceManager.4.0.0.nupkg.sha512",
"runtime.aot.System.Resources.ResourceManager.nuspec",
"runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll"
]
},
"runtime.aot.System.Runtime/4.0.20": {
"sha512": "ax423Smc+2Bcm8Go70iwj30hpjUIuahVtBAqlGXzhOoRwRR4vlEN3OGp8qTecWki3ZhGrbOXy+A1U89V3DzG/w==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Runtime.4.0.20.nupkg.sha512",
"runtime.aot.System.Runtime.nuspec",
"runtimes/aot/lib/netcore50/System.Runtime.dll"
]
},
"runtime.aot.System.Runtime.Handles/4.0.1": {
"sha512": "UPzDQF5lwQ+BN+B1Zu2u3b5YQvIo4A96N9v5Uwo4VL1hWEf4STqiZgRogumy21TeRLjtEpF7I5JqIDhcc3OMCw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Runtime.Handles.4.0.1.nupkg.sha512",
"runtime.aot.System.Runtime.Handles.nuspec",
"runtimes/aot/lib/netcore50/System.Runtime.Handles.dll"
]
},
"runtime.aot.System.Runtime.InteropServices/4.0.20": {
"sha512": "s4P2Jlf6ev4RgeLjNIq4hXsESIuE6t0Ljf+KVfRGDvrZ+yJuoPjwS3zMkm2SPj5Qif1HZ9vskKTdHPtk1B89Bw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Runtime.InteropServices.4.0.20.nupkg.sha512",
"runtime.aot.System.Runtime.InteropServices.nuspec",
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll"
]
},
"runtime.aot.System.Text.Encoding/4.0.11": {
"sha512": "mUltrQRF5trt9DvIDPxV5E3girWcXlJgQBnYHfy1b8RQU2Ipob6xzCqlDnnECa8+FdhD8C/A7s7krxvHWcJ/pw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Text.Encoding.4.0.11.nupkg.sha512",
"runtime.aot.System.Text.Encoding.nuspec",
"runtimes/aot/lib/netcore50/System.Text.Encoding.dll"
]
},
"runtime.aot.System.Text.Encoding.Extensions/4.0.11": {
"sha512": "N6XCU9y8ZC51LfxnE5tgNFy+3emNQTRY6W3NeLqlHLcina5vbChsSsPDOCpEIGMTOMxbODe5HtWYbzaOOSFtGg==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
"runtime.aot.System.Text.Encoding.Extensions.nuspec",
"runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll"
]
},
"runtime.aot.System.Threading.Tasks/4.0.11": {
"sha512": "55coohhmT0Usdq536a54bqGK4ij2D1ZTaJo8lQ3k/piwVx+Dl2r3xmDGsims+jVimQVayU2tXptKSAn9nhgRfA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Threading.Tasks.4.0.11.nupkg.sha512",
"runtime.aot.System.Threading.Tasks.nuspec",
"runtimes/aot/lib/netcore50/System.Threading.Tasks.dll"
]
},
"runtime.aot.System.Threading.Timer/4.0.1": {
"sha512": "c4IE4f4MBSzr3b8uSCIpqc70uXbkNJx9oAASbEMhFGdyxljpwz14xYR5hp8AgnF4msF8tPL6zgOf7lDlSo0j/g==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Threading.Timer.4.0.1.nupkg.sha512",
"runtime.aot.System.Threading.Timer.nuspec",
"runtimes/aot/lib/netcore50/System.Threading.Timer.dll"
]
},
"runtime.native.System.IO.Compression/4.1.0": {
"sha512": "8tm5jQhvrdzSuQDEr366HN7lDWnut+TMJIxRBy8sW6XgnEN4j1DXHSxay4bPYkpJqiRaZ74A+6G8xoBQfFeySQ==",
"type": "package",
"path": "runtime.native.System.IO.Compression/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"sha512": "C5MLmsqD0xEF+nZFh42cmVji0b7cKLmcOqOJOgqOTr8FZkLY3xp/kWFpfZj52vMElXLMjlYL3rRGYCLbfWX5lw==",
"type": "package",
"path": "runtime.native.System.Security.Cryptography/4.0.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
"runtime.native.System.Security.Cryptography.nuspec"
]
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"sha512": "0alFxXfT7M+xhhgMkNzG/Mnfii3o+DGQV9gkmhfLr6wsRPNxlIHdz4yQC8ksHqqmOu1Sq0FD9FxrSQyGo+8syA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
"runtime.win.Microsoft.Win32.Primitives.nuspec",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll"
]
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"sha512": "q8Fm954ezFLfmG0tHNUmsNy+qaEjWtWqYhWh3cGSVjtJwkcBsfigWCh+fdaIVZ9K7m+6lgb3ElL2BBU6G+RijA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.Diagnostics.Debug.4.0.11.nupkg.sha512",
"runtime.win.System.Diagnostics.Debug.nuspec",
"runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll",
"runtimes/win/lib/net45/_._",
"runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll",
"runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll",
"runtimes/win/lib/win8/_._",
"runtimes/win/lib/wp80/_._",
"runtimes/win/lib/wpa81/_._"
]
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"sha512": "4FG9RK8J5CsUpXjkiZWS07aJu+H+vTIeQkFKXyjwibfBedUM168SCEaqV3Bjkbv4b3pUuf5Gy1RaqX/HnmKlZw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.IO.FileSystem.4.0.1.nupkg.sha512",
"runtime.win.System.IO.FileSystem.nuspec",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll",
"runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll",
"runtimes/win/lib/win8/_._",
"runtimes/win/lib/wp8/_._",
"runtimes/win/lib/wpa81/_._"
]
},
"runtime.win.System.Net.Primitives/4.0.11": {
"sha512": "36AsEkT9p+4cLHHh7sgSIOPWWeTKMh/DOoeQCzJmaLM8rtD9YaRZMmXGynf77ZP5KoXWwA4Y3aGbntrPbmmlcA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.Net.Primitives.4.0.11.nupkg.sha512",
"runtime.win.System.Net.Primitives.nuspec",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netcore50/System.Net.Primitives.dll",
"runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll"
]
},
"runtime.win.System.Net.Sockets/4.1.0": {
"sha512": "BviTpQJbl+T/XVkwLw5xupFq9WXKru9KM/2U/ijmLuO2XEeMgdwk3g0e9sHWqvbrLvVT9yDf+SpbRXM1LNxTvA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.Net.Sockets.4.1.0.nupkg.sha512",
"runtime.win.System.Net.Sockets.nuspec",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netcore50/System.Net.Sockets.dll",
"runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll"
]
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"sha512": "U3F/M+djxVXuKJaoW2AGpAE2ZWAp372140jsX4d/ctqki+Qb61HuyQY4yUPSA/gdKGbbq6HXzZ6oxB6/G3MYPA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.Runtime.Extensions.4.1.0.nupkg.sha512",
"runtime.win.System.Runtime.Extensions.nuspec",
"runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netcore50/System.Runtime.Extensions.dll",
"runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll"
]
},
"runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "fzsKrHHfrv6wpLE1sxAHcWoB9vpAyoNjxVTnBJkzeXow2ZivR1H7wdpnsoKXIIb0d2EzYrrezHeHy4gI6tqqTA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression.nuspec",
"runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll"
]
},
"runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "qr2+iGSxqUjVW3eATYzV4GHN6qQOu5cDTzCGf7VZ4aaxXGv2P/XVk9BkQ6WdPCDitEdIuWmtFYIFvGdvY/qN6Q==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression.nuspec",
"runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll"
]
},
"runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "c3yeCSi1emskJMjeqbX6B+neZRozhYk4et/Lv/6s05Yz30jcwY2Mj5PAr7mvmlAZtP5+HLbxz+Ux+RNNM/1GUA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression.nuspec",
"runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll"
]
},
"runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": {
"sha512": "pXLZyhN1gFNVjmmZloXzGxbdZyUjkiHKpojzxUxCZ2U+T0jD6ooK3rYhwqFzlSjVKUAdQ9QNDoixxnEr3/5VWw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win7-x64.Microsoft.NETCore.Jit.1.0.3.nupkg.sha512",
"runtime.win7-x64.Microsoft.NETCore.Jit.nuspec",
"runtimes/win7-x64-aot/native/_._",
"runtimes/win7-x64/native/clrjit.dll"
]
},
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"sha512": "YaXA5RVLCYIcV1N31A7MJhWJnNkNfGnyRBNH1yYilUrBDvzMxNsbXX2pD7owWsC/go/4LRwbHbdWWXwHowKNvw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard1.0/_._",
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512",
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"runtimes/win7-x64-aot/lib/netstandard1.0/_._",
"runtimes/win7-x64-aot/native/_._",
"runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll",
"runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll",
"runtimes/win7-x64/native/System.Private.CoreLib.ni.dll",
"runtimes/win7-x64/native/clretwrc.dll",
"runtimes/win7-x64/native/coreclr.dll",
"runtimes/win7-x64/native/dbgshim.dll",
"runtimes/win7-x64/native/mscordaccore.dll",
"runtimes/win7-x64/native/mscordbi.dll",
"runtimes/win7-x64/native/mscorlib.ni.dll",
"runtimes/win7-x64/native/mscorrc.debug.dll",
"runtimes/win7-x64/native/mscorrc.dll",
"runtimes/win7-x64/native/sos.dll",
"tools/crossgen.exe"
]
},
"runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "4LLiT65shsAsGc+mUKV3vUw1SXfOaQWGWoblOYpYuZJSVkA3/LPx92M2GSYyn2sHR/XOFtY5TZmxJKgGlZOLFw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win7-x64.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win7-x64.runtime.native.System.IO.Compression.nuspec",
"runtimes/win7-x64/native/clrcompression.dll"
]
},
"runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": {
"sha512": "bU1EUneMeB6JltMNDCekL7nP1dluxOlnUgmAFx8EGsD6a+lgaYoDLk7V7F3H5Zpw/LeCxl5XmZqgPObGAlW7Dg==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win7-x86.Microsoft.NETCore.Jit.1.0.3.nupkg.sha512",
"runtime.win7-x86.Microsoft.NETCore.Jit.nuspec",
"runtimes/win7-x86-aot/native/_._",
"runtimes/win7-x86/native/clrjit.dll"
]
},
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"sha512": "80Jj8QlMLAnTq+BDhoHBnSNXRKqVjjZM9VjHcpw9/F98cBmh80rBdbnM0AAr54htjhzupYvwLqwuKnlzxec04A==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard1.0/_._",
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512",
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"runtimes/win7-x86-aot/lib/netstandard1.0/_._",
"runtimes/win7-x86-aot/native/_._",
"runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll",
"runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll",
"runtimes/win7-x86/native/System.Private.CoreLib.ni.dll",
"runtimes/win7-x86/native/clretwrc.dll",
"runtimes/win7-x86/native/coreclr.dll",
"runtimes/win7-x86/native/dbgshim.dll",
"runtimes/win7-x86/native/mscordaccore.dll",
"runtimes/win7-x86/native/mscordbi.dll",
"runtimes/win7-x86/native/mscorlib.ni.dll",
"runtimes/win7-x86/native/mscorrc.debug.dll",
"runtimes/win7-x86/native/mscorrc.dll",
"runtimes/win7-x86/native/sos.dll",
"tools/crossgen.exe"
]
},
"runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "3jgpS2GhE76QqeoTxCakx6jlX7EIeXvxHnFFDa03Jf++s9+EGnRD38R6GDb1ism73xo6IHe0iev7zd5y+oD3BA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win7-x86.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win7-x86.runtime.native.System.IO.Compression.nuspec",
"runtimes/win7-x86/native/clrcompression.dll"
]
},
"runtime.win7.System.Private.Uri/4.0.2": {
"sha512": "N0nsmkEe+e3fl28KZ9LrHQ06XvhTC4FGyWacInV90h3pmty2s0fnG0GZ41rQw8d51s+pLcTQ0dKS0eN0xESY7g==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win7.System.Private.Uri.4.0.2.nupkg.sha512",
"runtime.win7.System.Private.Uri.nuspec",
"runtimes/aot/lib/netcore50/System.Private.Uri.dll",
"runtimes/win/lib/netcore50/System.Private.Uri.dll",
"runtimes/win/lib/netstandard1.0/System.Private.Uri.dll"
]
},
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"sha512": "0V6sq7Dg0bQPrJtm/Qw5Zu0e7gidnRPLaqUhKIkLYzVn64jkat+JnR6LcezryD3c0Wuva/MdJWYSAaOPq5V/Zw==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard1.0/_._",
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512",
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"runtimes/win8-arm-aot/lib/netstandard1.0/_._",
"runtimes/win8-arm-aot/native/_._",
"runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll",
"runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll",
"runtimes/win8-arm/native/System.Private.CoreLib.ni.dll",
"runtimes/win8-arm/native/clretwrc.dll",
"runtimes/win8-arm/native/coreclr.dll",
"runtimes/win8-arm/native/dbgshim.dll",
"runtimes/win8-arm/native/mscordaccore.dll",
"runtimes/win8-arm/native/mscordbi.dll",
"runtimes/win8-arm/native/mscorlib.ni.dll",
"runtimes/win8-arm/native/mscorrc.debug.dll",
"runtimes/win8-arm/native/mscorrc.dll",
"runtimes/win8-arm/native/sos.dll",
"tools/crossgen.exe",
"tools/sos.dll"
]
},
"runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "EwyUwoJJLeSqfmeZoX9nxKx8Q9pEwX5zLLgSwtdH04+TzUYxaDIaoNqH5hfhoaSl2VoDsHGbEnQ6Y5bXLcWSkA==",
"type": "package",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win8-arm.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win8-arm.runtime.native.System.IO.Compression.nuspec",
"runtimes/win8-arm/native/clrcompression.dll"
]
},
"System.AppContext/4.1.0": {
"sha512": "065m4cS0FdPdzD9Jusy+5Y8ONECKRmrNKdRTrBY4Dyv9DVBB78ATRlaZAJU1nh5inZ6+pugr9HbXx75OME2+Ug==",
"type": "package",
"path": "System.AppContext/4.1.0",
"files": [
"System.AppContext.4.1.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.AppContext.dll",
"lib/net463/System.AppContext.dll",
"lib/netcore50/System.AppContext.dll",
"lib/netstandard1.6/System.AppContext.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.AppContext.dll",
"ref/net463/System.AppContext.dll",
"ref/netstandard/_._",
"ref/netstandard1.3/System.AppContext.dll",
"ref/netstandard1.3/System.AppContext.xml",
"ref/netstandard1.3/de/System.AppContext.xml",
"ref/netstandard1.3/es/System.AppContext.xml",
"ref/netstandard1.3/fr/System.AppContext.xml",
"ref/netstandard1.3/it/System.AppContext.xml",
"ref/netstandard1.3/ja/System.AppContext.xml",
"ref/netstandard1.3/ko/System.AppContext.xml",
"ref/netstandard1.3/ru/System.AppContext.xml",
"ref/netstandard1.3/zh-hans/System.AppContext.xml",
"ref/netstandard1.3/zh-hant/System.AppContext.xml",
"ref/netstandard1.6/System.AppContext.dll",
"ref/netstandard1.6/System.AppContext.xml",
"ref/netstandard1.6/de/System.AppContext.xml",
"ref/netstandard1.6/es/System.AppContext.xml",
"ref/netstandard1.6/fr/System.AppContext.xml",
"ref/netstandard1.6/it/System.AppContext.xml",
"ref/netstandard1.6/ja/System.AppContext.xml",
"ref/netstandard1.6/ko/System.AppContext.xml",
"ref/netstandard1.6/ru/System.AppContext.xml",
"ref/netstandard1.6/zh-hans/System.AppContext.xml",
"ref/netstandard1.6/zh-hant/System.AppContext.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
"System.Buffers/4.0.0": {
"sha512": "Ekxnj6EiW3/Aa0MhIuvAE72YXRjo57fKdlbxvHnAaGtP4ivaPsjuBCWKEQl6EG0/3WANHbs4g94M0Juoj21waQ==",
"type": "package",
"path": "System.Buffers/4.0.0",
"files": [
"System.Buffers.4.0.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.1/.xml",
"lib/netstandard1.1/System.Buffers.dll"
]
},
"System.Collections/4.0.11": {
"sha512": "nhCpV23xO41EXWy1KdfwWogXycduRf82JWuTOF4ThHR/vc/l87c+xFtUTbmAoYvwzURkp9xdk+ziYfQ6CQdy5A==",
"type": "package",
"path": "System.Collections/4.0.11",
"files": [
"System.Collections.4.0.11.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Collections.dll",
"ref/netcore50/System.Collections.xml",
"ref/netcore50/de/System.Collections.xml",
"ref/netcore50/es/System.Collections.xml",
"ref/netcore50/fr/System.Collections.xml",
"ref/netcore50/it/System.Collections.xml",
"ref/netcore50/ja/System.Collections.xml",
"ref/netcore50/ko/System.Collections.xml",
"ref/netcore50/ru/System.Collections.xml",
"ref/netcore50/zh-hans/System.Collections.xml",
"ref/netcore50/zh-hant/System.Collections.xml",
"ref/netstandard1.0/System.Collections.dll",
"ref/netstandard1.0/System.Collections.xml",
"ref/netstandard1.0/de/System.Collections.xml",
"ref/netstandard1.0/es/System.Collections.xml",
"ref/netstandard1.0/fr/System.Collections.xml",
"ref/netstandard1.0/it/System.Collections.xml",
"ref/netstandard1.0/ja/System.Collections.xml",
"ref/netstandard1.0/ko/System.Collections.xml",
"ref/netstandard1.0/ru/System.Collections.xml",
"ref/netstandard1.0/zh-hans/System.Collections.xml",
"ref/netstandard1.0/zh-hant/System.Collections.xml",
"ref/netstandard1.3/System.Collections.dll",
"ref/netstandard1.3/System.Collections.xml",
"ref/netstandard1.3/de/System.Collections.xml",
"ref/netstandard1.3/es/System.Collections.xml",
"ref/netstandard1.3/fr/System.Collections.xml",
"ref/netstandard1.3/it/System.Collections.xml",
"ref/netstandard1.3/ja/System.Collections.xml",
"ref/netstandard1.3/ko/System.Collections.xml",
"ref/netstandard1.3/ru/System.Collections.xml",
"ref/netstandard1.3/zh-hans/System.Collections.xml",
"ref/netstandard1.3/zh-hant/System.Collections.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Collections.Concurrent/4.0.12": {
"sha512": "8p3ZKVUaCqybDLtI+rVxbJvCAi//Ae1d1DOwbu7OsD+1jhV1LHeIVt1rC631MpF/Za+9TuqtOvfp3CBvpNWisA==",
"type": "package",
"path": "System.Collections.Concurrent/4.0.12",
"files": [
"System.Collections.Concurrent.4.0.12.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Collections.Concurrent.dll",
"lib/netstandard1.3/System.Collections.Concurrent.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Collections.Concurrent.dll",
"ref/netcore50/System.Collections.Concurrent.xml",
"ref/netcore50/de/System.Collections.Concurrent.xml",
"ref/netcore50/es/System.Collections.Concurrent.xml",
"ref/netcore50/fr/System.Collections.Concurrent.xml",
"ref/netcore50/it/System.Collections.Concurrent.xml",
"ref/netcore50/ja/System.Collections.Concurrent.xml",
"ref/netcore50/ko/System.Collections.Concurrent.xml",
"ref/netcore50/ru/System.Collections.Concurrent.xml",
"ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
"ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
"ref/netstandard1.1/System.Collections.Concurrent.dll",
"ref/netstandard1.1/System.Collections.Concurrent.xml",
"ref/netstandard1.1/de/System.Collections.Concurrent.xml",
"ref/netstandard1.1/es/System.Collections.Concurrent.xml",
"ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
"ref/netstandard1.1/it/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
"ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
"ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
"ref/netstandard1.3/System.Collections.Concurrent.dll",
"ref/netstandard1.3/System.Collections.Concurrent.xml",
"ref/netstandard1.3/de/System.Collections.Concurrent.xml",
"ref/netstandard1.3/es/System.Collections.Concurrent.xml",
"ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
"ref/netstandard1.3/it/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
"ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
"ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Collections.Immutable/1.2.0": {
"sha512": "cmmcdedHB75UEhPGJWQ0AdBniMm3hExrd0IbqhlypVE9K8uHitPyPVrhsipa3ZUULnJXkIX81+di999NIsOLag==",
"type": "package",
"path": "System.Collections.Immutable/1.2.0",
"files": [
"System.Collections.Immutable.1.2.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Collections.Immutable.dll",
"lib/netstandard1.0/System.Collections.Immutable.xml",
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
"System.Collections.NonGeneric/4.0.1": {
"sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
"type": "package",
"files": [
"System.Collections.NonGeneric.4.0.1.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Collections.NonGeneric.dll",
"lib/netstandard1.3/System.Collections.NonGeneric.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Collections.NonGeneric.dll",
"ref/netstandard1.3/System.Collections.NonGeneric.dll",
"ref/netstandard1.3/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Collections.Specialized/4.0.1": {
"sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
"type": "package",
"files": [
"System.Collections.Specialized.4.0.1.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Collections.Specialized.dll",
"lib/netstandard1.3/System.Collections.Specialized.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Collections.Specialized.dll",
"ref/netstandard1.3/System.Collections.Specialized.dll",
"ref/netstandard1.3/System.Collections.Specialized.xml",
"ref/netstandard1.3/de/System.Collections.Specialized.xml",
"ref/netstandard1.3/es/System.Collections.Specialized.xml",
"ref/netstandard1.3/fr/System.Collections.Specialized.xml",
"ref/netstandard1.3/it/System.Collections.Specialized.xml",
"ref/netstandard1.3/ja/System.Collections.Specialized.xml",
"ref/netstandard1.3/ko/System.Collections.Specialized.xml",
"ref/netstandard1.3/ru/System.Collections.Specialized.xml",
"ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
"ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ComponentModel/4.0.1": {
"sha512": "YCzWsbChY5bZVK8xTNfpqdOzP0ikw2k0dPkgu5zQX8woGg+42Q1yaZCkZ6f5SvPK3YHmBAs0C6VuXp2ORNlxjw==",
"type": "package",
"path": "System.ComponentModel/4.0.1",
"files": [
"System.ComponentModel.4.0.1.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.ComponentModel.dll",
"lib/netstandard1.3/System.ComponentModel.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.ComponentModel.dll",
"ref/netcore50/System.ComponentModel.xml",
"ref/netcore50/de/System.ComponentModel.xml",
"ref/netcore50/es/System.ComponentModel.xml",
"ref/netcore50/fr/System.ComponentModel.xml",
"ref/netcore50/it/System.ComponentModel.xml",
"ref/netcore50/ja/System.ComponentModel.xml",
"ref/netcore50/ko/System.ComponentModel.xml",
"ref/netcore50/ru/System.ComponentModel.xml",
"ref/netcore50/zh-hans/System.ComponentModel.xml",
"ref/netcore50/zh-hant/System.ComponentModel.xml",
"ref/netstandard1.0/System.ComponentModel.dll",
"ref/netstandard1.0/System.ComponentModel.xml",
"ref/netstandard1.0/de/System.ComponentModel.xml",
"ref/netstandard1.0/es/System.ComponentModel.xml",
"ref/netstandard1.0/fr/System.ComponentModel.xml",
"ref/netstandard1.0/it/System.ComponentModel.xml",
"ref/netstandard1.0/ja/System.ComponentModel.xml",
"ref/netstandard1.0/ko/System.ComponentModel.xml",
"ref/netstandard1.0/ru/System.ComponentModel.xml",
"ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
"ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ComponentModel.Annotations/4.1.0": {
"sha512": "ixk6+qnJwjQXX+7I2zRW3zbWt6IAAV0ETpW6J4DZ/E68hmT2ZpSOKlwdaTin06lSjtzmo3a9+X+KAtnoCWVJkw==",
"type": "package",
"path": "System.ComponentModel.Annotations/4.1.0",
"files": [
"System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net461/System.ComponentModel.Annotations.dll",
"lib/netcore50/System.ComponentModel.Annotations.dll",
"lib/netstandard1.4/System.ComponentModel.Annotations.dll",
"lib/portable-net45+win8/_._",
"lib/win8/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net461/System.ComponentModel.Annotations.dll",
"ref/netcore50/System.ComponentModel.Annotations.dll",
"ref/netcore50/System.ComponentModel.Annotations.xml",
"ref/netcore50/de/System.ComponentModel.Annotations.xml",
"ref/netcore50/es/System.ComponentModel.Annotations.xml",
"ref/netcore50/fr/System.ComponentModel.Annotations.xml",
"ref/netcore50/it/System.ComponentModel.Annotations.xml",
"ref/netcore50/ja/System.ComponentModel.Annotations.xml",
"ref/netcore50/ko/System.ComponentModel.Annotations.xml",
"ref/netcore50/ru/System.ComponentModel.Annotations.xml",
"ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
"ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/System.ComponentModel.Annotations.dll",
"ref/netstandard1.1/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/System.ComponentModel.Annotations.dll",
"ref/netstandard1.3/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/System.ComponentModel.Annotations.dll",
"ref/netstandard1.4/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
"ref/portable-net45+win8/_._",
"ref/win8/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
"type": "package",
"files": [
"System.ComponentModel.EventBasedAsync.4.0.11.nupkg.sha512",
"System.ComponentModel.EventBasedAsync.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
"lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
"ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
"ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
"ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Data.Common/4.1.0": {
"sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==",
"type": "package",
"files": [
"System.Data.Common.4.1.0.nupkg.sha512",
"System.Data.Common.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net451/System.Data.Common.dll",
"lib/netstandard1.2/System.Data.Common.dll",
"lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net451/System.Data.Common.dll",
"ref/netstandard1.2/System.Data.Common.dll",
"ref/netstandard1.2/System.Data.Common.xml",
"ref/netstandard1.2/de/System.Data.Common.xml",
"ref/netstandard1.2/es/System.Data.Common.xml",
"ref/netstandard1.2/fr/System.Data.Common.xml",
"ref/netstandard1.2/it/System.Data.Common.xml",
"ref/netstandard1.2/ja/System.Data.Common.xml",
"ref/netstandard1.2/ko/System.Data.Common.xml",
"ref/netstandard1.2/ru/System.Data.Common.xml",
"ref/netstandard1.2/zh-hans/System.Data.Common.xml",
"ref/netstandard1.2/zh-hant/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
"ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Diagnostics.Contracts/4.0.1": {
"sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
"type": "package",
"files": [
"System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Contracts.dll",
"lib/netstandard1.0/System.Diagnostics.Contracts.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Diagnostics.Contracts.dll",
"ref/netcore50/System.Diagnostics.Contracts.xml",
"ref/netcore50/de/System.Diagnostics.Contracts.xml",
"ref/netcore50/es/System.Diagnostics.Contracts.xml",
"ref/netcore50/fr/System.Diagnostics.Contracts.xml",
"ref/netcore50/it/System.Diagnostics.Contracts.xml",
"ref/netcore50/ja/System.Diagnostics.Contracts.xml",
"ref/netcore50/ko/System.Diagnostics.Contracts.xml",
"ref/netcore50/ru/System.Diagnostics.Contracts.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/System.Diagnostics.Contracts.dll",
"ref/netstandard1.0/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
"System.Diagnostics.Debug/4.0.11": {
"sha512": "GpBQnj8FwT7/hRA3CdFtbHQjYtek0KxMC2QiXHcem7CYL/ltd2cJDdIhJqrJeKh3mrFz6G1vsVOJ4DvJCN6jlg==",
"type": "package",
"path": "System.Diagnostics.Debug/4.0.11",
"files": [
"System.Diagnostics.Debug.4.0.11.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Diagnostics.Debug.dll",
"ref/netcore50/System.Diagnostics.Debug.xml",
"ref/netcore50/de/System.Diagnostics.Debug.xml",
"ref/netcore50/es/System.Diagnostics.Debug.xml",
"ref/netcore50/fr/System.Diagnostics.Debug.xml",
"ref/netcore50/it/System.Diagnostics.Debug.xml",
"ref/netcore50/ja/System.Diagnostics.Debug.xml",
"ref/netcore50/ko/System.Diagnostics.Debug.xml",
"ref/netcore50/ru/System.Diagnostics.Debug.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/System.Diagnostics.Debug.dll",
"ref/netstandard1.0/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/System.Diagnostics.Debug.dll",
"ref/netstandard1.3/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"sha512": "bYxnzTncblGHb5t1VQQkXMsyvq8tHhoQoVun+dN57cwUjx38MR1wBc05roqNFT3DOxu+6wVxTrabe3hNcuPiug==",
"type": "package",
"path": "System.Diagnostics.DiagnosticSource/4.0.0",
"files": [
"System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net46/System.Diagnostics.DiagnosticSource.dll",
"lib/net46/System.Diagnostics.DiagnosticSource.xml",
"lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
"lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
]
},
"System.Diagnostics.StackTrace/4.0.2": {
"sha512": "MmP424iVWLyeW7XGtwC5NyfzsIwodFKwhW6yns3d+Sh8WFsFoPWq2cUlJJDAteapIm2qoJ8fc3VwIUroolbsEA==",
"type": "package",
"files": [
"System.Diagnostics.StackTrace.4.0.2.nupkg.sha512",
"System.Diagnostics.StackTrace.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Diagnostics.StackTrace.dll",
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Diagnostics.StackTrace.dll",
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
"ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
"System.Diagnostics.Tools/4.0.1": {
"sha512": "a2pA+nZ+S5MEeu76APG4t1gti6o/R5UPinu5jIL9i9xquGHeGSsLMYSCz71BGwl+XKq+tsCK8u2je2jD6j3h4w==",
"type": "package",
"path": "System.Diagnostics.Tools/4.0.1",
"files": [
"System.Diagnostics.Tools.4.0.1.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Diagnostics.Tools.dll",
"ref/netcore50/System.Diagnostics.Tools.xml",
"ref/netcore50/de/System.Diagnostics.Tools.xml",
"ref/netcore50/es/System.Diagnostics.Tools.xml",
"ref/netcore50/fr/System.Diagnostics.Tools.xml",
"ref/netcore50/it/System.Diagnostics.Tools.xml",
"ref/netcore50/ja/System.Diagnostics.Tools.xml",
"ref/netcore50/ko/System.Diagnostics.Tools.xml",
"ref/netcore50/ru/System.Diagnostics.Tools.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/System.Diagnostics.Tools.dll",
"ref/netstandard1.0/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Diagnostics.Tracing/4.1.0": {
"sha512": "pkpgsxR3N6GZpoYzFJbBa+hVT79m4bv7kAFasDhhcYECtSMwYt4dynrzVnFjVn76E/dQvD4Nw6C+6AnhrhTkVA==",
"type": "package",
"path": "System.Diagnostics.Tracing/4.1.0",
"files": [
"System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Diagnostics.Tracing.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Diagnostics.Tracing.dll",
"ref/netcore50/System.Diagnostics.Tracing.dll",
"ref/netcore50/System.Diagnostics.Tracing.xml",
"ref/netcore50/de/System.Diagnostics.Tracing.xml",
"ref/netcore50/es/System.Diagnostics.Tracing.xml",
"ref/netcore50/fr/System.Diagnostics.Tracing.xml",
"ref/netcore50/it/System.Diagnostics.Tracing.xml",
"ref/netcore50/ja/System.Diagnostics.Tracing.xml",
"ref/netcore50/ko/System.Diagnostics.Tracing.xml",
"ref/netcore50/ru/System.Diagnostics.Tracing.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/System.Diagnostics.Tracing.dll",
"ref/netstandard1.1/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/System.Diagnostics.Tracing.dll",
"ref/netstandard1.2/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/System.Diagnostics.Tracing.dll",
"ref/netstandard1.3/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/System.Diagnostics.Tracing.dll",
"ref/netstandard1.5/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Dynamic.Runtime/4.0.11": {
"sha512": "t0Dvjd5Yy/pEzGsiv7kEQEUIcLocQw8uTVK15oEfg2/hPZnu3MZlYduJQPkKoEaWpS2g4vswT2tVMzZbOJQa3w==",
"type": "package",
"path": "System.Dynamic.Runtime/4.0.11",
"files": [
"System.Dynamic.Runtime.4.0.11.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Dynamic.Runtime.dll",
"lib/netstandard1.3/System.Dynamic.Runtime.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Dynamic.Runtime.dll",
"ref/netcore50/System.Dynamic.Runtime.xml",
"ref/netcore50/de/System.Dynamic.Runtime.xml",
"ref/netcore50/es/System.Dynamic.Runtime.xml",
"ref/netcore50/fr/System.Dynamic.Runtime.xml",
"ref/netcore50/it/System.Dynamic.Runtime.xml",
"ref/netcore50/ja/System.Dynamic.Runtime.xml",
"ref/netcore50/ko/System.Dynamic.Runtime.xml",
"ref/netcore50/ru/System.Dynamic.Runtime.xml",
"ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
"ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/System.Dynamic.Runtime.dll",
"ref/netstandard1.0/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/System.Dynamic.Runtime.dll",
"ref/netstandard1.3/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
"System.Globalization/4.0.11": {
"sha512": "8Jls/STjJ75LFQrLz+RijMjx/2H72QY1Mik7Db3mlh0GgDg8hgJoZemreit41VzxgSCnTxkSBeHi3wB+Phq5ew==",
"type": "package",
"path": "System.Globalization/4.0.11",
"files": [
"System.Globalization.4.0.11.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Globalization.dll",
"ref/netcore50/System.Globalization.xml",
"ref/netcore50/de/System.Globalization.xml",
"ref/netcore50/es/System.Globalization.xml",
"ref/netcore50/fr/System.Globalization.xml",
"ref/netcore50/it/System.Globalization.xml",
"ref/netcore50/ja/System.Globalization.xml",
"ref/netcore50/ko/System.Globalization.xml",
"ref/netcore50/ru/System.Globalization.xml",
"ref/netcore50/zh-hans/System.Globalization.xml",
"ref/netcore50/zh-hant/System.Globalization.xml",
"ref/netstandard1.0/System.Globalization.dll",
"ref/netstandard1.0/System.Globalization.xml",
"ref/netstandard1.0/de/System.Globalization.xml",
"ref/netstandard1.0/es/System.Globalization.xml",
"ref/netstandard1.0/fr/System.Globalization.xml",
"ref/netstandard1.0/it/System.Globalization.xml",
"ref/netstandard1.0/ja/System.Globalization.xml",
"ref/netstandard1.0/ko/System.Globalization.xml",
"ref/netstandard1.0/ru/System.Globalization.xml",
"ref/netstandard1.0/zh-hans/System.Globalization.xml",
"ref/netstandard1.0/zh-hant/System.Globalization.xml",
"ref/netstandard1.3/System.Globalization.dll",
"ref/netstandard1.3/System.Globalization.xml",
"ref/netstandard1.3/de/System.Globalization.xml",
"ref/netstandard1.3/es/System.Globalization.xml",
"ref/netstandard1.3/fr/System.Globalization.xml",
"ref/netstandard1.3/it/System.Globalization.xml",
"ref/netstandard1.3/ja/System.Globalization.xml",
"ref/netstandard1.3/ko/System.Globalization.xml",
"ref/netstandard1.3/ru/System.Globalization.xml",
"ref/netstandard1.3/zh-hans/System.Globalization.xml",
"ref/netstandard1.3/zh-hant/System.Globalization.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Globalization.Calendars/4.0.1": {
"sha512": "ZBAgCvQmmZeG68GyJMhNUURcrAmbiHW396yhlVlz+ygTsvuh3dWmDAk1wOypQJL8KkISAuJjgzqDdddFKLyUZg==",
"type": "package",
"path": "System.Globalization.Calendars/4.0.1",
"files": [
"System.Globalization.Calendars.4.0.1.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Globalization.Calendars.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Globalization.Calendars.dll",
"ref/netstandard1.3/System.Globalization.Calendars.dll",
"ref/netstandard1.3/System.Globalization.Calendars.xml",
"ref/netstandard1.3/de/System.Globalization.Calendars.xml",
"ref/netstandard1.3/es/System.Globalization.Calendars.xml",
"ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
"ref/netstandard1.3/it/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
"ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
"ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Globalization.Extensions/4.0.1": {
"sha512": "vILdo3P1BZT6EQuPiwIPFs12W6U0zOBflfZdlFy+W/JoInB8M7NpNCdv4vJ2PP/RbFIaPpla12iyVGfA/+3tcg==",
"type": "package",
"path": "System.Globalization.Extensions/4.0.1",
"files": [
"System.Globalization.Extensions.4.0.1.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Globalization.Extensions.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Globalization.Extensions.dll",
"ref/netstandard1.3/System.Globalization.Extensions.dll",
"ref/netstandard1.3/System.Globalization.Extensions.xml",
"ref/netstandard1.3/de/System.Globalization.Extensions.xml",
"ref/netstandard1.3/es/System.Globalization.Extensions.xml",
"ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
"ref/netstandard1.3/it/System.Globalization.Extensions.xml",
"ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
"ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
"ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
"ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
"ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
"runtimes/win/lib/net46/System.Globalization.Extensions.dll",
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
]
},
"System.IO/4.1.0": {
"sha512": "karXRXjiOZXIAa7ZJR9CgRL3o9XXSo8ZTyS26eiuJaruf7gWq/wLDrYRp6i1ZxK4OGArjnwulMv86pUxqQe5SA==",
"type": "package",
"path": "System.IO/4.1.0",
"files": [
"System.IO.4.1.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.IO.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.IO.dll",
"ref/netcore50/System.IO.dll",
"ref/netcore50/System.IO.xml",
"ref/netcore50/de/System.IO.xml",
"ref/netcore50/es/System.IO.xml",
"ref/netcore50/fr/System.IO.xml",
"ref/netcore50/it/System.IO.xml",
"ref/netcore50/ja/System.IO.xml",
"ref/netcore50/ko/System.IO.xml",
"ref/netcore50/ru/System.IO.xml",
"ref/netcore50/zh-hans/System.IO.xml",
"ref/netcore50/zh-hant/System.IO.xml",
"ref/netstandard1.0/System.IO.dll",
"ref/netstandard1.0/System.IO.xml",
"ref/netstandard1.0/de/System.IO.xml",
"ref/netstandard1.0/es/System.IO.xml",
"ref/netstandard1.0/fr/System.IO.xml",
"ref/netstandard1.0/it/System.IO.xml",
"ref/netstandard1.0/ja/System.IO.xml",
"ref/netstandard1.0/ko/System.IO.xml",
"ref/netstandard1.0/ru/System.IO.xml",
"ref/netstandard1.0/zh-hans/System.IO.xml",
"ref/netstandard1.0/zh-hant/System.IO.xml",
"ref/netstandard1.3/System.IO.dll",
"ref/netstandard1.3/System.IO.xml",
"ref/netstandard1.3/de/System.IO.xml",
"ref/netstandard1.3/es/System.IO.xml",
"ref/netstandard1.3/fr/System.IO.xml",
"ref/netstandard1.3/it/System.IO.xml",
"ref/netstandard1.3/ja/System.IO.xml",
"ref/netstandard1.3/ko/System.IO.xml",
"ref/netstandard1.3/ru/System.IO.xml",
"ref/netstandard1.3/zh-hans/System.IO.xml",
"ref/netstandard1.3/zh-hant/System.IO.xml",
"ref/netstandard1.5/System.IO.dll",
"ref/netstandard1.5/System.IO.xml",
"ref/netstandard1.5/de/System.IO.xml",
"ref/netstandard1.5/es/System.IO.xml",
"ref/netstandard1.5/fr/System.IO.xml",
"ref/netstandard1.5/it/System.IO.xml",
"ref/netstandard1.5/ja/System.IO.xml",
"ref/netstandard1.5/ko/System.IO.xml",
"ref/netstandard1.5/ru/System.IO.xml",
"ref/netstandard1.5/zh-hans/System.IO.xml",
"ref/netstandard1.5/zh-hant/System.IO.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.Compression/4.1.1": {
"sha512": "ac/GG9DNsUr/grHGstCtWDoglgWr1OhL/yAZjXfpXtx52RmVVCpO52pShIDilQrD9dDZxw8zluiXEfezhPaYzg==",
"type": "package",
"files": [
"System.IO.Compression.4.1.1.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.IO.Compression.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.IO.Compression.dll",
"ref/netcore50/System.IO.Compression.dll",
"ref/netcore50/System.IO.Compression.xml",
"ref/netcore50/de/System.IO.Compression.xml",
"ref/netcore50/es/System.IO.Compression.xml",
"ref/netcore50/fr/System.IO.Compression.xml",
"ref/netcore50/it/System.IO.Compression.xml",
"ref/netcore50/ja/System.IO.Compression.xml",
"ref/netcore50/ko/System.IO.Compression.xml",
"ref/netcore50/ru/System.IO.Compression.xml",
"ref/netcore50/zh-hans/System.IO.Compression.xml",
"ref/netcore50/zh-hant/System.IO.Compression.xml",
"ref/netstandard1.1/System.IO.Compression.dll",
"ref/netstandard1.1/System.IO.Compression.xml",
"ref/netstandard1.1/de/System.IO.Compression.xml",
"ref/netstandard1.1/es/System.IO.Compression.xml",
"ref/netstandard1.1/fr/System.IO.Compression.xml",
"ref/netstandard1.1/it/System.IO.Compression.xml",
"ref/netstandard1.1/ja/System.IO.Compression.xml",
"ref/netstandard1.1/ko/System.IO.Compression.xml",
"ref/netstandard1.1/ru/System.IO.Compression.xml",
"ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
"ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
"ref/netstandard1.3/System.IO.Compression.dll",
"ref/netstandard1.3/System.IO.Compression.xml",
"ref/netstandard1.3/de/System.IO.Compression.xml",
"ref/netstandard1.3/es/System.IO.Compression.xml",
"ref/netstandard1.3/fr/System.IO.Compression.xml",
"ref/netstandard1.3/it/System.IO.Compression.xml",
"ref/netstandard1.3/ja/System.IO.Compression.xml",
"ref/netstandard1.3/ko/System.IO.Compression.xml",
"ref/netstandard1.3/ru/System.IO.Compression.xml",
"ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
"ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
"runtimes/win/lib/net46/System.IO.Compression.dll",
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
"System.IO.Compression.ZipFile/4.0.1": {
"sha512": "feyGeijUF0WwU0xIO+NrNdjsKpL37xiDe6vUsXvJpRnyPmLKWDhVAfZ1E3ms5BzXOIR2DPBAwJlNyYNpcHRRXg==",
"type": "package",
"path": "System.IO.Compression.ZipFile/4.0.1",
"files": [
"System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.Compression.ZipFile.dll",
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.Compression.ZipFile.dll",
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
"ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.FileSystem/4.0.1": {
"sha512": "fPJ0jdEKZFK5D4hOewtshk9jIN32j06g1YzCapqoKlk4qEVAm4UHFm2Us0pvK3NTCub5EAS5Qz6Kh6yTbD9gPA==",
"type": "package",
"path": "System.IO.FileSystem/4.0.1",
"files": [
"System.IO.FileSystem.4.0.1.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.FileSystem.dll",
"ref/netstandard1.3/System.IO.FileSystem.dll",
"ref/netstandard1.3/System.IO.FileSystem.xml",
"ref/netstandard1.3/de/System.IO.FileSystem.xml",
"ref/netstandard1.3/es/System.IO.FileSystem.xml",
"ref/netstandard1.3/fr/System.IO.FileSystem.xml",
"ref/netstandard1.3/it/System.IO.FileSystem.xml",
"ref/netstandard1.3/ja/System.IO.FileSystem.xml",
"ref/netstandard1.3/ko/System.IO.FileSystem.xml",
"ref/netstandard1.3/ru/System.IO.FileSystem.xml",
"ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
"ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.FileSystem.Primitives/4.0.1": {
"sha512": "HZnKMIk6T8kt1rqbhLpvSC4sIcBMx/kocwTHZpEOpxL7qdgQV/OglEkV7Zl8Ds++y387KOq15Nh4QQVtSXIkjQ==",
"type": "package",
"path": "System.IO.FileSystem.Primitives/4.0.1",
"files": [
"System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.Primitives.dll",
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.FileSystem.Primitives.dll",
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
"ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.IsolatedStorage/4.0.1": {
"sha512": "PuSuDi3FV84wh6RbF+Dvr0BvLJ6MCpvNIdVE3K0sSnOVKEV7mOQ0qnEvO1tWjxquMaugULTxJHHLaxkCHCz4IQ==",
"type": "package",
"files": [
"System.IO.IsolatedStorage.4.0.1.nupkg.sha512",
"System.IO.IsolatedStorage.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/netcore50/System.IO.IsolatedStorage.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netstandard1.4/System.IO.IsolatedStorage.dll",
"ref/netstandard1.4/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/de/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/es/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/fr/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/it/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/ja/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/ko/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/ru/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/zh-hans/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/zh-hant/System.IO.IsolatedStorage.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"sha512": "3884Ps2yRz5RFkDtF2NVtAzYshbtKuMa1QUxgu3/5G74VMyvJ6xcDpiDAMKy+sFnDsomj+V2oMUwKrFGfCX10Q==",
"type": "package",
"path": "System.IO.UnmanagedMemoryStream/4.0.1",
"files": [
"System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
"System.IO.UnmanagedMemoryStream.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.UnmanagedMemoryStream.dll",
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.UnmanagedMemoryStream.dll",
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Linq/4.1.0": {
"sha512": "Vvarb8OTsZu8F9lsbyWPqW04HIQN04TjfP0K3NXh63GGf34Q6hQol4aupWbZkdunnVuj+sF9dF/OaZuxxPxJRg==",
"type": "package",
"path": "System.Linq/4.1.0",
"files": [
"System.Linq.4.1.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net463/System.Linq.dll",
"lib/netcore50/System.Linq.dll",
"lib/netstandard1.6/System.Linq.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net463/System.Linq.dll",
"ref/netcore50/System.Linq.dll",
"ref/netcore50/System.Linq.xml",
"ref/netcore50/de/System.Linq.xml",
"ref/netcore50/es/System.Linq.xml",
"ref/netcore50/fr/System.Linq.xml",
"ref/netcore50/it/System.Linq.xml",
"ref/netcore50/ja/System.Linq.xml",
"ref/netcore50/ko/System.Linq.xml",
"ref/netcore50/ru/System.Linq.xml",
"ref/netcore50/zh-hans/System.Linq.xml",
"ref/netcore50/zh-hant/System.Linq.xml",
"ref/netstandard1.0/System.Linq.dll",
"ref/netstandard1.0/System.Linq.xml",
"ref/netstandard1.0/de/System.Linq.xml",
"ref/netstandard1.0/es/System.Linq.xml",
"ref/netstandard1.0/fr/System.Linq.xml",
"ref/netstandard1.0/it/System.Linq.xml",
"ref/netstandard1.0/ja/System.Linq.xml",
"ref/netstandard1.0/ko/System.Linq.xml",
"ref/netstandard1.0/ru/System.Linq.xml",
"ref/netstandard1.0/zh-hans/System.Linq.xml",
"ref/netstandard1.0/zh-hant/System.Linq.xml",
"ref/netstandard1.6/System.Linq.dll",
"ref/netstandard1.6/System.Linq.xml",
"ref/netstandard1.6/de/System.Linq.xml",
"ref/netstandard1.6/es/System.Linq.xml",
"ref/netstandard1.6/fr/System.Linq.xml",
"ref/netstandard1.6/it/System.Linq.xml",
"ref/netstandard1.6/ja/System.Linq.xml",
"ref/netstandard1.6/ko/System.Linq.xml",
"ref/netstandard1.6/ru/System.Linq.xml",
"ref/netstandard1.6/zh-hans/System.Linq.xml",
"ref/netstandard1.6/zh-hant/System.Linq.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Linq.Expressions/4.1.0": {
"sha512": "zXYAAevGjqGwJBklQe2W7nidn+9EHvJPpKuLK089qHqF4z12r/sQncFPT63KGdDOFhWpibFtTa/RnNLFmvmMRA==",
"type": "package",
"path": "System.Linq.Expressions/4.1.0",
"files": [
"System.Linq.Expressions.4.1.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net463/System.Linq.Expressions.dll",
"lib/netcore50/System.Linq.Expressions.dll",
"lib/netstandard1.6/System.Linq.Expressions.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net463/System.Linq.Expressions.dll",
"ref/netcore50/System.Linq.Expressions.dll",
"ref/netcore50/System.Linq.Expressions.xml",
"ref/netcore50/de/System.Linq.Expressions.xml",
"ref/netcore50/es/System.Linq.Expressions.xml",
"ref/netcore50/fr/System.Linq.Expressions.xml",
"ref/netcore50/it/System.Linq.Expressions.xml",
"ref/netcore50/ja/System.Linq.Expressions.xml",
"ref/netcore50/ko/System.Linq.Expressions.xml",
"ref/netcore50/ru/System.Linq.Expressions.xml",
"ref/netcore50/zh-hans/System.Linq.Expressions.xml",
"ref/netcore50/zh-hant/System.Linq.Expressions.xml",
"ref/netstandard1.0/System.Linq.Expressions.dll",
"ref/netstandard1.0/System.Linq.Expressions.xml",
"ref/netstandard1.0/de/System.Linq.Expressions.xml",
"ref/netstandard1.0/es/System.Linq.Expressions.xml",
"ref/netstandard1.0/fr/System.Linq.Expressions.xml",
"ref/netstandard1.0/it/System.Linq.Expressions.xml",
"ref/netstandard1.0/ja/System.Linq.Expressions.xml",
"ref/netstandard1.0/ko/System.Linq.Expressions.xml",
"ref/netstandard1.0/ru/System.Linq.Expressions.xml",
"ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
"ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
"ref/netstandard1.3/System.Linq.Expressions.dll",
"ref/netstandard1.3/System.Linq.Expressions.xml",
"ref/netstandard1.3/de/System.Linq.Expressions.xml",
"ref/netstandard1.3/es/System.Linq.Expressions.xml",
"ref/netstandard1.3/fr/System.Linq.Expressions.xml",
"ref/netstandard1.3/it/System.Linq.Expressions.xml",
"ref/netstandard1.3/ja/System.Linq.Expressions.xml",
"ref/netstandard1.3/ko/System.Linq.Expressions.xml",
"ref/netstandard1.3/ru/System.Linq.Expressions.xml",
"ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
"ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
"ref/netstandard1.6/System.Linq.Expressions.dll",
"ref/netstandard1.6/System.Linq.Expressions.xml",
"ref/netstandard1.6/de/System.Linq.Expressions.xml",
"ref/netstandard1.6/es/System.Linq.Expressions.xml",
"ref/netstandard1.6/fr/System.Linq.Expressions.xml",
"ref/netstandard1.6/it/System.Linq.Expressions.xml",
"ref/netstandard1.6/ja/System.Linq.Expressions.xml",
"ref/netstandard1.6/ko/System.Linq.Expressions.xml",
"ref/netstandard1.6/ru/System.Linq.Expressions.xml",
"ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
"ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
]
},
"System.Linq.Parallel/4.0.1": {
"sha512": "rU0mLIfq46Q7M3CRPq6or8wdxJpWSSvoD6dMAsp4NJXPvEvXMxtwI9jcJ25TN5jrjx1h0bYdIjvqtWDz3/oi7w==",
"type": "package",
"path": "System.Linq.Parallel/4.0.1",
"files": [
"System.Linq.Parallel.4.0.1.nupkg.sha512",
"System.Linq.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Linq.Parallel.dll",
"lib/netstandard1.3/System.Linq.Parallel.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Linq.Parallel.dll",
"ref/netcore50/System.Linq.Parallel.xml",
"ref/netcore50/de/System.Linq.Parallel.xml",
"ref/netcore50/es/System.Linq.Parallel.xml",
"ref/netcore50/fr/System.Linq.Parallel.xml",
"ref/netcore50/it/System.Linq.Parallel.xml",
"ref/netcore50/ja/System.Linq.Parallel.xml",
"ref/netcore50/ko/System.Linq.Parallel.xml",
"ref/netcore50/ru/System.Linq.Parallel.xml",
"ref/netcore50/zh-hans/System.Linq.Parallel.xml",
"ref/netcore50/zh-hant/System.Linq.Parallel.xml",
"ref/netstandard1.1/System.Linq.Parallel.dll",
"ref/netstandard1.1/System.Linq.Parallel.xml",
"ref/netstandard1.1/de/System.Linq.Parallel.xml",
"ref/netstandard1.1/es/System.Linq.Parallel.xml",
"ref/netstandard1.1/fr/System.Linq.Parallel.xml",
"ref/netstandard1.1/it/System.Linq.Parallel.xml",
"ref/netstandard1.1/ja/System.Linq.Parallel.xml",
"ref/netstandard1.1/ko/System.Linq.Parallel.xml",
"ref/netstandard1.1/ru/System.Linq.Parallel.xml",
"ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml",
"ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Linq.Queryable/4.0.1": {
"sha512": "f/xa103VzDwMZzgHhs1zXlN/wIATqlDgXOfkOOHkmKy/aCB8ATR1QTGG4GWVuCjZ/BmitBVuDryUbrTRcPcHkw==",
"type": "package",
"path": "System.Linq.Queryable/4.0.1",
"files": [
"System.Linq.Queryable.4.0.1.nupkg.sha512",
"System.Linq.Queryable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/monoandroid10/_._",
"lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Linq.Queryable.dll",
"lib/netstandard1.3/System.Linq.Queryable.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/monoandroid10/_._",
"ref/monotouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Linq.Queryable.dll",
"ref/netcore50/System.Linq.Queryable.xml",
"ref/netcore50/de/System.Linq.Queryable.xml",
"ref/netcore50/es/System.Linq.Queryable.xml",
"ref/netcore50/fr/System.Linq.Queryable.xml",
"ref/netcore50/it/System.Linq.Queryable.xml",
"ref/netcore50/ja/System.Linq.Queryable.xml",
"ref/netcore50/ko/System.Linq.Queryable.xml",
"ref/netcore50/ru/System.Linq.Queryable.xml",
"ref/netcore50/zh-hans/System.Linq.Queryable.xml",
"ref/netcore50/zh-hant/System.Linq.Queryable.xml",
"ref/netstandard1.0/System.Linq.Queryable.dll",
"ref/netstandard1.0/System.Linq.Queryable.xml",
"ref/netstandard1.0/de/System.Linq.Queryable.xml",
"ref/netstandard1.0/es/System.Linq.Queryable.xml",
"ref/netstandard1.0/fr/System.Linq.Queryable.xml",
"ref/netstandard1.0/it/System.Linq.Queryable.xml",
"ref/netstandard1.0/ja/System.Linq.Queryable.xml",
"ref/netstandard1.0/ko/System.Linq.Queryable.xml",
"ref/netstandard1.0/ru/System.Linq.Queryable.xml",
"ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
"ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.Http/4.1.0": {
"sha512": "L64DHGDyGYQkprfGNcQoAZKUucEyfS+5SuYl/XlL4W37SNU9gwC2oYu5/zLymf3nDgPYL4xnyk2oyDIIF/MHOg==",
"type": "package",
"path": "System.Net.Http/4.1.0",
"files": [
"System.Net.Http.4.1.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/Xamarinmac20/_._",
"lib/monoandroid10/_._",
"lib/monotouch10/_._",
"lib/net45/_._",
"lib/net46/System.Net.Http.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/Xamarinmac20/_._",
"ref/monoandroid10/_._",
"ref/monotouch10/_._",
"ref/net45/_._",
"ref/net46/System.Net.Http.dll",
"ref/net46/System.Net.Http.xml",
"ref/net46/de/System.Net.Http.xml",
"ref/net46/es/System.Net.Http.xml",
"ref/net46/fr/System.Net.Http.xml",
"ref/net46/it/System.Net.Http.xml",
"ref/net46/ja/System.Net.Http.xml",
"ref/net46/ko/System.Net.Http.xml",
"ref/net46/ru/System.Net.Http.xml",
"ref/net46/zh-hans/System.Net.Http.xml",
"ref/net46/zh-hant/System.Net.Http.xml",
"ref/netcore50/System.Net.Http.dll",
"ref/netcore50/System.Net.Http.xml",
"ref/netcore50/de/System.Net.Http.xml",
"ref/netcore50/es/System.Net.Http.xml",
"ref/netcore50/fr/System.Net.Http.xml",
"ref/netcore50/it/System.Net.Http.xml",
"ref/netcore50/ja/System.Net.Http.xml",
"ref/netcore50/ko/System.Net.Http.xml",
"ref/netcore50/ru/System.Net.Http.xml",
"ref/netcore50/zh-hans/System.Net.Http.xml",
"ref/netcore50/zh-hant/System.Net.Http.xml",
"ref/netstandard1.1/System.Net.Http.dll",
"ref/netstandard1.1/System.Net.Http.xml",
"ref/netstandard1.1/de/System.Net.Http.xml",
"ref/netstandard1.1/es/System.Net.Http.xml",
"ref/netstandard1.1/fr/System.Net.Http.xml",
"ref/netstandard1.1/it/System.Net.Http.xml",
"ref/netstandard1.1/ja/System.Net.Http.xml",
"ref/netstandard1.1/ko/System.Net.Http.xml",
"ref/netstandard1.1/ru/System.Net.Http.xml",
"ref/netstandard1.1/zh-hans/System.Net.Http.xml",
"ref/netstandard1.1/zh-hant/System.Net.Http.xml",
"ref/netstandard1.3/System.Net.Http.dll",
"ref/netstandard1.3/System.Net.Http.xml",
"ref/netstandard1.3/de/System.Net.Http.xml",
"ref/netstandard1.3/es/System.Net.Http.xml",
"ref/netstandard1.3/fr/System.Net.Http.xml",
"ref/netstandard1.3/it/System.Net.Http.xml",
"ref/netstandard1.3/ja/System.Net.Http.xml",
"ref/netstandard1.3/ko/System.Net.Http.xml",
"ref/netstandard1.3/ru/System.Net.Http.xml",
"ref/netstandard1.3/zh-hans/System.Net.Http.xml",
"ref/netstandard1.3/zh-hant/System.Net.Http.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
"runtimes/win/lib/net46/System.Net.Http.dll",
"runtimes/win/lib/netcore50/System.Net.Http.dll",
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
"System.Net.Http.Rtc/4.0.1": {
"sha512": "o2AlTAvlZOc0dRUpmr379G57VUjSQ+JO7X2vIduaV+zReroM7WVwvtg6q1tGBrT4aVFvqWPDavWuBgSMTwugyw==",
"type": "package",
"files": [
"System.Net.Http.Rtc.4.0.1.nupkg.sha512",
"System.Net.Http.Rtc.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/win8/_._",
"ref/netcore50/System.Net.Http.Rtc.dll",
"ref/netcore50/System.Net.Http.Rtc.xml",
"ref/netcore50/de/System.Net.Http.Rtc.xml",
"ref/netcore50/es/System.Net.Http.Rtc.xml",
"ref/netcore50/fr/System.Net.Http.Rtc.xml",
"ref/netcore50/it/System.Net.Http.Rtc.xml",
"ref/netcore50/ja/System.Net.Http.Rtc.xml",
"ref/netcore50/ko/System.Net.Http.Rtc.xml",
"ref/netcore50/ru/System.Net.Http.Rtc.xml",
"ref/netcore50/zh-hans/System.Net.Http.Rtc.xml",
"ref/netcore50/zh-hant/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/System.Net.Http.Rtc.dll",
"ref/netstandard1.1/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/de/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/es/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/fr/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/it/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/ja/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/ko/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/ru/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/zh-hans/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/zh-hant/System.Net.Http.Rtc.xml",
"ref/win8/_._",
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll"
]
},
"System.Net.NameResolution/4.0.0": {
"sha512": "rfmciwKXK+hb+dhSiNIUhCS6se+414wzsAGe0ZljzZAEwcGHg4sY1aA0YUP8i549TAPXHHOFjFH805UYCj3+GQ==",
"type": "package",
"path": "System.Net.NameResolution/4.0.0",
"files": [
"System.Net.NameResolution.4.0.0.nupkg.sha512",
"System.Net.NameResolution.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.NameResolution.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.NameResolution.dll",
"ref/netstandard1.3/System.Net.NameResolution.dll",
"ref/netstandard1.3/System.Net.NameResolution.xml",
"ref/netstandard1.3/de/System.Net.NameResolution.xml",
"ref/netstandard1.3/es/System.Net.NameResolution.xml",
"ref/netstandard1.3/fr/System.Net.NameResolution.xml",
"ref/netstandard1.3/it/System.Net.NameResolution.xml",
"ref/netstandard1.3/ja/System.Net.NameResolution.xml",
"ref/netstandard1.3/ko/System.Net.NameResolution.xml",
"ref/netstandard1.3/ru/System.Net.NameResolution.xml",
"ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
"ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
"runtimes/win/lib/net46/System.Net.NameResolution.dll",
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
]
},
"System.Net.NetworkInformation/4.1.0": {
"sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
"type": "package",
"files": [
"System.Net.NetworkInformation.4.1.0.nupkg.sha512",
"System.Net.NetworkInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.Net.NetworkInformation.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.Net.NetworkInformation.dll",
"ref/netcore50/System.Net.NetworkInformation.dll",
"ref/netcore50/System.Net.NetworkInformation.xml",
"ref/netcore50/de/System.Net.NetworkInformation.xml",
"ref/netcore50/es/System.Net.NetworkInformation.xml",
"ref/netcore50/fr/System.Net.NetworkInformation.xml",
"ref/netcore50/it/System.Net.NetworkInformation.xml",
"ref/netcore50/ja/System.Net.NetworkInformation.xml",
"ref/netcore50/ko/System.Net.NetworkInformation.xml",
"ref/netcore50/ru/System.Net.NetworkInformation.xml",
"ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
"ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/System.Net.NetworkInformation.dll",
"ref/netstandard1.0/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/System.Net.NetworkInformation.dll",
"ref/netstandard1.3/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
"runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
"runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
"runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
]
},
"System.Net.Primitives/4.0.11": {
"sha512": "jsRO34LzQYAP3cOsi8wfq2recVB7MVa3KxXW8pRO3KT3nJ9YErSq7BcFvZUxpq0gUXoaqQS+D0McoPSkne9ODQ==",
"type": "package",
"path": "System.Net.Primitives/4.0.11",
"files": [
"System.Net.Primitives.4.0.11.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Net.Primitives.dll",
"ref/netcore50/System.Net.Primitives.xml",
"ref/netcore50/de/System.Net.Primitives.xml",
"ref/netcore50/es/System.Net.Primitives.xml",
"ref/netcore50/fr/System.Net.Primitives.xml",
"ref/netcore50/it/System.Net.Primitives.xml",
"ref/netcore50/ja/System.Net.Primitives.xml",
"ref/netcore50/ko/System.Net.Primitives.xml",
"ref/netcore50/ru/System.Net.Primitives.xml",
"ref/netcore50/zh-hans/System.Net.Primitives.xml",
"ref/netcore50/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.0/System.Net.Primitives.dll",
"ref/netstandard1.0/System.Net.Primitives.xml",
"ref/netstandard1.0/de/System.Net.Primitives.xml",
"ref/netstandard1.0/es/System.Net.Primitives.xml",
"ref/netstandard1.0/fr/System.Net.Primitives.xml",
"ref/netstandard1.0/it/System.Net.Primitives.xml",
"ref/netstandard1.0/ja/System.Net.Primitives.xml",
"ref/netstandard1.0/ko/System.Net.Primitives.xml",
"ref/netstandard1.0/ru/System.Net.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.1/System.Net.Primitives.dll",
"ref/netstandard1.1/System.Net.Primitives.xml",
"ref/netstandard1.1/de/System.Net.Primitives.xml",
"ref/netstandard1.1/es/System.Net.Primitives.xml",
"ref/netstandard1.1/fr/System.Net.Primitives.xml",
"ref/netstandard1.1/it/System.Net.Primitives.xml",
"ref/netstandard1.1/ja/System.Net.Primitives.xml",
"ref/netstandard1.1/ko/System.Net.Primitives.xml",
"ref/netstandard1.1/ru/System.Net.Primitives.xml",
"ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.3/System.Net.Primitives.dll",
"ref/netstandard1.3/System.Net.Primitives.xml",
"ref/netstandard1.3/de/System.Net.Primitives.xml",
"ref/netstandard1.3/es/System.Net.Primitives.xml",
"ref/netstandard1.3/fr/System.Net.Primitives.xml",
"ref/netstandard1.3/it/System.Net.Primitives.xml",
"ref/netstandard1.3/ja/System.Net.Primitives.xml",
"ref/netstandard1.3/ko/System.Net.Primitives.xml",
"ref/netstandard1.3/ru/System.Net.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.Requests/4.0.11": {
"sha512": "d9cMsfzdDKOIpho6HSHOMtn3HNdTQALql+Oc4KV3EIiFd7h5iH2xsCQ5AVJIfvLMmg81RmalUfkFHCH4WHMWKw==",
"type": "package",
"path": "System.Net.Requests/4.0.11",
"files": [
"System.Net.Requests.4.0.11.nupkg.sha512",
"System.Net.Requests.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/_._",
"ref/netcore50/System.Net.Requests.dll",
"ref/netcore50/System.Net.Requests.xml",
"ref/netcore50/de/System.Net.Requests.xml",
"ref/netcore50/es/System.Net.Requests.xml",
"ref/netcore50/fr/System.Net.Requests.xml",
"ref/netcore50/it/System.Net.Requests.xml",
"ref/netcore50/ja/System.Net.Requests.xml",
"ref/netcore50/ko/System.Net.Requests.xml",
"ref/netcore50/ru/System.Net.Requests.xml",
"ref/netcore50/zh-hans/System.Net.Requests.xml",
"ref/netcore50/zh-hant/System.Net.Requests.xml",
"ref/netstandard1.0/System.Net.Requests.dll",
"ref/netstandard1.0/System.Net.Requests.xml",
"ref/netstandard1.0/de/System.Net.Requests.xml",
"ref/netstandard1.0/es/System.Net.Requests.xml",
"ref/netstandard1.0/fr/System.Net.Requests.xml",
"ref/netstandard1.0/it/System.Net.Requests.xml",
"ref/netstandard1.0/ja/System.Net.Requests.xml",
"ref/netstandard1.0/ko/System.Net.Requests.xml",
"ref/netstandard1.0/ru/System.Net.Requests.xml",
"ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
"ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
"ref/netstandard1.1/System.Net.Requests.dll",
"ref/netstandard1.1/System.Net.Requests.xml",
"ref/netstandard1.1/de/System.Net.Requests.xml",
"ref/netstandard1.1/es/System.Net.Requests.xml",
"ref/netstandard1.1/fr/System.Net.Requests.xml",
"ref/netstandard1.1/it/System.Net.Requests.xml",
"ref/netstandard1.1/ja/System.Net.Requests.xml",
"ref/netstandard1.1/ko/System.Net.Requests.xml",
"ref/netstandard1.1/ru/System.Net.Requests.xml",
"ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
"ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
"ref/netstandard1.3/System.Net.Requests.dll",
"ref/netstandard1.3/System.Net.Requests.xml",
"ref/netstandard1.3/de/System.Net.Requests.xml",
"ref/netstandard1.3/es/System.Net.Requests.xml",
"ref/netstandard1.3/fr/System.Net.Requests.xml",
"ref/netstandard1.3/it/System.Net.Requests.xml",
"ref/netstandard1.3/ja/System.Net.Requests.xml",
"ref/netstandard1.3/ko/System.Net.Requests.xml",
"ref/netstandard1.3/ru/System.Net.Requests.xml",
"ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
"ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
"runtimes/win/lib/net46/_._",
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
]
},
"System.Net.Sockets/4.1.0": {
"sha512": "UyAPV214uSwvR3FmMILzc9OdWFy+ZGOGQJmCulgUkLVKvhdvWzIGqPK16PfZ1elvF0xLKTCA79ZDLlcZIlTsKg==",
"type": "package",
"path": "System.Net.Sockets/4.1.0",
"files": [
"System.Net.Sockets.4.1.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.Sockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.Sockets.dll",
"ref/netstandard1.3/System.Net.Sockets.dll",
"ref/netstandard1.3/System.Net.Sockets.xml",
"ref/netstandard1.3/de/System.Net.Sockets.xml",
"ref/netstandard1.3/es/System.Net.Sockets.xml",
"ref/netstandard1.3/fr/System.Net.Sockets.xml",
"ref/netstandard1.3/it/System.Net.Sockets.xml",
"ref/netstandard1.3/ja/System.Net.Sockets.xml",
"ref/netstandard1.3/ko/System.Net.Sockets.xml",
"ref/netstandard1.3/ru/System.Net.Sockets.xml",
"ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
"ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.WebHeaderCollection/4.0.1": {
"sha512": "LcbOpgkH52Rx+DpbuxhI9DYHHtP+/OzLT5NXdkrTmq4MUiaO+2fQocCiBB593+N9D2R79swiimHbxUeomQNH6A==",
"type": "package",
"path": "System.Net.WebHeaderCollection/4.0.1",
"files": [
"System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
"System.Net.WebHeaderCollection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/_._",
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/_._",
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
"ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.WebSockets/4.0.0": {
"sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
"type": "package",
"files": [
"System.Net.WebSockets.4.0.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.WebSockets.dll",
"lib/netstandard1.3/System.Net.WebSockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.WebSockets.dll",
"ref/netstandard1.3/System.Net.WebSockets.dll",
"ref/netstandard1.3/System.Net.WebSockets.xml",
"ref/netstandard1.3/de/System.Net.WebSockets.xml",
"ref/netstandard1.3/es/System.Net.WebSockets.xml",
"ref/netstandard1.3/fr/System.Net.WebSockets.xml",
"ref/netstandard1.3/it/System.Net.WebSockets.xml",
"ref/netstandard1.3/ja/System.Net.WebSockets.xml",
"ref/netstandard1.3/ko/System.Net.WebSockets.xml",
"ref/netstandard1.3/ru/System.Net.WebSockets.xml",
"ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml",
"ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.WebSockets.Client/4.0.0": {
"sha512": "GY5h9cn0ZVsG4ORQqMytTldrqxet2RC2CSEsgWGf4XNW5jhL5SxzcUZph03xbZsgn7K3qMr+Rq+gkbJNI+FEXg==",
"type": "package",
"files": [
"System.Net.WebSockets.Client.4.0.0.nupkg.sha512",
"System.Net.WebSockets.Client.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.WebSockets.Client.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.WebSockets.Client.dll",
"ref/netstandard1.3/System.Net.WebSockets.Client.dll",
"ref/netstandard1.3/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/de/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/es/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/fr/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/it/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/ja/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/ko/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/ru/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/zh-hans/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/zh-hant/System.Net.WebSockets.Client.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll",
"runtimes/win/lib/net46/System.Net.WebSockets.Client.dll",
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll",
"runtimes/win/lib/netstandard1.3/System.Net.WebSockets.Client.dll"
]
},
"System.Numerics.Vectors/4.1.1": {
"sha512": "VYujDrypAsX61KS3RRJwYf6SD+9b4Ct3FX6bGn0apvsrBiAIoMDcl6HN2zt1AkKePCybQ74+fIVIWn12C6N+TQ==",
"type": "package",
"path": "System.Numerics.Vectors/4.1.1",
"files": [
"System.Numerics.Vectors.4.1.1.nupkg.sha512",
"System.Numerics.Vectors.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Numerics.Vectors.dll",
"lib/net46/System.Numerics.Vectors.xml",
"lib/netstandard1.0/System.Numerics.Vectors.dll",
"lib/netstandard1.0/System.Numerics.Vectors.xml",
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Numerics.Vectors.dll",
"ref/net46/System.Numerics.Vectors.xml",
"ref/netstandard1.0/System.Numerics.Vectors.dll",
"ref/netstandard1.0/System.Numerics.Vectors.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"sha512": "T4RJY6Z+0AuynCnMy8VMyP1g2mrB/OGubx5Og6d8ve6LkVLPrpiGtV5iMJeBv7lTDF1zhviILg+LecgKBjkWag==",
"type": "package",
"files": [
"System.Numerics.Vectors.WindowsRuntime.4.0.1.nupkg.sha512",
"System.Numerics.Vectors.WindowsRuntime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll"
]
},
"System.ObjectModel/4.0.12": {
"sha512": "7jOMCnM279XuLEoLi/bXRG8AYM5HSZK/N/XgGuQ1K36S+0Vnk7UHMUSnUlLobQAq87SDDuBRqSvq4ejhSoxDPQ==",
"type": "package",
"path": "System.ObjectModel/4.0.12",
"files": [
"System.ObjectModel.4.0.12.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.ObjectModel.dll",
"lib/netstandard1.3/System.ObjectModel.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.ObjectModel.dll",
"ref/netcore50/System.ObjectModel.xml",
"ref/netcore50/de/System.ObjectModel.xml",
"ref/netcore50/es/System.ObjectModel.xml",
"ref/netcore50/fr/System.ObjectModel.xml",
"ref/netcore50/it/System.ObjectModel.xml",
"ref/netcore50/ja/System.ObjectModel.xml",
"ref/netcore50/ko/System.ObjectModel.xml",
"ref/netcore50/ru/System.ObjectModel.xml",
"ref/netcore50/zh-hans/System.ObjectModel.xml",
"ref/netcore50/zh-hant/System.ObjectModel.xml",
"ref/netstandard1.0/System.ObjectModel.dll",
"ref/netstandard1.0/System.ObjectModel.xml",
"ref/netstandard1.0/de/System.ObjectModel.xml",
"ref/netstandard1.0/es/System.ObjectModel.xml",
"ref/netstandard1.0/fr/System.ObjectModel.xml",
"ref/netstandard1.0/it/System.ObjectModel.xml",
"ref/netstandard1.0/ja/System.ObjectModel.xml",
"ref/netstandard1.0/ko/System.ObjectModel.xml",
"ref/netstandard1.0/ru/System.ObjectModel.xml",
"ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
"ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
"ref/netstandard1.3/System.ObjectModel.dll",
"ref/netstandard1.3/System.ObjectModel.xml",
"ref/netstandard1.3/de/System.ObjectModel.xml",
"ref/netstandard1.3/es/System.ObjectModel.xml",
"ref/netstandard1.3/fr/System.ObjectModel.xml",
"ref/netstandard1.3/it/System.ObjectModel.xml",
"ref/netstandard1.3/ja/System.ObjectModel.xml",
"ref/netstandard1.3/ko/System.ObjectModel.xml",
"ref/netstandard1.3/ru/System.ObjectModel.xml",
"ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
"ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Private.DataContractSerialization/4.1.1": {
"sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
"type": "package",
"files": [
"System.Private.DataContractSerialization.4.1.1.nupkg.sha512",
"System.Private.DataContractSerialization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.3/System.Private.DataContractSerialization.dll",
"ref/netstandard/_._",
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll"
]
},
"System.Private.ServiceModel/4.1.0": {
"sha512": "/QviVqIgta03ms7IDFALHCJOQCANZ1lILobf/OoLzdphHN40M3r6zqso2NsKvvSV7rJus+QLLWS/q33XGIybrQ==",
"type": "package",
"files": [
"System.Private.ServiceModel.4.1.0.nupkg.sha512",
"System.Private.ServiceModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
"runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll"
]
},
"System.Private.Uri/4.0.1": {
"sha512": "OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==",
"type": "package",
"files": [
"System.Private.Uri.4.0.1.nupkg.sha512",
"System.Private.Uri.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._"
]
},
"System.Reflection/4.1.0": {
"sha512": "IFXkYDIDLbPNUt7EApWyeEIx1HiAj63dDP74r5V/dgiEv9v97M/ttlmQzGCsyyCCUzM1ZZU9wYCGSYY0yHvU+Q==",
"type": "package",
"path": "System.Reflection/4.1.0",
"files": [
"System.Reflection.4.1.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Reflection.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Reflection.dll",
"ref/netcore50/System.Reflection.dll",
"ref/netcore50/System.Reflection.xml",
"ref/netcore50/de/System.Reflection.xml",
"ref/netcore50/es/System.Reflection.xml",
"ref/netcore50/fr/System.Reflection.xml",
"ref/netcore50/it/System.Reflection.xml",
"ref/netcore50/ja/System.Reflection.xml",
"ref/netcore50/ko/System.Reflection.xml",
"ref/netcore50/ru/System.Reflection.xml",
"ref/netcore50/zh-hans/System.Reflection.xml",
"ref/netcore50/zh-hant/System.Reflection.xml",
"ref/netstandard1.0/System.Reflection.dll",
"ref/netstandard1.0/System.Reflection.xml",
"ref/netstandard1.0/de/System.Reflection.xml",
"ref/netstandard1.0/es/System.Reflection.xml",
"ref/netstandard1.0/fr/System.Reflection.xml",
"ref/netstandard1.0/it/System.Reflection.xml",
"ref/netstandard1.0/ja/System.Reflection.xml",
"ref/netstandard1.0/ko/System.Reflection.xml",
"ref/netstandard1.0/ru/System.Reflection.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.xml",
"ref/netstandard1.3/System.Reflection.dll",
"ref/netstandard1.3/System.Reflection.xml",
"ref/netstandard1.3/de/System.Reflection.xml",
"ref/netstandard1.3/es/System.Reflection.xml",
"ref/netstandard1.3/fr/System.Reflection.xml",
"ref/netstandard1.3/it/System.Reflection.xml",
"ref/netstandard1.3/ja/System.Reflection.xml",
"ref/netstandard1.3/ko/System.Reflection.xml",
"ref/netstandard1.3/ru/System.Reflection.xml",
"ref/netstandard1.3/zh-hans/System.Reflection.xml",
"ref/netstandard1.3/zh-hant/System.Reflection.xml",
"ref/netstandard1.5/System.Reflection.dll",
"ref/netstandard1.5/System.Reflection.xml",
"ref/netstandard1.5/de/System.Reflection.xml",
"ref/netstandard1.5/es/System.Reflection.xml",
"ref/netstandard1.5/fr/System.Reflection.xml",
"ref/netstandard1.5/it/System.Reflection.xml",
"ref/netstandard1.5/ja/System.Reflection.xml",
"ref/netstandard1.5/ko/System.Reflection.xml",
"ref/netstandard1.5/ru/System.Reflection.xml",
"ref/netstandard1.5/zh-hans/System.Reflection.xml",
"ref/netstandard1.5/zh-hant/System.Reflection.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Reflection.Context/4.0.1": {
"sha512": "nU4qA/juVb7OCAqLdWAnxeyTjs5tbwQmtF6ep1gTVSa79aGF1J5orD88WHQmNhgVbgfhSGPnz4+d94o/iBXZ7g==",
"type": "package",
"files": [
"System.Reflection.Context.4.0.1.nupkg.sha512",
"System.Reflection.Context.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Context.dll",
"lib/netstandard1.1/System.Reflection.Context.dll",
"lib/portable-net45+win8/_._",
"lib/win8/_._",
"ref/net45/_._",
"ref/netcore50/System.Reflection.Context.dll",
"ref/netcore50/System.Reflection.Context.xml",
"ref/netcore50/de/System.Reflection.Context.xml",
"ref/netcore50/es/System.Reflection.Context.xml",
"ref/netcore50/fr/System.Reflection.Context.xml",
"ref/netcore50/it/System.Reflection.Context.xml",
"ref/netcore50/ja/System.Reflection.Context.xml",
"ref/netcore50/ko/System.Reflection.Context.xml",
"ref/netcore50/ru/System.Reflection.Context.xml",
"ref/netcore50/zh-hans/System.Reflection.Context.xml",
"ref/netcore50/zh-hant/System.Reflection.Context.xml",
"ref/netstandard1.1/System.Reflection.Context.dll",
"ref/netstandard1.1/System.Reflection.Context.xml",
"ref/netstandard1.1/de/System.Reflection.Context.xml",
"ref/netstandard1.1/es/System.Reflection.Context.xml",
"ref/netstandard1.1/fr/System.Reflection.Context.xml",
"ref/netstandard1.1/it/System.Reflection.Context.xml",
"ref/netstandard1.1/ja/System.Reflection.Context.xml",
"ref/netstandard1.1/ko/System.Reflection.Context.xml",
"ref/netstandard1.1/ru/System.Reflection.Context.xml",
"ref/netstandard1.1/zh-hans/System.Reflection.Context.xml",
"ref/netstandard1.1/zh-hant/System.Reflection.Context.xml",
"ref/portable-net45+win8/_._",
"ref/win8/_._"
]
},
"System.Reflection.DispatchProxy/4.0.1": {
"sha512": "4efmEZM25p9AiTekmWSvwKLaEVKORi4SsL1Qa66jY9nIRBI00KRTI7mJdgKXCDjI0JmkncUakPBWfNzIo4eRkg==",
"type": "package",
"path": "System.Reflection.DispatchProxy/4.0.1",
"files": [
"System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
"System.Reflection.DispatchProxy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
"ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
]
},
"System.Reflection.Emit/4.0.1": {
"sha512": "Op9FobZUg2561W/CL0TV89SLUAEzViA6QEojV26ZmW01B92GAM6AMc7uXlqMXL6ijvmzK3cB6hNQ0AT52v25wQ==",
"type": "package",
"path": "System.Reflection.Emit/4.0.1",
"files": [
"System.Reflection.Emit.4.0.1.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
"ref/netstandard1.1/System.Reflection.Emit.xml",
"ref/netstandard1.1/de/System.Reflection.Emit.xml",
"ref/netstandard1.1/es/System.Reflection.Emit.xml",
"ref/netstandard1.1/fr/System.Reflection.Emit.xml",
"ref/netstandard1.1/it/System.Reflection.Emit.xml",
"ref/netstandard1.1/ja/System.Reflection.Emit.xml",
"ref/netstandard1.1/ko/System.Reflection.Emit.xml",
"ref/netstandard1.1/ru/System.Reflection.Emit.xml",
"ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
"ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
"ref/xamarinmac20/_._"
]
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"sha512": "yxiJWtM/c5r4aY7HZuWcO9IUPW/bN5QrxqUf4x62Xwtm6bj2p2HX+hcqcF/TATqmKJidlwaH6V7RbAqq/z+ACA==",
"type": "package",
"path": "System.Reflection.Emit.ILGeneration/4.0.1",
"files": [
"System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"sha512": "H/nqtd+zhmqKGyjgCgm4xC9XjnJtsN78JuIG1lWFcXWBe+nuo8d2gmHTgNIyV6KpUkjJ55QeQ3sFbUga49bBiQ==",
"type": "package",
"path": "System.Reflection.Emit.Lightweight/4.0.1",
"files": [
"System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
"System.Reflection.Extensions/4.0.1": {
"sha512": "aC0iBvp77nThKAy9RAnZoLquWovp5D0H8DK7Mjb2ON6pPaNrS6/Po+qfAdaM0q9bjLpmt1W7JQ6QlLVpWQszZg==",
"type": "package",
"path": "System.Reflection.Extensions/4.0.1",
"files": [
"System.Reflection.Extensions.4.0.1.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Reflection.Extensions.dll",
"ref/netcore50/System.Reflection.Extensions.xml",
"ref/netcore50/de/System.Reflection.Extensions.xml",
"ref/netcore50/es/System.Reflection.Extensions.xml",
"ref/netcore50/fr/System.Reflection.Extensions.xml",
"ref/netcore50/it/System.Reflection.Extensions.xml",
"ref/netcore50/ja/System.Reflection.Extensions.xml",
"ref/netcore50/ko/System.Reflection.Extensions.xml",
"ref/netcore50/ru/System.Reflection.Extensions.xml",
"ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
"ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
"ref/netstandard1.0/System.Reflection.Extensions.dll",
"ref/netstandard1.0/System.Reflection.Extensions.xml",
"ref/netstandard1.0/de/System.Reflection.Extensions.xml",
"ref/netstandard1.0/es/System.Reflection.Extensions.xml",
"ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
"ref/netstandard1.0/it/System.Reflection.Extensions.xml",
"ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
"ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
"ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Reflection.Metadata/1.3.0": {
"sha512": "sruaBTiGAHKrEbHRC/lkeXcjuZ1eu2hndmmhkUidqAZsG28dewEu7sq/k4dKd+v0m3Zctkm4onEHqc85InlMwQ==",
"type": "package",
"path": "System.Reflection.Metadata/1.3.0",
"files": [
"System.Reflection.Metadata.1.3.0.nupkg.sha512",
"System.Reflection.Metadata.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.1/System.Reflection.Metadata.dll",
"lib/netstandard1.1/System.Reflection.Metadata.xml",
"lib/portable-net45+win8/System.Reflection.Metadata.dll",
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
"System.Reflection.Primitives/4.0.1": {
"sha512": "tUcC/Kjs4ZvV2G5tKTNuKHPryTXR3eAyzDXPvhaHDeb2ZZS/XFMrdWG6KY/3oWwEhMrm85WO2Q4cQq0ukR3jYg==",
"type": "package",
"path": "System.Reflection.Primitives/4.0.1",
"files": [
"System.Reflection.Primitives.4.0.1.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Reflection.Primitives.dll",
"ref/netcore50/System.Reflection.Primitives.xml",
"ref/netcore50/de/System.Reflection.Primitives.xml",
"ref/netcore50/es/System.Reflection.Primitives.xml",
"ref/netcore50/fr/System.Reflection.Primitives.xml",
"ref/netcore50/it/System.Reflection.Primitives.xml",
"ref/netcore50/ja/System.Reflection.Primitives.xml",
"ref/netcore50/ko/System.Reflection.Primitives.xml",
"ref/netcore50/ru/System.Reflection.Primitives.xml",
"ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
"ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
"ref/netstandard1.0/System.Reflection.Primitives.dll",
"ref/netstandard1.0/System.Reflection.Primitives.xml",
"ref/netstandard1.0/de/System.Reflection.Primitives.xml",
"ref/netstandard1.0/es/System.Reflection.Primitives.xml",
"ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
"ref/netstandard1.0/it/System.Reflection.Primitives.xml",
"ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
"ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
"ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Reflection.TypeExtensions/4.1.0": {
"sha512": "j2APlYMPkQCnJf9LK7ytYWzTxlOui9VQCnJY/TGobElEdvszhklyRbXonzf9iZgFq9douHCDSWB1IxZbfIbfPg==",
"type": "package",
"path": "System.Reflection.TypeExtensions/4.1.0",
"files": [
"System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Reflection.TypeExtensions.dll",
"lib/net462/System.Reflection.TypeExtensions.dll",
"lib/netcore50/System.Reflection.TypeExtensions.dll",
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Reflection.TypeExtensions.dll",
"ref/net462/System.Reflection.TypeExtensions.dll",
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
"ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
"ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
"System.Resources.ResourceManager/4.0.1": {
"sha512": "0CcQOn4WItnjon4GNnbCEKtn6+9Pw3J8FfQN1qAY/B/wC/ym/AO/JY0cQv7plDPDziP8aAlu5gWbC9cfRYRDtg==",
"type": "package",
"path": "System.Resources.ResourceManager/4.0.1",
"files": [
"System.Resources.ResourceManager.4.0.1.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Resources.ResourceManager.dll",
"ref/netcore50/System.Resources.ResourceManager.xml",
"ref/netcore50/de/System.Resources.ResourceManager.xml",
"ref/netcore50/es/System.Resources.ResourceManager.xml",
"ref/netcore50/fr/System.Resources.ResourceManager.xml",
"ref/netcore50/it/System.Resources.ResourceManager.xml",
"ref/netcore50/ja/System.Resources.ResourceManager.xml",
"ref/netcore50/ko/System.Resources.ResourceManager.xml",
"ref/netcore50/ru/System.Resources.ResourceManager.xml",
"ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
"ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/System.Resources.ResourceManager.dll",
"ref/netstandard1.0/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime/4.1.0": {
"sha512": "dNUxQcyAFhic0cnxJtcYgYmcqgp7PUXDZK5uvqUxW6CLEBwBt4/i4/tRYBBLw5WXoUoGtBrLQ2SjbDy1xQGB5Q==",
"type": "package",
"path": "System.Runtime/4.1.0",
"files": [
"System.Runtime.4.1.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.dll",
"lib/portable-net45+win8+wp80+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.dll",
"ref/netcore50/System.Runtime.dll",
"ref/netcore50/System.Runtime.xml",
"ref/netcore50/de/System.Runtime.xml",
"ref/netcore50/es/System.Runtime.xml",
"ref/netcore50/fr/System.Runtime.xml",
"ref/netcore50/it/System.Runtime.xml",
"ref/netcore50/ja/System.Runtime.xml",
"ref/netcore50/ko/System.Runtime.xml",
"ref/netcore50/ru/System.Runtime.xml",
"ref/netcore50/zh-hans/System.Runtime.xml",
"ref/netcore50/zh-hant/System.Runtime.xml",
"ref/netstandard1.0/System.Runtime.dll",
"ref/netstandard1.0/System.Runtime.xml",
"ref/netstandard1.0/de/System.Runtime.xml",
"ref/netstandard1.0/es/System.Runtime.xml",
"ref/netstandard1.0/fr/System.Runtime.xml",
"ref/netstandard1.0/it/System.Runtime.xml",
"ref/netstandard1.0/ja/System.Runtime.xml",
"ref/netstandard1.0/ko/System.Runtime.xml",
"ref/netstandard1.0/ru/System.Runtime.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.xml",
"ref/netstandard1.2/System.Runtime.dll",
"ref/netstandard1.2/System.Runtime.xml",
"ref/netstandard1.2/de/System.Runtime.xml",
"ref/netstandard1.2/es/System.Runtime.xml",
"ref/netstandard1.2/fr/System.Runtime.xml",
"ref/netstandard1.2/it/System.Runtime.xml",
"ref/netstandard1.2/ja/System.Runtime.xml",
"ref/netstandard1.2/ko/System.Runtime.xml",
"ref/netstandard1.2/ru/System.Runtime.xml",
"ref/netstandard1.2/zh-hans/System.Runtime.xml",
"ref/netstandard1.2/zh-hant/System.Runtime.xml",
"ref/netstandard1.3/System.Runtime.dll",
"ref/netstandard1.3/System.Runtime.xml",
"ref/netstandard1.3/de/System.Runtime.xml",
"ref/netstandard1.3/es/System.Runtime.xml",
"ref/netstandard1.3/fr/System.Runtime.xml",
"ref/netstandard1.3/it/System.Runtime.xml",
"ref/netstandard1.3/ja/System.Runtime.xml",
"ref/netstandard1.3/ko/System.Runtime.xml",
"ref/netstandard1.3/ru/System.Runtime.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.xml",
"ref/netstandard1.5/System.Runtime.dll",
"ref/netstandard1.5/System.Runtime.xml",
"ref/netstandard1.5/de/System.Runtime.xml",
"ref/netstandard1.5/es/System.Runtime.xml",
"ref/netstandard1.5/fr/System.Runtime.xml",
"ref/netstandard1.5/it/System.Runtime.xml",
"ref/netstandard1.5/ja/System.Runtime.xml",
"ref/netstandard1.5/ko/System.Runtime.xml",
"ref/netstandard1.5/ru/System.Runtime.xml",
"ref/netstandard1.5/zh-hans/System.Runtime.xml",
"ref/netstandard1.5/zh-hant/System.Runtime.xml",
"ref/portable-net45+win8+wp80+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.Extensions/4.1.0": {
"sha512": "b2d+O5cdaAMydGoSm4pUuDyuhnBjyAYo5chDM6ROJ33Ow5SZEL4CdISfRCGs+AwdmaFUjflKtMsWsuID7XDYXw==",
"type": "package",
"path": "System.Runtime.Extensions/4.1.0",
"files": [
"System.Runtime.Extensions.4.1.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.Extensions.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.Extensions.dll",
"ref/netcore50/System.Runtime.Extensions.dll",
"ref/netcore50/System.Runtime.Extensions.xml",
"ref/netcore50/de/System.Runtime.Extensions.xml",
"ref/netcore50/es/System.Runtime.Extensions.xml",
"ref/netcore50/fr/System.Runtime.Extensions.xml",
"ref/netcore50/it/System.Runtime.Extensions.xml",
"ref/netcore50/ja/System.Runtime.Extensions.xml",
"ref/netcore50/ko/System.Runtime.Extensions.xml",
"ref/netcore50/ru/System.Runtime.Extensions.xml",
"ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
"ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
"ref/netstandard1.0/System.Runtime.Extensions.dll",
"ref/netstandard1.0/System.Runtime.Extensions.xml",
"ref/netstandard1.0/de/System.Runtime.Extensions.xml",
"ref/netstandard1.0/es/System.Runtime.Extensions.xml",
"ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
"ref/netstandard1.0/it/System.Runtime.Extensions.xml",
"ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
"ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
"ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
"ref/netstandard1.3/System.Runtime.Extensions.dll",
"ref/netstandard1.3/System.Runtime.Extensions.xml",
"ref/netstandard1.3/de/System.Runtime.Extensions.xml",
"ref/netstandard1.3/es/System.Runtime.Extensions.xml",
"ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
"ref/netstandard1.3/it/System.Runtime.Extensions.xml",
"ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
"ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
"ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
"ref/netstandard1.5/System.Runtime.Extensions.dll",
"ref/netstandard1.5/System.Runtime.Extensions.xml",
"ref/netstandard1.5/de/System.Runtime.Extensions.xml",
"ref/netstandard1.5/es/System.Runtime.Extensions.xml",
"ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
"ref/netstandard1.5/it/System.Runtime.Extensions.xml",
"ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
"ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
"ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
"ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
"ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.Handles/4.0.1": {
"sha512": "39CAK1kWvFuZV+OvwMZrYiErBzhtOBWgv9ZWTOPn5a2ECMSpR0KVAA5rdlUDra66tNm1GuLDl4KOCWl91MJ5Pw==",
"type": "package",
"path": "System.Runtime.Handles/4.0.1",
"files": [
"System.Runtime.Handles.4.0.1.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/_._",
"ref/netstandard1.3/System.Runtime.Handles.dll",
"ref/netstandard1.3/System.Runtime.Handles.xml",
"ref/netstandard1.3/de/System.Runtime.Handles.xml",
"ref/netstandard1.3/es/System.Runtime.Handles.xml",
"ref/netstandard1.3/fr/System.Runtime.Handles.xml",
"ref/netstandard1.3/it/System.Runtime.Handles.xml",
"ref/netstandard1.3/ja/System.Runtime.Handles.xml",
"ref/netstandard1.3/ko/System.Runtime.Handles.xml",
"ref/netstandard1.3/ru/System.Runtime.Handles.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.InteropServices/4.1.0": {
"sha512": "KmIIw0sflkqgGdp6tzb9BfNm9HFD3Ibw95MJyscumVK169nmKQaoJZA9p7gTJosuJcqNVYd/t2tbytTv6LCg0w==",
"type": "package",
"path": "System.Runtime.InteropServices/4.1.0",
"files": [
"System.Runtime.InteropServices.4.1.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
"ref/netcore50/es/System.Runtime.InteropServices.xml",
"ref/netcore50/fr/System.Runtime.InteropServices.xml",
"ref/netcore50/it/System.Runtime.InteropServices.xml",
"ref/netcore50/ja/System.Runtime.InteropServices.xml",
"ref/netcore50/ko/System.Runtime.InteropServices.xml",
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/System.Runtime.InteropServices.dll",
"ref/netstandard1.2/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/System.Runtime.InteropServices.dll",
"ref/netstandard1.3/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/System.Runtime.InteropServices.dll",
"ref/netstandard1.5/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"sha512": "oIIXM4w2y3MiEZEXA+RTtfPV+SZ1ymbFdWppHlUciNdNIL0/Uo3HW9q9iN2O7T7KUmRdvjA7C2Gv4exAyW4zEQ==",
"type": "package",
"files": [
"System.Runtime.InteropServices.WindowsRuntime.4.0.1.nupkg.sha512",
"System.Runtime.InteropServices.WindowsRuntime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
"lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios1/_._",
"ref/net45/_._",
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/de/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/es/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/it/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll",
"ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/de/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/es/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/it/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll"
]
},
"System.Runtime.Numerics/4.0.1": {
"sha512": "GXLieN7/+UYytbbjD8JXSAbAs8+b0Xw3gdJiqwRxdM8ObAPh6fKMVNKwV77CqY0xDPRvR3/Xq8q50EAkn5OQiA==",
"type": "package",
"path": "System.Runtime.Numerics/4.0.1",
"files": [
"System.Runtime.Numerics.4.0.1.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.Numerics.dll",
"lib/netstandard1.3/System.Runtime.Numerics.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Runtime.Numerics.dll",
"ref/netcore50/System.Runtime.Numerics.xml",
"ref/netcore50/de/System.Runtime.Numerics.xml",
"ref/netcore50/es/System.Runtime.Numerics.xml",
"ref/netcore50/fr/System.Runtime.Numerics.xml",
"ref/netcore50/it/System.Runtime.Numerics.xml",
"ref/netcore50/ja/System.Runtime.Numerics.xml",
"ref/netcore50/ko/System.Runtime.Numerics.xml",
"ref/netcore50/ru/System.Runtime.Numerics.xml",
"ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
"ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
"ref/netstandard1.1/System.Runtime.Numerics.dll",
"ref/netstandard1.1/System.Runtime.Numerics.xml",
"ref/netstandard1.1/de/System.Runtime.Numerics.xml",
"ref/netstandard1.1/es/System.Runtime.Numerics.xml",
"ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
"ref/netstandard1.1/it/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
"ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
"ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.Serialization.Json/4.0.2": {
"sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
"type": "package",
"files": [
"System.Runtime.Serialization.Json.4.0.2.nupkg.sha512",
"System.Runtime.Serialization.Json.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.Serialization.Json.dll",
"lib/netstandard1.3/System.Runtime.Serialization.Json.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Runtime.Serialization.Json.dll",
"ref/netcore50/System.Runtime.Serialization.Json.xml",
"ref/netcore50/de/System.Runtime.Serialization.Json.xml",
"ref/netcore50/es/System.Runtime.Serialization.Json.xml",
"ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
"ref/netcore50/it/System.Runtime.Serialization.Json.xml",
"ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
"ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
"ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
"ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
"ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/System.Runtime.Serialization.Json.dll",
"ref/netstandard1.0/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
"type": "package",
"files": [
"System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.Runtime.Serialization.Primitives.dll",
"lib/netcore50/System.Runtime.Serialization.Primitives.dll",
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.Runtime.Serialization.Primitives.dll",
"ref/netcore50/System.Runtime.Serialization.Primitives.dll",
"ref/netcore50/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
"ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
"System.Runtime.Serialization.Xml/4.1.1": {
"sha512": "yqfKHkWUAdI0hdDIdD9KDzluKtZ8IIqLF3O7xIZlt6UTs1bOvFRpCvRTvGQva3Ak/ZM9/nq9IHBJ1tC4Ybcrjg==",
"type": "package",
"files": [
"System.Runtime.Serialization.Xml.4.1.1.nupkg.sha512",
"System.Runtime.Serialization.Xml.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.Runtime.Serialization.Xml.dll",
"lib/netcore50/System.Runtime.Serialization.Xml.dll",
"lib/netstandard1.3/System.Runtime.Serialization.Xml.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.Runtime.Serialization.Xml.dll",
"ref/netcore50/System.Runtime.Serialization.Xml.dll",
"ref/netcore50/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/de/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/es/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/fr/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/it/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/ja/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/ko/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/ru/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/System.Runtime.Serialization.Xml.dll",
"ref/netstandard1.0/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/System.Runtime.Serialization.Xml.dll",
"ref/netstandard1.3/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.WindowsRuntime/4.0.11": {
"sha512": "C7rjmukRI0zE1Upl9hhmO4ZxasFYUTadXtgikLTgWwmIwa1jAD7yhOHKX3odajlRnSt34Ih+5VZliaqfFvQOcg==",
"type": "package",
"files": [
"System.Runtime.WindowsRuntime.4.0.11.nupkg.sha512",
"System.Runtime.WindowsRuntime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/portable-win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"ref/netcore50/System.Runtime.WindowsRuntime.dll",
"ref/netcore50/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/de/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/es/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/fr/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/it/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/ja/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/ko/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/ru/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/System.Runtime.WindowsRuntime.dll",
"ref/netstandard1.0/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/de/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/es/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/fr/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/it/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/ja/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/ko/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/ru/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/System.Runtime.WindowsRuntime.dll",
"ref/netstandard1.2/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/de/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/es/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/fr/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/it/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/ja/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/ko/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/ru/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/zh-hans/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/zh-hant/System.Runtime.WindowsRuntime.xml",
"ref/portable-win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll",
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll"
]
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"sha512": "ZG2uW8JYmFs1sGlhhAoW/F5WmZotkeSxzMils72qGEsJI6+JcQUa6oleSujULC4nk13F5Us9zvlvD2WfB+9Thw==",
"type": "package",
"files": [
"System.Runtime.WindowsRuntime.UI.Xaml.4.0.1.nupkg.sha512",
"System.Runtime.WindowsRuntime.UI.Xaml.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/portable-win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/de/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/es/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/it/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.dll",
"ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/de/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/es/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/it/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/portable-win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll"
]
},
"System.Security.Claims/4.0.1": {
"sha512": "Uc9b5DyxfFkTin13rqSr/LtrRxY0B3T/izmzDfPIXn/ak7P3VjBxb7KNVz8XWqYXF3ZDAE0rOF1CFFOfIs54iw==",
"type": "package",
"path": "System.Security.Claims/4.0.1",
"files": [
"System.Security.Claims.4.0.1.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Claims.dll",
"lib/netstandard1.3/System.Security.Claims.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Claims.dll",
"ref/netstandard1.3/System.Security.Claims.dll",
"ref/netstandard1.3/System.Security.Claims.xml",
"ref/netstandard1.3/de/System.Security.Claims.xml",
"ref/netstandard1.3/es/System.Security.Claims.xml",
"ref/netstandard1.3/fr/System.Security.Claims.xml",
"ref/netstandard1.3/it/System.Security.Claims.xml",
"ref/netstandard1.3/ja/System.Security.Claims.xml",
"ref/netstandard1.3/ko/System.Security.Claims.xml",
"ref/netstandard1.3/ru/System.Security.Claims.xml",
"ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
"ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"sha512": "zWFPaCthkO5Vfl4L3S4Ooxt6q06lq/0bkNHQF7xlZgbBpBfYGGaH0R3rMt74HaaiuWmcF5A5CK3/rR4pMKIZTg==",
"type": "package",
"path": "System.Security.Cryptography.Algorithms/4.2.0",
"files": [
"System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Algorithms.dll",
"lib/net461/System.Security.Cryptography.Algorithms.dll",
"lib/net463/System.Security.Cryptography.Algorithms.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Algorithms.dll",
"ref/net461/System.Security.Cryptography.Algorithms.dll",
"ref/net463/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
"System.Security.Cryptography.Cng/4.2.0": {
"sha512": "hkFtNHKFnykH8MQQUJfI8LMO/V91+XBjwcshX1nNoX+zKB/rvL88sl9oxxLRxAnEc5oL5r4vMyr/d7N2Xdlhow==",
"type": "package",
"path": "System.Security.Cryptography.Cng/4.2.0",
"files": [
"System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net46/System.Security.Cryptography.Cng.dll",
"lib/net461/System.Security.Cryptography.Cng.dll",
"lib/net463/System.Security.Cryptography.Cng.dll",
"ref/net46/System.Security.Cryptography.Cng.dll",
"ref/net461/System.Security.Cryptography.Cng.dll",
"ref/net463/System.Security.Cryptography.Cng.dll",
"ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
"ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
"ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
"System.Security.Cryptography.Encoding/4.0.0": {
"sha512": "+61WQgp8D8VRHr8h2oFa4dRBxHg0CGOcFhBi1J+qHMDx5hiHFFe2iaAVXyt9w9zSGJpeUWRB10u97Z3mZHDqMA==",
"type": "package",
"path": "System.Security.Cryptography.Encoding/4.0.0",
"files": [
"System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Encoding.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Encoding.dll",
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
"System.Security.Cryptography.Primitives/4.0.0": {
"sha512": "oqBa62dVFbIpEMw39/yjjzW1vKPaRwxhAq96BUhiP96vr8gyP/pCTOv25kGQAWwRKfhZic7p9zoIUFc1nNOMVg==",
"type": "package",
"path": "System.Security.Cryptography.Primitives/4.0.0",
"files": [
"System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Primitives.dll",
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Primitives.dll",
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"sha512": "YOURSTUb2RNriiXC5nbOIT1n11CDHbX202CcFCRRr0Xs+crmpSNTCbzO9HJzBpEBE/Am+ogtQovPJpg5mksEAw==",
"type": "package",
"path": "System.Security.Cryptography.X509Certificates/4.1.0",
"files": [
"System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.X509Certificates.dll",
"lib/net461/System.Security.Cryptography.X509Certificates.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.X509Certificates.dll",
"ref/net461/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
"System.Security.Principal/4.0.1": {
"sha512": "tYeNk0R4Ulo5ZfZCXU3d98T/qYh0/ZfA2QbX2EX/LsQU9zYq5STaAZ9fyQMzYvb9Ug/5TFW5XbjrKxQPeqObGg==",
"type": "package",
"path": "System.Security.Principal/4.0.1",
"files": [
"System.Security.Principal.4.0.1.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Security.Principal.dll",
"lib/netstandard1.0/System.Security.Principal.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Security.Principal.dll",
"ref/netcore50/System.Security.Principal.xml",
"ref/netcore50/de/System.Security.Principal.xml",
"ref/netcore50/es/System.Security.Principal.xml",
"ref/netcore50/fr/System.Security.Principal.xml",
"ref/netcore50/it/System.Security.Principal.xml",
"ref/netcore50/ja/System.Security.Principal.xml",
"ref/netcore50/ko/System.Security.Principal.xml",
"ref/netcore50/ru/System.Security.Principal.xml",
"ref/netcore50/zh-hans/System.Security.Principal.xml",
"ref/netcore50/zh-hant/System.Security.Principal.xml",
"ref/netstandard1.0/System.Security.Principal.dll",
"ref/netstandard1.0/System.Security.Principal.xml",
"ref/netstandard1.0/de/System.Security.Principal.xml",
"ref/netstandard1.0/es/System.Security.Principal.xml",
"ref/netstandard1.0/fr/System.Security.Principal.xml",
"ref/netstandard1.0/it/System.Security.Principal.xml",
"ref/netstandard1.0/ja/System.Security.Principal.xml",
"ref/netstandard1.0/ko/System.Security.Principal.xml",
"ref/netstandard1.0/ru/System.Security.Principal.xml",
"ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
"ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ServiceModel.Duplex/4.0.1": {
"sha512": "4I6WSQP4BiT3yG5NetAyAb626e2HlsgSzkiiqGtf4LxGpO3uFQ4eGSXsgVRnxJoDYcnDCH7q215eH/jZBMmx+w==",
"type": "package",
"files": [
"System.ServiceModel.Duplex.4.0.1.nupkg.sha512",
"System.ServiceModel.Duplex.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.ServiceModel.Duplex.dll",
"lib/netstandard1.3/System.ServiceModel.Duplex.dll",
"lib/portable-net45+win8/_._",
"lib/win8/_._",
"ref/net45/_._",
"ref/netcore50/System.ServiceModel.Duplex.dll",
"ref/netcore50/System.ServiceModel.Duplex.xml",
"ref/netcore50/de/System.ServiceModel.Duplex.xml",
"ref/netcore50/es/System.ServiceModel.Duplex.xml",
"ref/netcore50/fr/System.ServiceModel.Duplex.xml",
"ref/netcore50/it/System.ServiceModel.Duplex.xml",
"ref/netcore50/ja/System.ServiceModel.Duplex.xml",
"ref/netcore50/ko/System.ServiceModel.Duplex.xml",
"ref/netcore50/ru/System.ServiceModel.Duplex.xml",
"ref/netcore50/zh-hans/System.ServiceModel.Duplex.xml",
"ref/netcore50/zh-hant/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/System.ServiceModel.Duplex.dll",
"ref/netstandard1.1/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/de/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/es/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/fr/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/it/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/ja/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/ko/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/ru/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.Duplex.xml",
"ref/portable-net45+win8/_._",
"ref/win8/_._"
]
},
"System.ServiceModel.Http/4.1.0": {
"sha512": "sCIV+wrA4Antjnk0+fk6rxpzQkd2bReN4UTipGv5iyPNApVv/KtAfeDMg+YIajJ7VkQD60uVBTQmy3LZrRnNOw==",
"type": "package",
"files": [
"System.ServiceModel.Http.4.1.0.nupkg.sha512",
"System.ServiceModel.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.ServiceModel.Http.dll",
"lib/netcore50/System.ServiceModel.Http.dll",
"lib/netstandard1.3/System.ServiceModel.Http.dll",
"lib/portable-net45+win8+wp8/_._",
"lib/win8/_._",
"lib/wp8/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.ServiceModel.Http.dll",
"ref/netcore50/System.ServiceModel.Http.dll",
"ref/netcore50/System.ServiceModel.Http.xml",
"ref/netcore50/de/System.ServiceModel.Http.xml",
"ref/netcore50/es/System.ServiceModel.Http.xml",
"ref/netcore50/fr/System.ServiceModel.Http.xml",
"ref/netcore50/it/System.ServiceModel.Http.xml",
"ref/netcore50/ja/System.ServiceModel.Http.xml",
"ref/netcore50/ko/System.ServiceModel.Http.xml",
"ref/netcore50/ru/System.ServiceModel.Http.xml",
"ref/netcore50/zh-hans/System.ServiceModel.Http.xml",
"ref/netcore50/zh-hant/System.ServiceModel.Http.xml",
"ref/netstandard1.0/System.ServiceModel.Http.dll",
"ref/netstandard1.0/System.ServiceModel.Http.xml",
"ref/netstandard1.0/de/System.ServiceModel.Http.xml",
"ref/netstandard1.0/es/System.ServiceModel.Http.xml",
"ref/netstandard1.0/fr/System.ServiceModel.Http.xml",
"ref/netstandard1.0/it/System.ServiceModel.Http.xml",
"ref/netstandard1.0/ja/System.ServiceModel.Http.xml",
"ref/netstandard1.0/ko/System.ServiceModel.Http.xml",
"ref/netstandard1.0/ru/System.ServiceModel.Http.xml",
"ref/netstandard1.0/zh-hans/System.ServiceModel.Http.xml",
"ref/netstandard1.0/zh-hant/System.ServiceModel.Http.xml",
"ref/netstandard1.1/System.ServiceModel.Http.dll",
"ref/netstandard1.1/System.ServiceModel.Http.xml",
"ref/netstandard1.1/de/System.ServiceModel.Http.xml",
"ref/netstandard1.1/es/System.ServiceModel.Http.xml",
"ref/netstandard1.1/fr/System.ServiceModel.Http.xml",
"ref/netstandard1.1/it/System.ServiceModel.Http.xml",
"ref/netstandard1.1/ja/System.ServiceModel.Http.xml",
"ref/netstandard1.1/ko/System.ServiceModel.Http.xml",
"ref/netstandard1.1/ru/System.ServiceModel.Http.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.Http.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.Http.xml",
"ref/netstandard1.3/System.ServiceModel.Http.dll",
"ref/netstandard1.3/System.ServiceModel.Http.xml",
"ref/netstandard1.3/de/System.ServiceModel.Http.xml",
"ref/netstandard1.3/es/System.ServiceModel.Http.xml",
"ref/netstandard1.3/fr/System.ServiceModel.Http.xml",
"ref/netstandard1.3/it/System.ServiceModel.Http.xml",
"ref/netstandard1.3/ja/System.ServiceModel.Http.xml",
"ref/netstandard1.3/ko/System.ServiceModel.Http.xml",
"ref/netstandard1.3/ru/System.ServiceModel.Http.xml",
"ref/netstandard1.3/zh-hans/System.ServiceModel.Http.xml",
"ref/netstandard1.3/zh-hant/System.ServiceModel.Http.xml",
"ref/portable-net45+win8+wp8/_._",
"ref/win8/_._",
"ref/wp8/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ServiceModel.NetTcp/4.1.0": {
"sha512": "n+Ir2B9SAd5XwAaXPIpLQsbaDcscSsyJH0ODpm5tpK8xXxmLhiPct5kujzeAiAhB37lVSetrSINdFb1Llg2ngg==",
"type": "package",
"files": [
"System.ServiceModel.NetTcp.4.1.0.nupkg.sha512",
"System.ServiceModel.NetTcp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/net46/System.ServiceModel.NetTcp.dll",
"lib/netcore50/System.ServiceModel.NetTcp.dll",
"lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
"lib/portable-net45+win8/_._",
"lib/win8/_._",
"ref/net45/_._",
"ref/net46/System.ServiceModel.NetTcp.dll",
"ref/netcore50/System.ServiceModel.NetTcp.dll",
"ref/netcore50/System.ServiceModel.NetTcp.xml",
"ref/netcore50/de/System.ServiceModel.NetTcp.xml",
"ref/netcore50/es/System.ServiceModel.NetTcp.xml",
"ref/netcore50/fr/System.ServiceModel.NetTcp.xml",
"ref/netcore50/it/System.ServiceModel.NetTcp.xml",
"ref/netcore50/ja/System.ServiceModel.NetTcp.xml",
"ref/netcore50/ko/System.ServiceModel.NetTcp.xml",
"ref/netcore50/ru/System.ServiceModel.NetTcp.xml",
"ref/netcore50/zh-hans/System.ServiceModel.NetTcp.xml",
"ref/netcore50/zh-hant/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
"ref/netstandard1.1/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/de/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/es/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/fr/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/it/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/ja/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/ko/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/ru/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
"ref/netstandard1.3/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/de/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/es/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/fr/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/it/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/ja/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/ko/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/ru/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/zh-hans/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/zh-hant/System.ServiceModel.NetTcp.xml",
"ref/portable-net45+win8/_._",
"ref/win8/_._"
]
},
"System.ServiceModel.Primitives/4.1.0": {
"sha512": "Kd65HOn/5pL9xtCUkSL8xVqpqBUYy9tsfo0qe/MTTzApY8WQ+6i4I2ts++M+m4vbOanCoEsjjUj26P6C6ilQjQ==",
"type": "package",
"files": [
"System.ServiceModel.Primitives.4.1.0.nupkg.sha512",
"System.ServiceModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.ServiceModel.Primitives.dll",
"lib/netcore50/System.ServiceModel.Primitives.dll",
"lib/netstandard1.3/System.ServiceModel.Primitives.dll",
"lib/portable-net45+win8+wp8/_._",
"lib/win8/_._",
"lib/wp8/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.ServiceModel.Primitives.dll",
"ref/netcore50/System.ServiceModel.Primitives.dll",
"ref/netcore50/System.ServiceModel.Primitives.xml",
"ref/netcore50/de/System.ServiceModel.Primitives.xml",
"ref/netcore50/es/System.ServiceModel.Primitives.xml",
"ref/netcore50/fr/System.ServiceModel.Primitives.xml",
"ref/netcore50/it/System.ServiceModel.Primitives.xml",
"ref/netcore50/ja/System.ServiceModel.Primitives.xml",
"ref/netcore50/ko/System.ServiceModel.Primitives.xml",
"ref/netcore50/ru/System.ServiceModel.Primitives.xml",
"ref/netcore50/zh-hans/System.ServiceModel.Primitives.xml",
"ref/netcore50/zh-hant/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/System.ServiceModel.Primitives.dll",
"ref/netstandard1.0/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/de/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/es/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/fr/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/it/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/ja/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/ko/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/ru/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/System.ServiceModel.Primitives.dll",
"ref/netstandard1.1/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/de/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/es/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/fr/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/it/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/ja/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/ko/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/ru/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/System.ServiceModel.Primitives.dll",
"ref/netstandard1.3/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/de/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/es/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/fr/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/it/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/ja/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/ko/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/ru/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.ServiceModel.Primitives.xml",
"ref/portable-net45+win8+wp8/_._",
"ref/win8/_._",
"ref/wp8/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ServiceModel.Security/4.0.1": {
"sha512": "82pkDb6LMq/NHi+DVHZ7zKHMMJ7mR6rVl9TpH+p8zJhZrVYJez9vTbdMsxQhbNOngEkJKzZFveNYpaRv/3RMsg==",
"type": "package",
"files": [
"System.ServiceModel.Security.4.0.1.nupkg.sha512",
"System.ServiceModel.Security.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.ServiceModel.Security.dll",
"lib/netstandard1.3/System.ServiceModel.Security.dll",
"lib/portable-net45+win8+wp8/_._",
"lib/win8/_._",
"lib/wp8/_._",
"ref/net45/_._",
"ref/netcore50/System.ServiceModel.Security.dll",
"ref/netcore50/System.ServiceModel.Security.xml",
"ref/netcore50/de/System.ServiceModel.Security.xml",
"ref/netcore50/es/System.ServiceModel.Security.xml",
"ref/netcore50/fr/System.ServiceModel.Security.xml",
"ref/netcore50/it/System.ServiceModel.Security.xml",
"ref/netcore50/ja/System.ServiceModel.Security.xml",
"ref/netcore50/ko/System.ServiceModel.Security.xml",
"ref/netcore50/ru/System.ServiceModel.Security.xml",
"ref/netcore50/zh-hans/System.ServiceModel.Security.xml",
"ref/netcore50/zh-hant/System.ServiceModel.Security.xml",
"ref/netstandard1.0/System.ServiceModel.Security.dll",
"ref/netstandard1.0/System.ServiceModel.Security.xml",
"ref/netstandard1.0/de/System.ServiceModel.Security.xml",
"ref/netstandard1.0/es/System.ServiceModel.Security.xml",
"ref/netstandard1.0/fr/System.ServiceModel.Security.xml",
"ref/netstandard1.0/it/System.ServiceModel.Security.xml",
"ref/netstandard1.0/ja/System.ServiceModel.Security.xml",
"ref/netstandard1.0/ko/System.ServiceModel.Security.xml",
"ref/netstandard1.0/ru/System.ServiceModel.Security.xml",
"ref/netstandard1.0/zh-hans/System.ServiceModel.Security.xml",
"ref/netstandard1.0/zh-hant/System.ServiceModel.Security.xml",
"ref/netstandard1.1/System.ServiceModel.Security.dll",
"ref/netstandard1.1/System.ServiceModel.Security.xml",
"ref/netstandard1.1/de/System.ServiceModel.Security.xml",
"ref/netstandard1.1/es/System.ServiceModel.Security.xml",
"ref/netstandard1.1/fr/System.ServiceModel.Security.xml",
"ref/netstandard1.1/it/System.ServiceModel.Security.xml",
"ref/netstandard1.1/ja/System.ServiceModel.Security.xml",
"ref/netstandard1.1/ko/System.ServiceModel.Security.xml",
"ref/netstandard1.1/ru/System.ServiceModel.Security.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.Security.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.Security.xml",
"ref/portable-net45+win8+wp8/_._",
"ref/win8/_._",
"ref/wp8/_._"
]
},
"System.Text.Encoding/4.0.11": {
"sha512": "XU/T53PgG9qApSiVA+GtPtLbU787krHRE9hedLcwnZgYpbNgJG0GVy/fLcH6hCpHgOMLVipqHvJtQdDNqC5U/Q==",
"type": "package",
"path": "System.Text.Encoding/4.0.11",
"files": [
"System.Text.Encoding.4.0.11.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Text.Encoding.dll",
"ref/netcore50/System.Text.Encoding.xml",
"ref/netcore50/de/System.Text.Encoding.xml",
"ref/netcore50/es/System.Text.Encoding.xml",
"ref/netcore50/fr/System.Text.Encoding.xml",
"ref/netcore50/it/System.Text.Encoding.xml",
"ref/netcore50/ja/System.Text.Encoding.xml",
"ref/netcore50/ko/System.Text.Encoding.xml",
"ref/netcore50/ru/System.Text.Encoding.xml",
"ref/netcore50/zh-hans/System.Text.Encoding.xml",
"ref/netcore50/zh-hant/System.Text.Encoding.xml",
"ref/netstandard1.0/System.Text.Encoding.dll",
"ref/netstandard1.0/System.Text.Encoding.xml",
"ref/netstandard1.0/de/System.Text.Encoding.xml",
"ref/netstandard1.0/es/System.Text.Encoding.xml",
"ref/netstandard1.0/fr/System.Text.Encoding.xml",
"ref/netstandard1.0/it/System.Text.Encoding.xml",
"ref/netstandard1.0/ja/System.Text.Encoding.xml",
"ref/netstandard1.0/ko/System.Text.Encoding.xml",
"ref/netstandard1.0/ru/System.Text.Encoding.xml",
"ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
"ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
"ref/netstandard1.3/System.Text.Encoding.dll",
"ref/netstandard1.3/System.Text.Encoding.xml",
"ref/netstandard1.3/de/System.Text.Encoding.xml",
"ref/netstandard1.3/es/System.Text.Encoding.xml",
"ref/netstandard1.3/fr/System.Text.Encoding.xml",
"ref/netstandard1.3/it/System.Text.Encoding.xml",
"ref/netstandard1.3/ja/System.Text.Encoding.xml",
"ref/netstandard1.3/ko/System.Text.Encoding.xml",
"ref/netstandard1.3/ru/System.Text.Encoding.xml",
"ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
"ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Text.Encoding.CodePages/4.0.1": {
"sha512": "k1jbRl6NE++AOSzxudhFfweNv/wnfI8KOBUyQD/sfX83X4XVrd285ED8b7/PEgSMqWnyIgfFQjZNGUfzboXOzA==",
"type": "package",
"path": "System.Text.Encoding.CodePages/4.0.1",
"files": [
"System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
"System.Text.Encoding.CodePages.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Text.Encoding.CodePages.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
"ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
"System.Text.Encoding.Extensions/4.0.11": {
"sha512": "tUmgrKNcoHx1rb8oVFXPxwvjolnQ5SxJUsCHujfYxoN0bU9ozrbk5PovItIMzcPi1fYxeZjQ6sCLqKDeLJi6nw==",
"type": "package",
"path": "System.Text.Encoding.Extensions/4.0.11",
"files": [
"System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Text.Encoding.Extensions.dll",
"ref/netcore50/System.Text.Encoding.Extensions.xml",
"ref/netcore50/de/System.Text.Encoding.Extensions.xml",
"ref/netcore50/es/System.Text.Encoding.Extensions.xml",
"ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
"ref/netcore50/it/System.Text.Encoding.Extensions.xml",
"ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
"ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
"ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
"ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
"ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
"ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
"ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Text.RegularExpressions/4.1.0": {
"sha512": "s3hrq+DHOv7mO+vyziDEGAxclaJgMzkjh4SJl7elMqTRsYxCzldDTU7A0VfCImsEafMEdzTzRmlJfCFoSgMjXg==",
"type": "package",
"path": "System.Text.RegularExpressions/4.1.0",
"files": [
"System.Text.RegularExpressions.4.1.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net463/System.Text.RegularExpressions.dll",
"lib/netcore50/System.Text.RegularExpressions.dll",
"lib/netstandard1.6/System.Text.RegularExpressions.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net463/System.Text.RegularExpressions.dll",
"ref/netcore50/System.Text.RegularExpressions.dll",
"ref/netcore50/System.Text.RegularExpressions.xml",
"ref/netcore50/de/System.Text.RegularExpressions.xml",
"ref/netcore50/es/System.Text.RegularExpressions.xml",
"ref/netcore50/fr/System.Text.RegularExpressions.xml",
"ref/netcore50/it/System.Text.RegularExpressions.xml",
"ref/netcore50/ja/System.Text.RegularExpressions.xml",
"ref/netcore50/ko/System.Text.RegularExpressions.xml",
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/System.Text.RegularExpressions.dll",
"ref/netstandard1.3/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/System.Text.RegularExpressions.dll",
"ref/netstandard1.6/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Threading/4.0.11": {
"sha512": "DEyRNv35Hclmuu4xEk8pdZr0b8G4fnZClWkAb3ag77ZWcD2KUiGWSoTFICF5i8mgMLRRmDfAv0yrLI8aBmzuZw==",
"type": "package",
"path": "System.Threading/4.0.11",
"files": [
"System.Threading.4.0.11.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.dll",
"lib/netstandard1.3/System.Threading.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Threading.dll",
"ref/netcore50/System.Threading.xml",
"ref/netcore50/de/System.Threading.xml",
"ref/netcore50/es/System.Threading.xml",
"ref/netcore50/fr/System.Threading.xml",
"ref/netcore50/it/System.Threading.xml",
"ref/netcore50/ja/System.Threading.xml",
"ref/netcore50/ko/System.Threading.xml",
"ref/netcore50/ru/System.Threading.xml",
"ref/netcore50/zh-hans/System.Threading.xml",
"ref/netcore50/zh-hant/System.Threading.xml",
"ref/netstandard1.0/System.Threading.dll",
"ref/netstandard1.0/System.Threading.xml",
"ref/netstandard1.0/de/System.Threading.xml",
"ref/netstandard1.0/es/System.Threading.xml",
"ref/netstandard1.0/fr/System.Threading.xml",
"ref/netstandard1.0/it/System.Threading.xml",
"ref/netstandard1.0/ja/System.Threading.xml",
"ref/netstandard1.0/ko/System.Threading.xml",
"ref/netstandard1.0/ru/System.Threading.xml",
"ref/netstandard1.0/zh-hans/System.Threading.xml",
"ref/netstandard1.0/zh-hant/System.Threading.xml",
"ref/netstandard1.3/System.Threading.dll",
"ref/netstandard1.3/System.Threading.xml",
"ref/netstandard1.3/de/System.Threading.xml",
"ref/netstandard1.3/es/System.Threading.xml",
"ref/netstandard1.3/fr/System.Threading.xml",
"ref/netstandard1.3/it/System.Threading.xml",
"ref/netstandard1.3/ja/System.Threading.xml",
"ref/netstandard1.3/ko/System.Threading.xml",
"ref/netstandard1.3/ru/System.Threading.xml",
"ref/netstandard1.3/zh-hans/System.Threading.xml",
"ref/netstandard1.3/zh-hant/System.Threading.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
"System.Threading.Overlapped/4.0.1": {
"sha512": "9HrkqzI718N2lLoJmQWFL+O5zzwF991G660GjHI00NZhbBjX33mzrVVzlE7nb2n5qU7Ax3JlTpuThVvyvCUyEA==",
"type": "package",
"path": "System.Threading.Overlapped/4.0.1",
"files": [
"System.Threading.Overlapped.4.0.1.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net46/System.Threading.Overlapped.dll",
"ref/net46/System.Threading.Overlapped.dll",
"ref/netstandard1.3/System.Threading.Overlapped.dll",
"ref/netstandard1.3/System.Threading.Overlapped.xml",
"ref/netstandard1.3/de/System.Threading.Overlapped.xml",
"ref/netstandard1.3/es/System.Threading.Overlapped.xml",
"ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
"ref/netstandard1.3/it/System.Threading.Overlapped.xml",
"ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
"ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
"ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
"ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
"ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
"runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
"runtimes/win/lib/net46/System.Threading.Overlapped.dll",
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
"System.Threading.Tasks/4.0.11": {
"sha512": "U8/8NstkRxAdWYJRe7AI3gfA1OKkfOKhwYBP/3KJH0oB3ADoMs3S1rh+CPRl5SP9WIhb+M4+oEaqYcenbOI0OQ==",
"type": "package",
"path": "System.Threading.Tasks/4.0.11",
"files": [
"System.Threading.Tasks.4.0.11.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Threading.Tasks.dll",
"ref/netcore50/System.Threading.Tasks.xml",
"ref/netcore50/de/System.Threading.Tasks.xml",
"ref/netcore50/es/System.Threading.Tasks.xml",
"ref/netcore50/fr/System.Threading.Tasks.xml",
"ref/netcore50/it/System.Threading.Tasks.xml",
"ref/netcore50/ja/System.Threading.Tasks.xml",
"ref/netcore50/ko/System.Threading.Tasks.xml",
"ref/netcore50/ru/System.Threading.Tasks.xml",
"ref/netcore50/zh-hans/System.Threading.Tasks.xml",
"ref/netcore50/zh-hant/System.Threading.Tasks.xml",
"ref/netstandard1.0/System.Threading.Tasks.dll",
"ref/netstandard1.0/System.Threading.Tasks.xml",
"ref/netstandard1.0/de/System.Threading.Tasks.xml",
"ref/netstandard1.0/es/System.Threading.Tasks.xml",
"ref/netstandard1.0/fr/System.Threading.Tasks.xml",
"ref/netstandard1.0/it/System.Threading.Tasks.xml",
"ref/netstandard1.0/ja/System.Threading.Tasks.xml",
"ref/netstandard1.0/ko/System.Threading.Tasks.xml",
"ref/netstandard1.0/ru/System.Threading.Tasks.xml",
"ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
"ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
"ref/netstandard1.3/System.Threading.Tasks.dll",
"ref/netstandard1.3/System.Threading.Tasks.xml",
"ref/netstandard1.3/de/System.Threading.Tasks.xml",
"ref/netstandard1.3/es/System.Threading.Tasks.xml",
"ref/netstandard1.3/fr/System.Threading.Tasks.xml",
"ref/netstandard1.3/it/System.Threading.Tasks.xml",
"ref/netstandard1.3/ja/System.Threading.Tasks.xml",
"ref/netstandard1.3/ko/System.Threading.Tasks.xml",
"ref/netstandard1.3/ru/System.Threading.Tasks.xml",
"ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
"ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"sha512": "lYqhNcIS7wrZaxQsVH9zVr9guziNKk7v5mbErxJDgBmvAu8cSYKdqBUZHsdHoUVwZK6qr+0hog7jL5mHB6ye9w==",
"type": "package",
"path": "System.Threading.Tasks.Dataflow/4.6.0",
"files": [
"System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
"System.Threading.Tasks.Dataflow.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
]
},
"System.Threading.Tasks.Extensions/4.0.0": {
"sha512": "FjsEih9scCfkGilJ6elxtF8Xb+C2gwOL17/f0lPi1RyMl4CBqyWe0IC97gIBYZ8fatME+wq9RJlZQo4pwP0BhA==",
"type": "package",
"path": "System.Threading.Tasks.Extensions/4.0.0",
"files": [
"System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
"lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
]
},
"System.Threading.Tasks.Parallel/4.0.1": {
"sha512": "Du9bQ5FxQCAgpjC1BL225rv263kYgk6kvi2keDWjJ0tmHv8niu6v2zAPkxWPoQlYib3l1XcAoGeO0ZLLAUkzvw==",
"type": "package",
"path": "System.Threading.Tasks.Parallel/4.0.1",
"files": [
"System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
"System.Threading.Tasks.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.Tasks.Parallel.dll",
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Threading.Tasks.Parallel.dll",
"ref/netcore50/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
"ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Threading.Timer/4.0.1": {
"sha512": "/fE2DFLL/MDW3Uu1C4yAb5ROzvdy3JxWOD+oInYi1tqMg9X6oAzvZtgHs0P6rUgRt+bI3vYnov68aSWC+5I2BQ==",
"type": "package",
"path": "System.Threading.Timer/4.0.1",
"files": [
"System.Threading.Timer.4.0.1.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net451/_._",
"lib/portable-net451+win81+wpa81/_._",
"lib/win81/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net451/_._",
"ref/netcore50/System.Threading.Timer.dll",
"ref/netcore50/System.Threading.Timer.xml",
"ref/netcore50/de/System.Threading.Timer.xml",
"ref/netcore50/es/System.Threading.Timer.xml",
"ref/netcore50/fr/System.Threading.Timer.xml",
"ref/netcore50/it/System.Threading.Timer.xml",
"ref/netcore50/ja/System.Threading.Timer.xml",
"ref/netcore50/ko/System.Threading.Timer.xml",
"ref/netcore50/ru/System.Threading.Timer.xml",
"ref/netcore50/zh-hans/System.Threading.Timer.xml",
"ref/netcore50/zh-hant/System.Threading.Timer.xml",
"ref/netstandard1.2/System.Threading.Timer.dll",
"ref/netstandard1.2/System.Threading.Timer.xml",
"ref/netstandard1.2/de/System.Threading.Timer.xml",
"ref/netstandard1.2/es/System.Threading.Timer.xml",
"ref/netstandard1.2/fr/System.Threading.Timer.xml",
"ref/netstandard1.2/it/System.Threading.Timer.xml",
"ref/netstandard1.2/ja/System.Threading.Timer.xml",
"ref/netstandard1.2/ko/System.Threading.Timer.xml",
"ref/netstandard1.2/ru/System.Threading.Timer.xml",
"ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
"ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
"ref/portable-net451+win81+wpa81/_._",
"ref/win81/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Xml.ReaderWriter/4.0.11": {
"sha512": "ljLZUmQZA3R3BQs0dN9ALdDomowUoN8L8PDNFJPaZRY2VSi550G8WFZyVIcCTG3W3VJKnDE8o0HmbLOYwzrbjw==",
"type": "package",
"path": "System.Xml.ReaderWriter/4.0.11",
"files": [
"System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
"ref/netcore50/es/System.Xml.ReaderWriter.xml",
"ref/netcore50/fr/System.Xml.ReaderWriter.xml",
"ref/netcore50/it/System.Xml.ReaderWriter.xml",
"ref/netcore50/ja/System.Xml.ReaderWriter.xml",
"ref/netcore50/ko/System.Xml.ReaderWriter.xml",
"ref/netcore50/ru/System.Xml.ReaderWriter.xml",
"ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
"ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/System.Xml.ReaderWriter.dll",
"ref/netstandard1.0/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/System.Xml.ReaderWriter.dll",
"ref/netstandard1.3/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Xml.XDocument/4.0.11": {
"sha512": "xkGSOIWppKi8/g6SpOS638guIkds9Ct7+7rXErjg95O50+rkPfspKkP5kq1tNQBrTeDjyIo8cWnFPR46xnX7Mg==",
"type": "package",
"path": "System.Xml.XDocument/4.0.11",
"files": [
"System.Xml.XDocument.4.0.11.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Xml.XDocument.dll",
"lib/netstandard1.3/System.Xml.XDocument.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Xml.XDocument.dll",
"ref/netcore50/System.Xml.XDocument.xml",
"ref/netcore50/de/System.Xml.XDocument.xml",
"ref/netcore50/es/System.Xml.XDocument.xml",
"ref/netcore50/fr/System.Xml.XDocument.xml",
"ref/netcore50/it/System.Xml.XDocument.xml",
"ref/netcore50/ja/System.Xml.XDocument.xml",
"ref/netcore50/ko/System.Xml.XDocument.xml",
"ref/netcore50/ru/System.Xml.XDocument.xml",
"ref/netcore50/zh-hans/System.Xml.XDocument.xml",
"ref/netcore50/zh-hant/System.Xml.XDocument.xml",
"ref/netstandard1.0/System.Xml.XDocument.dll",
"ref/netstandard1.0/System.Xml.XDocument.xml",
"ref/netstandard1.0/de/System.Xml.XDocument.xml",
"ref/netstandard1.0/es/System.Xml.XDocument.xml",
"ref/netstandard1.0/fr/System.Xml.XDocument.xml",
"ref/netstandard1.0/it/System.Xml.XDocument.xml",
"ref/netstandard1.0/ja/System.Xml.XDocument.xml",
"ref/netstandard1.0/ko/System.Xml.XDocument.xml",
"ref/netstandard1.0/ru/System.Xml.XDocument.xml",
"ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
"ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
"ref/netstandard1.3/System.Xml.XDocument.dll",
"ref/netstandard1.3/System.Xml.XDocument.xml",
"ref/netstandard1.3/de/System.Xml.XDocument.xml",
"ref/netstandard1.3/es/System.Xml.XDocument.xml",
"ref/netstandard1.3/fr/System.Xml.XDocument.xml",
"ref/netstandard1.3/it/System.Xml.XDocument.xml",
"ref/netstandard1.3/ja/System.Xml.XDocument.xml",
"ref/netstandard1.3/ko/System.Xml.XDocument.xml",
"ref/netstandard1.3/ru/System.Xml.XDocument.xml",
"ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
"ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Xml.XmlDocument/4.0.1": {
"sha512": "Y1fE49fNxbKAf/aqoA0Xg26Ly3+MVG2NGk8GAJKSVLFUAf3EssdeImEtIuyREC7ZlygEdAfmuPwjeLoCxXnF3Q==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
"System.Xml.XmlDocument.4.0.1.nupkg.sha512",
"System.Xml.XmlDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Xml.XmlDocument.dll",
"lib/netstandard1.3/System.Xml.XmlDocument.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Xml.XmlDocument.dll",
"ref/netstandard1.3/System.Xml.XmlDocument.dll",
"ref/netstandard1.3/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Xml.XmlSerializer/4.0.11": {
"sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
"type": "package",
"files": [
"System.Xml.XmlSerializer.4.0.11.nupkg.sha512",
"System.Xml.XmlSerializer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Xml.XmlSerializer.dll",
"lib/netstandard1.3/System.Xml.XmlSerializer.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Xml.XmlSerializer.dll",
"ref/netcore50/System.Xml.XmlSerializer.xml",
"ref/netcore50/de/System.Xml.XmlSerializer.xml",
"ref/netcore50/es/System.Xml.XmlSerializer.xml",
"ref/netcore50/fr/System.Xml.XmlSerializer.xml",
"ref/netcore50/it/System.Xml.XmlSerializer.xml",
"ref/netcore50/ja/System.Xml.XmlSerializer.xml",
"ref/netcore50/ko/System.Xml.XmlSerializer.xml",
"ref/netcore50/ru/System.Xml.XmlSerializer.xml",
"ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
"ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/System.Xml.XmlSerializer.dll",
"ref/netstandard1.0/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/System.Xml.XmlSerializer.dll",
"ref/netstandard1.3/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll"
]
},
"Validation/2.2.8": {
"sha512": "DMNc7JhPlgRwnR+NNb+ldoluObL+RBw96aMoiZae/Looa4vgaAnIysmle/bV2OKqDNW9oUBDckPyfa2+sX6JdA==",
"type": "package",
"path": "Validation/2.2.8",
"files": [
"README.md",
"Validation.2.2.8.nupkg.sha512",
"Validation.nuspec",
"lib/dotnet/Validation.dll",
"lib/dotnet/Validation.xml",
"lib/portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Validation.dll",
"lib/portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Validation.xml",
"lib/portable-net45+dnxcore50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Validation.dll",
"lib/portable-net45+dnxcore50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Validation.xml",
"tools/2013/RequiresNotNull.snippet",
"tools/2013/RequiresNotNullOrEmpty.snippet",
"tools/2015/RequiresNotNull.snippet",
"tools/2015/RequiresNotNullOrEmpty.snippet",
"tools/install_snippets.cmd",
"tools/uninstall_snippets.cmd"
]
}
},
"projectFileDependencyGroups": {
"": [
"Microsoft.Azure.Devices.Client >= 1.1.1",
"Microsoft.Azure.Devices.Shared >= 1.0.2",
"Microsoft.Band >= 1.3.20628",
"Microsoft.NETCore.UniversalWindowsPlatform >= 5.2.2",
"Newtonsoft.Json >= 9.0.1"
],
"UAP,Version=v10.0": []
},
"tools": {},
"projectFileToolGroups": {}
}
================================================
FILE: Devices/DirectlyConnectedDevices/UWPMSBand/UWPMSBand.sln
================================================
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UWPMSBand", "UWPMSBand\UWPMSBand.csproj", "{38159BCB-2D15-4410-846F-C4E161FCDFEB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|ARM.ActiveCfg = Debug|ARM
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|ARM.Build.0 = Debug|ARM
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|ARM.Deploy.0 = Debug|ARM
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|x64.ActiveCfg = Debug|x64
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|x64.Build.0 = Debug|x64
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|x64.Deploy.0 = Debug|x64
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|x86.ActiveCfg = Debug|x86
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|x86.Build.0 = Debug|x86
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Debug|x86.Deploy.0 = Debug|x86
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|ARM.ActiveCfg = Release|ARM
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|ARM.Build.0 = Release|ARM
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|ARM.Deploy.0 = Release|ARM
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|x64.ActiveCfg = Release|x64
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|x64.Build.0 = Release|x64
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|x64.Deploy.0 = Release|x64
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|x86.ActiveCfg = Release|x86
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|x86.Build.0 = Release|x86
{38159BCB-2D15-4410-846F-C4E161FCDFEB}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/App.xaml
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/App.xaml.cs
================================================
using System;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;
namespace UWPSimulatedSensors
{
///
/// Provides application-specific behavior to supplement the default Application class.
///
sealed partial class App : Application
{
///
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
///
public App()
{
Microsoft.ApplicationInsights.WindowsAppInitializer.InitializeAsync(
Microsoft.ApplicationInsights.WindowsCollectors.Metadata |
Microsoft.ApplicationInsights.WindowsCollectors.Session);
this.InitializeComponent();
this.Suspending += OnSuspending;
}
///
/// Invoked when the application is launched normally by the end user. Other entry points
/// will be used such as when the application is launched to open a specific file.
///
/// Details about the launch request and process.
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
#if DEBUG
if (System.Diagnostics.Debugger.IsAttached)
{
this.DebugSettings.EnableFrameRateCounter = true;
}
#endif
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
rootFrame.NavigationFailed += OnNavigationFailed;
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: Load state from previously suspended application
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
rootFrame.Navigate(typeof(MainPage), e.Arguments);
}
// Ensure the current window is active
Window.Current.Activate();
}
///
/// Invoked when Navigation to a certain page fails
///
/// The Frame which failed navigation
/// Details about the navigation failure
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
{
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
}
///
/// Invoked when application execution is being suspended. Application state is saved
/// without knowing whether the application will be terminated or resumed with the contents
/// of memory still intact.
///
/// The source of the suspend request.
/// Details about the suspend request.
private void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
//TODO: Save application state and stop any background activity
deferral.Complete();
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/ApplicationInsights.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/MainPage.xaml
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/MainPage.xaml.cs
================================================
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Windows.Devices.Geolocation;
using Windows.ApplicationModel.Core;
using Windows.UI.Core;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls.Primitives;
using ConnectTheDotsHelper;
using ZXing.Mobile;
using Windows.UI.Popups;
namespace UWPSimulatedSensors
{
///
/// An empty page that can be used on its own or navigated to within a Frame.
///
public sealed partial class MainPage : Page
{
private GeolocationAccessStatus LocationAccess = GeolocationAccessStatus.Unspecified;
private Windows.Storage.ApplicationDataContainer localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
private ConnectTheDots CTD;
private MobileBarcodeScanner Scanner;
public MainPage()
{
this.InitializeComponent();
// Initialize QRCode Scanner
Scanner = new MobileBarcodeScanner(Dispatcher);
Scanner.Dispatcher = Dispatcher;
// Initialize ConnectTheDots Helper
CTD = new ConnectTheDots();
// Hook up a callback to display message received from Azure
CTD.ReceivedMessage += CTD_ReceivedMessage;
// Restore local settings
if (localSettings.Values.ContainsKey("ConnectionString"))
{
CTD.ConnectionString = (string)localSettings.Values["ConnectionString"];
this.TBConnectionString.Text = CTD.ConnectionString;
}
if (localSettings.Values.ContainsKey("DisplayName"))
{
CTD.DisplayName = (string)localSettings.Values["DisplayName"];
this.TBDeviceName.Text = CTD.DisplayName;
}
// Check configuration settings
ConnectToggle.IsEnabled = checkConfig();
CTD.ConnectionString = this.TBConnectionString.Text;
CTD.DisplayName = this.TBDeviceName.Text;
CTD.Organization = "My Company";
CTD.Location = "Unknown";
// Get user consent for accessing location
Task.Run(async () =>
{
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
async () =>
{
this.LocationAccess = await Geolocator.RequestAccessAsync();
// Get device location
await updateLocation();
});
});
// Add sensors to the ConnectTheDots object
CTD.AddSensor("Temperature", "C");
CTD.AddSensor("Humidity", "%");
}
///
/// CTD_ReceivedMessage
///
///
///
private async void CTD_ReceivedMessage(object sender, EventArgs e)
{
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
{
C2DMessage message = ((ConnectTheDots.ReceivedMessageEventArgs)e).Message;
var textToDisplay = message.timecreated + " - Alert received:" + message.message + ": " + message.value + " " + message.unitofmeasure + "\r\n";
TBAlerts.Text += textToDisplay;
});
}
///
/// checkConfig
/// Check stored configuration
///
///
private bool checkConfig()
{
return ((this.TBDeviceName.Text != null) && (this.TBConnectionString.Text != null) &&
(this.TBDeviceName.Text != "") && (this.TBConnectionString.Text != ""));
}
///
/// updateLocation
/// Updates current location of the device
///
///
private async Task updateLocation()
{
// Update current device location
try
{
if (LocationAccess == GeolocationAccessStatus.Allowed)
{
Geolocator geolocator = new Geolocator();
Geoposition pos = await geolocator.GetGeopositionAsync();
CTD.Location = pos.Coordinate.Point.Position.Longitude.ToString() + "," + pos.Coordinate.Point.Position.Latitude.ToString();
}
}
catch (Exception ex)
{
Debug.WriteLine("Error while trying to retreive device's location: " + ex.Message);
CTD.Location = "unknown";
}
}
///
/// toggleButton_Checked
///
///
///
private void toggleButton_Checked(object sender, RoutedEventArgs e)
{
SendDataToggle.Content = "Sending telemetry data";
CTD.SendTelemetryData = true;
}
///
/// toggleButton_Unchecked
///
///
///
private void toggleButton_Unchecked(object sender, RoutedEventArgs e)
{
SendDataToggle.Content = "Press to send telemetry data";
CTD.SendTelemetryData = false;
}
///
/// TempSlider_ValueChanged
///
///
///
private void TempSlider_ValueChanged(object sender, RangeBaseValueChangedEventArgs e)
{
if ((CTD !=null) && (CTD.Sensors["Temperature"] != null))
CTD.Sensors["Temperature"].message.value = TempSlider.Value;
}
///
/// HmdtSlider_ValueChanged
///
///
///
private void HmdtSlider_ValueChanged(object sender, RangeBaseValueChangedEventArgs e)
{
if ((CTD != null) && (CTD.Sensors["Humidity"] != null))
CTD.Sensors["Humidity"].message.value = HmdtSlider.Value;
}
///
/// TBDeviceName_TextChanged
///
///
///
private void TBDeviceName_TextChanged(object sender, TextChangedEventArgs e)
{
CTD.DisplayName = TBDeviceName.Text;
localSettings.Values["DisplayName"] = CTD.DisplayName;
ConnectToggle.IsEnabled = checkConfig();
}
///
/// TBConnectionString_TextChanged
///
///
///
private void TBConnectionString_TextChanged(object sender, TextChangedEventArgs e)
{
if (CTD.ConnectionString != TBConnectionString.Text)
{
CTD.ConnectionString = TBConnectionString.Text;
}
localSettings.Values["ConnectionString"] = CTD.ConnectionString;
ConnectToggle.IsEnabled = checkConfig();
}
///
/// ConnectToggle_Checked
///
///
///
private void ConnectToggle_Checked(object sender, RoutedEventArgs e)
{
if (CTD.Connect())
{
SendDataToggle.IsEnabled = true;
TBDeviceName.IsEnabled = false;
TBConnectionString.IsEnabled = false;
ConnectToggle.Content = "Dots connected";
buttonScanCode.IsEnabled = false;
}
}
///
/// ConnectToggle_Unchecked
///
///
///
private void ConnectToggle_Unchecked(object sender, RoutedEventArgs e)
{
if (CTD.Disconnect())
{
SendDataToggle.IsChecked = false;
SendDataToggle.IsEnabled = false;
TBDeviceName.IsEnabled = true;
TBConnectionString.IsEnabled = true;
ConnectToggle.Content = "Press to connect the dots";
buttonScanCode.IsEnabled = true;
}
}
///
/// ScanCode
/// Scan a QR Code using the ZXing library
///
///
private async Task ScanCode()
{
Scanner.UseCustomOverlay = false;
Scanner.TopText = "Hold camera up to QR code";
Scanner.BottomText = "Camera will automatically scan QR code\r\n\rPress the 'Back' button to cancel";
ZXing.Result result = await Scanner.Scan().ConfigureAwait(true);
if (result == null || (string.IsNullOrEmpty(result.Text)))
{
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, async () =>
{
MessageDialog dialog = new MessageDialog("An error occured while scanning the QRCode. Try again");
await dialog.ShowAsync();
});
}
else
{
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
{
TBConnectionString.Text = result.Text;
TBDeviceName.Text = CTD.ExtractDeviceIdFromConnectionString(result.Text);
});
}
}
///
/// buttonScanCode_Tapped
///
///
///
///
private async void buttonScanCode_Tapped(object sender, Windows.UI.Xaml.Input.TappedRoutedEventArgs e)
{
if (SendDataToggle.IsEnabled == false)
{
await ScanCode();
}
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/Package.appxmanifest
================================================
UWPSimulatedSensors
olivi
Assets\StoreLogo.png
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/Properties/AssemblyInfo.cs
================================================
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("UWPSimulatedSensors")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("UWPSimulatedSensors")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)]
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/Properties/Default.rd.xml
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/UWPSimulatedSensors.csproj
================================================
Debug
x86
{CE0FF36D-7C6D-407A-A798-E5269E252F91}
AppContainerExe
Properties
UWPSimulatedSensors
UWPSimulatedSensors
en-US
UAP
10.0.10586.0
10.0.10240.0
14
512
{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
UWPSimulatedSensors_TemporaryKey.pfx
true
bin\x86\Debug\
DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
;2008
full
x86
false
prompt
true
bin\x86\Release\
TRACE;NETFX_CORE;WINDOWS_UWP
true
;2008
pdbonly
x86
false
prompt
true
true
true
bin\ARM\Debug\
DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
;2008
full
ARM
false
prompt
true
bin\ARM\Release\
TRACE;NETFX_CORE;WINDOWS_UWP
true
;2008
pdbonly
ARM
false
prompt
true
true
true
bin\x64\Debug\
DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
;2008
full
x64
false
prompt
true
bin\x64\Release\
TRACE;NETFX_CORE;WINDOWS_UWP
true
;2008
pdbonly
x64
false
prompt
true
true
PreserveNewest
ConnectTheDotsHelper.cs
App.xaml
MainPage.xaml
Designer
MSBuild:Compile
Designer
MSBuild:Compile
Designer
14.0
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/project.json
================================================
{
"dependencies": {
"Microsoft.ApplicationInsights": "2.1.0",
"Microsoft.ApplicationInsights.PersistenceChannel": "1.2.3",
"Microsoft.ApplicationInsights.WindowsApps": "1.1.1",
"Microsoft.Azure.Devices.Client": "1.1.1",
"Microsoft.Azure.Devices.Shared": "1.0.2",
"Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2",
"Newtonsoft.Json": "9.0.1",
"ZXing.Net.Mobile": "2.1.47"
},
"frameworks": {
"uap10.0": {}
},
"runtimes": {
"win10-arm": {},
"win10-arm-aot": {},
"win10-x86": {},
"win10-x86-aot": {},
"win10-x64": {},
"win10-x64-aot": {}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors/project.lock.json
================================================
{
"locked": false,
"version": 2,
"targets": {
"UAP,Version=v10.0": {
"Microsoft.ApplicationInsights/2.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tools": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.Compression": "4.0.0",
"System.Linq": "4.0.0",
"System.Net.Http": "4.0.0",
"System.Reflection": "4.0.10",
"System.Reflection.Extensions": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Text.RegularExpressions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10",
"System.Xml.XDocument": "4.0.10"
},
"compile": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
}
},
"Microsoft.ApplicationInsights.PersistenceChannel/1.2.3": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "1.2.3"
},
"compile": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
},
"runtime": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
}
},
"Microsoft.ApplicationInsights.WindowsApps/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "[1.2.3]",
"Microsoft.ApplicationInsights.PersistenceChannel": "[1.2.3]"
},
"compile": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
},
"runtime": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
}
},
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package"
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"lib/netcore50/System.Core.dll": {},
"lib/netcore50/System.Net.dll": {},
"lib/netcore50/System.Numerics.dll": {},
"lib/netcore50/System.Runtime.Serialization.dll": {},
"lib/netcore50/System.ServiceModel.Web.dll": {},
"lib/netcore50/System.ServiceModel.dll": {},
"lib/netcore50/System.Windows.dll": {},
"lib/netcore50/System.Xml.Linq.dll": {},
"lib/netcore50/System.Xml.Serialization.dll": {},
"lib/netcore50/System.Xml.dll": {},
"lib/netcore50/System.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Core.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Net.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Numerics.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.ServiceModel.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Windows.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.Xml.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/System.dll": {
"assetType": "runtime",
"rid": "aot"
},
"runtimes/aot/lib/netcore50/mscorlib.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"lib/netcore50/System.AppContext.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.AppContext.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Expressions.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
"assetType": "runtime",
"rid": "linux"
},
"runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
"assetType": "runtime",
"rid": "osx"
},
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {
"assetType": "runtime",
"rid": "win7"
}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/_._": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/_._": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.TypeExtensions.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {
"assetType": "runtime",
"rid": "win8-aot"
},
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {
"assetType": "runtime",
"rid": "win8"
}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"lib/win8/_._": {}
},
"runtimeTargets": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {
"assetType": "runtime",
"rid": "win8"
}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "unix"
},
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Threading.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtimeTargets": {
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {
"assetType": "runtime",
"rid": "aot"
}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
},
"ZXing.Net.Mobile/2.1.47": {
"type": "package",
"compile": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
},
"runtime": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
}
}
},
"UAP,Version=v10.0/win10-arm": {
"Microsoft.ApplicationInsights/2.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tools": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.Compression": "4.0.0",
"System.Linq": "4.0.0",
"System.Net.Http": "4.0.0",
"System.Reflection": "4.0.10",
"System.Reflection.Extensions": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Text.RegularExpressions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10",
"System.Xml.XDocument": "4.0.10"
},
"compile": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
}
},
"Microsoft.ApplicationInsights.PersistenceChannel/1.2.3": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "1.2.3"
},
"compile": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
},
"runtime": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
}
},
"Microsoft.ApplicationInsights.WindowsApps/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "[1.2.3]",
"Microsoft.ApplicationInsights.PersistenceChannel": "[1.2.3]"
},
"compile": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
},
"runtime": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
}
},
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package"
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"lib/netcore50/System.Core.dll": {},
"lib/netcore50/System.Net.dll": {},
"lib/netcore50/System.Numerics.dll": {},
"lib/netcore50/System.Runtime.Serialization.dll": {},
"lib/netcore50/System.ServiceModel.Web.dll": {},
"lib/netcore50/System.ServiceModel.dll": {},
"lib/netcore50/System.Windows.dll": {},
"lib/netcore50/System.Xml.Linq.dll": {},
"lib/netcore50/System.Xml.Serialization.dll": {},
"lib/netcore50/System.Xml.dll": {},
"lib/netcore50/System.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.any.System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Collections.dll": {}
}
},
"runtime.any.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.any.System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.any.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.any.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.any.System.IO/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.IO.dll": {}
}
},
"runtime.any.System.Reflection/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.any.System.Reflection.Extensions/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.any.System.Reflection.Primitives/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.any.System.Resources.ResourceManager/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.any.System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.any.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"runtime.any.System.Runtime.InteropServices/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.any.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.any.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.any.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.any.System.Threading.Timer/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win8-arm.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Private.Uri.dll": {}
}
},
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll": {},
"runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll": {}
},
"native": {
"runtimes/win8-arm/native/System.Private.CoreLib.ni.dll": {},
"runtimes/win8-arm/native/clretwrc.dll": {},
"runtimes/win8-arm/native/coreclr.dll": {},
"runtimes/win8-arm/native/dbgshim.dll": {},
"runtimes/win8-arm/native/mscordaccore.dll": {},
"runtimes/win8-arm/native/mscordbi.dll": {},
"runtimes/win8-arm/native/mscorlib.ni.dll": {},
"runtimes/win8-arm/native/mscorrc.debug.dll": {},
"runtimes/win8-arm/native/mscorrc.dll": {},
"runtimes/win8-arm/native/sos.dll": {}
}
},
"runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"native": {
"runtimes/win8-arm/native/clrcompression.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Collections": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tracing": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.any.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Extensions": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Primitives": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Resources.ResourceManager": "4.0.1"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.any.System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.any.System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.any.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
},
"ZXing.Net.Mobile/2.1.47": {
"type": "package",
"compile": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
},
"runtime": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
}
}
},
"UAP,Version=v10.0/win10-arm-aot": {
"Microsoft.ApplicationInsights/2.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tools": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.Compression": "4.0.0",
"System.Linq": "4.0.0",
"System.Net.Http": "4.0.0",
"System.Reflection": "4.0.10",
"System.Reflection.Extensions": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Text.RegularExpressions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10",
"System.Xml.XDocument": "4.0.10"
},
"compile": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
}
},
"Microsoft.ApplicationInsights.PersistenceChannel/1.2.3": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "1.2.3"
},
"compile": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
},
"runtime": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
}
},
"Microsoft.ApplicationInsights.WindowsApps/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "[1.2.3]",
"Microsoft.ApplicationInsights.PersistenceChannel": "[1.2.3]"
},
"compile": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
},
"runtime": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
}
},
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package"
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"runtimes/aot/lib/netcore50/System.Core.dll": {},
"runtimes/aot/lib/netcore50/System.Net.dll": {},
"runtimes/aot/lib/netcore50/System.Numerics.dll": {},
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
"runtimes/aot/lib/netcore50/System.Windows.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.dll": {},
"runtimes/aot/lib/netcore50/System.dll": {},
"runtimes/aot/lib/netcore50/mscorlib.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.aot.System.Collections/4.0.10": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Collections.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.aot.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.aot.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.aot.System.IO/4.1.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.IO.dll": {}
}
},
"runtime.aot.System.Reflection/4.0.10": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.aot.System.Reflection.Extensions/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.aot.System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.aot.System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.aot.System.Runtime/4.0.20": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.aot.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {}
}
},
"runtime.aot.System.Runtime.InteropServices/4.0.20": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.aot.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.aot.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.aot.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.aot.System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"compile": {
"runtimes/win10-arm-aot/lib/netcore50/_._": {}
},
"runtime": {
"runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.Uri.dll": {}
}
},
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win8-arm-aot/lib/netstandard1.0/_._": {}
},
"native": {
"runtimes/win8-arm-aot/native/_._": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Collections": "4.0.10"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tracing": "4.0.20"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.aot.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection": "4.0.10"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Primitives": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Resources.ResourceManager": "4.0.0"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.aot.System.Runtime": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.aot.System.Runtime.InteropServices": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.aot.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
},
"ZXing.Net.Mobile/2.1.47": {
"type": "package",
"compile": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
},
"runtime": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
}
}
},
"UAP,Version=v10.0/win10-x64": {
"Microsoft.ApplicationInsights/2.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tools": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.Compression": "4.0.0",
"System.Linq": "4.0.0",
"System.Net.Http": "4.0.0",
"System.Reflection": "4.0.10",
"System.Reflection.Extensions": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Text.RegularExpressions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10",
"System.Xml.XDocument": "4.0.10"
},
"compile": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
}
},
"Microsoft.ApplicationInsights.PersistenceChannel/1.2.3": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "1.2.3"
},
"compile": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
},
"runtime": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
}
},
"Microsoft.ApplicationInsights.WindowsApps/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "[1.2.3]",
"Microsoft.ApplicationInsights.PersistenceChannel": "[1.2.3]"
},
"compile": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
},
"runtime": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
}
},
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"dependencies": {
"runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3"
}
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"lib/netcore50/System.Core.dll": {},
"lib/netcore50/System.Net.dll": {},
"lib/netcore50/System.Numerics.dll": {},
"lib/netcore50/System.Runtime.Serialization.dll": {},
"lib/netcore50/System.ServiceModel.Web.dll": {},
"lib/netcore50/System.ServiceModel.dll": {},
"lib/netcore50/System.Windows.dll": {},
"lib/netcore50/System.Xml.Linq.dll": {},
"lib/netcore50/System.Xml.Serialization.dll": {},
"lib/netcore50/System.Xml.dll": {},
"lib/netcore50/System.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.any.System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Collections.dll": {}
}
},
"runtime.any.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.any.System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.any.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.any.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.any.System.IO/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.IO.dll": {}
}
},
"runtime.any.System.Reflection/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.any.System.Reflection.Extensions/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.any.System.Reflection.Primitives/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.any.System.Resources.ResourceManager/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.any.System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.any.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"runtime.any.System.Runtime.InteropServices/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.any.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.any.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.any.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.any.System.Threading.Timer/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7-x64.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"native": {
"runtimes/win7-x64/native/clrjit.dll": {}
}
},
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll": {},
"runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll": {}
},
"native": {
"runtimes/win7-x64/native/System.Private.CoreLib.ni.dll": {},
"runtimes/win7-x64/native/clretwrc.dll": {},
"runtimes/win7-x64/native/coreclr.dll": {},
"runtimes/win7-x64/native/dbgshim.dll": {},
"runtimes/win7-x64/native/mscordaccore.dll": {},
"runtimes/win7-x64/native/mscordbi.dll": {},
"runtimes/win7-x64/native/mscorlib.ni.dll": {},
"runtimes/win7-x64/native/mscorrc.debug.dll": {},
"runtimes/win7-x64/native/mscorrc.dll": {},
"runtimes/win7-x64/native/sos.dll": {}
}
},
"runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"native": {
"runtimes/win7-x64/native/clrcompression.dll": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Private.Uri.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Collections": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tracing": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.any.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Extensions": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Primitives": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Resources.ResourceManager": "4.0.1"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.any.System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.any.System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.any.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
},
"ZXing.Net.Mobile/2.1.47": {
"type": "package",
"compile": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
},
"runtime": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
}
}
},
"UAP,Version=v10.0/win10-x64-aot": {
"Microsoft.ApplicationInsights/2.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tools": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.Compression": "4.0.0",
"System.Linq": "4.0.0",
"System.Net.Http": "4.0.0",
"System.Reflection": "4.0.10",
"System.Reflection.Extensions": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Text.RegularExpressions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10",
"System.Xml.XDocument": "4.0.10"
},
"compile": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
}
},
"Microsoft.ApplicationInsights.PersistenceChannel/1.2.3": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "1.2.3"
},
"compile": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
},
"runtime": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
}
},
"Microsoft.ApplicationInsights.WindowsApps/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "[1.2.3]",
"Microsoft.ApplicationInsights.PersistenceChannel": "[1.2.3]"
},
"compile": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
},
"runtime": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
}
},
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"dependencies": {
"runtime.win7-x64.Microsoft.NETCore.Jit": "1.0.3"
}
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"runtimes/aot/lib/netcore50/System.Core.dll": {},
"runtimes/aot/lib/netcore50/System.Net.dll": {},
"runtimes/aot/lib/netcore50/System.Numerics.dll": {},
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
"runtimes/aot/lib/netcore50/System.Windows.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.dll": {},
"runtimes/aot/lib/netcore50/System.dll": {},
"runtimes/aot/lib/netcore50/mscorlib.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.aot.System.Collections/4.0.10": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Collections.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.aot.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.aot.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.aot.System.IO/4.1.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.IO.dll": {}
}
},
"runtime.aot.System.Reflection/4.0.10": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.aot.System.Reflection.Extensions/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.aot.System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.aot.System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.aot.System.Runtime/4.0.20": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.aot.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {}
}
},
"runtime.aot.System.Runtime.InteropServices/4.0.20": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.aot.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.aot.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.aot.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.aot.System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"compile": {
"runtimes/win10-x64-aot/lib/netcore50/_._": {}
},
"runtime": {
"runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll": {}
}
},
"runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"native": {
"runtimes/win7-x64-aot/native/_._": {}
}
},
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win7-x64-aot/lib/netstandard1.0/_._": {}
},
"native": {
"runtimes/win7-x64-aot/native/_._": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.Uri.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Collections": "4.0.10"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tracing": "4.0.20"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.aot.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection": "4.0.10"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Primitives": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Resources.ResourceManager": "4.0.0"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.aot.System.Runtime": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.aot.System.Runtime.InteropServices": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.aot.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
},
"ZXing.Net.Mobile/2.1.47": {
"type": "package",
"compile": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
},
"runtime": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
}
}
},
"UAP,Version=v10.0/win10-x86": {
"Microsoft.ApplicationInsights/2.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tools": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.Compression": "4.0.0",
"System.Linq": "4.0.0",
"System.Net.Http": "4.0.0",
"System.Reflection": "4.0.10",
"System.Reflection.Extensions": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Text.RegularExpressions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10",
"System.Xml.XDocument": "4.0.10"
},
"compile": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
}
},
"Microsoft.ApplicationInsights.PersistenceChannel/1.2.3": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "1.2.3"
},
"compile": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
},
"runtime": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
}
},
"Microsoft.ApplicationInsights.WindowsApps/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "[1.2.3]",
"Microsoft.ApplicationInsights.PersistenceChannel": "[1.2.3]"
},
"compile": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
},
"runtime": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
}
},
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"dependencies": {
"runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3"
}
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"lib/netcore50/System.Core.dll": {},
"lib/netcore50/System.Net.dll": {},
"lib/netcore50/System.Numerics.dll": {},
"lib/netcore50/System.Runtime.Serialization.dll": {},
"lib/netcore50/System.ServiceModel.Web.dll": {},
"lib/netcore50/System.ServiceModel.dll": {},
"lib/netcore50/System.Windows.dll": {},
"lib/netcore50/System.Xml.Linq.dll": {},
"lib/netcore50/System.Xml.Serialization.dll": {},
"lib/netcore50/System.Xml.dll": {},
"lib/netcore50/System.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.any.System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Collections.dll": {}
}
},
"runtime.any.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.any.System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.any.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.any.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.any.System.IO/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.IO.dll": {}
}
},
"runtime.any.System.Reflection/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.any.System.Reflection.Extensions/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.any.System.Reflection.Primitives/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.any.System.Resources.ResourceManager/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.any.System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.any.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"runtime.any.System.Runtime.InteropServices/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.any.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.any.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.any.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.any.System.Threading.Timer/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7-x86.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"native": {
"runtimes/win7-x86/native/clrjit.dll": {}
}
},
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll": {},
"runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll": {}
},
"native": {
"runtimes/win7-x86/native/System.Private.CoreLib.ni.dll": {},
"runtimes/win7-x86/native/clretwrc.dll": {},
"runtimes/win7-x86/native/coreclr.dll": {},
"runtimes/win7-x86/native/dbgshim.dll": {},
"runtimes/win7-x86/native/mscordaccore.dll": {},
"runtimes/win7-x86/native/mscordbi.dll": {},
"runtimes/win7-x86/native/mscorlib.ni.dll": {},
"runtimes/win7-x86/native/mscorrc.debug.dll": {},
"runtimes/win7-x86/native/mscorrc.dll": {},
"runtimes/win7-x86/native/sos.dll": {}
}
},
"runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"native": {
"runtimes/win7-x86/native/clrcompression.dll": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Private.Uri.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Collections": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Diagnostics.Tracing": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.any.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.any.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.Lightweight.dll": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Extensions": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Reflection.Primitives": "4.0.1"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.any.System.Resources.ResourceManager": "4.0.1"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.any.System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.any.System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.any.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.any.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
},
"ZXing.Net.Mobile/2.1.47": {
"type": "package",
"compile": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
},
"runtime": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
}
}
},
"UAP,Version=v10.0/win10-x86-aot": {
"Microsoft.ApplicationInsights/2.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tools": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.Compression": "4.0.0",
"System.Linq": "4.0.0",
"System.Net.Http": "4.0.0",
"System.Reflection": "4.0.10",
"System.Reflection.Extensions": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Text.RegularExpressions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10",
"System.Xml.XDocument": "4.0.10"
},
"compile": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.ApplicationInsights.dll": {}
}
},
"Microsoft.ApplicationInsights.PersistenceChannel/1.2.3": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "1.2.3"
},
"compile": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
},
"runtime": {
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll": {}
}
},
"Microsoft.ApplicationInsights.WindowsApps/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.ApplicationInsights": "[1.2.3]",
"Microsoft.ApplicationInsights.PersistenceChannel": "[1.2.3]"
},
"compile": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
},
"runtime": {
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll": {}
}
},
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Net.Http": "2.2.22",
"Newtonsoft.Json": "6.0.4"
},
"compile": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
},
"runtime": {
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll": {}
}
},
"Microsoft.Azure.Amqp/1.1.5": {
"type": "package",
"compile": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll": {}
}
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"type": "package",
"dependencies": {
"Microsoft.AspNet.WebApi.Client": "5.2.3",
"Microsoft.Azure.Amqp": "1.1.5",
"PCLCrypto": "1.0.86",
"Validation": "2.2.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd": {}
}
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"compile": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
},
"runtime": {
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll": {}
}
},
"Microsoft.Bcl/1.1.9": {
"type": "package",
"dependencies": {
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/_._": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"Microsoft.Bcl.Build/1.0.14": {
"type": "package"
},
"Microsoft.CSharp/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.CSharp.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.CSharp.dll": {}
}
},
"Microsoft.Net.Http/2.2.22": {
"type": "package",
"dependencies": {
"Microsoft.Bcl": "1.1.9",
"Microsoft.Bcl.Build": "1.0.14"
},
"compile": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
},
"runtime": {
"lib/win8/System.Net.Http.Extensions.dll": {},
"lib/win8/System.Net.Http.Primitives.dll": {}
}
},
"Microsoft.NETCore/5.0.2": {
"type": "package",
"dependencies": {
"Microsoft.CSharp": "4.0.1",
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.VisualBasic": "10.0.1",
"System.AppContext": "4.1.0",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.Immutable": "1.2.0",
"System.ComponentModel": "4.0.1",
"System.ComponentModel.Annotations": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Diagnostics.Tracing": "4.1.0",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.Globalization.Extensions": "4.0.1",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.1",
"System.IO.Compression.ZipFile": "4.0.1",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.IO.UnmanagedMemoryStream": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Parallel": "4.0.1",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Numerics.Vectors": "4.1.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Metadata": "1.3.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Dataflow": "4.6.0",
"System.Threading.Tasks.Parallel": "4.0.1",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XDocument": "4.0.11"
}
},
"Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"dependencies": {
"runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.3"
}
},
"Microsoft.NETCore.Platforms/1.0.1": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
},
"compile": {
"ref/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"ref/netcore50/System.Core.dll": {},
"ref/netcore50/System.Net.dll": {},
"ref/netcore50/System.Numerics.dll": {},
"ref/netcore50/System.Runtime.Serialization.dll": {},
"ref/netcore50/System.ServiceModel.Web.dll": {},
"ref/netcore50/System.ServiceModel.dll": {},
"ref/netcore50/System.Windows.dll": {},
"ref/netcore50/System.Xml.Linq.dll": {},
"ref/netcore50/System.Xml.Serialization.dll": {},
"ref/netcore50/System.Xml.dll": {},
"ref/netcore50/System.dll": {},
"ref/netcore50/mscorlib.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {},
"runtimes/aot/lib/netcore50/System.Core.dll": {},
"runtimes/aot/lib/netcore50/System.Net.dll": {},
"runtimes/aot/lib/netcore50/System.Numerics.dll": {},
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {},
"runtimes/aot/lib/netcore50/System.ServiceModel.dll": {},
"runtimes/aot/lib/netcore50/System.Windows.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {},
"runtimes/aot/lib/netcore50/System.Xml.dll": {},
"runtimes/aot/lib/netcore50/System.dll": {},
"runtimes/aot/lib/netcore50/mscorlib.dll": {}
}
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Jit": "1.0.3",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1",
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.2"
}
},
"Microsoft.NETCore.Targets/1.0.2": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore": "5.0.2",
"Microsoft.NETCore.Portable.Compatibility": "1.0.2",
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.3",
"Microsoft.NETCore.Targets": "1.0.2",
"Microsoft.Win32.Primitives": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Data.Common": "4.1.0",
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.StackTrace": "4.0.2",
"System.IO.IsolatedStorage": "4.0.1",
"System.Net.Http.Rtc": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Requests": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.Numerics.Vectors.WindowsRuntime": "4.0.1",
"System.Reflection.Context": "4.0.1",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.Serialization.Json": "4.0.2",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Runtime.WindowsRuntime.UI.Xaml": "4.0.1",
"System.ServiceModel.Duplex": "4.0.1",
"System.ServiceModel.Http": "4.1.0",
"System.ServiceModel.NetTcp": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.ServiceModel.Security": "4.0.1",
"System.Text.Encoding.CodePages": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
"Microsoft.VisualBasic/10.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/Microsoft.VisualBasic.dll": {}
},
"runtime": {
"lib/netcore50/Microsoft.VisualBasic.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.Microsoft.Win32.Primitives": "4.0.1"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
},
"runtime": {
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll": {}
}
},
"PCLCrypto/1.0.86": {
"type": "package",
"dependencies": {
"Validation": "[2.0.6, 3.0.0)"
},
"compile": {
"lib/win81/PCLCrypto.dll": {}
},
"runtime": {
"lib/win81/PCLCrypto.dll": {}
}
},
"runtime.aot.System.Collections/4.0.10": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Collections.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tools/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll": {}
}
},
"runtime.aot.System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll": {}
}
},
"runtime.aot.System.Globalization/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.dll": {}
}
},
"runtime.aot.System.Globalization.Calendars/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll": {}
}
},
"runtime.aot.System.IO/4.1.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.IO.dll": {}
}
},
"runtime.aot.System.Reflection/4.0.10": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.dll": {}
}
},
"runtime.aot.System.Reflection.Extensions/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll": {}
}
},
"runtime.aot.System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll": {}
}
},
"runtime.aot.System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll": {}
}
},
"runtime.aot.System.Runtime/4.0.20": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.dll": {}
}
},
"runtime.aot.System.Runtime.Handles/4.0.1": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Handles.dll": {}
}
},
"runtime.aot.System.Runtime.InteropServices/4.0.20": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll": {}
}
},
"runtime.aot.System.Text.Encoding/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.dll": {}
}
},
"runtime.aot.System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {}
}
},
"runtime.aot.System.Threading.Tasks/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Tasks.dll": {}
}
},
"runtime.aot.System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.Timer.dll": {}
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "4.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1"
},
"compile": {
"lib/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.0/_._": {}
}
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll": {}
}
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll": {}
}
},
"runtime.win.System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Primitives.dll": {}
}
},
"runtime.win.System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Sockets.dll": {}
}
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.1"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll": {}
}
},
"runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": {
"type": "package",
"compile": {
"runtimes/win10-x86-aot/lib/netcore50/_._": {}
},
"runtime": {
"runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll": {}
}
},
"runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": {
"type": "package",
"native": {
"runtimes/win7-x86-aot/native/_._": {}
}
},
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"type": "package",
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/win7-x86-aot/lib/netstandard1.0/_._": {}
},
"native": {
"runtimes/win7-x86-aot/native/_._": {}
}
},
"runtime.win7.System.Private.Uri/4.0.2": {
"type": "package",
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.Uri.dll": {}
}
},
"System.AppContext/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.AppContext.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.AppContext.dll": {}
}
},
"System.Buffers/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
"System.Collections/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Collections": "4.0.10"
},
"compile": {
"ref/netcore50/System.Collections.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netcore50/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.Immutable/1.2.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.0.1": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
"System.Collections.Specialized/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.NonGeneric": "4.0.1",
"System.Globalization": "4.0.11",
"System.Globalization.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
"System.ComponentModel/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.ComponentModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.dll": {}
}
},
"System.ComponentModel.Annotations/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel": "4.0.1",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.Annotations.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Data.Common/4.1.0": {
"type": "package",
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
},
"runtime": {
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
"System.Diagnostics.Contracts/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll": {}
}
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Diagnostics.Debug": "4.0.11"
},
"compile": {
"ref/netcore50/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"compile": {
"lib/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
"System.Diagnostics.StackTrace/4.0.2": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {}
}
},
"System.Diagnostics.Tools/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tools": "4.0.1"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tools.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Diagnostics.Tracing": "4.0.20"
},
"compile": {
"ref/netcore50/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Dynamic.Runtime/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Dynamic.Runtime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll": {}
}
},
"System.Globalization/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization": "4.0.11"
},
"compile": {
"ref/netcore50/System.Globalization.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Runtime": "4.1.0",
"runtime.aot.System.Globalization.Calendars": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
}
},
"System.IO/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.aot.System.IO": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.IO.Compression/4.1.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.native.System.IO.Compression": "4.1.0"
},
"compile": {
"ref/netcore50/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
}
},
"System.IO.Compression.ZipFile/4.0.1": {
"type": "package",
"dependencies": {
"System.Buffers": "4.0.0",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
"System.IO.FileSystem/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.IO.FileSystem": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.IsolatedStorage/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.IO.IsolatedStorage.dll": {}
},
"runtime": {
"lib/netcore50/System.IO.IsolatedStorage.dll": {}
}
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
"System.Linq/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.dll": {}
}
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Expressions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Linq.Queryable.dll": {}
},
"runtime": {
"lib/netcore50/System.Linq.Queryable.dll": {}
}
},
"System.Net.Http/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.dll": {}
}
},
"System.Net.Http.Rtc/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Net.Http": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Net.Http.Rtc.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll": {}
}
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll": {}
}
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.NetworkInformation.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll": {}
}
},
"System.Net.Primitives/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.win.System.Net.Primitives": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Net.Requests/4.0.11": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Net.Requests.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
}
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"runtime.win.System.Net.Sockets": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices.WindowsRuntime": "4.0.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.Client.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll": {}
}
},
"System.Numerics.Vectors/4.1.1": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Numerics.Vectors": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
},
"runtime": {
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll": {}
}
},
"System.ObjectModel/4.0.12": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netcore50/System.ObjectModel.dll": {}
}
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll": {}
}
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.0.1",
"System.Collections.Specialized": "4.0.1",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Runtime.WindowsRuntime": "4.0.11",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1",
"System.Xml.XmlSerializer": "4.0.11"
},
"compile": {
"ref/netstandard/_._": {}
},
"runtime": {
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll": {}
}
},
"System.Private.Uri/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.win7.System.Private.Uri": "4.0.2"
},
"compile": {
"ref/netstandard/_._": {}
}
},
"System.Reflection/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection": "4.0.10"
},
"compile": {
"ref/netcore50/System.Reflection.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Context/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Reflection.Context.dll": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Context.dll": {}
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {}
}
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netcore50/System.Reflection.Emit.dll": {}
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/_._": {}
}
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.Metadata/1.3.0": {
"type": "package",
"dependencies": {
"System.Collections.Immutable": "1.2.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
},
"runtime": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Reflection.Primitives": "4.0.0"
},
"compile": {
"ref/netcore50/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Contracts": "4.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {}
}
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"runtime.aot.System.Resources.ResourceManager": "4.0.0"
},
"compile": {
"ref/netcore50/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"runtime.aot.System.Runtime": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.win.System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.Handles/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Runtime.Handles": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"runtime.aot.System.Runtime.InteropServices": "4.0.20"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {}
}
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Numerics.dll": {}
}
},
"System.Runtime.Serialization.Json/4.0.2": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Json.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Json.dll": {}
}
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll": {}
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"dependencies": {
"System.IO": "4.1.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
"lib/netcore50/System.Runtime.Serialization.Xml.dll": {}
}
},
"System.Runtime.WindowsRuntime/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.dll": {}
},
"runtime": {
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {}
}
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Runtime.WindowsRuntime": "4.0.11"
},
"compile": {
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
},
"runtime": {
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll": {}
}
},
"System.Security.Claims/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Principal": "4.0.1"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netstandard1.4/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0"
},
"compile": {
"ref/netcore50/System.Security.Principal.dll": {}
},
"runtime": {
"lib/netcore50/System.Security.Principal.dll": {}
}
},
"System.ServiceModel.Duplex/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Duplex.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0",
"System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Http.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.1.0": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.11",
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.NetTcp.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.0.1": {
"type": "package",
"dependencies": {
"System.Private.ServiceModel": "4.1.0",
"System.Runtime": "4.1.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.ServiceModel.Primitives": "4.1.0"
},
"compile": {
"ref/netcore50/System.ServiceModel.Security.dll": {}
},
"runtime": {
"lib/netcore50/System.ServiceModel.Security.dll": {}
}
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Text.Encoding": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.Encoding.CodePages/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
}
},
"System.Text.Encoding.Extensions/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"runtime.aot.System.Text.Encoding.Extensions": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Text.RegularExpressions/4.1.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netcore50/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netcore50/System.Text.RegularExpressions.dll": {}
}
},
"System.Threading/4.0.11": {
"type": "package",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Handles": "4.0.1",
"System.Runtime.InteropServices": "4.1.0",
"System.Threading": "4.0.11"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll": {}
}
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/win8/_._": {}
}
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
},
"runtime": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.0.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/_._": {}
},
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
"System.Threading.Tasks.Parallel/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tracing": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11",
"System.Threading.Tasks": "4.0.11"
},
"compile": {
"ref/netcore50/System.Threading.Tasks.Parallel.dll": {}
},
"runtime": {
"lib/netcore50/System.Threading.Tasks.Parallel.dll": {}
}
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1",
"Microsoft.NETCore.Targets": "1.0.1",
"System.Runtime": "4.1.0",
"runtime.aot.System.Threading.Timer": "4.0.1"
},
"compile": {
"ref/netcore50/System.Threading.Timer.dll": {}
},
"runtime": {
"lib/win81/_._": {}
}
},
"System.Xml.ReaderWriter/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.InteropServices": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading.Tasks": "4.0.11",
"System.Threading.Tasks.Extensions": "4.0.0"
},
"compile": {
"ref/netcore50/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.ReaderWriter.dll": {}
}
},
"System.Xml.XDocument/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netcore50/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netcore50/System.Xml.XDocument.dll": {}
}
},
"System.Xml.XmlDocument/4.0.1": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11"
},
"compile": {
"ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
}
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Text.RegularExpressions": "4.1.0",
"System.Threading": "4.0.11",
"System.Xml.ReaderWriter": "4.0.11",
"System.Xml.XmlDocument": "4.0.1"
},
"compile": {
"ref/netcore50/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll": {}
}
},
"Validation/2.2.8": {
"type": "package",
"compile": {
"lib/dotnet/Validation.dll": {}
},
"runtime": {
"lib/dotnet/Validation.dll": {}
}
},
"ZXing.Net.Mobile/2.1.47": {
"type": "package",
"compile": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
},
"runtime": {
"lib/UAP10/ZXing.Net.Mobile.Core.dll": {},
"lib/UAP10/ZXingNetMobile.dll": {},
"lib/UAP10/zxing.portable.dll": {}
}
}
}
},
"libraries": {
"Microsoft.ApplicationInsights/2.1.0": {
"sha512": "mviO8PLQd3r22Pmv8JfjYzTCQ9ByhkU9wdC4fwd6WmAARwAMgMw9HEbHeYS3r+8pB3w+fZMi7p4LKijzgNybRQ==",
"type": "package",
"path": "Microsoft.ApplicationInsights/2.1.0",
"files": [
"Microsoft.ApplicationInsights.2.1.0.nupkg.sha512",
"Microsoft.ApplicationInsights.nuspec",
"lib/dotnet5.4/Microsoft.ApplicationInsights.XML",
"lib/dotnet5.4/Microsoft.ApplicationInsights.dll",
"lib/net40/Microsoft.ApplicationInsights.XML",
"lib/net40/Microsoft.ApplicationInsights.dll",
"lib/net45/Microsoft.ApplicationInsights.XML",
"lib/net45/Microsoft.ApplicationInsights.dll",
"lib/net46/Microsoft.ApplicationInsights.XML",
"lib/net46/Microsoft.ApplicationInsights.dll",
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
"lib/uap10.0/Microsoft.ApplicationInsights.dll",
"lib/wp8/Microsoft.ApplicationInsights.dll"
]
},
"Microsoft.ApplicationInsights.PersistenceChannel/1.2.3": {
"sha512": "5MGcvPQVaGlGyAVh9adg4sSkIVSYDKn+H3+YnZa9hi1gH/g6UsRt4HLc8vp/IxjlbmXbJyAB7dYJV/NHmAGAgA==",
"type": "package",
"path": "Microsoft.ApplicationInsights.PersistenceChannel/1.2.3",
"files": [
"Microsoft.ApplicationInsights.PersistenceChannel.1.2.3.nupkg.sha512",
"Microsoft.ApplicationInsights.PersistenceChannel.nuspec",
"lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.XML",
"lib/net40/Microsoft.ApplicationInsights.PersistenceChannel.dll",
"lib/net45/Microsoft.ApplicationInsights.PersistenceChannel.XML",
"lib/net45/Microsoft.ApplicationInsights.PersistenceChannel.dll",
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.XML",
"lib/portable-win81+wpa81/Microsoft.ApplicationInsights.PersistenceChannel.dll",
"lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.XML",
"lib/wp8/Microsoft.ApplicationInsights.PersistenceChannel.dll"
]
},
"Microsoft.ApplicationInsights.WindowsApps/1.1.1": {
"sha512": "Orj0UQrjQ2z0aWZZoexl734Ge7Q4oVev3VFSsk6t8l2kImrfJ1eygkJWtQ1d7u0kF6MLLrvUvsMSxo+0rgPiMQ==",
"type": "package",
"path": "Microsoft.ApplicationInsights.WindowsApps/1.1.1",
"files": [
"Microsoft.ApplicationInsights.WindowsApps.1.1.1.nupkg.sha512",
"Microsoft.ApplicationInsights.WindowsApps.nuspec",
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
"lib/win81/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
"lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
"lib/wp8/Microsoft.ApplicationInsights.Extensibility.Windows.dll",
"lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.XML",
"lib/wpa81/Microsoft.ApplicationInsights.Extensibility.Windows.dll"
]
},
"Microsoft.AspNet.WebApi.Client/5.2.3": {
"sha512": "3kiI8peSXbXHDDrRuo+QaX0iCEVRe0nvn2dBDRw656uPX32UalbBlSIDUDlJxu05eau4tnuhsikiUuugvvoUoQ==",
"type": "package",
"path": "Microsoft.AspNet.WebApi.Client/5.2.3",
"files": [
"Microsoft.AspNet.WebApi.Client.5.2.3.nupkg.sha512",
"Microsoft.AspNet.WebApi.Client.nuspec",
"lib/net45/System.Net.Http.Formatting.dll",
"lib/net45/System.Net.Http.Formatting.xml",
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll",
"lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml"
]
},
"Microsoft.Azure.Amqp/1.1.5": {
"sha512": "6+3lPVW46h3H2NvjGtrHv+C0P3PVH11pZyCePm+w8AuhmX59OY+fvbA9/wll0MRAj81LPpz1i55oIQm41wOv7g==",
"type": "package",
"path": "Microsoft.Azure.Amqp/1.1.5",
"files": [
"Microsoft.Azure.Amqp.1.1.5.nupkg.sha512",
"Microsoft.Azure.Amqp.nuspec",
"lib/net451/Microsoft.Azure.Amqp.XML",
"lib/net451/Microsoft.Azure.Amqp.dll",
"lib/uap10.0/Microsoft.Azure.Amqp.Uwp.dll"
]
},
"Microsoft.Azure.Devices.Client/1.1.1": {
"sha512": "BLh4z61INbQtdVXkhYsIiNqbYy9w7jcem4lqlSX8qZUIxIYsldN2U0QsLOgH9CP67N2lXaDtdAdnondIWehMPw==",
"type": "package",
"path": "Microsoft.Azure.Devices.Client/1.1.1",
"files": [
"Microsoft.Azure.Devices.Client.1.1.1.nupkg.sha512",
"Microsoft.Azure.Devices.Client.nuspec",
"build/native/Microsoft.Azure.Devices.Client.targets",
"lib/native/Microsoft.Azure.Devices.Client.winmd",
"lib/net45/Microsoft.Azure.Devices.Client.dll",
"lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10/Microsoft.Azure.Devices.Client.PCL.dll",
"lib/uap10.0/Microsoft.Azure.Devices.Client.pri",
"lib/uap10.0/Microsoft.Azure.Devices.Client.winmd",
"thirdpartynotice.txt"
]
},
"Microsoft.Azure.Devices.Shared/1.0.2": {
"sha512": "4j+6UpDVNvIuzmZussC+sMi2GioiNyhNwGioVKqVj7wKk1oY7pfd6Yt8Qjc4za++IYhDRoRo3yHM5YeJWskCwQ==",
"type": "package",
"path": "Microsoft.Azure.Devices.Shared/1.0.2",
"files": [
"Microsoft.Azure.Devices.Shared.1.0.2.nupkg.sha512",
"Microsoft.Azure.Devices.Shared.nuspec",
"lib/net45/Microsoft.Azure.Devices.Shared.dll",
"lib/portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10/Microsoft.Azure.Devices.Shared.PCL.dll",
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.dll",
"lib/uap10.0/Microsoft.Azure.Devices.Shared.WinRT.pri",
"thirdpartynotice.txt"
]
},
"Microsoft.Bcl/1.1.9": {
"sha512": "USQ55innJy8K+tAXvVa1O8dUTp2s7pmJ5cJj6Tl02HtGc2xBDj0P2QH5620HbGXIWKWYhydoeQF8Rm/JRDBGhw==",
"type": "package",
"path": "Microsoft.Bcl/1.1.9",
"files": [
"License-Stable.rtf",
"Microsoft.Bcl.1.1.9.nupkg.sha512",
"Microsoft.Bcl.nuspec",
"content/monoandroid/_._",
"content/monotouch/_._",
"content/net45/_._",
"content/portable-net45+win8+wp8+wpa81/_._",
"content/portable-net45+win8+wpa81/_._",
"content/portable-net451+win81+wpa81/_._",
"content/portable-net451+win81/_._",
"content/portable-win81+wp81+wpa81/_._",
"content/sl4/_._",
"content/sl5/_._",
"content/win8/_._",
"content/wp8/_._",
"content/wpa81/_._",
"lib/monoandroid/_._",
"lib/monotouch/_._",
"lib/net40/System.IO.dll",
"lib/net40/System.IO.xml",
"lib/net40/System.Runtime.dll",
"lib/net40/System.Runtime.xml",
"lib/net40/System.Threading.Tasks.dll",
"lib/net40/System.Threading.Tasks.xml",
"lib/net40/ensureRedirect.xml",
"lib/net45/_._",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.xml",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.xml",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll",
"lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.xml",
"lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml",
"lib/portable-net40+sl4+win8/System.IO.dll",
"lib/portable-net40+sl4+win8/System.IO.xml",
"lib/portable-net40+sl4+win8/System.Runtime.dll",
"lib/portable-net40+sl4+win8/System.Runtime.xml",
"lib/portable-net40+sl4+win8/System.Threading.Tasks.dll",
"lib/portable-net40+sl4+win8/System.Threading.Tasks.xml",
"lib/portable-net40+sl4+win8/ensureRedirect.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll",
"lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.xml",
"lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml",
"lib/portable-net40+win8+wp8+wpa81/System.IO.dll",
"lib/portable-net40+win8+wp8+wpa81/System.IO.xml",
"lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll",
"lib/portable-net40+win8+wp8+wpa81/System.Runtime.xml",
"lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll",
"lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.xml",
"lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml",
"lib/portable-net40+win8/System.IO.dll",
"lib/portable-net40+win8/System.IO.xml",
"lib/portable-net40+win8/System.Runtime.dll",
"lib/portable-net40+win8/System.Runtime.xml",
"lib/portable-net40+win8/System.Threading.Tasks.dll",
"lib/portable-net40+win8/System.Threading.Tasks.xml",
"lib/portable-net40+win8/ensureRedirect.xml",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/portable-net45+win8+wpa81/_._",
"lib/portable-net451+win81+wpa81/_._",
"lib/portable-net451+win81/_._",
"lib/portable-win81+wp81+wpa81/_._",
"lib/sl4-windowsphone71/System.IO.dll",
"lib/sl4-windowsphone71/System.IO.xml",
"lib/sl4-windowsphone71/System.Runtime.dll",
"lib/sl4-windowsphone71/System.Runtime.xml",
"lib/sl4-windowsphone71/System.Threading.Tasks.dll",
"lib/sl4-windowsphone71/System.Threading.Tasks.xml",
"lib/sl4-windowsphone71/ensureRedirect.xml",
"lib/sl4/System.IO.dll",
"lib/sl4/System.IO.xml",
"lib/sl4/System.Runtime.dll",
"lib/sl4/System.Runtime.xml",
"lib/sl4/System.Threading.Tasks.dll",
"lib/sl4/System.Threading.Tasks.xml",
"lib/sl5/System.IO.dll",
"lib/sl5/System.IO.xml",
"lib/sl5/System.Runtime.dll",
"lib/sl5/System.Runtime.xml",
"lib/sl5/System.Threading.Tasks.dll",
"lib/sl5/System.Threading.Tasks.xml",
"lib/win8/_._",
"lib/wp8/_._",
"lib/wpa81/_._"
]
},
"Microsoft.Bcl.Build/1.0.14": {
"sha512": "cDLKSvNvRa519hplsbSoYqO69TjdDIhfjtKUM0g20/nVROoWsGav9KCI9HtnGjLmdV1+TcUUDhbotcllibjPEA==",
"type": "package",
"path": "Microsoft.Bcl.Build/1.0.14",
"files": [
"License-Stable.rtf",
"Microsoft.Bcl.Build.1.0.14.nupkg.sha512",
"Microsoft.Bcl.Build.nuspec",
"content/net40/_._",
"content/netcore45/_._",
"content/portable-net40+win8+sl4+wp71+wpa81/_._",
"content/sl4-windowsphone71/_._",
"content/sl4/_._",
"tools/Install.ps1",
"tools/Microsoft.Bcl.Build.Tasks.dll",
"tools/Microsoft.Bcl.Build.targets",
"tools/Uninstall.ps1"
]
},
"Microsoft.CSharp/4.0.1": {
"sha512": "/2JrH4hvYpwr7yFv3eSY2q2SG/74efeSmD0vgf2Obmgo4NsSceHgig62lYGgSEyWIpjEZZ0LJgOop7hTfB7WqQ==",
"type": "package",
"path": "Microsoft.CSharp/4.0.1",
"files": [
"Microsoft.CSharp.4.0.1.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/Microsoft.CSharp.dll",
"lib/netstandard1.3/Microsoft.CSharp.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/Microsoft.CSharp.dll",
"ref/netcore50/Microsoft.CSharp.xml",
"ref/netcore50/de/Microsoft.CSharp.xml",
"ref/netcore50/es/Microsoft.CSharp.xml",
"ref/netcore50/fr/Microsoft.CSharp.xml",
"ref/netcore50/it/Microsoft.CSharp.xml",
"ref/netcore50/ja/Microsoft.CSharp.xml",
"ref/netcore50/ko/Microsoft.CSharp.xml",
"ref/netcore50/ru/Microsoft.CSharp.xml",
"ref/netcore50/zh-hans/Microsoft.CSharp.xml",
"ref/netcore50/zh-hant/Microsoft.CSharp.xml",
"ref/netstandard1.0/Microsoft.CSharp.dll",
"ref/netstandard1.0/Microsoft.CSharp.xml",
"ref/netstandard1.0/de/Microsoft.CSharp.xml",
"ref/netstandard1.0/es/Microsoft.CSharp.xml",
"ref/netstandard1.0/fr/Microsoft.CSharp.xml",
"ref/netstandard1.0/it/Microsoft.CSharp.xml",
"ref/netstandard1.0/ja/Microsoft.CSharp.xml",
"ref/netstandard1.0/ko/Microsoft.CSharp.xml",
"ref/netstandard1.0/ru/Microsoft.CSharp.xml",
"ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
"ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"Microsoft.Net.Http/2.2.22": {
"sha512": "bqVLJ2UimlAEs2bn3y28lB1pmFRxuysv9pFyB0A86WEMYGYTfDyfjAGjm0fiaSRjlMNU1jVnp8Mxt8qe4OmpXQ==",
"type": "package",
"path": "Microsoft.Net.Http/2.2.22",
"files": [
"License-Stable.rtf",
"Microsoft.Net.Http.2.2.22.nupkg.sha512",
"Microsoft.Net.Http.nuspec",
"lib/monoandroid/System.Net.Http.Extensions.XML",
"lib/monoandroid/System.Net.Http.Extensions.dll",
"lib/monoandroid/System.Net.Http.Primitives.dll",
"lib/monoandroid/System.Net.Http.Primitives.xml",
"lib/monotouch/System.Net.Http.Extensions.XML",
"lib/monotouch/System.Net.Http.Extensions.dll",
"lib/monotouch/System.Net.Http.Primitives.dll",
"lib/monotouch/System.Net.Http.Primitives.xml",
"lib/net40/System.Net.Http.Extensions.XML",
"lib/net40/System.Net.Http.Extensions.dll",
"lib/net40/System.Net.Http.Primitives.dll",
"lib/net40/System.Net.Http.Primitives.xml",
"lib/net40/System.Net.Http.WebRequest.dll",
"lib/net40/System.Net.Http.WebRequest.xml",
"lib/net40/System.Net.Http.dll",
"lib/net40/System.Net.Http.xml",
"lib/net40/ensureRedirect.xml",
"lib/net45/System.Net.Http.Extensions.XML",
"lib/net45/System.Net.Http.Extensions.dll",
"lib/net45/System.Net.Http.Primitives.dll",
"lib/net45/System.Net.Http.Primitives.xml",
"lib/net45/ensureRedirect.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.XML",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Extensions.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.XML",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.Primitives.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.dll",
"lib/portable-net40+sl4+win8+wp71+wpa81/System.Net.Http.xml",
"lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml",
"lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.XML",
"lib/portable-net45+win8+wpa81/System.Net.Http.Extensions.dll",
"lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.dll",
"lib/portable-net45+win8+wpa81/System.Net.Http.Primitives.xml",
"lib/portable-net45+win8+wpa81/ensureRedirect.xml",
"lib/portable-net45+win8/System.Net.Http.Extensions.XML",
"lib/portable-net45+win8/System.Net.Http.Extensions.dll",
"lib/portable-net45+win8/System.Net.Http.Primitives.dll",
"lib/portable-net45+win8/System.Net.Http.Primitives.xml",
"lib/portable-net45+win8/ensureRedirect.xml",
"lib/sl4-windowsphone71/System.Net.Http.Extensions.XML",
"lib/sl4-windowsphone71/System.Net.Http.Extensions.dll",
"lib/sl4-windowsphone71/System.Net.Http.Primitives.XML",
"lib/sl4-windowsphone71/System.Net.Http.Primitives.dll",
"lib/sl4-windowsphone71/System.Net.Http.dll",
"lib/sl4-windowsphone71/System.Net.Http.xml",
"lib/win8/System.Net.Http.Extensions.XML",
"lib/win8/System.Net.Http.Extensions.dll",
"lib/win8/System.Net.Http.Primitives.dll",
"lib/win8/System.Net.Http.Primitives.xml",
"lib/wpa81/System.Net.Http.Extensions.XML",
"lib/wpa81/System.Net.Http.Extensions.dll",
"lib/wpa81/System.Net.Http.Primitives.dll",
"lib/wpa81/System.Net.Http.Primitives.xml"
]
},
"Microsoft.NETCore/5.0.2": {
"sha512": "wHb/fpL+6IxrZBAL2BwRJmj51RwYr3TVcnw5KIsxUtqLxjsqgasTbBmE9kZPAlhhljnt+m2EYMc7vcFuAhGNqA==",
"type": "package",
"path": "Microsoft.NETCore/5.0.2",
"files": [
"Microsoft.NETCore.5.0.2.nupkg.sha512",
"Microsoft.NETCore.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
]
},
"Microsoft.NETCore.Jit/1.0.3": {
"sha512": "/l8xYwtoJrFSx9zMWRClaKrgR+BTstCD1E5P90ADgiwH0GwlEqVhLoFIrsXpYj0j9vCB/fzOq7D/ZzuCbtmrTQ==",
"type": "package",
"path": "Microsoft.NETCore.Jit/1.0.3",
"files": [
"Microsoft.NETCore.Jit.1.0.3.nupkg.sha512",
"Microsoft.NETCore.Jit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
"Microsoft.NETCore.Platforms/1.0.1": {
"sha512": "mkZFCSzkvORyFJAf4xx0g6HgPUdwd/FqtJ+2Y0x3zPR987AOutHyY1F6XfNxRN1I2MJtmz00L8BxAFfd+Pnldw==",
"type": "package",
"path": "Microsoft.NETCore.Platforms/1.0.1",
"files": [
"Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.json"
]
},
"Microsoft.NETCore.Portable.Compatibility/1.0.2": {
"sha512": "sR4m1GQ8Tbg+Xdbf8Y8yC+LXKSUJUVe/B5vckCAU9Jd5MYf84gC1D0u2YeA72B4WjeWewCyHRB20ddA8hyLmqQ==",
"type": "package",
"path": "Microsoft.NETCore.Portable.Compatibility/1.0.2",
"files": [
"Microsoft.NETCore.Portable.Compatibility.1.0.2.nupkg.sha512",
"Microsoft.NETCore.Portable.Compatibility.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.ComponentModel.DataAnnotations.dll",
"lib/netcore50/System.Core.dll",
"lib/netcore50/System.Net.dll",
"lib/netcore50/System.Numerics.dll",
"lib/netcore50/System.Runtime.Serialization.dll",
"lib/netcore50/System.ServiceModel.Web.dll",
"lib/netcore50/System.ServiceModel.dll",
"lib/netcore50/System.Windows.dll",
"lib/netcore50/System.Xml.Linq.dll",
"lib/netcore50/System.Xml.Serialization.dll",
"lib/netcore50/System.Xml.dll",
"lib/netcore50/System.dll",
"lib/netstandard1.0/System.ComponentModel.DataAnnotations.dll",
"lib/netstandard1.0/System.Core.dll",
"lib/netstandard1.0/System.Net.dll",
"lib/netstandard1.0/System.Numerics.dll",
"lib/netstandard1.0/System.Runtime.Serialization.dll",
"lib/netstandard1.0/System.ServiceModel.Web.dll",
"lib/netstandard1.0/System.ServiceModel.dll",
"lib/netstandard1.0/System.Windows.dll",
"lib/netstandard1.0/System.Xml.Linq.dll",
"lib/netstandard1.0/System.Xml.Serialization.dll",
"lib/netstandard1.0/System.Xml.dll",
"lib/netstandard1.0/System.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"ref/net45/_._",
"ref/netcore50/System.ComponentModel.DataAnnotations.dll",
"ref/netcore50/System.Core.dll",
"ref/netcore50/System.Net.dll",
"ref/netcore50/System.Numerics.dll",
"ref/netcore50/System.Runtime.Serialization.dll",
"ref/netcore50/System.ServiceModel.Web.dll",
"ref/netcore50/System.ServiceModel.dll",
"ref/netcore50/System.Windows.dll",
"ref/netcore50/System.Xml.Linq.dll",
"ref/netcore50/System.Xml.Serialization.dll",
"ref/netcore50/System.Xml.dll",
"ref/netcore50/System.dll",
"ref/netcore50/mscorlib.dll",
"ref/netstandard1.0/System.ComponentModel.DataAnnotations.dll",
"ref/netstandard1.0/System.Core.dll",
"ref/netstandard1.0/System.Net.dll",
"ref/netstandard1.0/System.Numerics.dll",
"ref/netstandard1.0/System.Runtime.Serialization.dll",
"ref/netstandard1.0/System.ServiceModel.Web.dll",
"ref/netstandard1.0/System.ServiceModel.dll",
"ref/netstandard1.0/System.Windows.dll",
"ref/netstandard1.0/System.Xml.Linq.dll",
"ref/netstandard1.0/System.Xml.Serialization.dll",
"ref/netstandard1.0/System.Xml.dll",
"ref/netstandard1.0/System.dll",
"ref/netstandard1.0/mscorlib.dll",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll",
"runtimes/aot/lib/netcore50/System.Core.dll",
"runtimes/aot/lib/netcore50/System.Net.dll",
"runtimes/aot/lib/netcore50/System.Numerics.dll",
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll",
"runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll",
"runtimes/aot/lib/netcore50/System.ServiceModel.dll",
"runtimes/aot/lib/netcore50/System.Windows.dll",
"runtimes/aot/lib/netcore50/System.Xml.Linq.dll",
"runtimes/aot/lib/netcore50/System.Xml.Serialization.dll",
"runtimes/aot/lib/netcore50/System.Xml.dll",
"runtimes/aot/lib/netcore50/System.dll",
"runtimes/aot/lib/netcore50/mscorlib.dll"
]
},
"Microsoft.NETCore.Runtime.CoreCLR/1.0.3": {
"sha512": "tjD5r9Lxy+MD+YRJcuds5+sT+xGHkVt2Hb5LfLZIgkFmwUewBRPm/42UXi4oxhV1OIdRtt4ymwsiuFCwT16T9w==",
"type": "package",
"path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.3",
"files": [
"Microsoft.NETCore.Runtime.CoreCLR.1.0.3.nupkg.sha512",
"Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
"Microsoft.NETCore.Targets/1.0.2": {
"sha512": "yk4GtuNbFz2sxA5NNIp2bnOwGZVlB4U+F4gWy5YnMEKmGzzJfQ4wg7zQUx334+WMQ5PiQEuS4UuOpsW+V0PzVg==",
"type": "package",
"path": "Microsoft.NETCore.Targets/1.0.2",
"files": [
"Microsoft.NETCore.Targets.1.0.2.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.json"
]
},
"Microsoft.NETCore.UniversalWindowsPlatform/5.2.2": {
"sha512": "9UHv2YObWmcF8gqtBoDC4UW5gdHzFRtaZ5KtB9QKvCy+NC9LH1DMYyOI/ltupjVZlwYEulj3msjBXys9/QI6nw==",
"type": "package",
"path": "Microsoft.NETCore.UniversalWindowsPlatform/5.2.2",
"files": [
"Microsoft.NETCore.UniversalWindowsPlatform.5.2.2.nupkg.sha512",
"Microsoft.NETCore.UniversalWindowsPlatform.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
]
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"sha512": "l4KtgtXhio03COnf9W6ywNK438XLTmXK0ODQJsHOXUpGdNXxnmaZk+dA/RQjve9sAgg9JtdWPTKeRFLQsM6xgw==",
"type": "package",
"path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
"files": [
"Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512",
"Microsoft.NETCore.Windows.ApiSets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
"Microsoft.VisualBasic/10.0.1": {
"sha512": "g0toSmwc+DVYDpAQSVYs9gNhgrCtkSZ+Y8+x3OKYH5UGbAuzEaAZ/exoRttqGaLgMTSg5c5DS0a4rshkc79W6g==",
"type": "package",
"path": "Microsoft.VisualBasic/10.0.1",
"files": [
"Microsoft.VisualBasic.10.0.1.nupkg.sha512",
"Microsoft.VisualBasic.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/Microsoft.VisualBasic.dll",
"lib/netstandard1.3/Microsoft.VisualBasic.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"ref/net45/_._",
"ref/netcore50/Microsoft.VisualBasic.dll",
"ref/netcore50/Microsoft.VisualBasic.xml",
"ref/netcore50/de/Microsoft.VisualBasic.xml",
"ref/netcore50/es/Microsoft.VisualBasic.xml",
"ref/netcore50/fr/Microsoft.VisualBasic.xml",
"ref/netcore50/it/Microsoft.VisualBasic.xml",
"ref/netcore50/ja/Microsoft.VisualBasic.xml",
"ref/netcore50/ko/Microsoft.VisualBasic.xml",
"ref/netcore50/ru/Microsoft.VisualBasic.xml",
"ref/netcore50/zh-hans/Microsoft.VisualBasic.xml",
"ref/netcore50/zh-hant/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/Microsoft.VisualBasic.dll",
"ref/netstandard1.1/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/de/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/es/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/fr/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/it/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ja/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ko/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ru/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._"
]
},
"Microsoft.Win32.Primitives/4.0.1": {
"sha512": "WKeQQypyEn4rSdl+GpSARGmCwnCZEgPG7eZknzuTR4Kk4txmHk7xL8Ek5xoVwgwoNghaa180ACGghMG8rK1hrA==",
"type": "package",
"path": "Microsoft.Win32.Primitives/4.0.1",
"files": [
"Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/Microsoft.Win32.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/Microsoft.Win32.Primitives.dll",
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
"ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
"ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"Newtonsoft.Json/9.0.1": {
"sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
"type": "package",
"path": "Newtonsoft.Json/9.0.1",
"files": [
"Newtonsoft.Json.9.0.1.nupkg.sha512",
"Newtonsoft.Json.nuspec",
"lib/net20/Newtonsoft.Json.dll",
"lib/net20/Newtonsoft.Json.xml",
"lib/net35/Newtonsoft.Json.dll",
"lib/net35/Newtonsoft.Json.xml",
"lib/net40/Newtonsoft.Json.dll",
"lib/net40/Newtonsoft.Json.xml",
"lib/net45/Newtonsoft.Json.dll",
"lib/net45/Newtonsoft.Json.xml",
"lib/netstandard1.0/Newtonsoft.Json.dll",
"lib/netstandard1.0/Newtonsoft.Json.xml",
"lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
"lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
"lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
"tools/install.ps1"
]
},
"PCLCrypto/1.0.86": {
"sha512": "rcmxw9Bb5GuEW1ubVBegCCbR7YU8Ptr8tGfmyVHBnK+UQlk29TuBryHXmsTglt64ZNDXpi8rWl8x5l55JylpOw==",
"type": "package",
"path": "PCLCrypto/1.0.86",
"files": [
"PCLCrypto.1.0.86.nupkg.sha512",
"PCLCrypto.nuspec",
"lib/Xamarin.iOS/PCLCrypto.dll",
"lib/Xamarin.iOS/PCLCrypto.xml",
"lib/monoandroid/PCLCrypto.dll",
"lib/monoandroid/PCLCrypto.xml",
"lib/monotouch/PCLCrypto.dll",
"lib/monotouch/PCLCrypto.xml",
"lib/net40-Client/PCLCrypto.dll",
"lib/net40-Client/PCLCrypto.xml",
"lib/portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/PCLCrypto.dll",
"lib/portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/PCLCrypto.xml",
"lib/sl5/PCLCrypto.dll",
"lib/sl5/PCLCrypto.xml",
"lib/win81/PCLCrypto.dll",
"lib/win81/PCLCrypto.pri",
"lib/win81/PCLCrypto.xml",
"lib/wp8/PCLCrypto.dll",
"lib/wp8/PCLCrypto.xml",
"lib/wpa81/PCLCrypto.dll",
"lib/wpa81/PCLCrypto.pri",
"lib/wpa81/PCLCrypto.xml"
]
},
"runtime.any.System.Collections/4.0.11": {
"sha512": "MTBT/hu37Dm2042H1JjWSaMd8w+oPJ4ZWAbDNeLzC4ZHdqwHloP07KvD6+4VbwipDqY5obfFFy90mZYCaPDh5Q==",
"type": "package",
"path": "runtime.any.System.Collections/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Collections.dll",
"lib/netstandard1.3/System.Collections.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Collections.4.0.11.nupkg.sha512",
"runtime.any.System.Collections.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Diagnostics.Tools/4.0.1": {
"sha512": "GJkwEYbKw7qG29QrKMIEEZEGWxC+DQboeObhaM6WPKKgwk9Od8Qt8lWhr/+5xW3FF60TdMfjjUP8Zu6Y41wIkA==",
"type": "package",
"path": "runtime.any.System.Diagnostics.Tools/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Tools.dll",
"lib/netstandard1.3/System.Diagnostics.Tools.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Diagnostics.Tools.4.0.1.nupkg.sha512",
"runtime.any.System.Diagnostics.Tools.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Diagnostics.Tracing/4.1.0": {
"sha512": "x7VLOl/v504jX97YEMePamZRHA3cJPOFY/xLw9pgjDr0Q3IQIZ+0K4oiKKtQrfMYSvOAntkzw+EvvQ+OWGRL9w==",
"type": "package",
"path": "runtime.any.System.Diagnostics.Tracing/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Tracing.dll",
"lib/netstandard1.5/System.Diagnostics.Tracing.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
"runtime.any.System.Diagnostics.Tracing.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Globalization/4.0.11": {
"sha512": "cjJ3+b83Tpf02AIc5FkGj1vzY68RnsVHiGLrOCc5n7gpNVg1JnZrt1mcY99ykQ/wr3nCdvSP2pYvdxbYsxZdlA==",
"type": "package",
"path": "runtime.any.System.Globalization/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Globalization.dll",
"lib/netstandard1.3/System.Globalization.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Globalization.4.0.11.nupkg.sha512",
"runtime.any.System.Globalization.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Globalization.Calendars/4.0.1": {
"sha512": "SAdVwIKKKR3VG9NMKEgF+wbAKkQA60YOb4G9YGj4EUPsuwS+pH7FjjG6qQeXDyOaxUcrlRzI3LHcGloX/GHBxQ==",
"type": "package",
"path": "runtime.any.System.Globalization.Calendars/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net/_._",
"lib/netcore50/System.Globalization.Calendars.dll",
"lib/netstandard1.3/System.Globalization.Calendars.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Globalization.Calendars.4.0.1.nupkg.sha512",
"runtime.any.System.Globalization.Calendars.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.IO/4.1.0": {
"sha512": "sC7zKVdhYQEtrREKBJf4zkUwNdi6fsbkzrhJLDIAxIxD+YA5PABAQJps13zxpA1Ke3AgzOA9551JDymAfmRuTg==",
"type": "package",
"path": "runtime.any.System.IO/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.IO.dll",
"lib/netstandard1.5/System.IO.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.IO.4.1.0.nupkg.sha512",
"runtime.any.System.IO.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Reflection/4.1.0": {
"sha512": "eKq6/GprEINYbugjWf2V9cjkyuAH/y+Raed28PJQ35zd30oR/pvKEHNN8JbPAgzYpI09TCd1yuhXN/Rb8PM8GA==",
"type": "package",
"path": "runtime.any.System.Reflection/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.dll",
"lib/netstandard1.5/System.Reflection.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Reflection.4.1.0.nupkg.sha512",
"runtime.any.System.Reflection.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Reflection.Extensions/4.0.1": {
"sha512": "ajAAD1MHX4KSNq/CW0d1IMlq5seVTuzTMMhA5EFWagMejfamzljIL92/wD19eK/1mPuux5nb16K4PFBYQrZOrQ==",
"type": "package",
"path": "runtime.any.System.Reflection.Extensions/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Extensions.dll",
"lib/netstandard1.3/System.Reflection.Extensions.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Reflection.Extensions.4.0.1.nupkg.sha512",
"runtime.any.System.Reflection.Extensions.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Reflection.Primitives/4.0.1": {
"sha512": "oKs78h11WDhCGFNpxT26IqL8Oo8OBzr6YOW0WG+R14FGaB/WDM5UHiK/jr6dipdnO8Wxlg/U48ka6uaPM6l53w==",
"type": "package",
"path": "runtime.any.System.Reflection.Primitives/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Primitives.dll",
"lib/netstandard1.3/System.Reflection.Primitives.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Reflection.Primitives.4.0.1.nupkg.sha512",
"runtime.any.System.Reflection.Primitives.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Resources.ResourceManager/4.0.1": {
"sha512": "hes7WFTOERydB/hLGmLj66NbK7I2AnjLHEeTpf7EmPZOIrRWeuC1dPoFYC9XRVIVzfCcOZI7oXM7KXe4vakt9Q==",
"type": "package",
"path": "runtime.any.System.Resources.ResourceManager/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Resources.ResourceManager.dll",
"lib/netstandard1.3/System.Resources.ResourceManager.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Resources.ResourceManager.4.0.1.nupkg.sha512",
"runtime.any.System.Resources.ResourceManager.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Runtime/4.1.0": {
"sha512": "0QVLwEGXROl0Trt2XosEjly9uqXcjHKStoZyZG9twJYFZJqq2JJXcBMXl/fnyQAgYEEODV8lUsU+t7NCCY0nUQ==",
"type": "package",
"path": "runtime.any.System.Runtime/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.dll",
"lib/netstandard1.5/System.Runtime.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Runtime.4.1.0.nupkg.sha512",
"runtime.any.System.Runtime.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Runtime.Handles/4.0.1": {
"sha512": "MZ5fVmAE/3S11wt3hPfn3RsAHppj5gUz+VZuLQkRjLCMSlX0krOI601IZsMWc3CoxUb+wMt3gZVb/mEjblw6Mg==",
"type": "package",
"path": "runtime.any.System.Runtime.Handles/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/_._",
"lib/netstandard1.3/System.Runtime.Handles.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Runtime.Handles.4.0.1.nupkg.sha512",
"runtime.any.System.Runtime.Handles.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Runtime.InteropServices/4.1.0": {
"sha512": "gmibdZ9x/eB6hf5le33DWLCQbhcIUD2vqoc0tBgqSUWlB8YjEzVJXyTPDO+ypKLlL90Kv3ZDrK7yPCNqcyhqCA==",
"type": "package",
"path": "runtime.any.System.Runtime.InteropServices/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.InteropServices.dll",
"lib/netstandard1.5/System.Runtime.InteropServices.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Runtime.InteropServices.4.1.0.nupkg.sha512",
"runtime.any.System.Runtime.InteropServices.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Text.Encoding/4.0.11": {
"sha512": "uweRMRDD4O8Iy8m4h1cJvoFIHNCzHMpipuxkRNAMML6EMzAhDCQTjgvRwki7PlUg8RGY1ctXnBZjT1rXvMZuRw==",
"type": "package",
"path": "runtime.any.System.Text.Encoding/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Text.Encoding.dll",
"lib/netstandard1.3/System.Text.Encoding.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Text.Encoding.4.0.11.nupkg.sha512",
"runtime.any.System.Text.Encoding.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Text.Encoding.Extensions/4.0.11": {
"sha512": "3n6qbf59NMgA7F9S+q9gmqFV7T/CtAZw2pa6aprfdZxUinR2mDvVchsgthoacpQvAQu6e3ok8WWeypSu/yjXrA==",
"type": "package",
"path": "runtime.any.System.Text.Encoding.Extensions/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Text.Encoding.Extensions.dll",
"lib/netstandard1.3/System.Text.Encoding.Extensions.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
"runtime.any.System.Text.Encoding.Extensions.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Threading.Tasks/4.0.11": {
"sha512": "CEvWO0IwtdCAsmCb9aAl59psy0hzx+whYh4DzbjNb0GsQmxw/G7bZEcrBtE8c9QupNVbu87c2xaMi6p4r1bpjA==",
"type": "package",
"path": "runtime.any.System.Threading.Tasks/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.Tasks.dll",
"lib/netstandard1.3/System.Threading.Tasks.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Threading.Tasks.4.0.11.nupkg.sha512",
"runtime.any.System.Threading.Tasks.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.any.System.Threading.Timer/4.0.1": {
"sha512": "C9d5eRAW/gd5iBZF78JRcwjvjCDRfU0oB48/wx/XbKnONZU4k6hWneTT4M7v3TmVqPFl7UDcLzKCtQ/24efOzw==",
"type": "package",
"path": "runtime.any.System.Threading.Timer/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.Timer.dll",
"lib/netstandard1.3/System.Threading.Timer.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/netstandard/_._",
"runtime.any.System.Threading.Timer.4.0.1.nupkg.sha512",
"runtime.any.System.Threading.Timer.nuspec",
"runtimes/aot/lib/netcore50/_._"
]
},
"runtime.aot.System.Collections/4.0.10": {
"sha512": "JaNCSMYW8RoPTrzlqRp3IsPdbSp8IhnNQ3qeKVGtBggT/9bZFz6FjfU+YG3NEiy/yPo03NMQ5EtXMT2MCIrV1A==",
"type": "package",
"path": "runtime.aot.System.Collections/4.0.10",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Collections.4.0.10.nupkg.sha512",
"runtime.aot.System.Collections.nuspec",
"runtimes/aot/lib/netcore50/System.Collections.dll"
]
},
"runtime.aot.System.Diagnostics.Tools/4.0.1": {
"sha512": "29xXSZEpRNd2wJsEXX40CEaWhhQjfqFGal4f1DuqY7Gd7+ARcV7zJK9aKRX9SkHnQfx3qSm3+D/VWBPI7pgEYQ==",
"type": "package",
"path": "runtime.aot.System.Diagnostics.Tools/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Diagnostics.Tools.4.0.1.nupkg.sha512",
"runtime.aot.System.Diagnostics.Tools.nuspec",
"runtimes/aot/lib/netcore50/System.Diagnostics.Tools.dll"
]
},
"runtime.aot.System.Diagnostics.Tracing/4.0.20": {
"sha512": "1zaLtCd4/msBeR4hDRjywdONAqnMl+mfsYO2er+kj9HEMQfrItSdApImXakl3CTRqb1S8upuBru2v/SLEY2vtg==",
"type": "package",
"path": "runtime.aot.System.Diagnostics.Tracing/4.0.20",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Diagnostics.Tracing.4.0.20.nupkg.sha512",
"runtime.aot.System.Diagnostics.Tracing.nuspec",
"runtimes/aot/lib/netcore50/System.Diagnostics.Tracing.dll"
]
},
"runtime.aot.System.Globalization/4.0.11": {
"sha512": "eEPSEA2yUp1HLNlp8Cve/J6UpN2mFnWUJhjqVEw+d+JUkWrzE2+ebl+0kf91Nwls4Mnia0GkjRRDiDKt8XeAAQ==",
"type": "package",
"path": "runtime.aot.System.Globalization/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Globalization.4.0.11.nupkg.sha512",
"runtime.aot.System.Globalization.nuspec",
"runtimes/aot/lib/netcore50/System.Globalization.dll"
]
},
"runtime.aot.System.Globalization.Calendars/4.0.1": {
"sha512": "nXHH2LS832GzQMr//792HTXyuUGlREv/8IZ24USS+q8QobtPwAis0mDumSoSd6z+IoiFGK7ol1Ev/ab+dRiVTg==",
"type": "package",
"path": "runtime.aot.System.Globalization.Calendars/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Globalization.Calendars.4.0.1.nupkg.sha512",
"runtime.aot.System.Globalization.Calendars.nuspec",
"runtimes/aot/lib/netcore50/System.Globalization.Calendars.dll"
]
},
"runtime.aot.System.IO/4.1.0": {
"sha512": "zI0PBKDpAvTNbxTgcZutcb50D7jHJaC9vQLxKhUBn4gS7VHQqnZjqyEqXBxc4rnx6rdZzlMADNZAMUWNW42Sxw==",
"type": "package",
"path": "runtime.aot.System.IO/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.IO.4.1.0.nupkg.sha512",
"runtime.aot.System.IO.nuspec",
"runtimes/aot/lib/netcore50/System.IO.dll",
"runtimes/aot/lib/netstandard1.3/System.IO.dll"
]
},
"runtime.aot.System.Reflection/4.0.10": {
"sha512": "vrUbKdxXRNkmIsiMFP03cKLmzGoN7ObqU7rpjr/9ABL2ovHO7vyFhVfkpUXg4uX94ixgVaytbISLe+yxFQtl8w==",
"type": "package",
"path": "runtime.aot.System.Reflection/4.0.10",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Reflection.4.0.10.nupkg.sha512",
"runtime.aot.System.Reflection.nuspec",
"runtimes/aot/lib/netcore50/System.Reflection.dll"
]
},
"runtime.aot.System.Reflection.Extensions/4.0.0": {
"sha512": "WWw59m7k4XZLWN6XbptSR0TOdrLgwh5XEBj77QaUZQ+PcmvSzdJ79Jfp76ncQb5SzJZVu5ByZ7ufWX2bIeDpFQ==",
"type": "package",
"path": "runtime.aot.System.Reflection.Extensions/4.0.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Reflection.Extensions.4.0.0.nupkg.sha512",
"runtime.aot.System.Reflection.Extensions.nuspec",
"runtimes/aot/lib/netcore50/System.Reflection.Extensions.dll"
]
},
"runtime.aot.System.Reflection.Primitives/4.0.0": {
"sha512": "826QEny5/GvZ270fhG70vnzYlFnTxNAHiHfyRS2zMZ5X1MpAsiW0y0XHAJjq7MrrnRjyG3qHF0zqytpNPJLaFQ==",
"type": "package",
"path": "runtime.aot.System.Reflection.Primitives/4.0.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Reflection.Primitives.4.0.0.nupkg.sha512",
"runtime.aot.System.Reflection.Primitives.nuspec",
"runtimes/aot/lib/MonoAndroid10/_._",
"runtimes/aot/lib/MonoTouch10/_._",
"runtimes/aot/lib/net45/_._",
"runtimes/aot/lib/netcore50/System.Reflection.Primitives.dll",
"runtimes/aot/lib/win8/_._",
"runtimes/aot/lib/wp80/_._",
"runtimes/aot/lib/wpa81/_._",
"runtimes/aot/lib/xamarinios10/_._",
"runtimes/aot/lib/xamarinmac20/_._",
"runtimes/aot/lib/xamarintvos10/_._",
"runtimes/aot/lib/xamarinwatchos10/_._"
]
},
"runtime.aot.System.Resources.ResourceManager/4.0.0": {
"sha512": "j+xK1M/oJ5ll7WT6UD9oQ/YUESFtT0YN3th1TIliJjK5J0Ek4vDPTMDQceu3WFy7aQOThDmIxjkAVSxZV7OWIA==",
"type": "package",
"path": "runtime.aot.System.Resources.ResourceManager/4.0.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Resources.ResourceManager.4.0.0.nupkg.sha512",
"runtime.aot.System.Resources.ResourceManager.nuspec",
"runtimes/aot/lib/netcore50/System.Resources.ResourceManager.dll"
]
},
"runtime.aot.System.Runtime/4.0.20": {
"sha512": "ax423Smc+2Bcm8Go70iwj30hpjUIuahVtBAqlGXzhOoRwRR4vlEN3OGp8qTecWki3ZhGrbOXy+A1U89V3DzG/w==",
"type": "package",
"path": "runtime.aot.System.Runtime/4.0.20",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Runtime.4.0.20.nupkg.sha512",
"runtime.aot.System.Runtime.nuspec",
"runtimes/aot/lib/netcore50/System.Runtime.dll"
]
},
"runtime.aot.System.Runtime.Handles/4.0.1": {
"sha512": "UPzDQF5lwQ+BN+B1Zu2u3b5YQvIo4A96N9v5Uwo4VL1hWEf4STqiZgRogumy21TeRLjtEpF7I5JqIDhcc3OMCw==",
"type": "package",
"path": "runtime.aot.System.Runtime.Handles/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Runtime.Handles.4.0.1.nupkg.sha512",
"runtime.aot.System.Runtime.Handles.nuspec",
"runtimes/aot/lib/netcore50/System.Runtime.Handles.dll"
]
},
"runtime.aot.System.Runtime.InteropServices/4.0.20": {
"sha512": "s4P2Jlf6ev4RgeLjNIq4hXsESIuE6t0Ljf+KVfRGDvrZ+yJuoPjwS3zMkm2SPj5Qif1HZ9vskKTdHPtk1B89Bw==",
"type": "package",
"path": "runtime.aot.System.Runtime.InteropServices/4.0.20",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Runtime.InteropServices.4.0.20.nupkg.sha512",
"runtime.aot.System.Runtime.InteropServices.nuspec",
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.dll"
]
},
"runtime.aot.System.Text.Encoding/4.0.11": {
"sha512": "mUltrQRF5trt9DvIDPxV5E3girWcXlJgQBnYHfy1b8RQU2Ipob6xzCqlDnnECa8+FdhD8C/A7s7krxvHWcJ/pw==",
"type": "package",
"path": "runtime.aot.System.Text.Encoding/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Text.Encoding.4.0.11.nupkg.sha512",
"runtime.aot.System.Text.Encoding.nuspec",
"runtimes/aot/lib/netcore50/System.Text.Encoding.dll"
]
},
"runtime.aot.System.Text.Encoding.Extensions/4.0.11": {
"sha512": "N6XCU9y8ZC51LfxnE5tgNFy+3emNQTRY6W3NeLqlHLcina5vbChsSsPDOCpEIGMTOMxbODe5HtWYbzaOOSFtGg==",
"type": "package",
"path": "runtime.aot.System.Text.Encoding.Extensions/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
"runtime.aot.System.Text.Encoding.Extensions.nuspec",
"runtimes/aot/lib/netcore50/System.Text.Encoding.Extensions.dll"
]
},
"runtime.aot.System.Threading.Tasks/4.0.11": {
"sha512": "55coohhmT0Usdq536a54bqGK4ij2D1ZTaJo8lQ3k/piwVx+Dl2r3xmDGsims+jVimQVayU2tXptKSAn9nhgRfA==",
"type": "package",
"path": "runtime.aot.System.Threading.Tasks/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Threading.Tasks.4.0.11.nupkg.sha512",
"runtime.aot.System.Threading.Tasks.nuspec",
"runtimes/aot/lib/netcore50/System.Threading.Tasks.dll"
]
},
"runtime.aot.System.Threading.Timer/4.0.1": {
"sha512": "c4IE4f4MBSzr3b8uSCIpqc70uXbkNJx9oAASbEMhFGdyxljpwz14xYR5hp8AgnF4msF8tPL6zgOf7lDlSo0j/g==",
"type": "package",
"path": "runtime.aot.System.Threading.Timer/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.aot.System.Threading.Timer.4.0.1.nupkg.sha512",
"runtime.aot.System.Threading.Timer.nuspec",
"runtimes/aot/lib/netcore50/System.Threading.Timer.dll"
]
},
"runtime.native.System.IO.Compression/4.1.0": {
"sha512": "8tm5jQhvrdzSuQDEr366HN7lDWnut+TMJIxRBy8sW6XgnEN4j1DXHSxay4bPYkpJqiRaZ74A+6G8xoBQfFeySQ==",
"type": "package",
"path": "runtime.native.System.IO.Compression/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"sha512": "C5MLmsqD0xEF+nZFh42cmVji0b7cKLmcOqOJOgqOTr8FZkLY3xp/kWFpfZj52vMElXLMjlYL3rRGYCLbfWX5lw==",
"type": "package",
"path": "runtime.native.System.Security.Cryptography/4.0.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
"runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
"runtime.native.System.Security.Cryptography.nuspec"
]
},
"runtime.win.Microsoft.Win32.Primitives/4.0.1": {
"sha512": "0alFxXfT7M+xhhgMkNzG/Mnfii3o+DGQV9gkmhfLr6wsRPNxlIHdz4yQC8ksHqqmOu1Sq0FD9FxrSQyGo+8syA==",
"type": "package",
"path": "runtime.win.Microsoft.Win32.Primitives/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
"runtime.win.Microsoft.Win32.Primitives.nuspec",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll"
]
},
"runtime.win.System.Diagnostics.Debug/4.0.11": {
"sha512": "q8Fm954ezFLfmG0tHNUmsNy+qaEjWtWqYhWh3cGSVjtJwkcBsfigWCh+fdaIVZ9K7m+6lgb3ElL2BBU6G+RijA==",
"type": "package",
"path": "runtime.win.System.Diagnostics.Debug/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.Diagnostics.Debug.4.0.11.nupkg.sha512",
"runtime.win.System.Diagnostics.Debug.nuspec",
"runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll",
"runtimes/win/lib/net45/_._",
"runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll",
"runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll",
"runtimes/win/lib/win8/_._",
"runtimes/win/lib/wp80/_._",
"runtimes/win/lib/wpa81/_._"
]
},
"runtime.win.System.IO.FileSystem/4.0.1": {
"sha512": "4FG9RK8J5CsUpXjkiZWS07aJu+H+vTIeQkFKXyjwibfBedUM168SCEaqV3Bjkbv4b3pUuf5Gy1RaqX/HnmKlZw==",
"type": "package",
"path": "runtime.win.System.IO.FileSystem/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.IO.FileSystem.4.0.1.nupkg.sha512",
"runtime.win.System.IO.FileSystem.nuspec",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netcore50/System.IO.FileSystem.dll",
"runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll",
"runtimes/win/lib/win8/_._",
"runtimes/win/lib/wp8/_._",
"runtimes/win/lib/wpa81/_._"
]
},
"runtime.win.System.Net.Primitives/4.0.11": {
"sha512": "36AsEkT9p+4cLHHh7sgSIOPWWeTKMh/DOoeQCzJmaLM8rtD9YaRZMmXGynf77ZP5KoXWwA4Y3aGbntrPbmmlcA==",
"type": "package",
"path": "runtime.win.System.Net.Primitives/4.0.11",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.Net.Primitives.4.0.11.nupkg.sha512",
"runtime.win.System.Net.Primitives.nuspec",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netcore50/System.Net.Primitives.dll",
"runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll"
]
},
"runtime.win.System.Net.Sockets/4.1.0": {
"sha512": "BviTpQJbl+T/XVkwLw5xupFq9WXKru9KM/2U/ijmLuO2XEeMgdwk3g0e9sHWqvbrLvVT9yDf+SpbRXM1LNxTvA==",
"type": "package",
"path": "runtime.win.System.Net.Sockets/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.Net.Sockets.4.1.0.nupkg.sha512",
"runtime.win.System.Net.Sockets.nuspec",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netcore50/System.Net.Sockets.dll",
"runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll"
]
},
"runtime.win.System.Runtime.Extensions/4.1.0": {
"sha512": "U3F/M+djxVXuKJaoW2AGpAE2ZWAp372140jsX4d/ctqki+Qb61HuyQY4yUPSA/gdKGbbq6HXzZ6oxB6/G3MYPA==",
"type": "package",
"path": "runtime.win.System.Runtime.Extensions/4.1.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win.System.Runtime.Extensions.4.1.0.nupkg.sha512",
"runtime.win.System.Runtime.Extensions.nuspec",
"runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll",
"runtimes/win/lib/net/_._",
"runtimes/win/lib/netcore50/System.Runtime.Extensions.dll",
"runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll"
]
},
"runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "fzsKrHHfrv6wpLE1sxAHcWoB9vpAyoNjxVTnBJkzeXow2ZivR1H7wdpnsoKXIIb0d2EzYrrezHeHy4gI6tqqTA==",
"type": "package",
"path": "runtime.win10-arm-aot.runtime.native.System.IO.Compression/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression.nuspec",
"runtimes/win10-arm-aot/lib/netcore50/clrcompression.dll"
]
},
"runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "qr2+iGSxqUjVW3eATYzV4GHN6qQOu5cDTzCGf7VZ4aaxXGv2P/XVk9BkQ6WdPCDitEdIuWmtFYIFvGdvY/qN6Q==",
"type": "package",
"path": "runtime.win10-x64-aot.runtime.native.System.IO.Compression/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression.nuspec",
"runtimes/win10-x64-aot/lib/netcore50/clrcompression.dll"
]
},
"runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "c3yeCSi1emskJMjeqbX6B+neZRozhYk4et/Lv/6s05Yz30jcwY2Mj5PAr7mvmlAZtP5+HLbxz+Ux+RNNM/1GUA==",
"type": "package",
"path": "runtime.win10-x86-aot.runtime.native.System.IO.Compression/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression.nuspec",
"runtimes/win10-x86-aot/lib/netcore50/clrcompression.dll"
]
},
"runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3": {
"sha512": "pXLZyhN1gFNVjmmZloXzGxbdZyUjkiHKpojzxUxCZ2U+T0jD6ooK3rYhwqFzlSjVKUAdQ9QNDoixxnEr3/5VWw==",
"type": "package",
"path": "runtime.win7-x64.Microsoft.NETCore.Jit/1.0.3",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win7-x64.Microsoft.NETCore.Jit.1.0.3.nupkg.sha512",
"runtime.win7-x64.Microsoft.NETCore.Jit.nuspec",
"runtimes/win7-x64-aot/native/_._",
"runtimes/win7-x64/native/clrjit.dll"
]
},
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"sha512": "YaXA5RVLCYIcV1N31A7MJhWJnNkNfGnyRBNH1yYilUrBDvzMxNsbXX2pD7owWsC/go/4LRwbHbdWWXwHowKNvw==",
"type": "package",
"path": "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR/1.0.2",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard1.0/_._",
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512",
"runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"runtimes/win7-x64-aot/lib/netstandard1.0/_._",
"runtimes/win7-x64-aot/native/_._",
"runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll",
"runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll",
"runtimes/win7-x64/native/System.Private.CoreLib.ni.dll",
"runtimes/win7-x64/native/clretwrc.dll",
"runtimes/win7-x64/native/coreclr.dll",
"runtimes/win7-x64/native/dbgshim.dll",
"runtimes/win7-x64/native/mscordaccore.dll",
"runtimes/win7-x64/native/mscordbi.dll",
"runtimes/win7-x64/native/mscorlib.ni.dll",
"runtimes/win7-x64/native/mscorrc.debug.dll",
"runtimes/win7-x64/native/mscorrc.dll",
"runtimes/win7-x64/native/sos.dll",
"tools/crossgen.exe"
]
},
"runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "4LLiT65shsAsGc+mUKV3vUw1SXfOaQWGWoblOYpYuZJSVkA3/LPx92M2GSYyn2sHR/XOFtY5TZmxJKgGlZOLFw==",
"type": "package",
"path": "runtime.win7-x64.runtime.native.System.IO.Compression/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win7-x64.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win7-x64.runtime.native.System.IO.Compression.nuspec",
"runtimes/win7-x64/native/clrcompression.dll"
]
},
"runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3": {
"sha512": "bU1EUneMeB6JltMNDCekL7nP1dluxOlnUgmAFx8EGsD6a+lgaYoDLk7V7F3H5Zpw/LeCxl5XmZqgPObGAlW7Dg==",
"type": "package",
"path": "runtime.win7-x86.Microsoft.NETCore.Jit/1.0.3",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win7-x86.Microsoft.NETCore.Jit.1.0.3.nupkg.sha512",
"runtime.win7-x86.Microsoft.NETCore.Jit.nuspec",
"runtimes/win7-x86-aot/native/_._",
"runtimes/win7-x86/native/clrjit.dll"
]
},
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"sha512": "80Jj8QlMLAnTq+BDhoHBnSNXRKqVjjZM9VjHcpw9/F98cBmh80rBdbnM0AAr54htjhzupYvwLqwuKnlzxec04A==",
"type": "package",
"path": "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR/1.0.2",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard1.0/_._",
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512",
"runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"runtimes/win7-x86-aot/lib/netstandard1.0/_._",
"runtimes/win7-x86-aot/native/_._",
"runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll",
"runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll",
"runtimes/win7-x86/native/System.Private.CoreLib.ni.dll",
"runtimes/win7-x86/native/clretwrc.dll",
"runtimes/win7-x86/native/coreclr.dll",
"runtimes/win7-x86/native/dbgshim.dll",
"runtimes/win7-x86/native/mscordaccore.dll",
"runtimes/win7-x86/native/mscordbi.dll",
"runtimes/win7-x86/native/mscorlib.ni.dll",
"runtimes/win7-x86/native/mscorrc.debug.dll",
"runtimes/win7-x86/native/mscorrc.dll",
"runtimes/win7-x86/native/sos.dll",
"tools/crossgen.exe"
]
},
"runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "3jgpS2GhE76QqeoTxCakx6jlX7EIeXvxHnFFDa03Jf++s9+EGnRD38R6GDb1ism73xo6IHe0iev7zd5y+oD3BA==",
"type": "package",
"path": "runtime.win7-x86.runtime.native.System.IO.Compression/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win7-x86.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win7-x86.runtime.native.System.IO.Compression.nuspec",
"runtimes/win7-x86/native/clrcompression.dll"
]
},
"runtime.win7.System.Private.Uri/4.0.2": {
"sha512": "N0nsmkEe+e3fl28KZ9LrHQ06XvhTC4FGyWacInV90h3pmty2s0fnG0GZ41rQw8d51s+pLcTQ0dKS0eN0xESY7g==",
"type": "package",
"path": "runtime.win7.System.Private.Uri/4.0.2",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtime.win7.System.Private.Uri.4.0.2.nupkg.sha512",
"runtime.win7.System.Private.Uri.nuspec",
"runtimes/aot/lib/netcore50/System.Private.Uri.dll",
"runtimes/win/lib/netcore50/System.Private.Uri.dll",
"runtimes/win/lib/netstandard1.0/System.Private.Uri.dll"
]
},
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2": {
"sha512": "0V6sq7Dg0bQPrJtm/Qw5Zu0e7gidnRPLaqUhKIkLYzVn64jkat+JnR6LcezryD3c0Wuva/MdJWYSAaOPq5V/Zw==",
"type": "package",
"path": "runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR/1.0.2",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard1.0/_._",
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR.1.0.2.nupkg.sha512",
"runtime.win8-arm.Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"runtimes/win8-arm-aot/lib/netstandard1.0/_._",
"runtimes/win8-arm-aot/native/_._",
"runtimes/win8-arm/lib/netstandard1.0/System.Private.CoreLib.dll",
"runtimes/win8-arm/lib/netstandard1.0/mscorlib.dll",
"runtimes/win8-arm/native/System.Private.CoreLib.ni.dll",
"runtimes/win8-arm/native/clretwrc.dll",
"runtimes/win8-arm/native/coreclr.dll",
"runtimes/win8-arm/native/dbgshim.dll",
"runtimes/win8-arm/native/mscordaccore.dll",
"runtimes/win8-arm/native/mscordbi.dll",
"runtimes/win8-arm/native/mscorlib.ni.dll",
"runtimes/win8-arm/native/mscorrc.debug.dll",
"runtimes/win8-arm/native/mscorrc.dll",
"runtimes/win8-arm/native/sos.dll",
"tools/crossgen.exe",
"tools/sos.dll"
]
},
"runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1": {
"sha512": "EwyUwoJJLeSqfmeZoX9nxKx8Q9pEwX5zLLgSwtdH04+TzUYxaDIaoNqH5hfhoaSl2VoDsHGbEnQ6Y5bXLcWSkA==",
"type": "package",
"path": "runtime.win8-arm.runtime.native.System.IO.Compression/4.0.1",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.win8-arm.runtime.native.System.IO.Compression.4.0.1.nupkg.sha512",
"runtime.win8-arm.runtime.native.System.IO.Compression.nuspec",
"runtimes/win8-arm/native/clrcompression.dll"
]
},
"System.AppContext/4.1.0": {
"sha512": "065m4cS0FdPdzD9Jusy+5Y8ONECKRmrNKdRTrBY4Dyv9DVBB78ATRlaZAJU1nh5inZ6+pugr9HbXx75OME2+Ug==",
"type": "package",
"path": "System.AppContext/4.1.0",
"files": [
"System.AppContext.4.1.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.AppContext.dll",
"lib/net463/System.AppContext.dll",
"lib/netcore50/System.AppContext.dll",
"lib/netstandard1.6/System.AppContext.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.AppContext.dll",
"ref/net463/System.AppContext.dll",
"ref/netstandard/_._",
"ref/netstandard1.3/System.AppContext.dll",
"ref/netstandard1.3/System.AppContext.xml",
"ref/netstandard1.3/de/System.AppContext.xml",
"ref/netstandard1.3/es/System.AppContext.xml",
"ref/netstandard1.3/fr/System.AppContext.xml",
"ref/netstandard1.3/it/System.AppContext.xml",
"ref/netstandard1.3/ja/System.AppContext.xml",
"ref/netstandard1.3/ko/System.AppContext.xml",
"ref/netstandard1.3/ru/System.AppContext.xml",
"ref/netstandard1.3/zh-hans/System.AppContext.xml",
"ref/netstandard1.3/zh-hant/System.AppContext.xml",
"ref/netstandard1.6/System.AppContext.dll",
"ref/netstandard1.6/System.AppContext.xml",
"ref/netstandard1.6/de/System.AppContext.xml",
"ref/netstandard1.6/es/System.AppContext.xml",
"ref/netstandard1.6/fr/System.AppContext.xml",
"ref/netstandard1.6/it/System.AppContext.xml",
"ref/netstandard1.6/ja/System.AppContext.xml",
"ref/netstandard1.6/ko/System.AppContext.xml",
"ref/netstandard1.6/ru/System.AppContext.xml",
"ref/netstandard1.6/zh-hans/System.AppContext.xml",
"ref/netstandard1.6/zh-hant/System.AppContext.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
"System.Buffers/4.0.0": {
"sha512": "Ekxnj6EiW3/Aa0MhIuvAE72YXRjo57fKdlbxvHnAaGtP4ivaPsjuBCWKEQl6EG0/3WANHbs4g94M0Juoj21waQ==",
"type": "package",
"path": "System.Buffers/4.0.0",
"files": [
"System.Buffers.4.0.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.1/.xml",
"lib/netstandard1.1/System.Buffers.dll"
]
},
"System.Collections/4.0.11": {
"sha512": "nhCpV23xO41EXWy1KdfwWogXycduRf82JWuTOF4ThHR/vc/l87c+xFtUTbmAoYvwzURkp9xdk+ziYfQ6CQdy5A==",
"type": "package",
"path": "System.Collections/4.0.11",
"files": [
"System.Collections.4.0.11.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Collections.dll",
"ref/netcore50/System.Collections.xml",
"ref/netcore50/de/System.Collections.xml",
"ref/netcore50/es/System.Collections.xml",
"ref/netcore50/fr/System.Collections.xml",
"ref/netcore50/it/System.Collections.xml",
"ref/netcore50/ja/System.Collections.xml",
"ref/netcore50/ko/System.Collections.xml",
"ref/netcore50/ru/System.Collections.xml",
"ref/netcore50/zh-hans/System.Collections.xml",
"ref/netcore50/zh-hant/System.Collections.xml",
"ref/netstandard1.0/System.Collections.dll",
"ref/netstandard1.0/System.Collections.xml",
"ref/netstandard1.0/de/System.Collections.xml",
"ref/netstandard1.0/es/System.Collections.xml",
"ref/netstandard1.0/fr/System.Collections.xml",
"ref/netstandard1.0/it/System.Collections.xml",
"ref/netstandard1.0/ja/System.Collections.xml",
"ref/netstandard1.0/ko/System.Collections.xml",
"ref/netstandard1.0/ru/System.Collections.xml",
"ref/netstandard1.0/zh-hans/System.Collections.xml",
"ref/netstandard1.0/zh-hant/System.Collections.xml",
"ref/netstandard1.3/System.Collections.dll",
"ref/netstandard1.3/System.Collections.xml",
"ref/netstandard1.3/de/System.Collections.xml",
"ref/netstandard1.3/es/System.Collections.xml",
"ref/netstandard1.3/fr/System.Collections.xml",
"ref/netstandard1.3/it/System.Collections.xml",
"ref/netstandard1.3/ja/System.Collections.xml",
"ref/netstandard1.3/ko/System.Collections.xml",
"ref/netstandard1.3/ru/System.Collections.xml",
"ref/netstandard1.3/zh-hans/System.Collections.xml",
"ref/netstandard1.3/zh-hant/System.Collections.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Collections.Concurrent/4.0.12": {
"sha512": "8p3ZKVUaCqybDLtI+rVxbJvCAi//Ae1d1DOwbu7OsD+1jhV1LHeIVt1rC631MpF/Za+9TuqtOvfp3CBvpNWisA==",
"type": "package",
"path": "System.Collections.Concurrent/4.0.12",
"files": [
"System.Collections.Concurrent.4.0.12.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Collections.Concurrent.dll",
"lib/netstandard1.3/System.Collections.Concurrent.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Collections.Concurrent.dll",
"ref/netcore50/System.Collections.Concurrent.xml",
"ref/netcore50/de/System.Collections.Concurrent.xml",
"ref/netcore50/es/System.Collections.Concurrent.xml",
"ref/netcore50/fr/System.Collections.Concurrent.xml",
"ref/netcore50/it/System.Collections.Concurrent.xml",
"ref/netcore50/ja/System.Collections.Concurrent.xml",
"ref/netcore50/ko/System.Collections.Concurrent.xml",
"ref/netcore50/ru/System.Collections.Concurrent.xml",
"ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
"ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
"ref/netstandard1.1/System.Collections.Concurrent.dll",
"ref/netstandard1.1/System.Collections.Concurrent.xml",
"ref/netstandard1.1/de/System.Collections.Concurrent.xml",
"ref/netstandard1.1/es/System.Collections.Concurrent.xml",
"ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
"ref/netstandard1.1/it/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
"ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
"ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
"ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
"ref/netstandard1.3/System.Collections.Concurrent.dll",
"ref/netstandard1.3/System.Collections.Concurrent.xml",
"ref/netstandard1.3/de/System.Collections.Concurrent.xml",
"ref/netstandard1.3/es/System.Collections.Concurrent.xml",
"ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
"ref/netstandard1.3/it/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
"ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
"ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
"ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Collections.Immutable/1.2.0": {
"sha512": "cmmcdedHB75UEhPGJWQ0AdBniMm3hExrd0IbqhlypVE9K8uHitPyPVrhsipa3ZUULnJXkIX81+di999NIsOLag==",
"type": "package",
"path": "System.Collections.Immutable/1.2.0",
"files": [
"System.Collections.Immutable.1.2.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Collections.Immutable.dll",
"lib/netstandard1.0/System.Collections.Immutable.xml",
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
"System.Collections.NonGeneric/4.0.1": {
"sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
"type": "package",
"path": "System.Collections.NonGeneric/4.0.1",
"files": [
"System.Collections.NonGeneric.4.0.1.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Collections.NonGeneric.dll",
"lib/netstandard1.3/System.Collections.NonGeneric.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Collections.NonGeneric.dll",
"ref/netstandard1.3/System.Collections.NonGeneric.dll",
"ref/netstandard1.3/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
"ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Collections.Specialized/4.0.1": {
"sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
"type": "package",
"path": "System.Collections.Specialized/4.0.1",
"files": [
"System.Collections.Specialized.4.0.1.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Collections.Specialized.dll",
"lib/netstandard1.3/System.Collections.Specialized.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Collections.Specialized.dll",
"ref/netstandard1.3/System.Collections.Specialized.dll",
"ref/netstandard1.3/System.Collections.Specialized.xml",
"ref/netstandard1.3/de/System.Collections.Specialized.xml",
"ref/netstandard1.3/es/System.Collections.Specialized.xml",
"ref/netstandard1.3/fr/System.Collections.Specialized.xml",
"ref/netstandard1.3/it/System.Collections.Specialized.xml",
"ref/netstandard1.3/ja/System.Collections.Specialized.xml",
"ref/netstandard1.3/ko/System.Collections.Specialized.xml",
"ref/netstandard1.3/ru/System.Collections.Specialized.xml",
"ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
"ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ComponentModel/4.0.1": {
"sha512": "YCzWsbChY5bZVK8xTNfpqdOzP0ikw2k0dPkgu5zQX8woGg+42Q1yaZCkZ6f5SvPK3YHmBAs0C6VuXp2ORNlxjw==",
"type": "package",
"path": "System.ComponentModel/4.0.1",
"files": [
"System.ComponentModel.4.0.1.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.ComponentModel.dll",
"lib/netstandard1.3/System.ComponentModel.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.ComponentModel.dll",
"ref/netcore50/System.ComponentModel.xml",
"ref/netcore50/de/System.ComponentModel.xml",
"ref/netcore50/es/System.ComponentModel.xml",
"ref/netcore50/fr/System.ComponentModel.xml",
"ref/netcore50/it/System.ComponentModel.xml",
"ref/netcore50/ja/System.ComponentModel.xml",
"ref/netcore50/ko/System.ComponentModel.xml",
"ref/netcore50/ru/System.ComponentModel.xml",
"ref/netcore50/zh-hans/System.ComponentModel.xml",
"ref/netcore50/zh-hant/System.ComponentModel.xml",
"ref/netstandard1.0/System.ComponentModel.dll",
"ref/netstandard1.0/System.ComponentModel.xml",
"ref/netstandard1.0/de/System.ComponentModel.xml",
"ref/netstandard1.0/es/System.ComponentModel.xml",
"ref/netstandard1.0/fr/System.ComponentModel.xml",
"ref/netstandard1.0/it/System.ComponentModel.xml",
"ref/netstandard1.0/ja/System.ComponentModel.xml",
"ref/netstandard1.0/ko/System.ComponentModel.xml",
"ref/netstandard1.0/ru/System.ComponentModel.xml",
"ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
"ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ComponentModel.Annotations/4.1.0": {
"sha512": "ixk6+qnJwjQXX+7I2zRW3zbWt6IAAV0ETpW6J4DZ/E68hmT2ZpSOKlwdaTin06lSjtzmo3a9+X+KAtnoCWVJkw==",
"type": "package",
"path": "System.ComponentModel.Annotations/4.1.0",
"files": [
"System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net461/System.ComponentModel.Annotations.dll",
"lib/netcore50/System.ComponentModel.Annotations.dll",
"lib/netstandard1.4/System.ComponentModel.Annotations.dll",
"lib/portable-net45+win8/_._",
"lib/win8/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net461/System.ComponentModel.Annotations.dll",
"ref/netcore50/System.ComponentModel.Annotations.dll",
"ref/netcore50/System.ComponentModel.Annotations.xml",
"ref/netcore50/de/System.ComponentModel.Annotations.xml",
"ref/netcore50/es/System.ComponentModel.Annotations.xml",
"ref/netcore50/fr/System.ComponentModel.Annotations.xml",
"ref/netcore50/it/System.ComponentModel.Annotations.xml",
"ref/netcore50/ja/System.ComponentModel.Annotations.xml",
"ref/netcore50/ko/System.ComponentModel.Annotations.xml",
"ref/netcore50/ru/System.ComponentModel.Annotations.xml",
"ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
"ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/System.ComponentModel.Annotations.dll",
"ref/netstandard1.1/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
"ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/System.ComponentModel.Annotations.dll",
"ref/netstandard1.3/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
"ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/System.ComponentModel.Annotations.dll",
"ref/netstandard1.4/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
"ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
"ref/portable-net45+win8/_._",
"ref/win8/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"sha512": "Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
"type": "package",
"path": "System.ComponentModel.EventBasedAsync/4.0.11",
"files": [
"System.ComponentModel.EventBasedAsync.4.0.11.nupkg.sha512",
"System.ComponentModel.EventBasedAsync.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.ComponentModel.EventBasedAsync.dll",
"lib/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.ComponentModel.EventBasedAsync.dll",
"ref/netcore50/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/de/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/es/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/fr/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/it/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/ja/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/ko/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/ru/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/zh-hans/System.ComponentModel.EventBasedAsync.xml",
"ref/netcore50/zh-hant/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/System.ComponentModel.EventBasedAsync.dll",
"ref/netstandard1.0/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/de/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/es/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/fr/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/it/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/ja/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/ko/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/ru/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/zh-hans/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.0/zh-hant/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/System.ComponentModel.EventBasedAsync.dll",
"ref/netstandard1.3/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/de/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/es/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/fr/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/it/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/ja/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/ko/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/ru/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/zh-hans/System.ComponentModel.EventBasedAsync.xml",
"ref/netstandard1.3/zh-hant/System.ComponentModel.EventBasedAsync.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Data.Common/4.1.0": {
"sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==",
"type": "package",
"path": "System.Data.Common/4.1.0",
"files": [
"System.Data.Common.4.1.0.nupkg.sha512",
"System.Data.Common.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net451/System.Data.Common.dll",
"lib/netstandard1.2/System.Data.Common.dll",
"lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net451/System.Data.Common.dll",
"ref/netstandard1.2/System.Data.Common.dll",
"ref/netstandard1.2/System.Data.Common.xml",
"ref/netstandard1.2/de/System.Data.Common.xml",
"ref/netstandard1.2/es/System.Data.Common.xml",
"ref/netstandard1.2/fr/System.Data.Common.xml",
"ref/netstandard1.2/it/System.Data.Common.xml",
"ref/netstandard1.2/ja/System.Data.Common.xml",
"ref/netstandard1.2/ko/System.Data.Common.xml",
"ref/netstandard1.2/ru/System.Data.Common.xml",
"ref/netstandard1.2/zh-hans/System.Data.Common.xml",
"ref/netstandard1.2/zh-hant/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
"ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
"ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Diagnostics.Contracts/4.0.1": {
"sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
"type": "package",
"path": "System.Diagnostics.Contracts/4.0.1",
"files": [
"System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Contracts.dll",
"lib/netstandard1.0/System.Diagnostics.Contracts.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Diagnostics.Contracts.dll",
"ref/netcore50/System.Diagnostics.Contracts.xml",
"ref/netcore50/de/System.Diagnostics.Contracts.xml",
"ref/netcore50/es/System.Diagnostics.Contracts.xml",
"ref/netcore50/fr/System.Diagnostics.Contracts.xml",
"ref/netcore50/it/System.Diagnostics.Contracts.xml",
"ref/netcore50/ja/System.Diagnostics.Contracts.xml",
"ref/netcore50/ko/System.Diagnostics.Contracts.xml",
"ref/netcore50/ru/System.Diagnostics.Contracts.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/System.Diagnostics.Contracts.dll",
"ref/netstandard1.0/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
"ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
"System.Diagnostics.Debug/4.0.11": {
"sha512": "GpBQnj8FwT7/hRA3CdFtbHQjYtek0KxMC2QiXHcem7CYL/ltd2cJDdIhJqrJeKh3mrFz6G1vsVOJ4DvJCN6jlg==",
"type": "package",
"path": "System.Diagnostics.Debug/4.0.11",
"files": [
"System.Diagnostics.Debug.4.0.11.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Diagnostics.Debug.dll",
"ref/netcore50/System.Diagnostics.Debug.xml",
"ref/netcore50/de/System.Diagnostics.Debug.xml",
"ref/netcore50/es/System.Diagnostics.Debug.xml",
"ref/netcore50/fr/System.Diagnostics.Debug.xml",
"ref/netcore50/it/System.Diagnostics.Debug.xml",
"ref/netcore50/ja/System.Diagnostics.Debug.xml",
"ref/netcore50/ko/System.Diagnostics.Debug.xml",
"ref/netcore50/ru/System.Diagnostics.Debug.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/System.Diagnostics.Debug.dll",
"ref/netstandard1.0/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
"ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/System.Diagnostics.Debug.dll",
"ref/netstandard1.3/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
"ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"sha512": "bYxnzTncblGHb5t1VQQkXMsyvq8tHhoQoVun+dN57cwUjx38MR1wBc05roqNFT3DOxu+6wVxTrabe3hNcuPiug==",
"type": "package",
"path": "System.Diagnostics.DiagnosticSource/4.0.0",
"files": [
"System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net46/System.Diagnostics.DiagnosticSource.dll",
"lib/net46/System.Diagnostics.DiagnosticSource.xml",
"lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
"lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
]
},
"System.Diagnostics.StackTrace/4.0.2": {
"sha512": "MmP424iVWLyeW7XGtwC5NyfzsIwodFKwhW6yns3d+Sh8WFsFoPWq2cUlJJDAteapIm2qoJ8fc3VwIUroolbsEA==",
"type": "package",
"path": "System.Diagnostics.StackTrace/4.0.2",
"files": [
"System.Diagnostics.StackTrace.4.0.2.nupkg.sha512",
"System.Diagnostics.StackTrace.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Diagnostics.StackTrace.dll",
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Diagnostics.StackTrace.dll",
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
"ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
"ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
"System.Diagnostics.Tools/4.0.1": {
"sha512": "a2pA+nZ+S5MEeu76APG4t1gti6o/R5UPinu5jIL9i9xquGHeGSsLMYSCz71BGwl+XKq+tsCK8u2je2jD6j3h4w==",
"type": "package",
"path": "System.Diagnostics.Tools/4.0.1",
"files": [
"System.Diagnostics.Tools.4.0.1.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Diagnostics.Tools.dll",
"ref/netcore50/System.Diagnostics.Tools.xml",
"ref/netcore50/de/System.Diagnostics.Tools.xml",
"ref/netcore50/es/System.Diagnostics.Tools.xml",
"ref/netcore50/fr/System.Diagnostics.Tools.xml",
"ref/netcore50/it/System.Diagnostics.Tools.xml",
"ref/netcore50/ja/System.Diagnostics.Tools.xml",
"ref/netcore50/ko/System.Diagnostics.Tools.xml",
"ref/netcore50/ru/System.Diagnostics.Tools.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/System.Diagnostics.Tools.dll",
"ref/netstandard1.0/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
"ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Diagnostics.Tracing/4.1.0": {
"sha512": "pkpgsxR3N6GZpoYzFJbBa+hVT79m4bv7kAFasDhhcYECtSMwYt4dynrzVnFjVn76E/dQvD4Nw6C+6AnhrhTkVA==",
"type": "package",
"path": "System.Diagnostics.Tracing/4.1.0",
"files": [
"System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Diagnostics.Tracing.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Diagnostics.Tracing.dll",
"ref/netcore50/System.Diagnostics.Tracing.dll",
"ref/netcore50/System.Diagnostics.Tracing.xml",
"ref/netcore50/de/System.Diagnostics.Tracing.xml",
"ref/netcore50/es/System.Diagnostics.Tracing.xml",
"ref/netcore50/fr/System.Diagnostics.Tracing.xml",
"ref/netcore50/it/System.Diagnostics.Tracing.xml",
"ref/netcore50/ja/System.Diagnostics.Tracing.xml",
"ref/netcore50/ko/System.Diagnostics.Tracing.xml",
"ref/netcore50/ru/System.Diagnostics.Tracing.xml",
"ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/System.Diagnostics.Tracing.dll",
"ref/netstandard1.1/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/System.Diagnostics.Tracing.dll",
"ref/netstandard1.2/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/System.Diagnostics.Tracing.dll",
"ref/netstandard1.3/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/System.Diagnostics.Tracing.dll",
"ref/netstandard1.5/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
"ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Dynamic.Runtime/4.0.11": {
"sha512": "t0Dvjd5Yy/pEzGsiv7kEQEUIcLocQw8uTVK15oEfg2/hPZnu3MZlYduJQPkKoEaWpS2g4vswT2tVMzZbOJQa3w==",
"type": "package",
"path": "System.Dynamic.Runtime/4.0.11",
"files": [
"System.Dynamic.Runtime.4.0.11.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Dynamic.Runtime.dll",
"lib/netstandard1.3/System.Dynamic.Runtime.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Dynamic.Runtime.dll",
"ref/netcore50/System.Dynamic.Runtime.xml",
"ref/netcore50/de/System.Dynamic.Runtime.xml",
"ref/netcore50/es/System.Dynamic.Runtime.xml",
"ref/netcore50/fr/System.Dynamic.Runtime.xml",
"ref/netcore50/it/System.Dynamic.Runtime.xml",
"ref/netcore50/ja/System.Dynamic.Runtime.xml",
"ref/netcore50/ko/System.Dynamic.Runtime.xml",
"ref/netcore50/ru/System.Dynamic.Runtime.xml",
"ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
"ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/System.Dynamic.Runtime.dll",
"ref/netstandard1.0/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
"ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/System.Dynamic.Runtime.dll",
"ref/netstandard1.3/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
"ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
"System.Globalization/4.0.11": {
"sha512": "8Jls/STjJ75LFQrLz+RijMjx/2H72QY1Mik7Db3mlh0GgDg8hgJoZemreit41VzxgSCnTxkSBeHi3wB+Phq5ew==",
"type": "package",
"path": "System.Globalization/4.0.11",
"files": [
"System.Globalization.4.0.11.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Globalization.dll",
"ref/netcore50/System.Globalization.xml",
"ref/netcore50/de/System.Globalization.xml",
"ref/netcore50/es/System.Globalization.xml",
"ref/netcore50/fr/System.Globalization.xml",
"ref/netcore50/it/System.Globalization.xml",
"ref/netcore50/ja/System.Globalization.xml",
"ref/netcore50/ko/System.Globalization.xml",
"ref/netcore50/ru/System.Globalization.xml",
"ref/netcore50/zh-hans/System.Globalization.xml",
"ref/netcore50/zh-hant/System.Globalization.xml",
"ref/netstandard1.0/System.Globalization.dll",
"ref/netstandard1.0/System.Globalization.xml",
"ref/netstandard1.0/de/System.Globalization.xml",
"ref/netstandard1.0/es/System.Globalization.xml",
"ref/netstandard1.0/fr/System.Globalization.xml",
"ref/netstandard1.0/it/System.Globalization.xml",
"ref/netstandard1.0/ja/System.Globalization.xml",
"ref/netstandard1.0/ko/System.Globalization.xml",
"ref/netstandard1.0/ru/System.Globalization.xml",
"ref/netstandard1.0/zh-hans/System.Globalization.xml",
"ref/netstandard1.0/zh-hant/System.Globalization.xml",
"ref/netstandard1.3/System.Globalization.dll",
"ref/netstandard1.3/System.Globalization.xml",
"ref/netstandard1.3/de/System.Globalization.xml",
"ref/netstandard1.3/es/System.Globalization.xml",
"ref/netstandard1.3/fr/System.Globalization.xml",
"ref/netstandard1.3/it/System.Globalization.xml",
"ref/netstandard1.3/ja/System.Globalization.xml",
"ref/netstandard1.3/ko/System.Globalization.xml",
"ref/netstandard1.3/ru/System.Globalization.xml",
"ref/netstandard1.3/zh-hans/System.Globalization.xml",
"ref/netstandard1.3/zh-hant/System.Globalization.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Globalization.Calendars/4.0.1": {
"sha512": "ZBAgCvQmmZeG68GyJMhNUURcrAmbiHW396yhlVlz+ygTsvuh3dWmDAk1wOypQJL8KkISAuJjgzqDdddFKLyUZg==",
"type": "package",
"path": "System.Globalization.Calendars/4.0.1",
"files": [
"System.Globalization.Calendars.4.0.1.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Globalization.Calendars.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Globalization.Calendars.dll",
"ref/netstandard1.3/System.Globalization.Calendars.dll",
"ref/netstandard1.3/System.Globalization.Calendars.xml",
"ref/netstandard1.3/de/System.Globalization.Calendars.xml",
"ref/netstandard1.3/es/System.Globalization.Calendars.xml",
"ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
"ref/netstandard1.3/it/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
"ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
"ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
"ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Globalization.Extensions/4.0.1": {
"sha512": "vILdo3P1BZT6EQuPiwIPFs12W6U0zOBflfZdlFy+W/JoInB8M7NpNCdv4vJ2PP/RbFIaPpla12iyVGfA/+3tcg==",
"type": "package",
"path": "System.Globalization.Extensions/4.0.1",
"files": [
"System.Globalization.Extensions.4.0.1.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Globalization.Extensions.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Globalization.Extensions.dll",
"ref/netstandard1.3/System.Globalization.Extensions.dll",
"ref/netstandard1.3/System.Globalization.Extensions.xml",
"ref/netstandard1.3/de/System.Globalization.Extensions.xml",
"ref/netstandard1.3/es/System.Globalization.Extensions.xml",
"ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
"ref/netstandard1.3/it/System.Globalization.Extensions.xml",
"ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
"ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
"ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
"ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
"ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
"runtimes/win/lib/net46/System.Globalization.Extensions.dll",
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
]
},
"System.IO/4.1.0": {
"sha512": "karXRXjiOZXIAa7ZJR9CgRL3o9XXSo8ZTyS26eiuJaruf7gWq/wLDrYRp6i1ZxK4OGArjnwulMv86pUxqQe5SA==",
"type": "package",
"path": "System.IO/4.1.0",
"files": [
"System.IO.4.1.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.IO.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.IO.dll",
"ref/netcore50/System.IO.dll",
"ref/netcore50/System.IO.xml",
"ref/netcore50/de/System.IO.xml",
"ref/netcore50/es/System.IO.xml",
"ref/netcore50/fr/System.IO.xml",
"ref/netcore50/it/System.IO.xml",
"ref/netcore50/ja/System.IO.xml",
"ref/netcore50/ko/System.IO.xml",
"ref/netcore50/ru/System.IO.xml",
"ref/netcore50/zh-hans/System.IO.xml",
"ref/netcore50/zh-hant/System.IO.xml",
"ref/netstandard1.0/System.IO.dll",
"ref/netstandard1.0/System.IO.xml",
"ref/netstandard1.0/de/System.IO.xml",
"ref/netstandard1.0/es/System.IO.xml",
"ref/netstandard1.0/fr/System.IO.xml",
"ref/netstandard1.0/it/System.IO.xml",
"ref/netstandard1.0/ja/System.IO.xml",
"ref/netstandard1.0/ko/System.IO.xml",
"ref/netstandard1.0/ru/System.IO.xml",
"ref/netstandard1.0/zh-hans/System.IO.xml",
"ref/netstandard1.0/zh-hant/System.IO.xml",
"ref/netstandard1.3/System.IO.dll",
"ref/netstandard1.3/System.IO.xml",
"ref/netstandard1.3/de/System.IO.xml",
"ref/netstandard1.3/es/System.IO.xml",
"ref/netstandard1.3/fr/System.IO.xml",
"ref/netstandard1.3/it/System.IO.xml",
"ref/netstandard1.3/ja/System.IO.xml",
"ref/netstandard1.3/ko/System.IO.xml",
"ref/netstandard1.3/ru/System.IO.xml",
"ref/netstandard1.3/zh-hans/System.IO.xml",
"ref/netstandard1.3/zh-hant/System.IO.xml",
"ref/netstandard1.5/System.IO.dll",
"ref/netstandard1.5/System.IO.xml",
"ref/netstandard1.5/de/System.IO.xml",
"ref/netstandard1.5/es/System.IO.xml",
"ref/netstandard1.5/fr/System.IO.xml",
"ref/netstandard1.5/it/System.IO.xml",
"ref/netstandard1.5/ja/System.IO.xml",
"ref/netstandard1.5/ko/System.IO.xml",
"ref/netstandard1.5/ru/System.IO.xml",
"ref/netstandard1.5/zh-hans/System.IO.xml",
"ref/netstandard1.5/zh-hant/System.IO.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.Compression/4.1.1": {
"sha512": "ac/GG9DNsUr/grHGstCtWDoglgWr1OhL/yAZjXfpXtx52RmVVCpO52pShIDilQrD9dDZxw8zluiXEfezhPaYzg==",
"type": "package",
"path": "System.IO.Compression/4.1.1",
"files": [
"System.IO.Compression.4.1.1.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.IO.Compression.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.IO.Compression.dll",
"ref/netcore50/System.IO.Compression.dll",
"ref/netcore50/System.IO.Compression.xml",
"ref/netcore50/de/System.IO.Compression.xml",
"ref/netcore50/es/System.IO.Compression.xml",
"ref/netcore50/fr/System.IO.Compression.xml",
"ref/netcore50/it/System.IO.Compression.xml",
"ref/netcore50/ja/System.IO.Compression.xml",
"ref/netcore50/ko/System.IO.Compression.xml",
"ref/netcore50/ru/System.IO.Compression.xml",
"ref/netcore50/zh-hans/System.IO.Compression.xml",
"ref/netcore50/zh-hant/System.IO.Compression.xml",
"ref/netstandard1.1/System.IO.Compression.dll",
"ref/netstandard1.1/System.IO.Compression.xml",
"ref/netstandard1.1/de/System.IO.Compression.xml",
"ref/netstandard1.1/es/System.IO.Compression.xml",
"ref/netstandard1.1/fr/System.IO.Compression.xml",
"ref/netstandard1.1/it/System.IO.Compression.xml",
"ref/netstandard1.1/ja/System.IO.Compression.xml",
"ref/netstandard1.1/ko/System.IO.Compression.xml",
"ref/netstandard1.1/ru/System.IO.Compression.xml",
"ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
"ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
"ref/netstandard1.3/System.IO.Compression.dll",
"ref/netstandard1.3/System.IO.Compression.xml",
"ref/netstandard1.3/de/System.IO.Compression.xml",
"ref/netstandard1.3/es/System.IO.Compression.xml",
"ref/netstandard1.3/fr/System.IO.Compression.xml",
"ref/netstandard1.3/it/System.IO.Compression.xml",
"ref/netstandard1.3/ja/System.IO.Compression.xml",
"ref/netstandard1.3/ko/System.IO.Compression.xml",
"ref/netstandard1.3/ru/System.IO.Compression.xml",
"ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
"ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
"runtimes/win/lib/net46/System.IO.Compression.dll",
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
"System.IO.Compression.ZipFile/4.0.1": {
"sha512": "feyGeijUF0WwU0xIO+NrNdjsKpL37xiDe6vUsXvJpRnyPmLKWDhVAfZ1E3ms5BzXOIR2DPBAwJlNyYNpcHRRXg==",
"type": "package",
"path": "System.IO.Compression.ZipFile/4.0.1",
"files": [
"System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.Compression.ZipFile.dll",
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.Compression.ZipFile.dll",
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
"ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
"ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.FileSystem/4.0.1": {
"sha512": "fPJ0jdEKZFK5D4hOewtshk9jIN32j06g1YzCapqoKlk4qEVAm4UHFm2Us0pvK3NTCub5EAS5Qz6Kh6yTbD9gPA==",
"type": "package",
"path": "System.IO.FileSystem/4.0.1",
"files": [
"System.IO.FileSystem.4.0.1.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.FileSystem.dll",
"ref/netstandard1.3/System.IO.FileSystem.dll",
"ref/netstandard1.3/System.IO.FileSystem.xml",
"ref/netstandard1.3/de/System.IO.FileSystem.xml",
"ref/netstandard1.3/es/System.IO.FileSystem.xml",
"ref/netstandard1.3/fr/System.IO.FileSystem.xml",
"ref/netstandard1.3/it/System.IO.FileSystem.xml",
"ref/netstandard1.3/ja/System.IO.FileSystem.xml",
"ref/netstandard1.3/ko/System.IO.FileSystem.xml",
"ref/netstandard1.3/ru/System.IO.FileSystem.xml",
"ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
"ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.FileSystem.Primitives/4.0.1": {
"sha512": "HZnKMIk6T8kt1rqbhLpvSC4sIcBMx/kocwTHZpEOpxL7qdgQV/OglEkV7Zl8Ds++y387KOq15Nh4QQVtSXIkjQ==",
"type": "package",
"path": "System.IO.FileSystem.Primitives/4.0.1",
"files": [
"System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.Primitives.dll",
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.FileSystem.Primitives.dll",
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
"ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.IsolatedStorage/4.0.1": {
"sha512": "PuSuDi3FV84wh6RbF+Dvr0BvLJ6MCpvNIdVE3K0sSnOVKEV7mOQ0qnEvO1tWjxquMaugULTxJHHLaxkCHCz4IQ==",
"type": "package",
"path": "System.IO.IsolatedStorage/4.0.1",
"files": [
"System.IO.IsolatedStorage.4.0.1.nupkg.sha512",
"System.IO.IsolatedStorage.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/netcore50/System.IO.IsolatedStorage.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netstandard1.4/System.IO.IsolatedStorage.dll",
"ref/netstandard1.4/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/de/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/es/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/fr/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/it/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/ja/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/ko/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/ru/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/zh-hans/System.IO.IsolatedStorage.xml",
"ref/netstandard1.4/zh-hant/System.IO.IsolatedStorage.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.IO.UnmanagedMemoryStream/4.0.1": {
"sha512": "3884Ps2yRz5RFkDtF2NVtAzYshbtKuMa1QUxgu3/5G74VMyvJ6xcDpiDAMKy+sFnDsomj+V2oMUwKrFGfCX10Q==",
"type": "package",
"path": "System.IO.UnmanagedMemoryStream/4.0.1",
"files": [
"System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
"System.IO.UnmanagedMemoryStream.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.UnmanagedMemoryStream.dll",
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.IO.UnmanagedMemoryStream.dll",
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml",
"ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Linq/4.1.0": {
"sha512": "Vvarb8OTsZu8F9lsbyWPqW04HIQN04TjfP0K3NXh63GGf34Q6hQol4aupWbZkdunnVuj+sF9dF/OaZuxxPxJRg==",
"type": "package",
"path": "System.Linq/4.1.0",
"files": [
"System.Linq.4.1.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net463/System.Linq.dll",
"lib/netcore50/System.Linq.dll",
"lib/netstandard1.6/System.Linq.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net463/System.Linq.dll",
"ref/netcore50/System.Linq.dll",
"ref/netcore50/System.Linq.xml",
"ref/netcore50/de/System.Linq.xml",
"ref/netcore50/es/System.Linq.xml",
"ref/netcore50/fr/System.Linq.xml",
"ref/netcore50/it/System.Linq.xml",
"ref/netcore50/ja/System.Linq.xml",
"ref/netcore50/ko/System.Linq.xml",
"ref/netcore50/ru/System.Linq.xml",
"ref/netcore50/zh-hans/System.Linq.xml",
"ref/netcore50/zh-hant/System.Linq.xml",
"ref/netstandard1.0/System.Linq.dll",
"ref/netstandard1.0/System.Linq.xml",
"ref/netstandard1.0/de/System.Linq.xml",
"ref/netstandard1.0/es/System.Linq.xml",
"ref/netstandard1.0/fr/System.Linq.xml",
"ref/netstandard1.0/it/System.Linq.xml",
"ref/netstandard1.0/ja/System.Linq.xml",
"ref/netstandard1.0/ko/System.Linq.xml",
"ref/netstandard1.0/ru/System.Linq.xml",
"ref/netstandard1.0/zh-hans/System.Linq.xml",
"ref/netstandard1.0/zh-hant/System.Linq.xml",
"ref/netstandard1.6/System.Linq.dll",
"ref/netstandard1.6/System.Linq.xml",
"ref/netstandard1.6/de/System.Linq.xml",
"ref/netstandard1.6/es/System.Linq.xml",
"ref/netstandard1.6/fr/System.Linq.xml",
"ref/netstandard1.6/it/System.Linq.xml",
"ref/netstandard1.6/ja/System.Linq.xml",
"ref/netstandard1.6/ko/System.Linq.xml",
"ref/netstandard1.6/ru/System.Linq.xml",
"ref/netstandard1.6/zh-hans/System.Linq.xml",
"ref/netstandard1.6/zh-hant/System.Linq.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Linq.Expressions/4.1.0": {
"sha512": "zXYAAevGjqGwJBklQe2W7nidn+9EHvJPpKuLK089qHqF4z12r/sQncFPT63KGdDOFhWpibFtTa/RnNLFmvmMRA==",
"type": "package",
"path": "System.Linq.Expressions/4.1.0",
"files": [
"System.Linq.Expressions.4.1.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net463/System.Linq.Expressions.dll",
"lib/netcore50/System.Linq.Expressions.dll",
"lib/netstandard1.6/System.Linq.Expressions.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net463/System.Linq.Expressions.dll",
"ref/netcore50/System.Linq.Expressions.dll",
"ref/netcore50/System.Linq.Expressions.xml",
"ref/netcore50/de/System.Linq.Expressions.xml",
"ref/netcore50/es/System.Linq.Expressions.xml",
"ref/netcore50/fr/System.Linq.Expressions.xml",
"ref/netcore50/it/System.Linq.Expressions.xml",
"ref/netcore50/ja/System.Linq.Expressions.xml",
"ref/netcore50/ko/System.Linq.Expressions.xml",
"ref/netcore50/ru/System.Linq.Expressions.xml",
"ref/netcore50/zh-hans/System.Linq.Expressions.xml",
"ref/netcore50/zh-hant/System.Linq.Expressions.xml",
"ref/netstandard1.0/System.Linq.Expressions.dll",
"ref/netstandard1.0/System.Linq.Expressions.xml",
"ref/netstandard1.0/de/System.Linq.Expressions.xml",
"ref/netstandard1.0/es/System.Linq.Expressions.xml",
"ref/netstandard1.0/fr/System.Linq.Expressions.xml",
"ref/netstandard1.0/it/System.Linq.Expressions.xml",
"ref/netstandard1.0/ja/System.Linq.Expressions.xml",
"ref/netstandard1.0/ko/System.Linq.Expressions.xml",
"ref/netstandard1.0/ru/System.Linq.Expressions.xml",
"ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
"ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
"ref/netstandard1.3/System.Linq.Expressions.dll",
"ref/netstandard1.3/System.Linq.Expressions.xml",
"ref/netstandard1.3/de/System.Linq.Expressions.xml",
"ref/netstandard1.3/es/System.Linq.Expressions.xml",
"ref/netstandard1.3/fr/System.Linq.Expressions.xml",
"ref/netstandard1.3/it/System.Linq.Expressions.xml",
"ref/netstandard1.3/ja/System.Linq.Expressions.xml",
"ref/netstandard1.3/ko/System.Linq.Expressions.xml",
"ref/netstandard1.3/ru/System.Linq.Expressions.xml",
"ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
"ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
"ref/netstandard1.6/System.Linq.Expressions.dll",
"ref/netstandard1.6/System.Linq.Expressions.xml",
"ref/netstandard1.6/de/System.Linq.Expressions.xml",
"ref/netstandard1.6/es/System.Linq.Expressions.xml",
"ref/netstandard1.6/fr/System.Linq.Expressions.xml",
"ref/netstandard1.6/it/System.Linq.Expressions.xml",
"ref/netstandard1.6/ja/System.Linq.Expressions.xml",
"ref/netstandard1.6/ko/System.Linq.Expressions.xml",
"ref/netstandard1.6/ru/System.Linq.Expressions.xml",
"ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
"ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
]
},
"System.Linq.Parallel/4.0.1": {
"sha512": "rU0mLIfq46Q7M3CRPq6or8wdxJpWSSvoD6dMAsp4NJXPvEvXMxtwI9jcJ25TN5jrjx1h0bYdIjvqtWDz3/oi7w==",
"type": "package",
"path": "System.Linq.Parallel/4.0.1",
"files": [
"System.Linq.Parallel.4.0.1.nupkg.sha512",
"System.Linq.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Linq.Parallel.dll",
"lib/netstandard1.3/System.Linq.Parallel.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Linq.Parallel.dll",
"ref/netcore50/System.Linq.Parallel.xml",
"ref/netcore50/de/System.Linq.Parallel.xml",
"ref/netcore50/es/System.Linq.Parallel.xml",
"ref/netcore50/fr/System.Linq.Parallel.xml",
"ref/netcore50/it/System.Linq.Parallel.xml",
"ref/netcore50/ja/System.Linq.Parallel.xml",
"ref/netcore50/ko/System.Linq.Parallel.xml",
"ref/netcore50/ru/System.Linq.Parallel.xml",
"ref/netcore50/zh-hans/System.Linq.Parallel.xml",
"ref/netcore50/zh-hant/System.Linq.Parallel.xml",
"ref/netstandard1.1/System.Linq.Parallel.dll",
"ref/netstandard1.1/System.Linq.Parallel.xml",
"ref/netstandard1.1/de/System.Linq.Parallel.xml",
"ref/netstandard1.1/es/System.Linq.Parallel.xml",
"ref/netstandard1.1/fr/System.Linq.Parallel.xml",
"ref/netstandard1.1/it/System.Linq.Parallel.xml",
"ref/netstandard1.1/ja/System.Linq.Parallel.xml",
"ref/netstandard1.1/ko/System.Linq.Parallel.xml",
"ref/netstandard1.1/ru/System.Linq.Parallel.xml",
"ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml",
"ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Linq.Queryable/4.0.1": {
"sha512": "f/xa103VzDwMZzgHhs1zXlN/wIATqlDgXOfkOOHkmKy/aCB8ATR1QTGG4GWVuCjZ/BmitBVuDryUbrTRcPcHkw==",
"type": "package",
"path": "System.Linq.Queryable/4.0.1",
"files": [
"System.Linq.Queryable.4.0.1.nupkg.sha512",
"System.Linq.Queryable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/monoandroid10/_._",
"lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Linq.Queryable.dll",
"lib/netstandard1.3/System.Linq.Queryable.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/monoandroid10/_._",
"ref/monotouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Linq.Queryable.dll",
"ref/netcore50/System.Linq.Queryable.xml",
"ref/netcore50/de/System.Linq.Queryable.xml",
"ref/netcore50/es/System.Linq.Queryable.xml",
"ref/netcore50/fr/System.Linq.Queryable.xml",
"ref/netcore50/it/System.Linq.Queryable.xml",
"ref/netcore50/ja/System.Linq.Queryable.xml",
"ref/netcore50/ko/System.Linq.Queryable.xml",
"ref/netcore50/ru/System.Linq.Queryable.xml",
"ref/netcore50/zh-hans/System.Linq.Queryable.xml",
"ref/netcore50/zh-hant/System.Linq.Queryable.xml",
"ref/netstandard1.0/System.Linq.Queryable.dll",
"ref/netstandard1.0/System.Linq.Queryable.xml",
"ref/netstandard1.0/de/System.Linq.Queryable.xml",
"ref/netstandard1.0/es/System.Linq.Queryable.xml",
"ref/netstandard1.0/fr/System.Linq.Queryable.xml",
"ref/netstandard1.0/it/System.Linq.Queryable.xml",
"ref/netstandard1.0/ja/System.Linq.Queryable.xml",
"ref/netstandard1.0/ko/System.Linq.Queryable.xml",
"ref/netstandard1.0/ru/System.Linq.Queryable.xml",
"ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
"ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.Http/4.1.0": {
"sha512": "L64DHGDyGYQkprfGNcQoAZKUucEyfS+5SuYl/XlL4W37SNU9gwC2oYu5/zLymf3nDgPYL4xnyk2oyDIIF/MHOg==",
"type": "package",
"path": "System.Net.Http/4.1.0",
"files": [
"System.Net.Http.4.1.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/Xamarinmac20/_._",
"lib/monoandroid10/_._",
"lib/monotouch10/_._",
"lib/net45/_._",
"lib/net46/System.Net.Http.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/Xamarinmac20/_._",
"ref/monoandroid10/_._",
"ref/monotouch10/_._",
"ref/net45/_._",
"ref/net46/System.Net.Http.dll",
"ref/net46/System.Net.Http.xml",
"ref/net46/de/System.Net.Http.xml",
"ref/net46/es/System.Net.Http.xml",
"ref/net46/fr/System.Net.Http.xml",
"ref/net46/it/System.Net.Http.xml",
"ref/net46/ja/System.Net.Http.xml",
"ref/net46/ko/System.Net.Http.xml",
"ref/net46/ru/System.Net.Http.xml",
"ref/net46/zh-hans/System.Net.Http.xml",
"ref/net46/zh-hant/System.Net.Http.xml",
"ref/netcore50/System.Net.Http.dll",
"ref/netcore50/System.Net.Http.xml",
"ref/netcore50/de/System.Net.Http.xml",
"ref/netcore50/es/System.Net.Http.xml",
"ref/netcore50/fr/System.Net.Http.xml",
"ref/netcore50/it/System.Net.Http.xml",
"ref/netcore50/ja/System.Net.Http.xml",
"ref/netcore50/ko/System.Net.Http.xml",
"ref/netcore50/ru/System.Net.Http.xml",
"ref/netcore50/zh-hans/System.Net.Http.xml",
"ref/netcore50/zh-hant/System.Net.Http.xml",
"ref/netstandard1.1/System.Net.Http.dll",
"ref/netstandard1.1/System.Net.Http.xml",
"ref/netstandard1.1/de/System.Net.Http.xml",
"ref/netstandard1.1/es/System.Net.Http.xml",
"ref/netstandard1.1/fr/System.Net.Http.xml",
"ref/netstandard1.1/it/System.Net.Http.xml",
"ref/netstandard1.1/ja/System.Net.Http.xml",
"ref/netstandard1.1/ko/System.Net.Http.xml",
"ref/netstandard1.1/ru/System.Net.Http.xml",
"ref/netstandard1.1/zh-hans/System.Net.Http.xml",
"ref/netstandard1.1/zh-hant/System.Net.Http.xml",
"ref/netstandard1.3/System.Net.Http.dll",
"ref/netstandard1.3/System.Net.Http.xml",
"ref/netstandard1.3/de/System.Net.Http.xml",
"ref/netstandard1.3/es/System.Net.Http.xml",
"ref/netstandard1.3/fr/System.Net.Http.xml",
"ref/netstandard1.3/it/System.Net.Http.xml",
"ref/netstandard1.3/ja/System.Net.Http.xml",
"ref/netstandard1.3/ko/System.Net.Http.xml",
"ref/netstandard1.3/ru/System.Net.Http.xml",
"ref/netstandard1.3/zh-hans/System.Net.Http.xml",
"ref/netstandard1.3/zh-hant/System.Net.Http.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
"runtimes/win/lib/net46/System.Net.Http.dll",
"runtimes/win/lib/netcore50/System.Net.Http.dll",
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
"System.Net.Http.Rtc/4.0.1": {
"sha512": "o2AlTAvlZOc0dRUpmr379G57VUjSQ+JO7X2vIduaV+zReroM7WVwvtg6q1tGBrT4aVFvqWPDavWuBgSMTwugyw==",
"type": "package",
"path": "System.Net.Http.Rtc/4.0.1",
"files": [
"System.Net.Http.Rtc.4.0.1.nupkg.sha512",
"System.Net.Http.Rtc.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/win8/_._",
"ref/netcore50/System.Net.Http.Rtc.dll",
"ref/netcore50/System.Net.Http.Rtc.xml",
"ref/netcore50/de/System.Net.Http.Rtc.xml",
"ref/netcore50/es/System.Net.Http.Rtc.xml",
"ref/netcore50/fr/System.Net.Http.Rtc.xml",
"ref/netcore50/it/System.Net.Http.Rtc.xml",
"ref/netcore50/ja/System.Net.Http.Rtc.xml",
"ref/netcore50/ko/System.Net.Http.Rtc.xml",
"ref/netcore50/ru/System.Net.Http.Rtc.xml",
"ref/netcore50/zh-hans/System.Net.Http.Rtc.xml",
"ref/netcore50/zh-hant/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/System.Net.Http.Rtc.dll",
"ref/netstandard1.1/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/de/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/es/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/fr/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/it/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/ja/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/ko/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/ru/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/zh-hans/System.Net.Http.Rtc.xml",
"ref/netstandard1.1/zh-hant/System.Net.Http.Rtc.xml",
"ref/win8/_._",
"runtimes/win/lib/netcore50/System.Net.Http.Rtc.dll"
]
},
"System.Net.NameResolution/4.0.0": {
"sha512": "rfmciwKXK+hb+dhSiNIUhCS6se+414wzsAGe0ZljzZAEwcGHg4sY1aA0YUP8i549TAPXHHOFjFH805UYCj3+GQ==",
"type": "package",
"path": "System.Net.NameResolution/4.0.0",
"files": [
"System.Net.NameResolution.4.0.0.nupkg.sha512",
"System.Net.NameResolution.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.NameResolution.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.NameResolution.dll",
"ref/netstandard1.3/System.Net.NameResolution.dll",
"ref/netstandard1.3/System.Net.NameResolution.xml",
"ref/netstandard1.3/de/System.Net.NameResolution.xml",
"ref/netstandard1.3/es/System.Net.NameResolution.xml",
"ref/netstandard1.3/fr/System.Net.NameResolution.xml",
"ref/netstandard1.3/it/System.Net.NameResolution.xml",
"ref/netstandard1.3/ja/System.Net.NameResolution.xml",
"ref/netstandard1.3/ko/System.Net.NameResolution.xml",
"ref/netstandard1.3/ru/System.Net.NameResolution.xml",
"ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
"ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
"runtimes/win/lib/net46/System.Net.NameResolution.dll",
"runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
]
},
"System.Net.NetworkInformation/4.1.0": {
"sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
"type": "package",
"path": "System.Net.NetworkInformation/4.1.0",
"files": [
"System.Net.NetworkInformation.4.1.0.nupkg.sha512",
"System.Net.NetworkInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.Net.NetworkInformation.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.Net.NetworkInformation.dll",
"ref/netcore50/System.Net.NetworkInformation.dll",
"ref/netcore50/System.Net.NetworkInformation.xml",
"ref/netcore50/de/System.Net.NetworkInformation.xml",
"ref/netcore50/es/System.Net.NetworkInformation.xml",
"ref/netcore50/fr/System.Net.NetworkInformation.xml",
"ref/netcore50/it/System.Net.NetworkInformation.xml",
"ref/netcore50/ja/System.Net.NetworkInformation.xml",
"ref/netcore50/ko/System.Net.NetworkInformation.xml",
"ref/netcore50/ru/System.Net.NetworkInformation.xml",
"ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
"ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/System.Net.NetworkInformation.dll",
"ref/netstandard1.0/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
"ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/System.Net.NetworkInformation.dll",
"ref/netstandard1.3/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
"ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
"runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
"runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
"runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
"runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
]
},
"System.Net.Primitives/4.0.11": {
"sha512": "jsRO34LzQYAP3cOsi8wfq2recVB7MVa3KxXW8pRO3KT3nJ9YErSq7BcFvZUxpq0gUXoaqQS+D0McoPSkne9ODQ==",
"type": "package",
"path": "System.Net.Primitives/4.0.11",
"files": [
"System.Net.Primitives.4.0.11.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Net.Primitives.dll",
"ref/netcore50/System.Net.Primitives.xml",
"ref/netcore50/de/System.Net.Primitives.xml",
"ref/netcore50/es/System.Net.Primitives.xml",
"ref/netcore50/fr/System.Net.Primitives.xml",
"ref/netcore50/it/System.Net.Primitives.xml",
"ref/netcore50/ja/System.Net.Primitives.xml",
"ref/netcore50/ko/System.Net.Primitives.xml",
"ref/netcore50/ru/System.Net.Primitives.xml",
"ref/netcore50/zh-hans/System.Net.Primitives.xml",
"ref/netcore50/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.0/System.Net.Primitives.dll",
"ref/netstandard1.0/System.Net.Primitives.xml",
"ref/netstandard1.0/de/System.Net.Primitives.xml",
"ref/netstandard1.0/es/System.Net.Primitives.xml",
"ref/netstandard1.0/fr/System.Net.Primitives.xml",
"ref/netstandard1.0/it/System.Net.Primitives.xml",
"ref/netstandard1.0/ja/System.Net.Primitives.xml",
"ref/netstandard1.0/ko/System.Net.Primitives.xml",
"ref/netstandard1.0/ru/System.Net.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.1/System.Net.Primitives.dll",
"ref/netstandard1.1/System.Net.Primitives.xml",
"ref/netstandard1.1/de/System.Net.Primitives.xml",
"ref/netstandard1.1/es/System.Net.Primitives.xml",
"ref/netstandard1.1/fr/System.Net.Primitives.xml",
"ref/netstandard1.1/it/System.Net.Primitives.xml",
"ref/netstandard1.1/ja/System.Net.Primitives.xml",
"ref/netstandard1.1/ko/System.Net.Primitives.xml",
"ref/netstandard1.1/ru/System.Net.Primitives.xml",
"ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
"ref/netstandard1.3/System.Net.Primitives.dll",
"ref/netstandard1.3/System.Net.Primitives.xml",
"ref/netstandard1.3/de/System.Net.Primitives.xml",
"ref/netstandard1.3/es/System.Net.Primitives.xml",
"ref/netstandard1.3/fr/System.Net.Primitives.xml",
"ref/netstandard1.3/it/System.Net.Primitives.xml",
"ref/netstandard1.3/ja/System.Net.Primitives.xml",
"ref/netstandard1.3/ko/System.Net.Primitives.xml",
"ref/netstandard1.3/ru/System.Net.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.Requests/4.0.11": {
"sha512": "d9cMsfzdDKOIpho6HSHOMtn3HNdTQALql+Oc4KV3EIiFd7h5iH2xsCQ5AVJIfvLMmg81RmalUfkFHCH4WHMWKw==",
"type": "package",
"path": "System.Net.Requests/4.0.11",
"files": [
"System.Net.Requests.4.0.11.nupkg.sha512",
"System.Net.Requests.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/_._",
"ref/netcore50/System.Net.Requests.dll",
"ref/netcore50/System.Net.Requests.xml",
"ref/netcore50/de/System.Net.Requests.xml",
"ref/netcore50/es/System.Net.Requests.xml",
"ref/netcore50/fr/System.Net.Requests.xml",
"ref/netcore50/it/System.Net.Requests.xml",
"ref/netcore50/ja/System.Net.Requests.xml",
"ref/netcore50/ko/System.Net.Requests.xml",
"ref/netcore50/ru/System.Net.Requests.xml",
"ref/netcore50/zh-hans/System.Net.Requests.xml",
"ref/netcore50/zh-hant/System.Net.Requests.xml",
"ref/netstandard1.0/System.Net.Requests.dll",
"ref/netstandard1.0/System.Net.Requests.xml",
"ref/netstandard1.0/de/System.Net.Requests.xml",
"ref/netstandard1.0/es/System.Net.Requests.xml",
"ref/netstandard1.0/fr/System.Net.Requests.xml",
"ref/netstandard1.0/it/System.Net.Requests.xml",
"ref/netstandard1.0/ja/System.Net.Requests.xml",
"ref/netstandard1.0/ko/System.Net.Requests.xml",
"ref/netstandard1.0/ru/System.Net.Requests.xml",
"ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
"ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
"ref/netstandard1.1/System.Net.Requests.dll",
"ref/netstandard1.1/System.Net.Requests.xml",
"ref/netstandard1.1/de/System.Net.Requests.xml",
"ref/netstandard1.1/es/System.Net.Requests.xml",
"ref/netstandard1.1/fr/System.Net.Requests.xml",
"ref/netstandard1.1/it/System.Net.Requests.xml",
"ref/netstandard1.1/ja/System.Net.Requests.xml",
"ref/netstandard1.1/ko/System.Net.Requests.xml",
"ref/netstandard1.1/ru/System.Net.Requests.xml",
"ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
"ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
"ref/netstandard1.3/System.Net.Requests.dll",
"ref/netstandard1.3/System.Net.Requests.xml",
"ref/netstandard1.3/de/System.Net.Requests.xml",
"ref/netstandard1.3/es/System.Net.Requests.xml",
"ref/netstandard1.3/fr/System.Net.Requests.xml",
"ref/netstandard1.3/it/System.Net.Requests.xml",
"ref/netstandard1.3/ja/System.Net.Requests.xml",
"ref/netstandard1.3/ko/System.Net.Requests.xml",
"ref/netstandard1.3/ru/System.Net.Requests.xml",
"ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
"ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
"runtimes/win/lib/net46/_._",
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
]
},
"System.Net.Sockets/4.1.0": {
"sha512": "UyAPV214uSwvR3FmMILzc9OdWFy+ZGOGQJmCulgUkLVKvhdvWzIGqPK16PfZ1elvF0xLKTCA79ZDLlcZIlTsKg==",
"type": "package",
"path": "System.Net.Sockets/4.1.0",
"files": [
"System.Net.Sockets.4.1.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.Sockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.Sockets.dll",
"ref/netstandard1.3/System.Net.Sockets.dll",
"ref/netstandard1.3/System.Net.Sockets.xml",
"ref/netstandard1.3/de/System.Net.Sockets.xml",
"ref/netstandard1.3/es/System.Net.Sockets.xml",
"ref/netstandard1.3/fr/System.Net.Sockets.xml",
"ref/netstandard1.3/it/System.Net.Sockets.xml",
"ref/netstandard1.3/ja/System.Net.Sockets.xml",
"ref/netstandard1.3/ko/System.Net.Sockets.xml",
"ref/netstandard1.3/ru/System.Net.Sockets.xml",
"ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
"ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.WebHeaderCollection/4.0.1": {
"sha512": "LcbOpgkH52Rx+DpbuxhI9DYHHtP+/OzLT5NXdkrTmq4MUiaO+2fQocCiBB593+N9D2R79swiimHbxUeomQNH6A==",
"type": "package",
"path": "System.Net.WebHeaderCollection/4.0.1",
"files": [
"System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
"System.Net.WebHeaderCollection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/_._",
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/_._",
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
"ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
"ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.WebSockets/4.0.0": {
"sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
"type": "package",
"path": "System.Net.WebSockets/4.0.0",
"files": [
"System.Net.WebSockets.4.0.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.WebSockets.dll",
"lib/netstandard1.3/System.Net.WebSockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.WebSockets.dll",
"ref/netstandard1.3/System.Net.WebSockets.dll",
"ref/netstandard1.3/System.Net.WebSockets.xml",
"ref/netstandard1.3/de/System.Net.WebSockets.xml",
"ref/netstandard1.3/es/System.Net.WebSockets.xml",
"ref/netstandard1.3/fr/System.Net.WebSockets.xml",
"ref/netstandard1.3/it/System.Net.WebSockets.xml",
"ref/netstandard1.3/ja/System.Net.WebSockets.xml",
"ref/netstandard1.3/ko/System.Net.WebSockets.xml",
"ref/netstandard1.3/ru/System.Net.WebSockets.xml",
"ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml",
"ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Net.WebSockets.Client/4.0.0": {
"sha512": "GY5h9cn0ZVsG4ORQqMytTldrqxet2RC2CSEsgWGf4XNW5jhL5SxzcUZph03xbZsgn7K3qMr+Rq+gkbJNI+FEXg==",
"type": "package",
"path": "System.Net.WebSockets.Client/4.0.0",
"files": [
"System.Net.WebSockets.Client.4.0.0.nupkg.sha512",
"System.Net.WebSockets.Client.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.WebSockets.Client.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Net.WebSockets.Client.dll",
"ref/netstandard1.3/System.Net.WebSockets.Client.dll",
"ref/netstandard1.3/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/de/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/es/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/fr/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/it/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/ja/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/ko/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/ru/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/zh-hans/System.Net.WebSockets.Client.xml",
"ref/netstandard1.3/zh-hant/System.Net.WebSockets.Client.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Net.WebSockets.Client.dll",
"runtimes/win/lib/net46/System.Net.WebSockets.Client.dll",
"runtimes/win/lib/netcore50/System.Net.WebSockets.Client.dll",
"runtimes/win/lib/netstandard1.3/System.Net.WebSockets.Client.dll"
]
},
"System.Numerics.Vectors/4.1.1": {
"sha512": "VYujDrypAsX61KS3RRJwYf6SD+9b4Ct3FX6bGn0apvsrBiAIoMDcl6HN2zt1AkKePCybQ74+fIVIWn12C6N+TQ==",
"type": "package",
"path": "System.Numerics.Vectors/4.1.1",
"files": [
"System.Numerics.Vectors.4.1.1.nupkg.sha512",
"System.Numerics.Vectors.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Numerics.Vectors.dll",
"lib/net46/System.Numerics.Vectors.xml",
"lib/netstandard1.0/System.Numerics.Vectors.dll",
"lib/netstandard1.0/System.Numerics.Vectors.xml",
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Numerics.Vectors.dll",
"ref/net46/System.Numerics.Vectors.xml",
"ref/netstandard1.0/System.Numerics.Vectors.dll",
"ref/netstandard1.0/System.Numerics.Vectors.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Numerics.Vectors.WindowsRuntime/4.0.1": {
"sha512": "T4RJY6Z+0AuynCnMy8VMyP1g2mrB/OGubx5Og6d8ve6LkVLPrpiGtV5iMJeBv7lTDF1zhviILg+LecgKBjkWag==",
"type": "package",
"path": "System.Numerics.Vectors.WindowsRuntime/4.0.1",
"files": [
"System.Numerics.Vectors.WindowsRuntime.4.0.1.nupkg.sha512",
"System.Numerics.Vectors.WindowsRuntime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/uap10.0/System.Numerics.Vectors.WindowsRuntime.dll"
]
},
"System.ObjectModel/4.0.12": {
"sha512": "7jOMCnM279XuLEoLi/bXRG8AYM5HSZK/N/XgGuQ1K36S+0Vnk7UHMUSnUlLobQAq87SDDuBRqSvq4ejhSoxDPQ==",
"type": "package",
"path": "System.ObjectModel/4.0.12",
"files": [
"System.ObjectModel.4.0.12.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.ObjectModel.dll",
"lib/netstandard1.3/System.ObjectModel.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.ObjectModel.dll",
"ref/netcore50/System.ObjectModel.xml",
"ref/netcore50/de/System.ObjectModel.xml",
"ref/netcore50/es/System.ObjectModel.xml",
"ref/netcore50/fr/System.ObjectModel.xml",
"ref/netcore50/it/System.ObjectModel.xml",
"ref/netcore50/ja/System.ObjectModel.xml",
"ref/netcore50/ko/System.ObjectModel.xml",
"ref/netcore50/ru/System.ObjectModel.xml",
"ref/netcore50/zh-hans/System.ObjectModel.xml",
"ref/netcore50/zh-hant/System.ObjectModel.xml",
"ref/netstandard1.0/System.ObjectModel.dll",
"ref/netstandard1.0/System.ObjectModel.xml",
"ref/netstandard1.0/de/System.ObjectModel.xml",
"ref/netstandard1.0/es/System.ObjectModel.xml",
"ref/netstandard1.0/fr/System.ObjectModel.xml",
"ref/netstandard1.0/it/System.ObjectModel.xml",
"ref/netstandard1.0/ja/System.ObjectModel.xml",
"ref/netstandard1.0/ko/System.ObjectModel.xml",
"ref/netstandard1.0/ru/System.ObjectModel.xml",
"ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
"ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
"ref/netstandard1.3/System.ObjectModel.dll",
"ref/netstandard1.3/System.ObjectModel.xml",
"ref/netstandard1.3/de/System.ObjectModel.xml",
"ref/netstandard1.3/es/System.ObjectModel.xml",
"ref/netstandard1.3/fr/System.ObjectModel.xml",
"ref/netstandard1.3/it/System.ObjectModel.xml",
"ref/netstandard1.3/ja/System.ObjectModel.xml",
"ref/netstandard1.3/ko/System.ObjectModel.xml",
"ref/netstandard1.3/ru/System.ObjectModel.xml",
"ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
"ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Private.DataContractSerialization/4.1.1": {
"sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
"type": "package",
"path": "System.Private.DataContractSerialization/4.1.1",
"files": [
"System.Private.DataContractSerialization.4.1.1.nupkg.sha512",
"System.Private.DataContractSerialization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.3/System.Private.DataContractSerialization.dll",
"ref/netstandard/_._",
"runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll"
]
},
"System.Private.ServiceModel/4.1.0": {
"sha512": "/QviVqIgta03ms7IDFALHCJOQCANZ1lILobf/OoLzdphHN40M3r6zqso2NsKvvSV7rJus+QLLWS/q33XGIybrQ==",
"type": "package",
"path": "System.Private.ServiceModel/4.1.0",
"files": [
"System.Private.ServiceModel.4.1.0.nupkg.sha512",
"System.Private.ServiceModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._",
"runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
"runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
"runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll"
]
},
"System.Private.Uri/4.0.1": {
"sha512": "OltceAn9yyNf9LZIqvf80DhdRH55iVu1fxowdR79018w1CWIRNojUZBStsiRHvADeKI5pXcM9EftOFikBQh5AA==",
"type": "package",
"path": "System.Private.Uri/4.0.1",
"files": [
"System.Private.Uri.4.0.1.nupkg.sha512",
"System.Private.Uri.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"ref/netstandard/_._"
]
},
"System.Reflection/4.1.0": {
"sha512": "IFXkYDIDLbPNUt7EApWyeEIx1HiAj63dDP74r5V/dgiEv9v97M/ttlmQzGCsyyCCUzM1ZZU9wYCGSYY0yHvU+Q==",
"type": "package",
"path": "System.Reflection/4.1.0",
"files": [
"System.Reflection.4.1.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Reflection.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Reflection.dll",
"ref/netcore50/System.Reflection.dll",
"ref/netcore50/System.Reflection.xml",
"ref/netcore50/de/System.Reflection.xml",
"ref/netcore50/es/System.Reflection.xml",
"ref/netcore50/fr/System.Reflection.xml",
"ref/netcore50/it/System.Reflection.xml",
"ref/netcore50/ja/System.Reflection.xml",
"ref/netcore50/ko/System.Reflection.xml",
"ref/netcore50/ru/System.Reflection.xml",
"ref/netcore50/zh-hans/System.Reflection.xml",
"ref/netcore50/zh-hant/System.Reflection.xml",
"ref/netstandard1.0/System.Reflection.dll",
"ref/netstandard1.0/System.Reflection.xml",
"ref/netstandard1.0/de/System.Reflection.xml",
"ref/netstandard1.0/es/System.Reflection.xml",
"ref/netstandard1.0/fr/System.Reflection.xml",
"ref/netstandard1.0/it/System.Reflection.xml",
"ref/netstandard1.0/ja/System.Reflection.xml",
"ref/netstandard1.0/ko/System.Reflection.xml",
"ref/netstandard1.0/ru/System.Reflection.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.xml",
"ref/netstandard1.3/System.Reflection.dll",
"ref/netstandard1.3/System.Reflection.xml",
"ref/netstandard1.3/de/System.Reflection.xml",
"ref/netstandard1.3/es/System.Reflection.xml",
"ref/netstandard1.3/fr/System.Reflection.xml",
"ref/netstandard1.3/it/System.Reflection.xml",
"ref/netstandard1.3/ja/System.Reflection.xml",
"ref/netstandard1.3/ko/System.Reflection.xml",
"ref/netstandard1.3/ru/System.Reflection.xml",
"ref/netstandard1.3/zh-hans/System.Reflection.xml",
"ref/netstandard1.3/zh-hant/System.Reflection.xml",
"ref/netstandard1.5/System.Reflection.dll",
"ref/netstandard1.5/System.Reflection.xml",
"ref/netstandard1.5/de/System.Reflection.xml",
"ref/netstandard1.5/es/System.Reflection.xml",
"ref/netstandard1.5/fr/System.Reflection.xml",
"ref/netstandard1.5/it/System.Reflection.xml",
"ref/netstandard1.5/ja/System.Reflection.xml",
"ref/netstandard1.5/ko/System.Reflection.xml",
"ref/netstandard1.5/ru/System.Reflection.xml",
"ref/netstandard1.5/zh-hans/System.Reflection.xml",
"ref/netstandard1.5/zh-hant/System.Reflection.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Reflection.Context/4.0.1": {
"sha512": "nU4qA/juVb7OCAqLdWAnxeyTjs5tbwQmtF6ep1gTVSa79aGF1J5orD88WHQmNhgVbgfhSGPnz4+d94o/iBXZ7g==",
"type": "package",
"path": "System.Reflection.Context/4.0.1",
"files": [
"System.Reflection.Context.4.0.1.nupkg.sha512",
"System.Reflection.Context.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Context.dll",
"lib/netstandard1.1/System.Reflection.Context.dll",
"lib/portable-net45+win8/_._",
"lib/win8/_._",
"ref/net45/_._",
"ref/netcore50/System.Reflection.Context.dll",
"ref/netcore50/System.Reflection.Context.xml",
"ref/netcore50/de/System.Reflection.Context.xml",
"ref/netcore50/es/System.Reflection.Context.xml",
"ref/netcore50/fr/System.Reflection.Context.xml",
"ref/netcore50/it/System.Reflection.Context.xml",
"ref/netcore50/ja/System.Reflection.Context.xml",
"ref/netcore50/ko/System.Reflection.Context.xml",
"ref/netcore50/ru/System.Reflection.Context.xml",
"ref/netcore50/zh-hans/System.Reflection.Context.xml",
"ref/netcore50/zh-hant/System.Reflection.Context.xml",
"ref/netstandard1.1/System.Reflection.Context.dll",
"ref/netstandard1.1/System.Reflection.Context.xml",
"ref/netstandard1.1/de/System.Reflection.Context.xml",
"ref/netstandard1.1/es/System.Reflection.Context.xml",
"ref/netstandard1.1/fr/System.Reflection.Context.xml",
"ref/netstandard1.1/it/System.Reflection.Context.xml",
"ref/netstandard1.1/ja/System.Reflection.Context.xml",
"ref/netstandard1.1/ko/System.Reflection.Context.xml",
"ref/netstandard1.1/ru/System.Reflection.Context.xml",
"ref/netstandard1.1/zh-hans/System.Reflection.Context.xml",
"ref/netstandard1.1/zh-hant/System.Reflection.Context.xml",
"ref/portable-net45+win8/_._",
"ref/win8/_._"
]
},
"System.Reflection.DispatchProxy/4.0.1": {
"sha512": "4efmEZM25p9AiTekmWSvwKLaEVKORi4SsL1Qa66jY9nIRBI00KRTI7mJdgKXCDjI0JmkncUakPBWfNzIo4eRkg==",
"type": "package",
"path": "System.Reflection.DispatchProxy/4.0.1",
"files": [
"System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
"System.Reflection.DispatchProxy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
"ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
"ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
]
},
"System.Reflection.Emit/4.0.1": {
"sha512": "Op9FobZUg2561W/CL0TV89SLUAEzViA6QEojV26ZmW01B92GAM6AMc7uXlqMXL6ijvmzK3cB6hNQ0AT52v25wQ==",
"type": "package",
"path": "System.Reflection.Emit/4.0.1",
"files": [
"System.Reflection.Emit.4.0.1.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
"ref/netstandard1.1/System.Reflection.Emit.xml",
"ref/netstandard1.1/de/System.Reflection.Emit.xml",
"ref/netstandard1.1/es/System.Reflection.Emit.xml",
"ref/netstandard1.1/fr/System.Reflection.Emit.xml",
"ref/netstandard1.1/it/System.Reflection.Emit.xml",
"ref/netstandard1.1/ja/System.Reflection.Emit.xml",
"ref/netstandard1.1/ko/System.Reflection.Emit.xml",
"ref/netstandard1.1/ru/System.Reflection.Emit.xml",
"ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
"ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
"ref/xamarinmac20/_._"
]
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"sha512": "yxiJWtM/c5r4aY7HZuWcO9IUPW/bN5QrxqUf4x62Xwtm6bj2p2HX+hcqcF/TATqmKJidlwaH6V7RbAqq/z+ACA==",
"type": "package",
"path": "System.Reflection.Emit.ILGeneration/4.0.1",
"files": [
"System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"sha512": "H/nqtd+zhmqKGyjgCgm4xC9XjnJtsN78JuIG1lWFcXWBe+nuo8d2gmHTgNIyV6KpUkjJ55QeQ3sFbUga49bBiQ==",
"type": "package",
"path": "System.Reflection.Emit.Lightweight/4.0.1",
"files": [
"System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
"System.Reflection.Extensions/4.0.1": {
"sha512": "aC0iBvp77nThKAy9RAnZoLquWovp5D0H8DK7Mjb2ON6pPaNrS6/Po+qfAdaM0q9bjLpmt1W7JQ6QlLVpWQszZg==",
"type": "package",
"path": "System.Reflection.Extensions/4.0.1",
"files": [
"System.Reflection.Extensions.4.0.1.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Reflection.Extensions.dll",
"ref/netcore50/System.Reflection.Extensions.xml",
"ref/netcore50/de/System.Reflection.Extensions.xml",
"ref/netcore50/es/System.Reflection.Extensions.xml",
"ref/netcore50/fr/System.Reflection.Extensions.xml",
"ref/netcore50/it/System.Reflection.Extensions.xml",
"ref/netcore50/ja/System.Reflection.Extensions.xml",
"ref/netcore50/ko/System.Reflection.Extensions.xml",
"ref/netcore50/ru/System.Reflection.Extensions.xml",
"ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
"ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
"ref/netstandard1.0/System.Reflection.Extensions.dll",
"ref/netstandard1.0/System.Reflection.Extensions.xml",
"ref/netstandard1.0/de/System.Reflection.Extensions.xml",
"ref/netstandard1.0/es/System.Reflection.Extensions.xml",
"ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
"ref/netstandard1.0/it/System.Reflection.Extensions.xml",
"ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
"ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
"ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Reflection.Metadata/1.3.0": {
"sha512": "sruaBTiGAHKrEbHRC/lkeXcjuZ1eu2hndmmhkUidqAZsG28dewEu7sq/k4dKd+v0m3Zctkm4onEHqc85InlMwQ==",
"type": "package",
"path": "System.Reflection.Metadata/1.3.0",
"files": [
"System.Reflection.Metadata.1.3.0.nupkg.sha512",
"System.Reflection.Metadata.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.1/System.Reflection.Metadata.dll",
"lib/netstandard1.1/System.Reflection.Metadata.xml",
"lib/portable-net45+win8/System.Reflection.Metadata.dll",
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
"System.Reflection.Primitives/4.0.1": {
"sha512": "tUcC/Kjs4ZvV2G5tKTNuKHPryTXR3eAyzDXPvhaHDeb2ZZS/XFMrdWG6KY/3oWwEhMrm85WO2Q4cQq0ukR3jYg==",
"type": "package",
"path": "System.Reflection.Primitives/4.0.1",
"files": [
"System.Reflection.Primitives.4.0.1.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Reflection.Primitives.dll",
"ref/netcore50/System.Reflection.Primitives.xml",
"ref/netcore50/de/System.Reflection.Primitives.xml",
"ref/netcore50/es/System.Reflection.Primitives.xml",
"ref/netcore50/fr/System.Reflection.Primitives.xml",
"ref/netcore50/it/System.Reflection.Primitives.xml",
"ref/netcore50/ja/System.Reflection.Primitives.xml",
"ref/netcore50/ko/System.Reflection.Primitives.xml",
"ref/netcore50/ru/System.Reflection.Primitives.xml",
"ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
"ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
"ref/netstandard1.0/System.Reflection.Primitives.dll",
"ref/netstandard1.0/System.Reflection.Primitives.xml",
"ref/netstandard1.0/de/System.Reflection.Primitives.xml",
"ref/netstandard1.0/es/System.Reflection.Primitives.xml",
"ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
"ref/netstandard1.0/it/System.Reflection.Primitives.xml",
"ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
"ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
"ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Reflection.TypeExtensions/4.1.0": {
"sha512": "j2APlYMPkQCnJf9LK7ytYWzTxlOui9VQCnJY/TGobElEdvszhklyRbXonzf9iZgFq9douHCDSWB1IxZbfIbfPg==",
"type": "package",
"path": "System.Reflection.TypeExtensions/4.1.0",
"files": [
"System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Reflection.TypeExtensions.dll",
"lib/net462/System.Reflection.TypeExtensions.dll",
"lib/netcore50/System.Reflection.TypeExtensions.dll",
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Reflection.TypeExtensions.dll",
"ref/net462/System.Reflection.TypeExtensions.dll",
"ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
"ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
"ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
"ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
"System.Resources.ResourceManager/4.0.1": {
"sha512": "0CcQOn4WItnjon4GNnbCEKtn6+9Pw3J8FfQN1qAY/B/wC/ym/AO/JY0cQv7plDPDziP8aAlu5gWbC9cfRYRDtg==",
"type": "package",
"path": "System.Resources.ResourceManager/4.0.1",
"files": [
"System.Resources.ResourceManager.4.0.1.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Resources.ResourceManager.dll",
"ref/netcore50/System.Resources.ResourceManager.xml",
"ref/netcore50/de/System.Resources.ResourceManager.xml",
"ref/netcore50/es/System.Resources.ResourceManager.xml",
"ref/netcore50/fr/System.Resources.ResourceManager.xml",
"ref/netcore50/it/System.Resources.ResourceManager.xml",
"ref/netcore50/ja/System.Resources.ResourceManager.xml",
"ref/netcore50/ko/System.Resources.ResourceManager.xml",
"ref/netcore50/ru/System.Resources.ResourceManager.xml",
"ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
"ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/System.Resources.ResourceManager.dll",
"ref/netstandard1.0/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
"ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime/4.1.0": {
"sha512": "dNUxQcyAFhic0cnxJtcYgYmcqgp7PUXDZK5uvqUxW6CLEBwBt4/i4/tRYBBLw5WXoUoGtBrLQ2SjbDy1xQGB5Q==",
"type": "package",
"path": "System.Runtime/4.1.0",
"files": [
"System.Runtime.4.1.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.dll",
"lib/portable-net45+win8+wp80+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.dll",
"ref/netcore50/System.Runtime.dll",
"ref/netcore50/System.Runtime.xml",
"ref/netcore50/de/System.Runtime.xml",
"ref/netcore50/es/System.Runtime.xml",
"ref/netcore50/fr/System.Runtime.xml",
"ref/netcore50/it/System.Runtime.xml",
"ref/netcore50/ja/System.Runtime.xml",
"ref/netcore50/ko/System.Runtime.xml",
"ref/netcore50/ru/System.Runtime.xml",
"ref/netcore50/zh-hans/System.Runtime.xml",
"ref/netcore50/zh-hant/System.Runtime.xml",
"ref/netstandard1.0/System.Runtime.dll",
"ref/netstandard1.0/System.Runtime.xml",
"ref/netstandard1.0/de/System.Runtime.xml",
"ref/netstandard1.0/es/System.Runtime.xml",
"ref/netstandard1.0/fr/System.Runtime.xml",
"ref/netstandard1.0/it/System.Runtime.xml",
"ref/netstandard1.0/ja/System.Runtime.xml",
"ref/netstandard1.0/ko/System.Runtime.xml",
"ref/netstandard1.0/ru/System.Runtime.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.xml",
"ref/netstandard1.2/System.Runtime.dll",
"ref/netstandard1.2/System.Runtime.xml",
"ref/netstandard1.2/de/System.Runtime.xml",
"ref/netstandard1.2/es/System.Runtime.xml",
"ref/netstandard1.2/fr/System.Runtime.xml",
"ref/netstandard1.2/it/System.Runtime.xml",
"ref/netstandard1.2/ja/System.Runtime.xml",
"ref/netstandard1.2/ko/System.Runtime.xml",
"ref/netstandard1.2/ru/System.Runtime.xml",
"ref/netstandard1.2/zh-hans/System.Runtime.xml",
"ref/netstandard1.2/zh-hant/System.Runtime.xml",
"ref/netstandard1.3/System.Runtime.dll",
"ref/netstandard1.3/System.Runtime.xml",
"ref/netstandard1.3/de/System.Runtime.xml",
"ref/netstandard1.3/es/System.Runtime.xml",
"ref/netstandard1.3/fr/System.Runtime.xml",
"ref/netstandard1.3/it/System.Runtime.xml",
"ref/netstandard1.3/ja/System.Runtime.xml",
"ref/netstandard1.3/ko/System.Runtime.xml",
"ref/netstandard1.3/ru/System.Runtime.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.xml",
"ref/netstandard1.5/System.Runtime.dll",
"ref/netstandard1.5/System.Runtime.xml",
"ref/netstandard1.5/de/System.Runtime.xml",
"ref/netstandard1.5/es/System.Runtime.xml",
"ref/netstandard1.5/fr/System.Runtime.xml",
"ref/netstandard1.5/it/System.Runtime.xml",
"ref/netstandard1.5/ja/System.Runtime.xml",
"ref/netstandard1.5/ko/System.Runtime.xml",
"ref/netstandard1.5/ru/System.Runtime.xml",
"ref/netstandard1.5/zh-hans/System.Runtime.xml",
"ref/netstandard1.5/zh-hant/System.Runtime.xml",
"ref/portable-net45+win8+wp80+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.Extensions/4.1.0": {
"sha512": "b2d+O5cdaAMydGoSm4pUuDyuhnBjyAYo5chDM6ROJ33Ow5SZEL4CdISfRCGs+AwdmaFUjflKtMsWsuID7XDYXw==",
"type": "package",
"path": "System.Runtime.Extensions/4.1.0",
"files": [
"System.Runtime.Extensions.4.1.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.Extensions.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.Extensions.dll",
"ref/netcore50/System.Runtime.Extensions.dll",
"ref/netcore50/System.Runtime.Extensions.xml",
"ref/netcore50/de/System.Runtime.Extensions.xml",
"ref/netcore50/es/System.Runtime.Extensions.xml",
"ref/netcore50/fr/System.Runtime.Extensions.xml",
"ref/netcore50/it/System.Runtime.Extensions.xml",
"ref/netcore50/ja/System.Runtime.Extensions.xml",
"ref/netcore50/ko/System.Runtime.Extensions.xml",
"ref/netcore50/ru/System.Runtime.Extensions.xml",
"ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
"ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
"ref/netstandard1.0/System.Runtime.Extensions.dll",
"ref/netstandard1.0/System.Runtime.Extensions.xml",
"ref/netstandard1.0/de/System.Runtime.Extensions.xml",
"ref/netstandard1.0/es/System.Runtime.Extensions.xml",
"ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
"ref/netstandard1.0/it/System.Runtime.Extensions.xml",
"ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
"ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
"ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
"ref/netstandard1.3/System.Runtime.Extensions.dll",
"ref/netstandard1.3/System.Runtime.Extensions.xml",
"ref/netstandard1.3/de/System.Runtime.Extensions.xml",
"ref/netstandard1.3/es/System.Runtime.Extensions.xml",
"ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
"ref/netstandard1.3/it/System.Runtime.Extensions.xml",
"ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
"ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
"ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
"ref/netstandard1.5/System.Runtime.Extensions.dll",
"ref/netstandard1.5/System.Runtime.Extensions.xml",
"ref/netstandard1.5/de/System.Runtime.Extensions.xml",
"ref/netstandard1.5/es/System.Runtime.Extensions.xml",
"ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
"ref/netstandard1.5/it/System.Runtime.Extensions.xml",
"ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
"ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
"ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
"ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
"ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.Handles/4.0.1": {
"sha512": "39CAK1kWvFuZV+OvwMZrYiErBzhtOBWgv9ZWTOPn5a2ECMSpR0KVAA5rdlUDra66tNm1GuLDl4KOCWl91MJ5Pw==",
"type": "package",
"path": "System.Runtime.Handles/4.0.1",
"files": [
"System.Runtime.Handles.4.0.1.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/_._",
"ref/netstandard1.3/System.Runtime.Handles.dll",
"ref/netstandard1.3/System.Runtime.Handles.xml",
"ref/netstandard1.3/de/System.Runtime.Handles.xml",
"ref/netstandard1.3/es/System.Runtime.Handles.xml",
"ref/netstandard1.3/fr/System.Runtime.Handles.xml",
"ref/netstandard1.3/it/System.Runtime.Handles.xml",
"ref/netstandard1.3/ja/System.Runtime.Handles.xml",
"ref/netstandard1.3/ko/System.Runtime.Handles.xml",
"ref/netstandard1.3/ru/System.Runtime.Handles.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.InteropServices/4.1.0": {
"sha512": "KmIIw0sflkqgGdp6tzb9BfNm9HFD3Ibw95MJyscumVK169nmKQaoJZA9p7gTJosuJcqNVYd/t2tbytTv6LCg0w==",
"type": "package",
"path": "System.Runtime.InteropServices/4.1.0",
"files": [
"System.Runtime.InteropServices.4.1.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
"ref/netcore50/es/System.Runtime.InteropServices.xml",
"ref/netcore50/fr/System.Runtime.InteropServices.xml",
"ref/netcore50/it/System.Runtime.InteropServices.xml",
"ref/netcore50/ja/System.Runtime.InteropServices.xml",
"ref/netcore50/ko/System.Runtime.InteropServices.xml",
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/System.Runtime.InteropServices.dll",
"ref/netstandard1.2/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
"ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/System.Runtime.InteropServices.dll",
"ref/netstandard1.3/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/System.Runtime.InteropServices.dll",
"ref/netstandard1.5/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
"ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.InteropServices.WindowsRuntime/4.0.1": {
"sha512": "oIIXM4w2y3MiEZEXA+RTtfPV+SZ1ymbFdWppHlUciNdNIL0/Uo3HW9q9iN2O7T7KUmRdvjA7C2Gv4exAyW4zEQ==",
"type": "package",
"path": "System.Runtime.InteropServices.WindowsRuntime/4.0.1",
"files": [
"System.Runtime.InteropServices.WindowsRuntime.4.0.1.nupkg.sha512",
"System.Runtime.InteropServices.WindowsRuntime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
"lib/netstandard1.3/System.Runtime.InteropServices.WindowsRuntime.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios1/_._",
"ref/net45/_._",
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll",
"ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/de/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/es/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/it/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.dll",
"ref/netstandard1.0/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/de/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/es/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/fr/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/it/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/ja/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/ko/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/ru/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"runtimes/aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll"
]
},
"System.Runtime.Numerics/4.0.1": {
"sha512": "GXLieN7/+UYytbbjD8JXSAbAs8+b0Xw3gdJiqwRxdM8ObAPh6fKMVNKwV77CqY0xDPRvR3/Xq8q50EAkn5OQiA==",
"type": "package",
"path": "System.Runtime.Numerics/4.0.1",
"files": [
"System.Runtime.Numerics.4.0.1.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.Numerics.dll",
"lib/netstandard1.3/System.Runtime.Numerics.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Runtime.Numerics.dll",
"ref/netcore50/System.Runtime.Numerics.xml",
"ref/netcore50/de/System.Runtime.Numerics.xml",
"ref/netcore50/es/System.Runtime.Numerics.xml",
"ref/netcore50/fr/System.Runtime.Numerics.xml",
"ref/netcore50/it/System.Runtime.Numerics.xml",
"ref/netcore50/ja/System.Runtime.Numerics.xml",
"ref/netcore50/ko/System.Runtime.Numerics.xml",
"ref/netcore50/ru/System.Runtime.Numerics.xml",
"ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
"ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
"ref/netstandard1.1/System.Runtime.Numerics.dll",
"ref/netstandard1.1/System.Runtime.Numerics.xml",
"ref/netstandard1.1/de/System.Runtime.Numerics.xml",
"ref/netstandard1.1/es/System.Runtime.Numerics.xml",
"ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
"ref/netstandard1.1/it/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
"ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
"ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
"ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.Serialization.Json/4.0.2": {
"sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
"type": "package",
"path": "System.Runtime.Serialization.Json/4.0.2",
"files": [
"System.Runtime.Serialization.Json.4.0.2.nupkg.sha512",
"System.Runtime.Serialization.Json.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Runtime.Serialization.Json.dll",
"lib/netstandard1.3/System.Runtime.Serialization.Json.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Runtime.Serialization.Json.dll",
"ref/netcore50/System.Runtime.Serialization.Json.xml",
"ref/netcore50/de/System.Runtime.Serialization.Json.xml",
"ref/netcore50/es/System.Runtime.Serialization.Json.xml",
"ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
"ref/netcore50/it/System.Runtime.Serialization.Json.xml",
"ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
"ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
"ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
"ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
"ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/System.Runtime.Serialization.Json.dll",
"ref/netstandard1.0/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.Serialization.Primitives/4.1.1": {
"sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
"type": "package",
"path": "System.Runtime.Serialization.Primitives/4.1.1",
"files": [
"System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.Runtime.Serialization.Primitives.dll",
"lib/netcore50/System.Runtime.Serialization.Primitives.dll",
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.Runtime.Serialization.Primitives.dll",
"ref/netcore50/System.Runtime.Serialization.Primitives.dll",
"ref/netcore50/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
"ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
"System.Runtime.Serialization.Xml/4.1.1": {
"sha512": "yqfKHkWUAdI0hdDIdD9KDzluKtZ8IIqLF3O7xIZlt6UTs1bOvFRpCvRTvGQva3Ak/ZM9/nq9IHBJ1tC4Ybcrjg==",
"type": "package",
"path": "System.Runtime.Serialization.Xml/4.1.1",
"files": [
"System.Runtime.Serialization.Xml.4.1.1.nupkg.sha512",
"System.Runtime.Serialization.Xml.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.Runtime.Serialization.Xml.dll",
"lib/netcore50/System.Runtime.Serialization.Xml.dll",
"lib/netstandard1.3/System.Runtime.Serialization.Xml.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.Runtime.Serialization.Xml.dll",
"ref/netcore50/System.Runtime.Serialization.Xml.dll",
"ref/netcore50/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/de/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/es/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/fr/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/it/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/ja/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/ko/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/ru/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml",
"ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/System.Runtime.Serialization.Xml.dll",
"ref/netstandard1.0/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/System.Runtime.Serialization.Xml.dll",
"ref/netstandard1.3/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml",
"ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Runtime.WindowsRuntime/4.0.11": {
"sha512": "C7rjmukRI0zE1Upl9hhmO4ZxasFYUTadXtgikLTgWwmIwa1jAD7yhOHKX3odajlRnSt34Ih+5VZliaqfFvQOcg==",
"type": "package",
"path": "System.Runtime.WindowsRuntime/4.0.11",
"files": [
"System.Runtime.WindowsRuntime.4.0.11.nupkg.sha512",
"System.Runtime.WindowsRuntime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/portable-win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"ref/netcore50/System.Runtime.WindowsRuntime.dll",
"ref/netcore50/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/de/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/es/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/fr/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/it/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/ja/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/ko/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/ru/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.xml",
"ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/System.Runtime.WindowsRuntime.dll",
"ref/netstandard1.0/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/de/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/es/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/fr/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/it/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/ja/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/ko/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/ru/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/zh-hans/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.0/zh-hant/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/System.Runtime.WindowsRuntime.dll",
"ref/netstandard1.2/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/de/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/es/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/fr/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/it/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/ja/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/ko/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/ru/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/zh-hans/System.Runtime.WindowsRuntime.xml",
"ref/netstandard1.2/zh-hant/System.Runtime.WindowsRuntime.xml",
"ref/portable-win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll",
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.dll"
]
},
"System.Runtime.WindowsRuntime.UI.Xaml/4.0.1": {
"sha512": "ZG2uW8JYmFs1sGlhhAoW/F5WmZotkeSxzMils72qGEsJI6+JcQUa6oleSujULC4nk13F5Us9zvlvD2WfB+9Thw==",
"type": "package",
"path": "System.Runtime.WindowsRuntime.UI.Xaml/4.0.1",
"files": [
"System.Runtime.WindowsRuntime.UI.Xaml.4.0.1.nupkg.sha512",
"System.Runtime.WindowsRuntime.UI.Xaml.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/portable-win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll",
"ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/de/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/es/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/it/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.dll",
"ref/netstandard1.1/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/de/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/es/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/it/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/netstandard1.1/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml",
"ref/portable-win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"runtimes/win8/lib/netstandard1.3/System.Runtime.WindowsRuntime.UI.Xaml.dll"
]
},
"System.Security.Claims/4.0.1": {
"sha512": "Uc9b5DyxfFkTin13rqSr/LtrRxY0B3T/izmzDfPIXn/ak7P3VjBxb7KNVz8XWqYXF3ZDAE0rOF1CFFOfIs54iw==",
"type": "package",
"path": "System.Security.Claims/4.0.1",
"files": [
"System.Security.Claims.4.0.1.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Claims.dll",
"lib/netstandard1.3/System.Security.Claims.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Claims.dll",
"ref/netstandard1.3/System.Security.Claims.dll",
"ref/netstandard1.3/System.Security.Claims.xml",
"ref/netstandard1.3/de/System.Security.Claims.xml",
"ref/netstandard1.3/es/System.Security.Claims.xml",
"ref/netstandard1.3/fr/System.Security.Claims.xml",
"ref/netstandard1.3/it/System.Security.Claims.xml",
"ref/netstandard1.3/ja/System.Security.Claims.xml",
"ref/netstandard1.3/ko/System.Security.Claims.xml",
"ref/netstandard1.3/ru/System.Security.Claims.xml",
"ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
"ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"sha512": "zWFPaCthkO5Vfl4L3S4Ooxt6q06lq/0bkNHQF7xlZgbBpBfYGGaH0R3rMt74HaaiuWmcF5A5CK3/rR4pMKIZTg==",
"type": "package",
"path": "System.Security.Cryptography.Algorithms/4.2.0",
"files": [
"System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Algorithms.dll",
"lib/net461/System.Security.Cryptography.Algorithms.dll",
"lib/net463/System.Security.Cryptography.Algorithms.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Algorithms.dll",
"ref/net461/System.Security.Cryptography.Algorithms.dll",
"ref/net463/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
"System.Security.Cryptography.Cng/4.2.0": {
"sha512": "hkFtNHKFnykH8MQQUJfI8LMO/V91+XBjwcshX1nNoX+zKB/rvL88sl9oxxLRxAnEc5oL5r4vMyr/d7N2Xdlhow==",
"type": "package",
"path": "System.Security.Cryptography.Cng/4.2.0",
"files": [
"System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net46/System.Security.Cryptography.Cng.dll",
"lib/net461/System.Security.Cryptography.Cng.dll",
"lib/net463/System.Security.Cryptography.Cng.dll",
"ref/net46/System.Security.Cryptography.Cng.dll",
"ref/net461/System.Security.Cryptography.Cng.dll",
"ref/net463/System.Security.Cryptography.Cng.dll",
"ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
"ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
"ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
"System.Security.Cryptography.Encoding/4.0.0": {
"sha512": "+61WQgp8D8VRHr8h2oFa4dRBxHg0CGOcFhBi1J+qHMDx5hiHFFe2iaAVXyt9w9zSGJpeUWRB10u97Z3mZHDqMA==",
"type": "package",
"path": "System.Security.Cryptography.Encoding/4.0.0",
"files": [
"System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Encoding.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Encoding.dll",
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
"ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
"System.Security.Cryptography.Primitives/4.0.0": {
"sha512": "oqBa62dVFbIpEMw39/yjjzW1vKPaRwxhAq96BUhiP96vr8gyP/pCTOv25kGQAWwRKfhZic7p9zoIUFc1nNOMVg==",
"type": "package",
"path": "System.Security.Cryptography.Primitives/4.0.0",
"files": [
"System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Primitives.dll",
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.Primitives.dll",
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"sha512": "YOURSTUb2RNriiXC5nbOIT1n11CDHbX202CcFCRRr0Xs+crmpSNTCbzO9HJzBpEBE/Am+ogtQovPJpg5mksEAw==",
"type": "package",
"path": "System.Security.Cryptography.X509Certificates/4.1.0",
"files": [
"System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.X509Certificates.dll",
"lib/net461/System.Security.Cryptography.X509Certificates.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Security.Cryptography.X509Certificates.dll",
"ref/net461/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
"System.Security.Principal/4.0.1": {
"sha512": "tYeNk0R4Ulo5ZfZCXU3d98T/qYh0/ZfA2QbX2EX/LsQU9zYq5STaAZ9fyQMzYvb9Ug/5TFW5XbjrKxQPeqObGg==",
"type": "package",
"path": "System.Security.Principal/4.0.1",
"files": [
"System.Security.Principal.4.0.1.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Security.Principal.dll",
"lib/netstandard1.0/System.Security.Principal.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Security.Principal.dll",
"ref/netcore50/System.Security.Principal.xml",
"ref/netcore50/de/System.Security.Principal.xml",
"ref/netcore50/es/System.Security.Principal.xml",
"ref/netcore50/fr/System.Security.Principal.xml",
"ref/netcore50/it/System.Security.Principal.xml",
"ref/netcore50/ja/System.Security.Principal.xml",
"ref/netcore50/ko/System.Security.Principal.xml",
"ref/netcore50/ru/System.Security.Principal.xml",
"ref/netcore50/zh-hans/System.Security.Principal.xml",
"ref/netcore50/zh-hant/System.Security.Principal.xml",
"ref/netstandard1.0/System.Security.Principal.dll",
"ref/netstandard1.0/System.Security.Principal.xml",
"ref/netstandard1.0/de/System.Security.Principal.xml",
"ref/netstandard1.0/es/System.Security.Principal.xml",
"ref/netstandard1.0/fr/System.Security.Principal.xml",
"ref/netstandard1.0/it/System.Security.Principal.xml",
"ref/netstandard1.0/ja/System.Security.Principal.xml",
"ref/netstandard1.0/ko/System.Security.Principal.xml",
"ref/netstandard1.0/ru/System.Security.Principal.xml",
"ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
"ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ServiceModel.Duplex/4.0.1": {
"sha512": "4I6WSQP4BiT3yG5NetAyAb626e2HlsgSzkiiqGtf4LxGpO3uFQ4eGSXsgVRnxJoDYcnDCH7q215eH/jZBMmx+w==",
"type": "package",
"path": "System.ServiceModel.Duplex/4.0.1",
"files": [
"System.ServiceModel.Duplex.4.0.1.nupkg.sha512",
"System.ServiceModel.Duplex.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.ServiceModel.Duplex.dll",
"lib/netstandard1.3/System.ServiceModel.Duplex.dll",
"lib/portable-net45+win8/_._",
"lib/win8/_._",
"ref/net45/_._",
"ref/netcore50/System.ServiceModel.Duplex.dll",
"ref/netcore50/System.ServiceModel.Duplex.xml",
"ref/netcore50/de/System.ServiceModel.Duplex.xml",
"ref/netcore50/es/System.ServiceModel.Duplex.xml",
"ref/netcore50/fr/System.ServiceModel.Duplex.xml",
"ref/netcore50/it/System.ServiceModel.Duplex.xml",
"ref/netcore50/ja/System.ServiceModel.Duplex.xml",
"ref/netcore50/ko/System.ServiceModel.Duplex.xml",
"ref/netcore50/ru/System.ServiceModel.Duplex.xml",
"ref/netcore50/zh-hans/System.ServiceModel.Duplex.xml",
"ref/netcore50/zh-hant/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/System.ServiceModel.Duplex.dll",
"ref/netstandard1.1/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/de/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/es/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/fr/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/it/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/ja/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/ko/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/ru/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.Duplex.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.Duplex.xml",
"ref/portable-net45+win8/_._",
"ref/win8/_._"
]
},
"System.ServiceModel.Http/4.1.0": {
"sha512": "sCIV+wrA4Antjnk0+fk6rxpzQkd2bReN4UTipGv5iyPNApVv/KtAfeDMg+YIajJ7VkQD60uVBTQmy3LZrRnNOw==",
"type": "package",
"path": "System.ServiceModel.Http/4.1.0",
"files": [
"System.ServiceModel.Http.4.1.0.nupkg.sha512",
"System.ServiceModel.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.ServiceModel.Http.dll",
"lib/netcore50/System.ServiceModel.Http.dll",
"lib/netstandard1.3/System.ServiceModel.Http.dll",
"lib/portable-net45+win8+wp8/_._",
"lib/win8/_._",
"lib/wp8/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.ServiceModel.Http.dll",
"ref/netcore50/System.ServiceModel.Http.dll",
"ref/netcore50/System.ServiceModel.Http.xml",
"ref/netcore50/de/System.ServiceModel.Http.xml",
"ref/netcore50/es/System.ServiceModel.Http.xml",
"ref/netcore50/fr/System.ServiceModel.Http.xml",
"ref/netcore50/it/System.ServiceModel.Http.xml",
"ref/netcore50/ja/System.ServiceModel.Http.xml",
"ref/netcore50/ko/System.ServiceModel.Http.xml",
"ref/netcore50/ru/System.ServiceModel.Http.xml",
"ref/netcore50/zh-hans/System.ServiceModel.Http.xml",
"ref/netcore50/zh-hant/System.ServiceModel.Http.xml",
"ref/netstandard1.0/System.ServiceModel.Http.dll",
"ref/netstandard1.0/System.ServiceModel.Http.xml",
"ref/netstandard1.0/de/System.ServiceModel.Http.xml",
"ref/netstandard1.0/es/System.ServiceModel.Http.xml",
"ref/netstandard1.0/fr/System.ServiceModel.Http.xml",
"ref/netstandard1.0/it/System.ServiceModel.Http.xml",
"ref/netstandard1.0/ja/System.ServiceModel.Http.xml",
"ref/netstandard1.0/ko/System.ServiceModel.Http.xml",
"ref/netstandard1.0/ru/System.ServiceModel.Http.xml",
"ref/netstandard1.0/zh-hans/System.ServiceModel.Http.xml",
"ref/netstandard1.0/zh-hant/System.ServiceModel.Http.xml",
"ref/netstandard1.1/System.ServiceModel.Http.dll",
"ref/netstandard1.1/System.ServiceModel.Http.xml",
"ref/netstandard1.1/de/System.ServiceModel.Http.xml",
"ref/netstandard1.1/es/System.ServiceModel.Http.xml",
"ref/netstandard1.1/fr/System.ServiceModel.Http.xml",
"ref/netstandard1.1/it/System.ServiceModel.Http.xml",
"ref/netstandard1.1/ja/System.ServiceModel.Http.xml",
"ref/netstandard1.1/ko/System.ServiceModel.Http.xml",
"ref/netstandard1.1/ru/System.ServiceModel.Http.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.Http.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.Http.xml",
"ref/netstandard1.3/System.ServiceModel.Http.dll",
"ref/netstandard1.3/System.ServiceModel.Http.xml",
"ref/netstandard1.3/de/System.ServiceModel.Http.xml",
"ref/netstandard1.3/es/System.ServiceModel.Http.xml",
"ref/netstandard1.3/fr/System.ServiceModel.Http.xml",
"ref/netstandard1.3/it/System.ServiceModel.Http.xml",
"ref/netstandard1.3/ja/System.ServiceModel.Http.xml",
"ref/netstandard1.3/ko/System.ServiceModel.Http.xml",
"ref/netstandard1.3/ru/System.ServiceModel.Http.xml",
"ref/netstandard1.3/zh-hans/System.ServiceModel.Http.xml",
"ref/netstandard1.3/zh-hant/System.ServiceModel.Http.xml",
"ref/portable-net45+win8+wp8/_._",
"ref/win8/_._",
"ref/wp8/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ServiceModel.NetTcp/4.1.0": {
"sha512": "n+Ir2B9SAd5XwAaXPIpLQsbaDcscSsyJH0ODpm5tpK8xXxmLhiPct5kujzeAiAhB37lVSetrSINdFb1Llg2ngg==",
"type": "package",
"path": "System.ServiceModel.NetTcp/4.1.0",
"files": [
"System.ServiceModel.NetTcp.4.1.0.nupkg.sha512",
"System.ServiceModel.NetTcp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/net46/System.ServiceModel.NetTcp.dll",
"lib/netcore50/System.ServiceModel.NetTcp.dll",
"lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
"lib/portable-net45+win8/_._",
"lib/win8/_._",
"ref/net45/_._",
"ref/net46/System.ServiceModel.NetTcp.dll",
"ref/netcore50/System.ServiceModel.NetTcp.dll",
"ref/netcore50/System.ServiceModel.NetTcp.xml",
"ref/netcore50/de/System.ServiceModel.NetTcp.xml",
"ref/netcore50/es/System.ServiceModel.NetTcp.xml",
"ref/netcore50/fr/System.ServiceModel.NetTcp.xml",
"ref/netcore50/it/System.ServiceModel.NetTcp.xml",
"ref/netcore50/ja/System.ServiceModel.NetTcp.xml",
"ref/netcore50/ko/System.ServiceModel.NetTcp.xml",
"ref/netcore50/ru/System.ServiceModel.NetTcp.xml",
"ref/netcore50/zh-hans/System.ServiceModel.NetTcp.xml",
"ref/netcore50/zh-hant/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
"ref/netstandard1.1/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/de/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/es/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/fr/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/it/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/ja/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/ko/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/ru/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
"ref/netstandard1.3/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/de/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/es/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/fr/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/it/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/ja/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/ko/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/ru/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/zh-hans/System.ServiceModel.NetTcp.xml",
"ref/netstandard1.3/zh-hant/System.ServiceModel.NetTcp.xml",
"ref/portable-net45+win8/_._",
"ref/win8/_._"
]
},
"System.ServiceModel.Primitives/4.1.0": {
"sha512": "Kd65HOn/5pL9xtCUkSL8xVqpqBUYy9tsfo0qe/MTTzApY8WQ+6i4I2ts++M+m4vbOanCoEsjjUj26P6C6ilQjQ==",
"type": "package",
"path": "System.ServiceModel.Primitives/4.1.0",
"files": [
"System.ServiceModel.Primitives.4.1.0.nupkg.sha512",
"System.ServiceModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net46/System.ServiceModel.Primitives.dll",
"lib/netcore50/System.ServiceModel.Primitives.dll",
"lib/netstandard1.3/System.ServiceModel.Primitives.dll",
"lib/portable-net45+win8+wp8/_._",
"lib/win8/_._",
"lib/wp8/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net46/System.ServiceModel.Primitives.dll",
"ref/netcore50/System.ServiceModel.Primitives.dll",
"ref/netcore50/System.ServiceModel.Primitives.xml",
"ref/netcore50/de/System.ServiceModel.Primitives.xml",
"ref/netcore50/es/System.ServiceModel.Primitives.xml",
"ref/netcore50/fr/System.ServiceModel.Primitives.xml",
"ref/netcore50/it/System.ServiceModel.Primitives.xml",
"ref/netcore50/ja/System.ServiceModel.Primitives.xml",
"ref/netcore50/ko/System.ServiceModel.Primitives.xml",
"ref/netcore50/ru/System.ServiceModel.Primitives.xml",
"ref/netcore50/zh-hans/System.ServiceModel.Primitives.xml",
"ref/netcore50/zh-hant/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/System.ServiceModel.Primitives.dll",
"ref/netstandard1.0/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/de/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/es/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/fr/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/it/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/ja/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/ko/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/ru/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/zh-hans/System.ServiceModel.Primitives.xml",
"ref/netstandard1.0/zh-hant/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/System.ServiceModel.Primitives.dll",
"ref/netstandard1.1/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/de/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/es/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/fr/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/it/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/ja/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/ko/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/ru/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.Primitives.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/System.ServiceModel.Primitives.dll",
"ref/netstandard1.3/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/de/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/es/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/fr/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/it/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/ja/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/ko/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/ru/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/zh-hans/System.ServiceModel.Primitives.xml",
"ref/netstandard1.3/zh-hant/System.ServiceModel.Primitives.xml",
"ref/portable-net45+win8+wp8/_._",
"ref/win8/_._",
"ref/wp8/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.ServiceModel.Security/4.0.1": {
"sha512": "82pkDb6LMq/NHi+DVHZ7zKHMMJ7mR6rVl9TpH+p8zJhZrVYJez9vTbdMsxQhbNOngEkJKzZFveNYpaRv/3RMsg==",
"type": "package",
"path": "System.ServiceModel.Security/4.0.1",
"files": [
"System.ServiceModel.Security.4.0.1.nupkg.sha512",
"System.ServiceModel.Security.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net45/_._",
"lib/netcore50/System.ServiceModel.Security.dll",
"lib/netstandard1.3/System.ServiceModel.Security.dll",
"lib/portable-net45+win8+wp8/_._",
"lib/win8/_._",
"lib/wp8/_._",
"ref/net45/_._",
"ref/netcore50/System.ServiceModel.Security.dll",
"ref/netcore50/System.ServiceModel.Security.xml",
"ref/netcore50/de/System.ServiceModel.Security.xml",
"ref/netcore50/es/System.ServiceModel.Security.xml",
"ref/netcore50/fr/System.ServiceModel.Security.xml",
"ref/netcore50/it/System.ServiceModel.Security.xml",
"ref/netcore50/ja/System.ServiceModel.Security.xml",
"ref/netcore50/ko/System.ServiceModel.Security.xml",
"ref/netcore50/ru/System.ServiceModel.Security.xml",
"ref/netcore50/zh-hans/System.ServiceModel.Security.xml",
"ref/netcore50/zh-hant/System.ServiceModel.Security.xml",
"ref/netstandard1.0/System.ServiceModel.Security.dll",
"ref/netstandard1.0/System.ServiceModel.Security.xml",
"ref/netstandard1.0/de/System.ServiceModel.Security.xml",
"ref/netstandard1.0/es/System.ServiceModel.Security.xml",
"ref/netstandard1.0/fr/System.ServiceModel.Security.xml",
"ref/netstandard1.0/it/System.ServiceModel.Security.xml",
"ref/netstandard1.0/ja/System.ServiceModel.Security.xml",
"ref/netstandard1.0/ko/System.ServiceModel.Security.xml",
"ref/netstandard1.0/ru/System.ServiceModel.Security.xml",
"ref/netstandard1.0/zh-hans/System.ServiceModel.Security.xml",
"ref/netstandard1.0/zh-hant/System.ServiceModel.Security.xml",
"ref/netstandard1.1/System.ServiceModel.Security.dll",
"ref/netstandard1.1/System.ServiceModel.Security.xml",
"ref/netstandard1.1/de/System.ServiceModel.Security.xml",
"ref/netstandard1.1/es/System.ServiceModel.Security.xml",
"ref/netstandard1.1/fr/System.ServiceModel.Security.xml",
"ref/netstandard1.1/it/System.ServiceModel.Security.xml",
"ref/netstandard1.1/ja/System.ServiceModel.Security.xml",
"ref/netstandard1.1/ko/System.ServiceModel.Security.xml",
"ref/netstandard1.1/ru/System.ServiceModel.Security.xml",
"ref/netstandard1.1/zh-hans/System.ServiceModel.Security.xml",
"ref/netstandard1.1/zh-hant/System.ServiceModel.Security.xml",
"ref/portable-net45+win8+wp8/_._",
"ref/win8/_._",
"ref/wp8/_._"
]
},
"System.Text.Encoding/4.0.11": {
"sha512": "XU/T53PgG9qApSiVA+GtPtLbU787krHRE9hedLcwnZgYpbNgJG0GVy/fLcH6hCpHgOMLVipqHvJtQdDNqC5U/Q==",
"type": "package",
"path": "System.Text.Encoding/4.0.11",
"files": [
"System.Text.Encoding.4.0.11.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Text.Encoding.dll",
"ref/netcore50/System.Text.Encoding.xml",
"ref/netcore50/de/System.Text.Encoding.xml",
"ref/netcore50/es/System.Text.Encoding.xml",
"ref/netcore50/fr/System.Text.Encoding.xml",
"ref/netcore50/it/System.Text.Encoding.xml",
"ref/netcore50/ja/System.Text.Encoding.xml",
"ref/netcore50/ko/System.Text.Encoding.xml",
"ref/netcore50/ru/System.Text.Encoding.xml",
"ref/netcore50/zh-hans/System.Text.Encoding.xml",
"ref/netcore50/zh-hant/System.Text.Encoding.xml",
"ref/netstandard1.0/System.Text.Encoding.dll",
"ref/netstandard1.0/System.Text.Encoding.xml",
"ref/netstandard1.0/de/System.Text.Encoding.xml",
"ref/netstandard1.0/es/System.Text.Encoding.xml",
"ref/netstandard1.0/fr/System.Text.Encoding.xml",
"ref/netstandard1.0/it/System.Text.Encoding.xml",
"ref/netstandard1.0/ja/System.Text.Encoding.xml",
"ref/netstandard1.0/ko/System.Text.Encoding.xml",
"ref/netstandard1.0/ru/System.Text.Encoding.xml",
"ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
"ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
"ref/netstandard1.3/System.Text.Encoding.dll",
"ref/netstandard1.3/System.Text.Encoding.xml",
"ref/netstandard1.3/de/System.Text.Encoding.xml",
"ref/netstandard1.3/es/System.Text.Encoding.xml",
"ref/netstandard1.3/fr/System.Text.Encoding.xml",
"ref/netstandard1.3/it/System.Text.Encoding.xml",
"ref/netstandard1.3/ja/System.Text.Encoding.xml",
"ref/netstandard1.3/ko/System.Text.Encoding.xml",
"ref/netstandard1.3/ru/System.Text.Encoding.xml",
"ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
"ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Text.Encoding.CodePages/4.0.1": {
"sha512": "k1jbRl6NE++AOSzxudhFfweNv/wnfI8KOBUyQD/sfX83X4XVrd285ED8b7/PEgSMqWnyIgfFQjZNGUfzboXOzA==",
"type": "package",
"path": "System.Text.Encoding.CodePages/4.0.1",
"files": [
"System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
"System.Text.Encoding.CodePages.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Text.Encoding.CodePages.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
"ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
"ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
"System.Text.Encoding.Extensions/4.0.11": {
"sha512": "tUmgrKNcoHx1rb8oVFXPxwvjolnQ5SxJUsCHujfYxoN0bU9ozrbk5PovItIMzcPi1fYxeZjQ6sCLqKDeLJi6nw==",
"type": "package",
"path": "System.Text.Encoding.Extensions/4.0.11",
"files": [
"System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Text.Encoding.Extensions.dll",
"ref/netcore50/System.Text.Encoding.Extensions.xml",
"ref/netcore50/de/System.Text.Encoding.Extensions.xml",
"ref/netcore50/es/System.Text.Encoding.Extensions.xml",
"ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
"ref/netcore50/it/System.Text.Encoding.Extensions.xml",
"ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
"ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
"ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
"ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
"ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
"ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
"ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
"ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Text.RegularExpressions/4.1.0": {
"sha512": "s3hrq+DHOv7mO+vyziDEGAxclaJgMzkjh4SJl7elMqTRsYxCzldDTU7A0VfCImsEafMEdzTzRmlJfCFoSgMjXg==",
"type": "package",
"path": "System.Text.RegularExpressions/4.1.0",
"files": [
"System.Text.RegularExpressions.4.1.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net463/System.Text.RegularExpressions.dll",
"lib/netcore50/System.Text.RegularExpressions.dll",
"lib/netstandard1.6/System.Text.RegularExpressions.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net463/System.Text.RegularExpressions.dll",
"ref/netcore50/System.Text.RegularExpressions.dll",
"ref/netcore50/System.Text.RegularExpressions.xml",
"ref/netcore50/de/System.Text.RegularExpressions.xml",
"ref/netcore50/es/System.Text.RegularExpressions.xml",
"ref/netcore50/fr/System.Text.RegularExpressions.xml",
"ref/netcore50/it/System.Text.RegularExpressions.xml",
"ref/netcore50/ja/System.Text.RegularExpressions.xml",
"ref/netcore50/ko/System.Text.RegularExpressions.xml",
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/System.Text.RegularExpressions.dll",
"ref/netstandard1.3/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
"ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/System.Text.RegularExpressions.dll",
"ref/netstandard1.6/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
"ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Threading/4.0.11": {
"sha512": "DEyRNv35Hclmuu4xEk8pdZr0b8G4fnZClWkAb3ag77ZWcD2KUiGWSoTFICF5i8mgMLRRmDfAv0yrLI8aBmzuZw==",
"type": "package",
"path": "System.Threading/4.0.11",
"files": [
"System.Threading.4.0.11.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.dll",
"lib/netstandard1.3/System.Threading.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Threading.dll",
"ref/netcore50/System.Threading.xml",
"ref/netcore50/de/System.Threading.xml",
"ref/netcore50/es/System.Threading.xml",
"ref/netcore50/fr/System.Threading.xml",
"ref/netcore50/it/System.Threading.xml",
"ref/netcore50/ja/System.Threading.xml",
"ref/netcore50/ko/System.Threading.xml",
"ref/netcore50/ru/System.Threading.xml",
"ref/netcore50/zh-hans/System.Threading.xml",
"ref/netcore50/zh-hant/System.Threading.xml",
"ref/netstandard1.0/System.Threading.dll",
"ref/netstandard1.0/System.Threading.xml",
"ref/netstandard1.0/de/System.Threading.xml",
"ref/netstandard1.0/es/System.Threading.xml",
"ref/netstandard1.0/fr/System.Threading.xml",
"ref/netstandard1.0/it/System.Threading.xml",
"ref/netstandard1.0/ja/System.Threading.xml",
"ref/netstandard1.0/ko/System.Threading.xml",
"ref/netstandard1.0/ru/System.Threading.xml",
"ref/netstandard1.0/zh-hans/System.Threading.xml",
"ref/netstandard1.0/zh-hant/System.Threading.xml",
"ref/netstandard1.3/System.Threading.dll",
"ref/netstandard1.3/System.Threading.xml",
"ref/netstandard1.3/de/System.Threading.xml",
"ref/netstandard1.3/es/System.Threading.xml",
"ref/netstandard1.3/fr/System.Threading.xml",
"ref/netstandard1.3/it/System.Threading.xml",
"ref/netstandard1.3/ja/System.Threading.xml",
"ref/netstandard1.3/ko/System.Threading.xml",
"ref/netstandard1.3/ru/System.Threading.xml",
"ref/netstandard1.3/zh-hans/System.Threading.xml",
"ref/netstandard1.3/zh-hant/System.Threading.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
"System.Threading.Overlapped/4.0.1": {
"sha512": "9HrkqzI718N2lLoJmQWFL+O5zzwF991G660GjHI00NZhbBjX33mzrVVzlE7nb2n5qU7Ax3JlTpuThVvyvCUyEA==",
"type": "package",
"path": "System.Threading.Overlapped/4.0.1",
"files": [
"System.Threading.Overlapped.4.0.1.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/net46/System.Threading.Overlapped.dll",
"ref/net46/System.Threading.Overlapped.dll",
"ref/netstandard1.3/System.Threading.Overlapped.dll",
"ref/netstandard1.3/System.Threading.Overlapped.xml",
"ref/netstandard1.3/de/System.Threading.Overlapped.xml",
"ref/netstandard1.3/es/System.Threading.Overlapped.xml",
"ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
"ref/netstandard1.3/it/System.Threading.Overlapped.xml",
"ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
"ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
"ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
"ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
"ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
"runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
"runtimes/win/lib/net46/System.Threading.Overlapped.dll",
"runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
"System.Threading.Tasks/4.0.11": {
"sha512": "U8/8NstkRxAdWYJRe7AI3gfA1OKkfOKhwYBP/3KJH0oB3ADoMs3S1rh+CPRl5SP9WIhb+M4+oEaqYcenbOI0OQ==",
"type": "package",
"path": "System.Threading.Tasks/4.0.11",
"files": [
"System.Threading.Tasks.4.0.11.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Threading.Tasks.dll",
"ref/netcore50/System.Threading.Tasks.xml",
"ref/netcore50/de/System.Threading.Tasks.xml",
"ref/netcore50/es/System.Threading.Tasks.xml",
"ref/netcore50/fr/System.Threading.Tasks.xml",
"ref/netcore50/it/System.Threading.Tasks.xml",
"ref/netcore50/ja/System.Threading.Tasks.xml",
"ref/netcore50/ko/System.Threading.Tasks.xml",
"ref/netcore50/ru/System.Threading.Tasks.xml",
"ref/netcore50/zh-hans/System.Threading.Tasks.xml",
"ref/netcore50/zh-hant/System.Threading.Tasks.xml",
"ref/netstandard1.0/System.Threading.Tasks.dll",
"ref/netstandard1.0/System.Threading.Tasks.xml",
"ref/netstandard1.0/de/System.Threading.Tasks.xml",
"ref/netstandard1.0/es/System.Threading.Tasks.xml",
"ref/netstandard1.0/fr/System.Threading.Tasks.xml",
"ref/netstandard1.0/it/System.Threading.Tasks.xml",
"ref/netstandard1.0/ja/System.Threading.Tasks.xml",
"ref/netstandard1.0/ko/System.Threading.Tasks.xml",
"ref/netstandard1.0/ru/System.Threading.Tasks.xml",
"ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
"ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
"ref/netstandard1.3/System.Threading.Tasks.dll",
"ref/netstandard1.3/System.Threading.Tasks.xml",
"ref/netstandard1.3/de/System.Threading.Tasks.xml",
"ref/netstandard1.3/es/System.Threading.Tasks.xml",
"ref/netstandard1.3/fr/System.Threading.Tasks.xml",
"ref/netstandard1.3/it/System.Threading.Tasks.xml",
"ref/netstandard1.3/ja/System.Threading.Tasks.xml",
"ref/netstandard1.3/ko/System.Threading.Tasks.xml",
"ref/netstandard1.3/ru/System.Threading.Tasks.xml",
"ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
"ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Threading.Tasks.Dataflow/4.6.0": {
"sha512": "lYqhNcIS7wrZaxQsVH9zVr9guziNKk7v5mbErxJDgBmvAu8cSYKdqBUZHsdHoUVwZK6qr+0hog7jL5mHB6ye9w==",
"type": "package",
"path": "System.Threading.Tasks.Dataflow/4.6.0",
"files": [
"System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
"System.Threading.Tasks.Dataflow.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
]
},
"System.Threading.Tasks.Extensions/4.0.0": {
"sha512": "FjsEih9scCfkGilJ6elxtF8Xb+C2gwOL17/f0lPi1RyMl4CBqyWe0IC97gIBYZ8fatME+wq9RJlZQo4pwP0BhA==",
"type": "package",
"path": "System.Threading.Tasks.Extensions/4.0.0",
"files": [
"System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
"lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
]
},
"System.Threading.Tasks.Parallel/4.0.1": {
"sha512": "Du9bQ5FxQCAgpjC1BL225rv263kYgk6kvi2keDWjJ0tmHv8niu6v2zAPkxWPoQlYib3l1XcAoGeO0ZLLAUkzvw==",
"type": "package",
"path": "System.Threading.Tasks.Parallel/4.0.1",
"files": [
"System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
"System.Threading.Tasks.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Threading.Tasks.Parallel.dll",
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Threading.Tasks.Parallel.dll",
"ref/netcore50/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
"ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
"ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
"ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Threading.Timer/4.0.1": {
"sha512": "/fE2DFLL/MDW3Uu1C4yAb5ROzvdy3JxWOD+oInYi1tqMg9X6oAzvZtgHs0P6rUgRt+bI3vYnov68aSWC+5I2BQ==",
"type": "package",
"path": "System.Threading.Timer/4.0.1",
"files": [
"System.Threading.Timer.4.0.1.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net451/_._",
"lib/portable-net451+win81+wpa81/_._",
"lib/win81/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net451/_._",
"ref/netcore50/System.Threading.Timer.dll",
"ref/netcore50/System.Threading.Timer.xml",
"ref/netcore50/de/System.Threading.Timer.xml",
"ref/netcore50/es/System.Threading.Timer.xml",
"ref/netcore50/fr/System.Threading.Timer.xml",
"ref/netcore50/it/System.Threading.Timer.xml",
"ref/netcore50/ja/System.Threading.Timer.xml",
"ref/netcore50/ko/System.Threading.Timer.xml",
"ref/netcore50/ru/System.Threading.Timer.xml",
"ref/netcore50/zh-hans/System.Threading.Timer.xml",
"ref/netcore50/zh-hant/System.Threading.Timer.xml",
"ref/netstandard1.2/System.Threading.Timer.dll",
"ref/netstandard1.2/System.Threading.Timer.xml",
"ref/netstandard1.2/de/System.Threading.Timer.xml",
"ref/netstandard1.2/es/System.Threading.Timer.xml",
"ref/netstandard1.2/fr/System.Threading.Timer.xml",
"ref/netstandard1.2/it/System.Threading.Timer.xml",
"ref/netstandard1.2/ja/System.Threading.Timer.xml",
"ref/netstandard1.2/ko/System.Threading.Timer.xml",
"ref/netstandard1.2/ru/System.Threading.Timer.xml",
"ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
"ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
"ref/portable-net451+win81+wpa81/_._",
"ref/win81/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Xml.ReaderWriter/4.0.11": {
"sha512": "ljLZUmQZA3R3BQs0dN9ALdDomowUoN8L8PDNFJPaZRY2VSi550G8WFZyVIcCTG3W3VJKnDE8o0HmbLOYwzrbjw==",
"type": "package",
"path": "System.Xml.ReaderWriter/4.0.11",
"files": [
"System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
"ref/netcore50/es/System.Xml.ReaderWriter.xml",
"ref/netcore50/fr/System.Xml.ReaderWriter.xml",
"ref/netcore50/it/System.Xml.ReaderWriter.xml",
"ref/netcore50/ja/System.Xml.ReaderWriter.xml",
"ref/netcore50/ko/System.Xml.ReaderWriter.xml",
"ref/netcore50/ru/System.Xml.ReaderWriter.xml",
"ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
"ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/System.Xml.ReaderWriter.dll",
"ref/netstandard1.0/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
"ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/System.Xml.ReaderWriter.dll",
"ref/netstandard1.3/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
"ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Xml.XDocument/4.0.11": {
"sha512": "xkGSOIWppKi8/g6SpOS638guIkds9Ct7+7rXErjg95O50+rkPfspKkP5kq1tNQBrTeDjyIo8cWnFPR46xnX7Mg==",
"type": "package",
"path": "System.Xml.XDocument/4.0.11",
"files": [
"System.Xml.XDocument.4.0.11.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Xml.XDocument.dll",
"lib/netstandard1.3/System.Xml.XDocument.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Xml.XDocument.dll",
"ref/netcore50/System.Xml.XDocument.xml",
"ref/netcore50/de/System.Xml.XDocument.xml",
"ref/netcore50/es/System.Xml.XDocument.xml",
"ref/netcore50/fr/System.Xml.XDocument.xml",
"ref/netcore50/it/System.Xml.XDocument.xml",
"ref/netcore50/ja/System.Xml.XDocument.xml",
"ref/netcore50/ko/System.Xml.XDocument.xml",
"ref/netcore50/ru/System.Xml.XDocument.xml",
"ref/netcore50/zh-hans/System.Xml.XDocument.xml",
"ref/netcore50/zh-hant/System.Xml.XDocument.xml",
"ref/netstandard1.0/System.Xml.XDocument.dll",
"ref/netstandard1.0/System.Xml.XDocument.xml",
"ref/netstandard1.0/de/System.Xml.XDocument.xml",
"ref/netstandard1.0/es/System.Xml.XDocument.xml",
"ref/netstandard1.0/fr/System.Xml.XDocument.xml",
"ref/netstandard1.0/it/System.Xml.XDocument.xml",
"ref/netstandard1.0/ja/System.Xml.XDocument.xml",
"ref/netstandard1.0/ko/System.Xml.XDocument.xml",
"ref/netstandard1.0/ru/System.Xml.XDocument.xml",
"ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
"ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
"ref/netstandard1.3/System.Xml.XDocument.dll",
"ref/netstandard1.3/System.Xml.XDocument.xml",
"ref/netstandard1.3/de/System.Xml.XDocument.xml",
"ref/netstandard1.3/es/System.Xml.XDocument.xml",
"ref/netstandard1.3/fr/System.Xml.XDocument.xml",
"ref/netstandard1.3/it/System.Xml.XDocument.xml",
"ref/netstandard1.3/ja/System.Xml.XDocument.xml",
"ref/netstandard1.3/ko/System.Xml.XDocument.xml",
"ref/netstandard1.3/ru/System.Xml.XDocument.xml",
"ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
"ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Xml.XmlDocument/4.0.1": {
"sha512": "Y1fE49fNxbKAf/aqoA0Xg26Ly3+MVG2NGk8GAJKSVLFUAf3EssdeImEtIuyREC7ZlygEdAfmuPwjeLoCxXnF3Q==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
"System.Xml.XmlDocument.4.0.1.nupkg.sha512",
"System.Xml.XmlDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Xml.XmlDocument.dll",
"lib/netstandard1.3/System.Xml.XmlDocument.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net46/System.Xml.XmlDocument.dll",
"ref/netstandard1.3/System.Xml.XmlDocument.dll",
"ref/netstandard1.3/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
"ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._"
]
},
"System.Xml.XmlSerializer/4.0.11": {
"sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
"type": "package",
"path": "System.Xml.XmlSerializer/4.0.11",
"files": [
"System.Xml.XmlSerializer.4.0.11.nupkg.sha512",
"System.Xml.XmlSerializer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Xml.XmlSerializer.dll",
"lib/netstandard1.3/System.Xml.XmlSerializer.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Xml.XmlSerializer.dll",
"ref/netcore50/System.Xml.XmlSerializer.xml",
"ref/netcore50/de/System.Xml.XmlSerializer.xml",
"ref/netcore50/es/System.Xml.XmlSerializer.xml",
"ref/netcore50/fr/System.Xml.XmlSerializer.xml",
"ref/netcore50/it/System.Xml.XmlSerializer.xml",
"ref/netcore50/ja/System.Xml.XmlSerializer.xml",
"ref/netcore50/ko/System.Xml.XmlSerializer.xml",
"ref/netcore50/ru/System.Xml.XmlSerializer.xml",
"ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
"ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/System.Xml.XmlSerializer.dll",
"ref/netstandard1.0/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
"ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/System.Xml.XmlSerializer.dll",
"ref/netstandard1.3/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
"ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
"ref/portable-net45+win8+wp8+wpa81/_._",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll"
]
},
"Validation/2.2.8": {
"sha512": "DMNc7JhPlgRwnR+NNb+ldoluObL+RBw96aMoiZae/Looa4vgaAnIysmle/bV2OKqDNW9oUBDckPyfa2+sX6JdA==",
"type": "package",
"path": "Validation/2.2.8",
"files": [
"README.md",
"Validation.2.2.8.nupkg.sha512",
"Validation.nuspec",
"lib/dotnet/Validation.dll",
"lib/dotnet/Validation.xml",
"lib/portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Validation.dll",
"lib/portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Validation.xml",
"lib/portable-net45+dnxcore50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Validation.dll",
"lib/portable-net45+dnxcore50+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10/Validation.xml",
"tools/2013/RequiresNotNull.snippet",
"tools/2013/RequiresNotNullOrEmpty.snippet",
"tools/2015/RequiresNotNull.snippet",
"tools/2015/RequiresNotNullOrEmpty.snippet",
"tools/install_snippets.cmd",
"tools/uninstall_snippets.cmd"
]
},
"ZXing.Net.Mobile/2.1.47": {
"sha512": "K+7OebNXS7kv6J2edXOWf0B7cu8vE6j6d7DOcbQOHR//YJXFifVwN1m7BfycBkrwO9WClKM2ZZQNTlC6GeOOQA==",
"type": "package",
"path": "ZXing.Net.Mobile/2.1.47",
"files": [
"ZXing.Net.Mobile.2.1.47.nupkg.sha512",
"ZXing.Net.Mobile.nuspec",
"lib/MonoAndroid403/ZXing.Net.Mobile.Core.dll",
"lib/MonoAndroid403/ZXingNetMobile.dll",
"lib/MonoAndroid403/zxing.portable.dll",
"lib/UAP10/ZXing.Net.Mobile.Core.dll",
"lib/UAP10/ZXingNetMobile.dll",
"lib/UAP10/ZXingNetMobile.pri",
"lib/UAP10/ZXingNetMobile/ZXingNetMobile.xr.xml",
"lib/UAP10/zxing.portable.dll",
"lib/Xamarin.iOS10/ZXing.Net.Mobile.Core.dll",
"lib/Xamarin.iOS10/ZXingNetMobile.dll",
"lib/Xamarin.iOS10/zxing.portable.dll",
"lib/portable-net45+netcore45+wpa81+wp8/ZXing.Net.Mobile.Core.dll",
"lib/portable-net45+netcore45+wpa81+wp8/ZXingNetMobile.dll",
"lib/portable-net45+netcore45+wpa81+wp8/zxing.portable.dll",
"lib/wp8/ZXing.Net.Mobile.Core.dll",
"lib/wp8/ZXingNetMobile.dll",
"lib/wp8/zxing.portable.dll"
]
}
},
"projectFileDependencyGroups": {
"": [
"Microsoft.ApplicationInsights >= 2.1.0",
"Microsoft.ApplicationInsights.PersistenceChannel >= 1.2.3",
"Microsoft.ApplicationInsights.WindowsApps >= 1.1.1",
"Microsoft.Azure.Devices.Client >= 1.1.1",
"Microsoft.Azure.Devices.Shared >= 1.0.2",
"Microsoft.NETCore.UniversalWindowsPlatform >= 5.2.2",
"Newtonsoft.Json >= 9.0.1",
"ZXing.Net.Mobile >= 2.1.47"
],
"UAP,Version=v10.0": []
},
"tools": {},
"projectFileToolGroups": {}
}
================================================
FILE: Devices/DirectlyConnectedDevices/UWPSimulatedSensors/UWPSimulatedSensors.sln
================================================
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UWPSimulatedSensors", "UWPSimulatedSensors\UWPSimulatedSensors.csproj", "{CE0FF36D-7C6D-407A-A798-E5269E252F91}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|ARM.ActiveCfg = Debug|ARM
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|ARM.Build.0 = Debug|ARM
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|ARM.Deploy.0 = Debug|ARM
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|x64.ActiveCfg = Debug|x64
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|x64.Build.0 = Debug|x64
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|x64.Deploy.0 = Debug|x64
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|x86.ActiveCfg = Debug|x86
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|x86.Build.0 = Debug|x86
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Debug|x86.Deploy.0 = Debug|x86
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|ARM.ActiveCfg = Release|ARM
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|ARM.Build.0 = Release|ARM
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|ARM.Deploy.0 = Release|ARM
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|x64.ActiveCfg = Release|x64
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|x64.Build.0 = Release|x64
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|x64.Deploy.0 = Release|x64
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|x86.ActiveCfg = Release|x86
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|x86.Build.0 = Release|x86
{CE0FF36D-7C6D-407A-A798-E5269E252F91}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors/Helpers/Settings.cs
================================================
// Helpers/Settings.cs
using Plugin.Settings;
using Plugin.Settings.Abstractions;
namespace XamarinSimulatedSensors.Helpers
{
///
/// This is the Settings static class that can be used in your Core solution or in any
/// of your client applications. All settings are laid out the same exact way with getters
/// and setters.
///
public static class Settings
{
private static ISettings AppSettings
{
get
{
return CrossSettings.Current;
}
}
#region Setting Constants
private const string DisplayNameKey = "DisplayName";
private static readonly string DisplayNameDefault = string.Empty;
private const string ConnectionStringKey = "ConnectionString";
private static readonly string ConnectionStringDefault = string.Empty;
#endregion
public static string DisplayName
{
get { return AppSettings.GetValueOrDefault(DisplayNameKey, DisplayNameDefault); }
set { AppSettings.AddOrUpdateValue(DisplayNameKey, value); }
}
public static string ConnectionString
{
get { return AppSettings.GetValueOrDefault(ConnectionStringKey, ConnectionStringDefault); }
set { AppSettings.AddOrUpdateValue(ConnectionStringKey, value); }
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors/MyClass.cs
================================================
using System;
using System.Text;
using System.Diagnostics;
using ConnectTheDotsHelper;
using XamarinSimulatedSensors.Helpers;
namespace XamarinSimulatedSensors
{
public class MyClass:ConnectTheDots
{
public MyClass()
{
this.DisplayName = Settings.DisplayName;
this.ConnectionString = Settings.ConnectionString;
this.Organization = "Microsoft";
this.Location = "My Location";
this.AddSensor("Temperature", "C");
this.AddSensor("Humidity", "%");
}
public bool checkConfig()
{
if (((this.DisplayName != null) && (this.ConnectionString != null) &&
(this.DisplayName != "") && (this.ConnectionString != "")))
{
Settings.DisplayName = this.DisplayName;
Settings.ConnectionString = this.ConnectionString;
return true;
}
else
{
return false;
}
}
public void UpdateSensorData(string SensorName, double value)
{
if (this.Sensors.ContainsKey(SensorName))
this.Sensors[SensorName].message.value = value;
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors/Properties/AssemblyInfo.cs
================================================
using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("XamarinSimulatedSensors")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("joe")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion("1.0.*")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.csproj
================================================
Debug
AnyCPU
{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
{BB40B36F-BAF9-45E1-B333-352771318E9F}
Library
XamarinSimulatedSensors
XamarinSimulatedSensors
v4.5
Profile111
10.0
true
full
false
bin\Debug
DEBUG;
prompt
4
false
full
true
bin\Release
prompt
4
false
ConnectTheDotsHelper.cs
..\..\packages\Microsoft.Azure.Devices.Client.1.1.4\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10\Microsoft.Azure.Devices.Client.PCL.dll
True
..\..\packages\Microsoft.Azure.Devices.Shared.1.0.4\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10\Microsoft.Azure.Devices.Shared.PCL.dll
True
..\..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll
True
..\..\packages\PCLCrypto.2.0.147\lib\portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10\PCLCrypto.dll
True
..\..\packages\PInvoke.BCrypt.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll
True
..\..\packages\PInvoke.Kernel32.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll
True
..\..\packages\PInvoke.NCrypt.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll
True
..\..\packages\PInvoke.Windows.Core.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll
True
..\..\packages\Xam.Plugins.Settings.2.5.1.0\lib\portable-net45+wp80+win8+wpa81\Plugin.Settings.dll
True
..\..\packages\Xam.Plugins.Settings.2.5.1.0\lib\portable-net45+wp80+win8+wpa81\Plugin.Settings.Abstractions.dll
True
..\..\packages\Validation.2.3.7\lib\portable-net45+win+wpa81+wp80+MonoAndroid10+xamarinios10+MonoTouch10\Validation.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\portable-net45+netcore45+wpa81+wp8\ZXing.Net.Mobile.Core.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\portable-net45+netcore45+wpa81+wp8\zxing.portable.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\portable-net45+netcore45+wpa81+wp8\ZXingNetMobile.dll
True
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors/app.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors/packages.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/Assets/AboutAssets.txt
================================================
Any raw assets you want to be deployed with your application can be placed in
this directory (and child directories) and given a Build Action of "AndroidAsset".
These files will be deployed with your package and will be accessible using Android's
AssetManager, like this:
public class ReadAsset : Activity
{
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
InputStream input = Assets.Open ("my_asset.txt");
}
}
Additionally, some Android functions will automatically load asset files:
Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/Helpers/Settings.cs
================================================
/*
// Helpers/Settings.cs This file was automatically added when you installed the Settings Plugin. If you are not using a PCL then comment this file back in to use it.
using Plugin.Settings;
using Plugin.Settings.Abstractions;
namespace XamarinSimulatedSensors.Droid.Helpers
{
///
/// This is the Settings static class that can be used in your Core solution or in any
/// of your client applications. All settings are laid out the same exact way with getters
/// and setters.
///
public static class Settings
{
private static ISettings AppSettings
{
get
{
return CrossSettings.Current;
}
}
#region Setting Constants
private const string SettingsKey = "settings_key";
private static readonly string SettingsDefault = string.Empty;
#endregion
public static string GeneralSettings
{
get
{
return AppSettings.GetValueOrDefault(SettingsKey, SettingsDefault);
}
set
{
AppSettings.AddOrUpdateValue(SettingsKey, value);
}
}
}
}*/
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/MainActivity.cs
================================================
using System;
using System.Threading.Tasks;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using ZXing.Mobile;
namespace XamarinSimulatedSensors.Droid
{
[Activity (Label = "XamarinSimulatedSensors.Droid", MainLauncher = true, Icon = "@drawable/icon")]
public class MainActivity : Activity
{
MyClass Device;
Button buttonConnect;
Button buttonSend;
Button buttonScan;
TextView textDeviceName;
TextView textConnectionString;
TextView lblTemperature;
TextView lblHumidity;
TextView textAlerts;
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
// Set our view from the "main" layout resource
SetContentView (Resource.Layout.Main);
// Initialize IoT Hub client
Device = new MyClass();
// If you are developing and want to avoid having to enter the full connection string on the device,
// you can temporarily hard code it here. Comment this when done!
//Device.DisplayName = "[DisplayName]";
//Device.ConnectionString = "[ConnectionString]";
// Prepare UI elements
buttonConnect = FindViewById(Resource.Id.buttonConnect);
buttonConnect.Enabled = false;
buttonConnect.Click += ButtonConnect_Click;
buttonSend = FindViewById(Resource.Id.buttonSend);
buttonSend.Enabled = false;
buttonSend.Click += ButtonSend_Click;
buttonScan = FindViewById(Resource.Id.buttonScan);
buttonScan.Enabled = true;
buttonScan.Click += ButtonScan_Click;
textDeviceName = FindViewById(Resource.Id.textDeviceName);
textDeviceName.TextChanged += TextDeviceName_TextChanged;
textDeviceName.Text = Device.DisplayName;
textConnectionString = FindViewById(Resource.Id.textConnectionString);
textConnectionString.TextChanged += TextConnectionString_TextChanged;
textConnectionString.SetSingleLine(true);
textConnectionString.Text = Device.ConnectionString;
lblTemperature = FindViewById(Resource.Id.lblTemperature);
SeekBar seekTemperature = FindViewById(Resource.Id.seekBarTemperature);
seekTemperature.ProgressChanged += SeekTemperature_ProgressChanged;
seekTemperature.Progress = 50;
lblHumidity = FindViewById(Resource.Id.lblHumidity);
SeekBar seekHumidity = FindViewById(Resource.Id.seekBarHumidity);
seekHumidity.ProgressChanged += SeekHumidity_ProgressChanged;
seekHumidity.Progress = 50;
textAlerts = FindViewById(Resource.Id.textAlerts);
Device.ReceivedMessage += Device_ReceivedMessage;
// Set focus to the connect button
buttonConnect.RequestFocus();
}
///
/// ScanCode
/// Scan a QR Code using the ZXing library
///
///
private async Task ScanCode()
{
MobileBarcodeScanner.Initialize(Application);
MobileBarcodeScanner Scanner = new MobileBarcodeScanner();
Scanner.UseCustomOverlay = false;
Scanner.TopText = "Hold camera up to QR code";
Scanner.BottomText = "Camera will automatically scan QR code\r\n\rPress the 'Back' button to cancel";
ZXing.Result result = await Scanner.Scan().ConfigureAwait(true);
if (result == null || (string.IsNullOrEmpty(result.Text)))
{
//await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, async () =>
//{
//MessageDialog dialog = new MessageDialog("An error occured while scanning the QRCode. Try again");
//await dialog.ShowAsync();
//});
}
else
{
//await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
//{
textConnectionString.Text = result.Text;
textDeviceName.Text = Device.ExtractDeviceIdFromConnectionString(result.Text);
//});
}
}
private async void ButtonScan_Click(object sender, EventArgs e)
{
if (buttonSend.Enabled == false)
{
await ScanCode();
}
}
private void Device_ReceivedMessage(object sender, EventArgs e)
{
ConnectTheDotsHelper.C2DMessage message = ((ConnectTheDotsHelper.ConnectTheDots.ReceivedMessageEventArgs)e).Message;
var textToDisplay = message.timecreated + " - Alert received:" + message.message + ": " + message.value + " " + message.unitofmeasure + "\r\n";
textAlerts.Append(textToDisplay);
}
private void SeekHumidity_ProgressChanged(object sender, SeekBar.ProgressChangedEventArgs e)
{
lblHumidity.Text = "Humidity: " + e.Progress;
Device.UpdateSensorData("Humidity", e.Progress);
}
private void SeekTemperature_ProgressChanged(object sender, SeekBar.ProgressChangedEventArgs e)
{
lblTemperature.Text = "Temperature: " + e.Progress;
Device.UpdateSensorData("Temperature", e.Progress);
}
private void ButtonSend_Click(object sender, EventArgs e)
{
if (Device.SendTelemetryData)
{
Device.SendTelemetryData = false;
buttonSend.Text = "Press to send telemetry data";
}
else
{
Device.SendTelemetryData = true;
buttonSend.Text = "Sending telemetry data";
}
}
private void ButtonConnect_Click(object sender, EventArgs e)
{
if (Device.IsConnected)
{
Device.SendTelemetryData = false;
if (Device.Disconnect())
{
buttonSend.Enabled = false;
textDeviceName.Enabled = true;
textConnectionString.Enabled = true
buttonScan.Enabled = true;
buttonConnect.Text = "Press to connect the dots";
}
}
else
{
if (Device.Connect())
{
buttonSend.Enabled = true;
textDeviceName.Enabled = false;
textConnectionString.Enabled = false;
buttonScan.Enabled = false;
buttonConnect.Text = "Dots connected";
}
}
}
private void TextConnectionString_TextChanged(object sender, Android.Text.TextChangedEventArgs e)
{
Device.ConnectionString = e.Text.ToString();
buttonConnect.Enabled = Device.checkConfig();
}
private void TextDeviceName_TextChanged(object sender, Android.Text.TextChangedEventArgs e)
{
Device.DisplayName = e.Text.ToString();
buttonConnect.Enabled = Device.checkConfig();
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/Properties/AndroidManifest.xml
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/Properties/AssemblyInfo.cs
================================================
using System.Reflection;
using System.Runtime.CompilerServices;
using Android.App;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle ("XamarinSimulatedSensors.Droid")]
[assembly: AssemblyDescription ("")]
[assembly: AssemblyConfiguration ("")]
[assembly: AssemblyCompany ("")]
[assembly: AssemblyProduct ("")]
[assembly: AssemblyCopyright ("joe")]
[assembly: AssemblyTrademark ("")]
[assembly: AssemblyCulture ("")]
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion ("1.0.0")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/Resources/AboutResources.txt
================================================
Images, layout descriptions, binary blobs and string dictionaries can be included
in your application as resource files. Various Android APIs are designed to
operate on the resource IDs instead of dealing with images, strings or binary blobs
directly.
For example, a sample Android app that contains a user interface layout (main.axml),
an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
would keep its resources in the "Resources" directory of the application:
Resources/
drawable/
icon.png
layout/
main.axml
values/
strings.xml
In order to get the build system to recognize Android resources, set the build action to
"AndroidResource". The native Android APIs do not operate directly with filenames, but
instead operate on resource IDs. When you compile an Android application that uses resources,
the build system will package the resources for distribution and generate a class called "R"
(this is an Android convention) that contains the tokens for each one of the resources
included. For example, for the above Resources layout, this is what the R class would expose:
public class R {
public class drawable {
public const int icon = 0x123;
}
public class layout {
public const int main = 0x456;
}
public class strings {
public const int first_string = 0xabc;
public const int second_string = 0xbcd;
}
}
You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
to reference the layout/main.axml file, or R.strings.first_string to reference the first
string in the dictionary file values/strings.xml.
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/Resources/Resource.designer.cs
================================================
#pragma warning disable 1591
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
[assembly: global::Android.Runtime.ResourceDesignerAttribute("XamarinSimulatedSensors.Droid.Resource", IsApplication=true)]
namespace XamarinSimulatedSensors.Droid
{
[System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")]
public partial class Resource
{
static Resource()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
public static void UpdateIdValues()
{
global::PCLCrypto.Resource.String.ApplicationName = global::XamarinSimulatedSensors.Droid.Resource.String.ApplicationName;
global::PCLCrypto.Resource.String.Hello = global::XamarinSimulatedSensors.Droid.Resource.String.Hello;
global::ZXing.Mobile.Resource.Id.contentFrame = global::XamarinSimulatedSensors.Droid.Resource.Id.contentFrame;
global::ZXing.Mobile.Resource.Layout.zxingscanneractivitylayout = global::XamarinSimulatedSensors.Droid.Resource.Layout.zxingscanneractivitylayout;
global::ZXing.Mobile.Resource.Layout.zxingscannerfragmentlayout = global::XamarinSimulatedSensors.Droid.Resource.Layout.zxingscannerfragmentlayout;
}
public partial class Attribute
{
static Attribute()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Attribute()
{
}
}
public partial class Drawable
{
// aapt resource value: 0x7f020000
public const int CTDLogoMedium = 2130837504;
// aapt resource value: 0x7f020001
public const int Icon = 2130837505;
static Drawable()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Drawable()
{
}
}
public partial class Id
{
// aapt resource value: 0x7f050006
public const int buttonConnect = 2131034118;
// aapt resource value: 0x7f050005
public const int buttonScan = 2131034117;
// aapt resource value: 0x7f05000b
public const int buttonSend = 2131034123;
// aapt resource value: 0x7f05000d
public const int contentFrame = 2131034125;
// aapt resource value: 0x7f050000
public const int imageView1 = 2131034112;
// aapt resource value: 0x7f050001
public const int lblDisplayName = 2131034113;
// aapt resource value: 0x7f050009
public const int lblHumidity = 2131034121;
// aapt resource value: 0x7f050007
public const int lblTemperature = 2131034119;
// aapt resource value: 0x7f05000a
public const int seekBarHumidity = 2131034122;
// aapt resource value: 0x7f050008
public const int seekBarTemperature = 2131034120;
// aapt resource value: 0x7f05000c
public const int textAlerts = 2131034124;
// aapt resource value: 0x7f050004
public const int textConnectionString = 2131034116;
// aapt resource value: 0x7f050002
public const int textDeviceName = 2131034114;
// aapt resource value: 0x7f050003
public const int textView3 = 2131034115;
static Id()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Id()
{
}
}
public partial class Layout
{
// aapt resource value: 0x7f030000
public const int Main = 2130903040;
// aapt resource value: 0x7f030001
public const int zxingscanneractivitylayout = 2130903041;
// aapt resource value: 0x7f030002
public const int zxingscannerfragmentlayout = 2130903042;
static Layout()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Layout()
{
}
}
public partial class String
{
// aapt resource value: 0x7f040001
public const int ApplicationName = 2130968577;
// aapt resource value: 0x7f040000
public const int Hello = 2130968576;
// aapt resource value: 0x7f040003
public const int app_name = 2130968579;
// aapt resource value: 0x7f040002
public const int hello = 2130968578;
static String()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private String()
{
}
}
}
}
#pragma warning restore 1591
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/Resources/layout/Main.axml
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/Resources/values/Strings.xml
================================================
Hello World, Click Me!
XamarinSimulatedSensors.Droid
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/XamarinSimulatedSensors.Droid.csproj
================================================
Debug
AnyCPU
{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
{AFFF3566-8874-4B77-8697-A8BC6F38D891}
Library
XamarinSimulatedSensors.Droid
Assets
Resources
Resource
Resources\Resource.designer.cs
True
True
v6.0
XamarinSimulatedSensors.Droid
Properties\AndroidManifest.xml
true
full
false
bin\Debug
DEBUG;
prompt
4
None
false
full
true
bin\Release
prompt
4
false
false
..\..\packages\Microsoft.Azure.Devices.Client.1.1.4\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10\Microsoft.Azure.Devices.Client.PCL.dll
True
..\..\packages\PCLCrypto.2.0.147\lib\MonoAndroid23\PCLCrypto.dll
True
..\..\packages\PInvoke.BCrypt.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll
True
..\..\packages\PInvoke.Kernel32.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll
True
..\..\packages\PInvoke.NCrypt.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll
True
..\..\packages\PInvoke.Windows.Core.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll
True
..\..\packages\Xam.Plugins.Settings.2.5.1.0\lib\MonoAndroid10\Plugin.Settings.dll
True
..\..\packages\Xam.Plugins.Settings.2.5.1.0\lib\MonoAndroid10\Plugin.Settings.Abstractions.dll
True
..\..\packages\Validation.2.3.7\lib\dotnet\Validation.dll
True
..\..\packages\Xamarin.Android.Support.v4.23.0.1.3\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\MonoAndroid403\ZXing.Net.Mobile.Core.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\MonoAndroid403\zxing.portable.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\MonoAndroid403\ZXingNetMobile.dll
True
XamarinSimulatedSensors
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/app.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Droid/packages.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/App.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Form1.Designer.cs
================================================
namespace XamarinSimulatedSensors.Windows
{
partial class Form1
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.textDeviceName = new System.Windows.Forms.TextBox();
this.textConnectionString = new System.Windows.Forms.TextBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.labelDeviceName = new System.Windows.Forms.Label();
this.labelConnectionString = new System.Windows.Forms.Label();
this.buttonConnect = new System.Windows.Forms.Button();
this.trackBarTemperature = new System.Windows.Forms.TrackBar();
this.labelTemperature = new System.Windows.Forms.Label();
this.trackBarHumidity = new System.Windows.Forms.TrackBar();
this.labelHumidity = new System.Windows.Forms.Label();
this.buttonSend = new System.Windows.Forms.Button();
this.textAlerts = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarTemperature)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarHumidity)).BeginInit();
this.SuspendLayout();
//
// textDeviceName
//
this.textDeviceName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textDeviceName.Location = new System.Drawing.Point(12, 331);
this.textDeviceName.Name = "textDeviceName";
this.textDeviceName.Size = new System.Drawing.Size(693, 29);
this.textDeviceName.TabIndex = 0;
//
// textConnectionString
//
this.textConnectionString.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textConnectionString.Location = new System.Drawing.Point(12, 401);
this.textConnectionString.Multiline = true;
this.textConnectionString.Name = "textConnectionString";
this.textConnectionString.Size = new System.Drawing.Size(693, 98);
this.textConnectionString.TabIndex = 1;
//
// pictureBox1
//
this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pictureBox1.Image = global::XamarinSimulatedSensors.Windows.Properties.Resources.CTDLogoMedium;
this.pictureBox1.Location = new System.Drawing.Point(12, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(693, 247);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBox1.TabIndex = 2;
this.pictureBox1.TabStop = false;
//
// labelDeviceName
//
this.labelDeviceName.AutoSize = true;
this.labelDeviceName.ForeColor = System.Drawing.Color.White;
this.labelDeviceName.Location = new System.Drawing.Point(12, 303);
this.labelDeviceName.Name = "labelDeviceName";
this.labelDeviceName.Size = new System.Drawing.Size(129, 25);
this.labelDeviceName.TabIndex = 3;
this.labelDeviceName.Text = "Device Name";
//
// labelConnectionString
//
this.labelConnectionString.AutoSize = true;
this.labelConnectionString.ForeColor = System.Drawing.Color.White;
this.labelConnectionString.Location = new System.Drawing.Point(12, 373);
this.labelConnectionString.Name = "labelConnectionString";
this.labelConnectionString.Size = new System.Drawing.Size(168, 25);
this.labelConnectionString.TabIndex = 4;
this.labelConnectionString.Text = "Connection String";
//
// buttonConnect
//
this.buttonConnect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.buttonConnect.Location = new System.Drawing.Point(251, 510);
this.buttonConnect.Name = "buttonConnect";
this.buttonConnect.Size = new System.Drawing.Size(223, 34);
this.buttonConnect.TabIndex = 5;
this.buttonConnect.Text = "Connect The Dots";
this.buttonConnect.UseVisualStyleBackColor = true;
//
// trackBarTemperature
//
this.trackBarTemperature.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.trackBarTemperature.Location = new System.Drawing.Point(12, 577);
this.trackBarTemperature.Maximum = 100;
this.trackBarTemperature.Name = "trackBarTemperature";
this.trackBarTemperature.Size = new System.Drawing.Size(693, 80);
this.trackBarTemperature.TabIndex = 7;
this.trackBarTemperature.TabStop = false;
this.trackBarTemperature.Value = 70;
//
// labelTemperature
//
this.labelTemperature.AutoSize = true;
this.labelTemperature.ForeColor = System.Drawing.Color.White;
this.labelTemperature.Location = new System.Drawing.Point(12, 549);
this.labelTemperature.Name = "labelTemperature";
this.labelTemperature.Size = new System.Drawing.Size(124, 25);
this.labelTemperature.TabIndex = 6;
this.labelTemperature.Text = "Temperature";
//
// trackBarHumidity
//
this.trackBarHumidity.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.trackBarHumidity.Location = new System.Drawing.Point(12, 666);
this.trackBarHumidity.Maximum = 100;
this.trackBarHumidity.Name = "trackBarHumidity";
this.trackBarHumidity.Size = new System.Drawing.Size(693, 80);
this.trackBarHumidity.TabIndex = 9;
this.trackBarHumidity.TabStop = false;
this.trackBarHumidity.Value = 70;
//
// labelHumidity
//
this.labelHumidity.AutoSize = true;
this.labelHumidity.ForeColor = System.Drawing.Color.White;
this.labelHumidity.Location = new System.Drawing.Point(17, 638);
this.labelHumidity.Name = "labelHumidity";
this.labelHumidity.Size = new System.Drawing.Size(87, 25);
this.labelHumidity.TabIndex = 8;
this.labelHumidity.Text = "Humidity";
//
// buttonSend
//
this.buttonSend.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.buttonSend.Location = new System.Drawing.Point(251, 732);
this.buttonSend.Name = "buttonSend";
this.buttonSend.Size = new System.Drawing.Size(223, 34);
this.buttonSend.TabIndex = 10;
this.buttonSend.Text = "Send Data";
this.buttonSend.UseVisualStyleBackColor = true;
//
// textAlerts
//
this.textAlerts.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textAlerts.Location = new System.Drawing.Point(12, 788);
this.textAlerts.Multiline = true;
this.textAlerts.Name = "textAlerts";
this.textAlerts.ReadOnly = true;
this.textAlerts.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textAlerts.Size = new System.Drawing.Size(693, 192);
this.textAlerts.TabIndex = 11;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoSize = true;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.ClientSize = new System.Drawing.Size(717, 992);
this.Controls.Add(this.textAlerts);
this.Controls.Add(this.buttonSend);
this.Controls.Add(this.trackBarHumidity);
this.Controls.Add(this.labelHumidity);
this.Controls.Add(this.trackBarTemperature);
this.Controls.Add(this.labelTemperature);
this.Controls.Add(this.buttonConnect);
this.Controls.Add(this.labelConnectionString);
this.Controls.Add(this.labelDeviceName);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.textConnectionString);
this.Controls.Add(this.textDeviceName);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "Form1";
this.Text = "Device Simulator";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarTemperature)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarHumidity)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textDeviceName;
private System.Windows.Forms.TextBox textConnectionString;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label labelDeviceName;
private System.Windows.Forms.Label labelConnectionString;
private System.Windows.Forms.Button buttonConnect;
private System.Windows.Forms.TrackBar trackBarTemperature;
private System.Windows.Forms.Label labelTemperature;
private System.Windows.Forms.TrackBar trackBarHumidity;
private System.Windows.Forms.Label labelHumidity;
private System.Windows.Forms.Button buttonSend;
private System.Windows.Forms.TextBox textAlerts;
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Form1.cs
================================================
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using XamarinSimulatedSensors;
namespace XamarinSimulatedSensors.Windows
{
public partial class Form1 : Form
{
MyClass Device;
private delegate void AppendAlert(string AlertText);
public Form1()
{
InitializeComponent();
// Initialize IoT Hub client
Device = new MyClass();
// Prepare UI elements
buttonConnect.Enabled = false;
buttonConnect.Click += ButtonConnect_Click; ;
buttonSend.Enabled = false;
buttonSend.Click += ButtonSend_Click; ;
textDeviceName.TextChanged += TextDeviceName_TextChanged; ;
textDeviceName.Text = Device.DisplayName;
textConnectionString.TextChanged += TextConnectionString_TextChanged; ;
textConnectionString.Text = Device.ConnectionString;
trackBarTemperature.ValueChanged += TrackBarTemperature_ValueChanged;
trackBarHumidity.ValueChanged += TrackBarHumidity_ValueChanged; ;
// Set focus to the connect button
buttonConnect.Focus();
// Attach receive callback for alerts
Device.ReceivedMessage += Device_ReceivedMessage;
}
private void Device_ReceivedMessage(object sender, EventArgs e)
{
ConnectTheDotsHelper.C2DMessage message = ((ConnectTheDotsHelper.ConnectTheDots.ReceivedMessageEventArgs)e).Message;
var textToDisplay = message.timecreated + " - Alert received:" + message.message + ": " + message.value + " " + message.unitofmeasure + "\r\n";
this.BeginInvoke(new AppendAlert((string text) => textAlerts.AppendText(text)), textToDisplay);
}
private void TrackBarHumidity_ValueChanged(object sender, EventArgs e)
{
labelHumidity.Text = "Humidity: " + trackBarHumidity.Value;
Device.UpdateSensorData("Humidity", trackBarHumidity.Value);
}
private void TrackBarTemperature_ValueChanged(object sender, EventArgs e)
{
labelTemperature.Text = "Temperature: " + trackBarTemperature.Value;
Device.UpdateSensorData("Temperature", trackBarTemperature.Value);
}
private void TextConnectionString_TextChanged(object sender, EventArgs e)
{
Device.ConnectionString = textConnectionString.Text;
buttonConnect.Enabled = Device.checkConfig();
}
private void TextDeviceName_TextChanged(object sender, EventArgs e)
{
Device.DisplayName = textDeviceName.Text;
buttonConnect.Enabled = Device.checkConfig();
}
private void ButtonSend_Click(object sender, EventArgs e)
{
if (Device.SendTelemetryData)
{
Device.SendTelemetryData = false;
buttonSend.Text = "Press to send telemetry data";
}
else
{
Device.SendTelemetryData = true;
buttonSend.Text = "Sending telemetry data";
}
}
private void ButtonConnect_Click(object sender, EventArgs e)
{
{
if (Device.IsConnected)
{
Device.SendTelemetryData = false;
if (Device.Disconnect())
{
buttonSend.Enabled = false;
textDeviceName.Enabled = true;
textConnectionString.Enabled = true;
buttonConnect.Text = "Press to connect the dots";
}
}
else
{
if (Device.Connect())
{
buttonSend.Enabled = true;
textDeviceName.Enabled = false;
textConnectionString.Enabled = false;
buttonConnect.Text = "Dots connected";
}
}
}
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Form1.resx
================================================
text/microsoft-resx
2.0
System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Helpers/Settings.cs
================================================
/*
// Helpers/Settings.cs This file was automatically added when you installed the Settings Plugin. If you are not using a PCL then comment this file back in to use it.
using Plugin.Settings;
using Plugin.Settings.Abstractions;
namespace XamarinSimulatedSensors.Windows.Helpers
{
///
/// This is the Settings static class that can be used in your Core solution or in any
/// of your client applications. All settings are laid out the same exact way with getters
/// and setters.
///
public static class Settings
{
private static ISettings AppSettings
{
get
{
return CrossSettings.Current;
}
}
#region Setting Constants
private const string SettingsKey = "settings_key";
private static readonly string SettingsDefault = string.Empty;
#endregion
public static string GeneralSettings
{
get
{
return AppSettings.GetValueOrDefault(SettingsKey, SettingsDefault);
}
set
{
AppSettings.AddOrUpdateValue(SettingsKey, value);
}
}
}
}*/
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Program.cs
================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace XamarinSimulatedSensors.Windows
{
static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Properties/AssemblyInfo.cs
================================================
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("XamarinSimulatedSensors.Windows")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("XamarinSimulatedSensors.Windows")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("ba9cf85b-1d51-46d8-b6c2-7763c16f66e7")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Properties/Resources.Designer.cs
================================================
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
namespace XamarinSimulatedSensors.Windows.Properties {
using System;
///
/// A strongly-typed resource class, for looking up localized strings, etc.
///
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
///
/// Returns the cached ResourceManager instance used by this class.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("XamarinSimulatedSensors.Windows.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
///
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap CTDLogoMedium {
get {
object obj = ResourceManager.GetObject("CTDLogoMedium", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Properties/Resources.resx
================================================
text/microsoft-resx
2.0
System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
..\Resources\CTDLogoMedium.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Properties/Settings.Designer.cs
================================================
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
namespace XamarinSimulatedSensors.Windows.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
return defaultInstance;
}
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/Properties/Settings.settings
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/XamarinSimulatedSensors.Windows.csproj
================================================
Debug
AnyCPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}
WinExe
Properties
XamarinSimulatedSensors.Windows
XamarinSimulatedSensors.Windows
v4.5.2
512
true
AnyCPU
true
full
false
bin\Debug\
DEBUG;TRACE
prompt
4
AnyCPU
pdbonly
true
bin\Release\
TRACE
prompt
4
..\..\packages\DotNetty.Buffers-signed.0.3.2\lib\net45\DotNetty.Buffers.dll
True
..\..\packages\DotNetty.Codecs-signed.0.3.2\lib\net45\DotNetty.Codecs.dll
True
..\..\packages\DotNetty.Codecs.Mqtt-signed.0.3.2\lib\net45\DotNetty.Codecs.Mqtt.dll
True
..\..\packages\DotNetty.Common-signed.0.3.2\lib\net45\DotNetty.Common.dll
True
..\..\packages\DotNetty.Handlers-signed.0.3.2\lib\net45\DotNetty.Handlers.dll
True
..\..\packages\DotNetty.Transport-signed.0.3.2\lib\net45\DotNetty.Transport.dll
True
..\..\packages\Microsoft.Azure.Amqp.1.1.5\lib\net451\Microsoft.Azure.Amqp.dll
True
..\..\packages\Microsoft.Azure.Devices.Client.1.1.4\lib\net45\Microsoft.Azure.Devices.Client.dll
True
..\..\packages\Microsoft.Azure.Devices.Shared.1.0.4\lib\net45\Microsoft.Azure.Devices.Shared.dll
True
..\..\packages\Microsoft.Azure.KeyVault.Core.2.0.4\lib\net45\Microsoft.Azure.KeyVault.Core.dll
True
..\..\packages\Microsoft.Data.Edm.5.8.1\lib\net40\Microsoft.Data.Edm.dll
True
..\..\packages\Microsoft.Data.OData.5.8.1\lib\net40\Microsoft.Data.OData.dll
True
..\..\packages\Microsoft.Data.Services.Client.5.8.1\lib\net40\Microsoft.Data.Services.Client.dll
True
..\..\packages\EnterpriseLibrary.TransientFaultHandling.6.0.1304.0\lib\portable-net45+win+wp8\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.dll
True
..\..\packages\WindowsAzure.Storage.7.2.1\lib\net40\Microsoft.WindowsAzure.Storage.dll
True
..\..\packages\Mono.Security.3.2.3.0\lib\net45\Mono.Security.dll
True
..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll
True
..\..\packages\PCLCrypto.2.0.147\lib\net45\PCLCrypto.dll
True
..\..\packages\PInvoke.BCrypt.0.3.152\lib\net40\PInvoke.BCrypt.dll
True
..\..\packages\PInvoke.Kernel32.0.3.152\lib\net40\PInvoke.Kernel32.dll
True
..\..\packages\PInvoke.NCrypt.0.3.152\lib\net40\PInvoke.NCrypt.dll
True
..\..\packages\PInvoke.Windows.Core.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll
True
..\..\packages\Xam.Plugins.Settings.2.5.1.0\lib\net45\Plugin.Settings.dll
True
..\..\packages\Xam.Plugins.Settings.2.5.1.0\lib\net45\Plugin.Settings.Abstractions.dll
True
..\..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll
True
..\..\packages\System.Spatial.5.8.1\lib\net40\System.Spatial.dll
True
..\..\packages\Validation.2.3.7\lib\dotnet\Validation.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\portable-net45+netcore45+wpa81+wp8\ZXing.Net.Mobile.Core.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\portable-net45+netcore45+wpa81+wp8\zxing.portable.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\portable-net45+netcore45+wpa81+wp8\ZXingNetMobile.dll
True
Form
Form1.cs
Form1.cs
ResXFileCodeGenerator
Resources.Designer.cs
Designer
True
Resources.resx
True
SettingsSingleFileGenerator
Settings.Designer.cs
True
Settings.settings
True
{BB40B36F-BAF9-45E1-B333-352771318E9F}
XamarinSimulatedSensors
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.Windows/packages.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/AppDelegate.cs
================================================
using Foundation;
using UIKit;
namespace XamarinSimulatedSensors.iOS
{
// The UIApplicationDelegate for the application. This class is responsible for launching the
// User Interface of the application, as well as listening (and optionally responding) to application events from iOS.
[Register ("AppDelegate")]
public class AppDelegate : UIApplicationDelegate
{
// class-level declarations
public override UIWindow Window {
get;
set;
}
public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
{
// Override point for customization after application launch.
// If not required for your application you can safely delete this method
return true;
}
public override void OnResignActivation (UIApplication application)
{
// Invoked when the application is about to move from active to inactive state.
// This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message)
// or when the user quits the application and it begins the transition to the background state.
// Games should use this method to pause the game.
}
public override void DidEnterBackground (UIApplication application)
{
// Use this method to release shared resources, save user data, invalidate timers and store the application state.
// If your application supports background exection this method is called instead of WillTerminate when the user quits.
}
public override void WillEnterForeground (UIApplication application)
{
// Called as part of the transiton from background to active state.
// Here you can undo many of the changes made on entering the background.
}
public override void OnActivated (UIApplication application)
{
// Restart any tasks that were paused (or not yet started) while the application was inactive.
// If the application was previously in the background, optionally refresh the user interface.
}
public override void WillTerminate (UIApplication application)
{
// Called when the application is about to terminate. Save data, if needed. See also DidEnterBackground.
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Entitlements.plist
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Helpers/Settings.cs
================================================
/*
// Helpers/Settings.cs This file was automatically added when you installed the Settings Plugin. If you are not using a PCL then comment this file back in to use it.
using Plugin.Settings;
using Plugin.Settings.Abstractions;
namespace XamarinSimulatedSensors.iOS.Helpers
{
///
/// This is the Settings static class that can be used in your Core solution or in any
/// of your client applications. All settings are laid out the same exact way with getters
/// and setters.
///
public static class Settings
{
private static ISettings AppSettings
{
get
{
return CrossSettings.Current;
}
}
#region Setting Constants
private const string SettingsKey = "settings_key";
private static readonly string SettingsDefault = string.Empty;
#endregion
public static string GeneralSettings
{
get
{
return AppSettings.GetValueOrDefault(SettingsKey, SettingsDefault);
}
set
{
AppSettings.AddOrUpdateValue(SettingsKey, value);
}
}
}
}*/
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Info.plist
================================================
CFBundleDisplayName
XamarinSimulatedSensors.iOS
CFBundleIdentifier
com.your-company.XamarinSimulatedSensors.iOS
CFBundleShortVersionString
1.0
CFBundleVersion
1.0
LSRequiresIPhoneOS
MinimumOSVersion
8.1
UIDeviceFamily
1
2
UILaunchStoryboardName
LaunchScreen
UIMainStoryboardFile
Main
UIMainStoryboardFile~ipad
Main
UIRequiredDeviceCapabilities
armv7
UISupportedInterfaceOrientations
UIInterfaceOrientationPortrait
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
UISupportedInterfaceOrientations~ipad
UIInterfaceOrientationPortrait
UIInterfaceOrientationPortraitUpsideDown
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
XSAppIconAssets
Resources/Images.xcassets/AppIcons.appiconset
XSLaunchImageAssets
Resources/Images.xcassets/LaunchImage.launchimage
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Main.cs
================================================
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace XamarinSimulatedSensors.iOS
{
public class Application
{
// This is the main entry point of the application.
static void Main (string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main (args, null, "AppDelegate");
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Main.storyboard
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json
================================================
{
"images": [
{
"scale": "1x",
"size": "29x29",
"idiom": "iphone",
"filename": "Icon-Small.png"
},
{
"scale": "2x",
"size": "29x29",
"idiom": "iphone",
"filename": "Icon-Small@2x.png"
},
{
"scale": "3x",
"size": "29x29",
"idiom": "iphone",
"filename": "Icon-Small@3x.png"
},
{
"scale": "2x",
"size": "40x40",
"idiom": "iphone",
"filename": "Icon-Small-40@2x.png"
},
{
"scale": "3x",
"size": "40x40",
"idiom": "iphone",
"filename": "Icon-Small-40@3x.png"
},
{
"scale": "1x",
"size": "57x57",
"idiom": "iphone"
},
{
"scale": "2x",
"size": "57x57",
"idiom": "iphone"
},
{
"scale": "2x",
"size": "60x60",
"idiom": "iphone",
"filename": "Icon-60@2x.png"
},
{
"scale": "3x",
"size": "60x60",
"idiom": "iphone",
"filename": "Icon-60@3x.png"
},
{
"scale": "1x",
"size": "29x29",
"idiom": "ipad",
"filename": "Icon-Small.png"
},
{
"scale": "2x",
"size": "29x29",
"idiom": "ipad",
"filename": "Icon-Small@2x.png"
},
{
"scale": "1x",
"size": "40x40",
"idiom": "ipad",
"filename": "Icon-Small-40.png"
},
{
"scale": "2x",
"size": "40x40",
"idiom": "ipad",
"filename": "Icon-Small-40@2x.png"
},
{
"scale": "1x",
"size": "50x50",
"idiom": "ipad"
},
{
"scale": "2x",
"size": "50x50",
"idiom": "ipad"
},
{
"scale": "1x",
"size": "72x72",
"idiom": "ipad"
},
{
"scale": "2x",
"size": "72x72",
"idiom": "ipad"
},
{
"scale": "1x",
"size": "76x76",
"idiom": "ipad",
"filename": "Icon-76.png"
},
{
"scale": "2x",
"size": "76x76",
"idiom": "ipad",
"filename": "Icon-76@2x.png"
}
],
"properties": {},
"info": {
"version": 1,
"author": "xcode"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Resources/Images.xcassets/Images.imageset/Contents.json
================================================
{
"images": [
{
"scale": "1x",
"idiom": "universal",
"filename": "CTDLogoMedium.png"
},
{
"scale": "2x",
"idiom": "universal"
},
{
"scale": "3x",
"idiom": "universal"
}
],
"properties": {
"template-rendering-intent": ""
},
"info": {
"version": 1,
"author": ""
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json
================================================
{
"images": [
{
"orientation": "portrait",
"extent": "full-screen",
"scale": "1x",
"size": "320x480",
"idiom": "iphone",
"filename": "Default.png"
},
{
"orientation": "portrait",
"extent": "full-screen",
"scale": "2x",
"size": "640x960",
"idiom": "iphone",
"filename": "Default@2x.png"
},
{
"orientation": "portrait",
"extent": "full-screen",
"subtype": "retina4",
"scale": "2x",
"size": "640x1136",
"idiom": "iphone",
"filename": "Default-568h@2x.png"
},
{
"orientation": "portrait",
"extent": "full-screen",
"scale": "1x",
"size": "768x1024",
"idiom": "ipad",
"filename": "Default-Portrait.png"
},
{
"orientation": "portrait",
"extent": "full-screen",
"scale": "2x",
"size": "1536x2048",
"idiom": "ipad",
"filename": "Default-Portrait@2x.png"
}
],
"properties": {},
"info": {
"version": 1,
"author": "xcode"
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/Resources/LaunchScreen.storyboard
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/ViewController.cs
================================================
using System;
using UIKit;
namespace XamarinSimulatedSensors.iOS
{
public partial class ViewController : UIViewController
{
MyClass Device;
public ViewController (IntPtr handle) : base (handle)
{
}
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
// Perform any additional setup after loading the view, typically from a nib.
Device = new MyClass();
// If you are developing and want to avoid having to enter the full connection string on the device,
// you can temporarily hard code it here. Comment this when done!
//Device.DisplayName = "[DisplayName]";
//Device.ConnectionString = "[ConnectionString]";
buttonConnect.Enabled = false;
buttonConnect.TouchUpInside += ButtonConnect_TouchUpInside;
buttonSend.Enabled = false;
buttonSend.TouchUpInside += ButtonSend_TouchUpInside;
textDisplayName.EditingDidEnd += TextDisplayName_EditingDidEnd;
textDisplayName.Text = Device.DisplayName;
textConnectionString.EditingDidEnd += TextConnectionString_EditingDidEnd;
textConnectionString.Text = Device.ConnectionString;
buttonConnect.Enabled = Device.checkConfig();
sliderTemperature.MinValue = 0;
sliderTemperature.MaxValue = 100;
sliderTemperature.ValueChanged += SliderTemperature_ValueChanged;
sliderTemperature.Value = 50;
sliderHumidity.MinValue = 0;
sliderHumidity.MaxValue = 100;
sliderHumidity.ValueChanged += SliderHumidity_ValueChanged;
sliderHumidity.Value = 50;
}
private void SliderHumidity_ValueChanged(object sender, EventArgs e)
{
lblHumidity.Text = "Humidity: " + sliderHumidity.Value.ToString();
Device.UpdateSensorData("Humidity", sliderHumidity.Value);
}
private void SliderTemperature_ValueChanged(object sender, EventArgs e)
{
lblTemperature.Text = "Temperature: " + sliderTemperature.Value.ToString();
Device.UpdateSensorData("Temperature", sliderTemperature.Value);
}
private void TextConnectionString_EditingDidEnd(object sender, EventArgs e)
{
Device.ConnectionString = textConnectionString.Text;
buttonConnect.Enabled = Device.checkConfig();
}
private void TextDisplayName_EditingDidEnd(object sender, EventArgs e)
{
Device.DisplayName = textDisplayName.Text;
buttonConnect.Enabled = Device.checkConfig();
}
private void ButtonSend_TouchUpInside(object sender, EventArgs e)
{
if (Device.SendTelemetryData)
{
Device.SendTelemetryData = false;
buttonSend.SetTitle("Press to send telemetry data", UIControlState.Normal);
}
else
{
Device.SendTelemetryData = true;
buttonSend.SetTitle("Sending telemetry data", UIControlState.Normal);
}
}
private void ButtonConnect_TouchUpInside(object sender, EventArgs e)
{
if (Device.IsConnected)
{
Device.SendTelemetryData = false;
if (Device.Disconnect())
{
buttonSend.Enabled = false;
textDisplayName.Enabled = true;
textConnectionString.Enabled = true;
buttonConnect.SetTitle("Press to connect the dots", UIControlState.Normal);
}
}
else
{
if (Device.Connect())
{
buttonSend.Enabled = true;
textDisplayName.Enabled = false;
textConnectionString.Enabled = false;
buttonConnect.SetTitle("Dots connected", UIControlState.Normal);
}
}
}
public override void DidReceiveMemoryWarning ()
{
base.DidReceiveMemoryWarning ();
// Release any cached data, images, etc that aren't in use.
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/ViewController.designer.cs
================================================
// WARNING
//
// This file has been generated automatically by Xamarin Studio from the outlets and
// actions declared in your storyboard file.
// Manual changes to this file will not be maintained.
//
using Foundation;
using System;
using System.CodeDom.Compiler;
using UIKit;
namespace XamarinSimulatedSensors.iOS
{
[Register ("ViewController")]
partial class ViewController
{
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UIButton buttonConnect { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UIButton buttonSend { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UILabel lblConnectionString { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UILabel lblHumidity { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UILabel lblTemperature { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UISlider sliderHumidity { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UISlider sliderTemperature { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UITextField textConnectionString { get; set; }
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UITextField textDisplayName { get; set; }
void ReleaseDesignerOutlets ()
{
if (buttonConnect != null) {
buttonConnect.Dispose ();
buttonConnect = null;
}
if (buttonSend != null) {
buttonSend.Dispose ();
buttonSend = null;
}
if (lblConnectionString != null) {
lblConnectionString.Dispose ();
lblConnectionString = null;
}
if (lblHumidity != null) {
lblHumidity.Dispose ();
lblHumidity = null;
}
if (lblTemperature != null) {
lblTemperature.Dispose ();
lblTemperature = null;
}
if (sliderHumidity != null) {
sliderHumidity.Dispose ();
sliderHumidity = null;
}
if (sliderTemperature != null) {
sliderTemperature.Dispose ();
sliderTemperature = null;
}
if (textConnectionString != null) {
textConnectionString.Dispose ();
textConnectionString = null;
}
if (textDisplayName != null) {
textDisplayName.Dispose ();
textDisplayName = null;
}
}
}
}
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/XamarinSimulatedSensors.iOS.csproj
================================================
Debug
iPhoneSimulator
{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}
Exe
XamarinSimulatedSensors.iOS
Resources
XamarinSimulatedSensorsiOS
true
full
false
bin\iPhoneSimulator\Debug
DEBUG;
prompt
4
false
i386
None
true
true
full
true
bin\iPhone\Release
prompt
4
Entitlements.plist
ARMv7, ARM64
false
iPhone Developer
full
true
bin\iPhoneSimulator\Release
prompt
4
i386
false
None
true
full
false
bin\iPhone\Debug
DEBUG;
prompt
4
false
ARMv7, ARM64
Entitlements.plist
true
iPhone Developer
true
..\..\packages\Microsoft.Azure.Devices.Client.1.1.4\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10\Microsoft.Azure.Devices.Client.PCL.dll
True
..\..\packages\PCLCrypto.2.0.147\lib\xamarinios10\PCLCrypto.dll
True
..\..\packages\PInvoke.BCrypt.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll
True
..\..\packages\PInvoke.Kernel32.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll
True
..\..\packages\PInvoke.NCrypt.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll
True
..\..\packages\PInvoke.Windows.Core.0.3.152\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll
True
..\..\packages\Xam.Plugins.Settings.2.5.1.0\lib\Xamarin.iOS10\Plugin.Settings.dll
True
..\..\packages\Xam.Plugins.Settings.2.5.1.0\lib\Xamarin.iOS10\Plugin.Settings.Abstractions.dll
True
..\..\packages\Validation.2.3.7\lib\dotnet\Validation.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\Xamarin.iOS10\ZXing.Net.Mobile.Core.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\Xamarin.iOS10\zxing.portable.dll
True
..\..\packages\ZXing.Net.Mobile.2.1.47\lib\Xamarin.iOS10\ZXingNetMobile.dll
True
XamarinSimulatedSensors
false
false
false
false
false
false
false
false
false
false
false
false
false
false
false
false
false
false
false
ViewController.cs
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/app.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors/XamarinSimulatedSensors.iOS/packages.config
================================================
================================================
FILE: Devices/DirectlyConnectedDevices/XamarinSimulatedSensors/XamarinSimulatedSensors.sln
================================================
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinSimulatedSensors.Droid", "XamarinSimulatedSensors\XamarinSimulatedSensors.Droid\XamarinSimulatedSensors.Droid.csproj", "{AFFF3566-8874-4B77-8697-A8BC6F38D891}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinSimulatedSensors.iOS", "XamarinSimulatedSensors\XamarinSimulatedSensors.iOS\XamarinSimulatedSensors.iOS.csproj", "{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinSimulatedSensors", "XamarinSimulatedSensors\XamarinSimulatedSensors\XamarinSimulatedSensors.csproj", "{BB40B36F-BAF9-45E1-B333-352771318E9F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinSimulatedSensors.Windows", "XamarinSimulatedSensors\XamarinSimulatedSensors.Windows\XamarinSimulatedSensors.Windows.csproj", "{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|iPhone = Debug|iPhone
Debug|iPhoneSimulator = Debug|iPhoneSimulator
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|iPhone = Release|iPhone
Release|iPhoneSimulator = Release|iPhoneSimulator
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|ARM.ActiveCfg = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|ARM.Build.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|ARM.Deploy.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|iPhone.Build.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|iPhone.Deploy.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|x86.ActiveCfg = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|x86.Build.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Debug|x86.Deploy.0 = Debug|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|Any CPU.Build.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|Any CPU.Deploy.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|ARM.ActiveCfg = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|ARM.Build.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|ARM.Deploy.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|iPhone.ActiveCfg = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|iPhone.Build.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|iPhone.Deploy.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|x86.ActiveCfg = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|x86.Build.0 = Release|Any CPU
{AFFF3566-8874-4B77-8697-A8BC6F38D891}.Release|x86.Deploy.0 = Release|Any CPU
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Debug|Any CPU.ActiveCfg = Debug|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Debug|ARM.ActiveCfg = Debug|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Debug|iPhone.ActiveCfg = Debug|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Debug|iPhone.Build.0 = Debug|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Debug|x86.ActiveCfg = Debug|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Release|Any CPU.ActiveCfg = Release|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Release|ARM.ActiveCfg = Release|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Release|iPhone.ActiveCfg = Release|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Release|iPhone.Build.0 = Release|iPhone
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{51B8CECA-29C8-4323-9C8F-7AA3A98E7381}.Release|x86.ActiveCfg = Release|iPhone
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|ARM.ActiveCfg = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|ARM.Build.0 = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|iPhone.Build.0 = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|x86.ActiveCfg = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Debug|x86.Build.0 = Debug|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|Any CPU.Build.0 = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|ARM.ActiveCfg = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|ARM.Build.0 = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|iPhone.ActiveCfg = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|iPhone.Build.0 = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|x86.ActiveCfg = Release|Any CPU
{BB40B36F-BAF9-45E1-B333-352771318E9F}.Release|x86.Build.0 = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|ARM.ActiveCfg = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|ARM.Build.0 = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|iPhone.Build.0 = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|x86.ActiveCfg = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Debug|x86.Build.0 = Debug|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|Any CPU.Build.0 = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|ARM.ActiveCfg = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|ARM.Build.0 = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|iPhone.ActiveCfg = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|iPhone.Build.0 = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|x86.ActiveCfg = Release|Any CPU
{BA9CF85B-1D51-46D8-B6C2-7763C16F66E7}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
EnterpriseLibraryConfigurationToolBinariesPathV6 = packages\EnterpriseLibrary.TransientFaultHandling.6.0.1304.0\lib\portable-net45+win+wp8
EndGlobalSection
EndGlobal
================================================
FILE: Devices/GatewayConnectedDevices/Arduino DUE/Temperature/DS18B20/DS18B20.ino
================================================
/*
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
NOTE: this is a modification specifically for the Arduino DUE.
Based upon code from https://github.com/MSOpenTech/connectthedots/tree/master/Devices/GatewayConnectedDevices/Arduino%20UNO/Temperature/DS18B20 which is
copyright (c) Neal Analytics and licensed under the MIT license, itself based upon code from Bildr.org at http://bildr.org/2011/07/ds18b20-arduino/ ,
which is copyright (c) 2010 bildr community, and licensed under the MIT license.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Arduino code to read data from a DS18B20 temperature sensor, then augment and format as JSON to send via serial connection.
Example of sending temperature data to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
*/
#include
#include
// Constants used to add self-describing fields to the data before sending to Azure
// Disp value will be the label for the curve on the chart
// GUID ensures all the data from this sensor appears on the same chart
// You can use Visual Studio to create DeviceGUID and copy it here. In VS, On the Tools menu, click Create GUID. The Create GUID
// tool appears with a GUID in the Result box. Click Copy, and paste below.
//
char GUID[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
char Org[] = "Your organization";
char Disp[] = "Arduino DUE + DS18B20";
char Locn[] = "whereever";
char Measure[] = "Temperature";
char Units[] = "F";
char buffer[300];
char dtostrfbuffer[15];
int DS18S20_Pin = 2; //DS18S20 Signal pin on digital 2
//Temperature chip i/o
OneWire ds(DS18S20_Pin); // on digital pin 2
void setup(void) {
Serial.begin(9600);
}
void loop(void)
{
float temperature = getTemp();
// print string for temperature, separated by line for ease of reading
// sent as one Serial.Print to reduce risk of serial errors
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(temperature,8,2,dtostrfbuffer));
strcat(buffer,"}");
Serial.println(buffer);
delay(1000); //just here to slow down the output so it is easier to read
}
float getTemp(){
//returns the temperature from one DS18S20 in DEG Fahrenheit
byte data[12];
byte addr[8];
if ( !ds.search(addr)) {
//no more sensors on chain, reset search
ds.reset_search();
return -1000;
}
if ( OneWire::crc8( addr, 7) != addr[7]) {
Serial.println("CRC is not valid!");
return -1000;
}
if ( addr[0] == 0x10 ) {
//Sensor is a DS18S20
}
else if (addr[0] == 0x28){
//Sensor is a DS18BS20
}
else
{
Serial.print("Device is not recognized");
return -1000;
}
ds.reset();
ds.select(addr);
ds.write(0x44,1); // start conversion, with parasite power on at the end
byte present = ds.reset();
ds.select(addr);
ds.write(0xBE); // Read Scratchpad
for (int i = 0; i < 9; i++) { // we need 9 bytes
data[i] = ds.read();
}
ds.reset_search();
byte MSB = data[1];
byte LSB = data[0];
float tempRead = ((MSB << 8) | LSB); //using two's compliment
float TemperatureSum = tempRead / 16;
float Ftemp = (TemperatureSum * 9.0)/ 5.0 + 32.0; //convert to Fahrenheit
return Ftemp;
}
================================================
FILE: Devices/GatewayConnectedDevices/Arduino DUE/Temperature/DS18B20/Libraries.md
================================================
This example relies on the OneWire library. This is included in the standard Arduino IDE, but updates can be downloaded from the link in the Arduino playground site [here](http://playground.arduino.cc/Learning/OneWire). Import the library into your Arduino sketch before compiling.
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Accelerometer/Memsic2125Json/Libraries.md
================================================
This example relies on the OneWire library. This is included in the standard Arduino IDE, but updates can be downloaded from the link in the Arduino playground site [here](http://playground.arduino.cc/Learning/OneWire). Import the library into your Arduino sketch before compiling.
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Accelerometer/Memsic2125Json/Memsic2125Json.ino
================================================
/*
Copyright (c) Neal Analytics, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Based upon David A. Mellis's Memsic2125 Example, as stated below, which is in the public domain
Modifications by Neal Analytics and Microsoft Open Technologies, Inc include adding self-describing fields in each output string, and changing output format to JSON string. the labels on charts in the Azure website.
Further mods by MS Open Tech updating JSON for website rev
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Original header follows.
Memsic2125
Read the Memsic 2125 two‐axis accelerometer. Converts the
pulses output by the 2125 into milli‐g's (1/1000 of earth's
gravity) and prints them over the serial connection to the
computer.
The circuit:
* X output of accelerometer to digital pin 2
* Y output of accelerometer to digital pin 3
* +V of accelerometer to +5V
* GND of accelerometer to ground
http://www.arduino.cc/en/Tutorial/Memsic2125
created 6 Nov 2008
by David A. Mellis
modified 30 Aug 2011
by Tom Igoe
This example code is in the public domain.
*/
// Disp value will be the label for the curve on the chart
// GUID ensures all the data from this sensor appears on the same chart
// You can use Visual Studio to create DeviceGUID and copy it here. In VS, On the Tools menu, click Create GUID. The Create GUID
// tool appears with a GUID in the Result box. Click Copy, and paste below.
//
char GUID1[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
char GUID2[] = "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy";
char Org[] = "My organization";
char Disp[] = "Arduino + Memsic2125";
char Locn[] = "here";
char Measure1[] = "accelerationX";
char Units1[] = "ft/sec/sec";
char Measure2[] = "accelerationY";
char Units2[] = "ft/sec/sec";
char buffer[300];
char dtostrfbuffer[15];
#define MYSERIAL Serial
const int xPin = 2; // X output of the accelerometer
const int yPin = 3; // Y output of the accelerometer
void setup() {
// initialize serial communications:
Serial.begin(9600);
// initialize the pins connected to the accelerometer
// as inputs:
pinMode(xPin, INPUT);
pinMode(yPin, INPUT);
}
void loop() {
// variables to read the pulse widths:
int pulseX, pulseY;
// variables to contain the resulting accelerations
int accelerationX, accelerationY;
// read pulse from x‐ and y‐axes:
pulseX = pulseIn(xPin,HIGH);
pulseY = pulseIn(yPin,HIGH);
// convert the pulse width into acceleration
// accelerationX and accelerationY are in milli‐g's:
// earth's gravity is 1000 milli‐g's, or 1g.
accelerationX = ((pulseX / 10) - 500) * 8;
accelerationY = ((pulseY / 10) - 500) * 8;
// print string for humidity, separated by line for ease of reading
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID1);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure1);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units1);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(accelerationX,8,2,dtostrfbuffer));
strcat(buffer,"}");
MYSERIAL.println(buffer);
// print string for humidity, separated by line for ease of reading
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID2);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure2);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units2);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(accelerationY,6,2,dtostrfbuffer));
strcat(buffer,"}");
MYSERIAL.println(buffer);
delay(100);
}
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/AnalogReadSerial/AnalogReadSerial.ino
================================================
/*
Modifications by Microsoft Open Technologies, Inc
AnalogReadSerial
Reads an analog input on pin 0, prints the result to the serial monitor.
Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground.
This example code is in the public domain.
*/
// the setup routine runs once when you press reset:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
SerialUSB.begin(9600);
}
char buffer[100];
// the loop routine runs over and over again forever:
void loop() {
// read the input on analog pin 0:
int sensorValue = analogRead(A0);
// Turn into JSON format
sprintf(buffer, "{ \"%s\" : %f }", "temp", (float) sensorValue);
// print out the value you read:
SerialUSB.println(buffer);
Serial.println(buffer);
delay(500); // delay in between reads
}
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Combo_accelerometer_and_temperature/Memsic2125_plus_DS18B20/Libraries.md
================================================
This example relies on the OneWire library. This is included in the standard Arduino IDE, but updates can be downloaded from the link in the Arduino playground site [here](http://playground.arduino.cc/Learning/OneWire). Import the library into your Arduino sketch before compiling.
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Combo_accelerometer_and_temperature/Memsic2125_plus_DS18B20/Memsic2125_plus_DS18B20.ino
================================================
/*
Copyright (c) Neal Analytics, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Based upon David A. Mellis's Memsic2125 Example, as stated below, which is in the public domain.
Modifications by Neal Analytics and Microsoft Open Technologies, Inc include adding self-describing fields in each output string, and changing output format to JSON string.
Further mods by MS Open Tech updating JSON for website rev
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Original header follows.
Memsic2125
Read the Memsic 2125 two‐axis accelerometer. Converts the
pulses output by the 2125 into milli‐g's (1/1000 of earth's
gravity) and prints them over the serial connection to the
computer.
The circuit:
* X output of accelerometer to digital pin 2
* Y output of accelerometer to digital pin 3
* +V of accelerometer to +5V
* GND of accelerometer to ground
http://www.arduino.cc/en/Tutorial/Memsic2125
created 6 Nov 2008
by David A. Mellis
modified 30 Aug 2011
by Tom Igoe
This example code is in the public domain.
*/
// these constants won't change:
#include
char SensorSubject[] = "wthr"; // determines how Azure website will chart the data
char DeviceDisplayName[] = "Cooler Device"; // will be the label for the curve on the chart
char DeviceGUID[] = "2150719D-0FFF-4312-B61C-75AD5219D8FF"; // ensures all the data from this sensor appears on the same chart. You can use the Tools/Create GUID in Visual Studio to create
// Disp value will be the label for the curve on the chart
// GUID ensures all the data from this sensor appears on the same chart
// You can use Visual Studio to create DeviceGUID and copy it here. In VS, On the Tools menu, click Create GUID. The Create GUID
// tool appears with a GUID in the Result box. Click Copy, and paste below.
//
char GUID1[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
char GUID2[] = "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy";
char Org[] = "My organization";
char Disp[] = "Arduino + Memsic2125 + DS18S20";
char Locn[] = "here";
char Measure1[] = "acceleration_Tot";
char Units1[] = "ft/sec/sec";
char Measure2[] = "temperature";
char Units2[] = "F";
char buffer[300];
char dtostrfbuffer[15];
#define MYSERIAL Serial
const int DS18S20_Pin = 4; //DS18S20 Signal pin on digital 4
const int xPin = 2; // X output of the accelerometer
const int yPin = 3; // Y output of the accelerometer
//Temperature chip i/o
OneWire ds(DS18S20_Pin); // on digital pin 4
void setup() {
// initialize serial communications:
Serial.begin(9600);
// initialize the pins connected to the accelerometer
// as inputs:
pinMode(xPin, INPUT);
pinMode(yPin, INPUT);
//pinMode(DS18S20_Pin, INPUT);
}
float getTemp(){
//returns the temperature from one DS18S20 in DEG Celsius
byte data[12];
byte addr[8];
if ( !ds.search(addr)) {
//no more sensors on chain, reset search
ds.reset_search();
return -1000;
}
if ( OneWire::crc8( addr, 7) != addr[7]) {
Serial.println("CRC is not valid!");
return -1000;
}
if ( addr[0] != 0x10 && addr[0] != 0x28) {
Serial.print("Device is not recognized");
return -1000;
}
ds.reset();
ds.select(addr);
ds.write(0x44,1); // start conversion, with parasite power on at the end
byte present = ds.reset();
ds.select(addr);
ds.write(0xBE); // Read Scratchpad
for (int i = 0; i < 9; i++) { // we need 9 bytes
data[i] = ds.read();
}
ds.reset_search();
byte MSB = data[1];
byte LSB = data[0];
float tempRead = ((MSB << 8) | LSB); //using two's compliment
float TemperatureSum = tempRead / 16;
return TemperatureSum;
}
void loop() {
// variables to read the pulse widths:
int pulseX, pulseY;
// variables to contain the resulting accelerations
float accelerationX, accelerationY, acceleration_Tot;
// read pulse from x‐ and y‐axes:
pulseX = pulseIn(xPin,HIGH);
pulseY = pulseIn(yPin,HIGH);
// convert the pulse width into acceleration
// accelerationX and accelerationY are in milli‐g's:
// earth's gravity is 1000 milli‐g's, or 1g.
accelerationX = ((pulseX / 10) - 500) * 8;
accelerationY = ((pulseY / 10) - 500) * 8;
acceleration_Tot = sqrt(sq(accelerationX) + sq(accelerationY));
//acceleration_Tot = sqrt(sq(pulseX) + sq(pulseY));
// Get temperature reading. Adjust value to match cooler
float temperature = getTemp();
// print string for total acceleration, separated by line for ease of reading
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID1);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure1);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units1);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(acceleration_Tot,8,2,dtostrfbuffer));
strcat(buffer,"}");
MYSERIAL.println(buffer);
// print string for temperature, separated by line for ease of reading
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID2);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure2);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units2);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(temperature,6,2,dtostrfbuffer));
strcat(buffer,"}");
MYSERIAL.println(buffer);
}
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Sound/SimpleSoundSensor/SimpleSoundSensor.ino
================================================
/*
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Based upon code from Sunfounder Microsophone Sensor Module http://www.sunfounder.com/index.php?c=case_in&a=detail_&id=139&name= using a different but similar analog sound sensor purchased online.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Arduino code to read data from a simple sound sensor, then augment and format as JSON to send via serial connection.
Example of sending sound level data to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
*/
// Constants used for the ConnectTheDots project
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// Constants used to add self-describing fields to the data before sending to Azure
// Disp value will be the label for the curve on the chart
// GUID ensures all the data from this sensor appears on the same chart
// You can use Visual Studio to create DeviceGUID and copy it here. In VS, On the Tools menu, click Create GUID. The Create GUID
// tool appears with a GUID in the Result box. Click Copy, and paste below.
//
char GUID[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
char Org[] = "My organization";
char Disp[] = "Arduino + Sound sensor";
char Locn[] = "here";
char Measure[] = "Sound level";
char Units[] = "units";
char buffer[300];
char dtostrfbuffer[15];
const int SOUND_PIN = A2;
const int SAMPLE_FREQUENCY = 250;
int high = 0;
unsigned long hightime = millis();
int sequenceNumber = 0;
void setup() {
//pinMode(SOUND_PIN,INPUT);
Serial.begin(9600);
}
void loop() {
int value = analogRead(SOUND_PIN);
//int value = digitalRead(SOUND_PIN);
if (high < value) {
high = value;
}
if (millis() - hightime >= SAMPLE_FREQUENCY) {
// print string for temperature, separated by line for ease of reading
// sent as one Serial.Print to reduce risk of serial errors
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(high,8,2,dtostrfbuffer));
strcat(buffer,"}");
Serial.println(buffer);
delay(100); //just here to slow down the output so it is easier to read
high = 0;
hightime = millis();
}
}
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Temperature/DS18B20/DS18B20.ino
================================================
/*
Copyright (c) Neal Analytics, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Based upon code from Bildr.org at http://bildr.org/2011/07/ds18b20-arduino/ , which is copyright (c) 2010 bildr community, and licensed under the MIT license.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Arduino code to read data from a DS18B20 temperature sensor, then augment and format as JSON to send via serial connection.
Example of sending temperature data to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
*/
#include
// Constants used to add self-describing fields to the data before sending to Azure
// Disp value will be the label for the curve on the chart
// GUID ensures all the data from this sensor appears on the same chart
// You can use Visual Studio to create DeviceGUID and copy it here. In VS, On the Tools menu, click Create GUID. The Create GUID
// tool appears with a GUID in the Result box. Click Copy, and paste below.
//
char GUID[] = "tttttttt-tttt-tttt-tttt-tttttttttttt";
char Org[] = "Your organization";
char Disp[] = "Arduino DUE + DS18B20";
char Locn[] = "Here";
char Measure[] = "Temperature";
char Units[] = "F";
char buffer[300];
char dtostrfbuffer[15];
int DS18S20_Pin = 2; //DS18S20 Signal pin on digital 2
//Temperature chip i/o
OneWire ds(DS18S20_Pin); // on digital pin 2
void setup(void) {
Serial.begin(9600);
}
void loop(void)
{
float temperature = getTemp();
// print string for temperature, separated by line for ease of reading
// sent as one Serial.Print to reduce risk of serial errors
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(temperature,8,2,dtostrfbuffer));
strcat(buffer,"}");
Serial.println(buffer);
delay(1000); //just here to slow down the output so it is easier to read
}
float getTemp(){
//returns the temperature from one DS18S20 in DEG Fahrenheit
byte data[12];
byte addr[8];
if ( !ds.search(addr)) {
//no more sensors on chain, reset search
ds.reset_search();
return -1000;
}
if ( OneWire::crc8( addr, 7) != addr[7]) {
Serial.println("CRC is not valid!");
return -1000;
}
if ( addr[0] == 0x10 ) {
//Sensor is a DS18S20
}
else if (addr[0] == 0x28){
//Sensor is a DS18BS20
}
else
{
Serial.print("Device is not recognized");
return -1000;
}
ds.reset();
ds.select(addr);
ds.write(0x44,1); // start conversion, with parasite power on at the end
byte present = ds.reset();
ds.select(addr);
ds.write(0xBE); // Read Scratchpad
for (int i = 0; i < 9; i++) { // we need 9 bytes
data[i] = ds.read();
}
ds.reset_search();
byte MSB = data[1];
byte LSB = data[0];
float tempRead = ((MSB << 8) | LSB); //using two's compliment
float TemperatureSum = tempRead / 16;
float Ftemp = (TemperatureSum * 9.0)/ 5.0 + 32.0; //convert to Fahrenheit
return Ftemp;
}
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Temperature/DS18B20/Libraries.md
================================================
This example relies on the OneWire library. This is included in the standard Arduino IDE, but updates can be downloaded from the link in the Arduino playground site [here](http://playground.arduino.cc/Learning/OneWire). Import the library into your Arduino sketch before compiling.
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Weather/WeatherShieldJson/Arduino-and-Weather-Shield-setup.md
================================================
# Setup Arduino and Weather Shield #
This document explains how to setup an Arduino Uno R3 with a Sparkfun weather shield for monitoring temperature and humidity in the Connect The Dots getting started project. It assumes that you have the right tools installed and that you have cloned or downloaded the ConnectTheDots.io project on your machine.

##Hardware requirements ##
See [Hardware](Hardware.md) file in this folder for the required hardware.
##Prepare the Arduino Uno R3 ##
* Connect the Arduino Uno R3 directly to your computer with the USB cable
* Install and run the Arduino IDE (we recommend the current official release, with the Windows Installer) which you can find on the [Arduino.cc](http://arduino.cc/en/Main/Software) website.
* If necessary, install the Windows device drivers for the Arduino on your computer, following the instructions [here](http://arduino.cc/en/Guide/Windows#toc4).
* Download the Weather Shield libraries from [here](https://dlnmh9ip6v2uc.cloudfront.net/assets/b/5/9/7/f/52cd8187ce395fa7158b456c.zip) (as per the instruction in the [Weather Shield Hookup guide](https://learn.sparkfun.com/tutorials/weather-shield-hookup-guide)).
* Extract all files from the ZIP file to a temporary location, then import the two folders (HTU21D_Humidity and MPL3115A2_Pressure) in the Arduino IDE by clicking *Sketch > Include Library > Manage Libraries...* and selecting the folder (once for each folder).
* In the Arduino IDE open `Devices/GatewayConnectedDevices/Arduino UNO/Weather/WeatherShieldJson/WeathershieldJson.ino`. (It is modified from the original Sparkfun sample to send data in JSON format as well as additional self-describing fields.) Edit the code to set your own values for the first four constants (GUID - Location) - for example, DisplayName will contain the label for the sensor on the website. (If you send multiple variables (e.g. temp and humidity), you need to reproduce the UnitOfMeasure and the MeasureName fields. See the Serial print statements in WeatherShield INO file for a more detailed implementation example).
char GUID[] = "81E79059-A393-4797-8A7E-526C3EF9D64B";
char Organization[] = "Me";
char DisplayName[] = "Weather Shield 01";
char Location[] = "My office";
char MeasureName[] = "temperature";
char UnitOfMeasure[] = "F";
char MeasureName2[] = "humidity";
char UnitOfMeasure2[] = "%";
char MeasureName3[] = "light";
char UnitOfMeasure3[] = "lumen";
* Compile and upload the Weather Shield sketch to the Arduino: *Sketch > Upload* or Ctrl-U.
* If the upload fails, make sure you have the correct board selected on the correct COM port through `Tools > Port` menu.
* Open the serial monitor (Shift-Ctrl-M). You should now see temperature and other data on the serial monitor. Note the format of the data being sent out the serial port of the Arduino – in the next section you’ll see the same data being read from the serial port of the Raspberry Pi:

* Disconnect the Arduino from your computer
##Connect the Arduino board to the gateway ##
* Plug Arduino’s USB cable into one of the Raspberry Pi USB ports:

Now you're ready to get your [Raspberry Pi setup](../../../../Gateways/GatewayService/RaspberryPi-Gateway-setup.md).
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Weather/WeatherShieldJson/Hardware.md
================================================
To set up an Arduino UNO with a weather shield to monitor temperature, humidity, and a host of other things you will need to procure:
1. [Arduino Uno R3](http://arduino.cc/en/Main/ArduinoBoardUno)
1. [Sparkfun Weather Shield](https://www.sparkfun.com/products/12081) for Arduino
1. 4 stackable headers for the Arduino UNO R3 (1 @ 10 pin, 2 @ 8 pin, 1 @ 6 pin), as specified on the Arduino or Sparkfun sites.
1. USB A to B cable to connect the Arduino to the Raspberry Pi. Make sure it is USB 2.0 not 3.0, as the 3.0 connector does not fit the Arduino.
You will need to solder the headers to the Weather Shield (or have someone do that for you - 10 minute job, max.)
Note: Only the models above have been tested. The Weather Shield sample code from Sparkfun, for example, may need to be modified before it will work reliably on Arduino Due or Arduino Uno R2.
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Weather/WeatherShieldJson/Libraries.md
================================================
The Weather Shield example relies on the HTU21D and MPL3115A2 libraries. Download the libraries from the link in the Weather Shield Hookup Guide on Sparkfun.com [here](https://learn.sparkfun.com/tutorials/weather-shield-hookup-guide), and then install them into your Documents/Arduino folder. Import the libraries into your Arduino sketch before compiling.
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Weather/WeatherShieldJson/SCPRPI.cmd
================================================
@echo off
set puttydir="C:\Software\PuTTY\"
set prjdir=..\
rem set rpi_ip=raspberrypi
set rpi_ip=10.121.204.248
set rpi_usr=pi
set rpi_pw=raspberry
echo Copying Gateway and logging files
rem %puttydir%pscp -pw %rpi_pw% %prjdir%WensnPiVS01\WensnPiVS01.py %rpi_usr%@%rpi_ip%:RaspberryPiGateway/
%puttydir%pscp -pw %rpi_pw% WeatherShieldJson.ino %rpi_usr%@%rpi_ip%:GatewayService/
================================================
FILE: Devices/GatewayConnectedDevices/Arduino UNO/Weather/WeatherShieldJson/WeatherShieldJson.ino
================================================
/*
Weather Shield code for http://connectthedots.msopentech.com end-to-end example of sending data to Microsoft Azure
By: Microsoft Open Technologies, Inc.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Based upon Nathan Seidle's Weather Shield Example, itself based upon MIke Grusin's USB Weather Board code, as stated below.
Modifications by Microsoft Open Technologies, Inc include adding self-describing fields in each output string, and changing
output format to JSON string as expected by the CTD website.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Original header follows.
Weather Shield Example
By: Nathan Seidle
SparkFun Electronics
Date: November 16th, 2013
License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license).
Much of this is based on Mike Grusin's USB Weather Board code: https://www.sparkfun.com/products/10586
This code reads all the various sensors (wind speed, direction, rain gauge, humidty, pressure, light, batt_lvl)
and reports it over the serial comm port. This can be easily routed to an datalogger (such as OpenLog) or
a wireless transmitter (such as Electric Imp).
Measurements are reported once a second but windspeed and rain gauge are tied to interrupts that are
calcualted at each report.
This example code assumes the GPS module is not used.
*/
#include //I2C needed for sensors
#include "MPL3115A2.h" //Pressure sensor
#include "HTU21D.h" //Humidity sensor
#define MYSERIAL Serial
// For Arduino Due Native Port:
//#define MYSERIAL SerialUSB
MPL3115A2 myPressure; //Create an instance of the pressure sensor
HTU21D myHumidity; //Create an instance of the humidity sensor
// Constants used for the ConnectTheDots project
// Disp value will be the label for the curve on the chart
// GUID ensures all the data from this sensor appears on the same chart
// You can use Visual Studio to create DeviceGUID and copy it here. In VS, On the Tools menu, click Create GUID. The Create GUID
// tool appears with a GUID in the Result box. Click Copy, and paste below.
//
char GUID1[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
char GUID2[] = "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy";
char GUID3[] = "zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz";
char Org[] = "My organization";
char Disp[] = "Arduino + WS dev 01";
char Locn[] = "here";
char Measure1[] = "temperature";
char Units1[] = "F";
char Measure2[] = "humidity";
char Units2[] = "%";
char Measure3[] = "light";
char Units3[] = "lumen";
char buffer[300];
char dtostrfbuffer[15];
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//Hardware pin definitions
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
// digital I/O pins
const byte WSPEED = 3;
const byte RAIN = 2;
const byte STAT1 = 7;
const byte STAT2 = 8;
// analog I/O pins
const byte REFERENCE_3V3 = A3;
const byte LIGHT = A1;
const byte BATT = A2;
const byte WDIR = A0;
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//Global Variables
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
long lastSecond; //The millis counter to see when a second rolls by
byte seconds; //When it hits 60, increase the current minute
byte seconds_2m; //Keeps track of the "wind speed/dir avg" over last 2 minutes array of data
byte minutes; //Keeps track of where we are in various arrays of data
byte minutes_10m; //Keeps track of where we are in wind gust/dir over last 10 minutes array of data
long lastWindCheck = 0;
volatile long lastWindIRQ = 0;
volatile byte windClicks = 0;
//We need to keep track of the following variables:
//Wind speed/dir each update (no storage)
//Wind gust/dir over the day (no storage)
//Wind speed/dir, avg over 2 minutes (store 1 per second)
//Wind gust/dir over last 10 minutes (store 1 per minute)
//Rain over the past hour (store 1 per minute)
//Total rain over date (store one per day)
byte windspdavg[120]; //120 bytes to keep track of 2 minute average
int winddiravg[120]; //120 ints to keep track of 2 minute average
float windgust_10m[10]; //10 floats to keep track of 10 minute max
int windgustdirection_10m[10]; //10 ints to keep track of 10 minute max
volatile float rainHour[60]; //60 floating numbers to keep track of 60 minutes of rain
//These are all the weather values that wunderground expects:
int winddir = 0; // [0-360 instantaneous wind direction]
float windspeedmph = 0; // [mph instantaneous wind speed]
float windgustmph = 0; // [mph current wind gust, using software specific time period]
int windgustdir = 0; // [0-360 using software specific time period]
float windspdmph_avg2m = 0; // [mph 2 minute average wind speed mph]
int winddir_avg2m = 0; // [0-360 2 minute average wind direction]
float windgustmph_10m = 0; // [mph past 10 minutes wind gust mph ]
int windgustdir_10m = 0; // [0-360 past 10 minutes wind gust direction]
float humidity = 0; // [%]
float tempf = 0; // [temperature F]
float temp_h = 0; // [temperature from humidity sensor, in Celsius ]
float rainin = 0; // [rain inches over the past hour)] -- the accumulated rainfall in the past 60 min
volatile float dailyrainin = 0; // [rain inches so far today in local time]
//float baromin = 30.03;// [barom in] - It's hard to calculate baromin locally, do this in the agent
float pressure = 0;
//float dewptf; // [dewpoint F] - It's hard to calculate dewpoint locally, do this in the agent
float batt_lvl = 11.8; //[analog value from 0 to 1023]
float light_lvl = 455; //[analog value from 0 to 1023]
// volatiles are subject to modification by IRQs
volatile unsigned long raintime, rainlast, raininterval, rain;
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//Interrupt routines (these are called by the hardware interrupts, not by the main code)
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
void rainIRQ()
// Count rain gauge bucket tips as they occur
// Activated by the magnet and reed switch in the rain gauge, attached to input D2
{
raintime = millis(); // grab current time
raininterval = raintime - rainlast; // calculate interval between this and last event
if (raininterval > 10) // ignore switch-bounce glitches less than 10mS after initial edge
{
dailyrainin += 0.011; //Each dump is 0.011" of water
rainHour[minutes] += 0.011; //Increase this minute's amount of rain
rainlast = raintime; // set up for next event
}
}
void wspeedIRQ()
// Activated by the magnet in the anemometer (2 ticks per rotation), attached to input D3
{
if (millis() - lastWindIRQ > 10) // Ignore switch-bounce glitches less than 10ms (142MPH max reading) after the reed switch closes
{
lastWindIRQ = millis(); //Grab the current time
windClicks++; //There is 1.492MPH for each click per second.
}
}
void setup()
{
MYSERIAL.begin(9600);
//Serial.println("Weather Shield Example");
pinMode(STAT1, OUTPUT); //Status LED Blue
pinMode(STAT2, OUTPUT); //Status LED Green
pinMode(WSPEED, INPUT_PULLUP); // input from wind meters windspeed sensor
pinMode(RAIN, INPUT_PULLUP); // input from wind meters rain gauge sensor
pinMode(REFERENCE_3V3, INPUT);
pinMode(LIGHT, INPUT);
//Configure the pressure sensor
myPressure.begin(); // Get sensor online
myPressure.setModeBarometer(); // Measure pressure in Pascals from 20 to 110 kPa
myPressure.setOversampleRate(7); // Set Oversample to the recommended 128
myPressure.enableEventFlags(); // Enable all three pressure and temp event flags
//Configure the humidity sensor
myHumidity.begin();
seconds = 0;
lastSecond = millis();
// attach external interrupt pins to IRQ functions
attachInterrupt(0, rainIRQ, FALLING);
attachInterrupt(1, wspeedIRQ, FALLING);
// turn on interrupts
interrupts();
//Serial.println("Weather Shield online!");
}
void loop()
{
//Keep track of which minute it is
if(millis() - lastSecond >= 1000)
{
digitalWrite(STAT1, HIGH); //Blink stat LED
lastSecond += 1000;
//Take a speed and direction reading every second for 2 minute average
if(++seconds_2m > 119) seconds_2m = 0;
//Calc the wind speed and direction every second for 120 second to get 2 minute average
float currentSpeed = get_wind_speed();
//float currentSpeed = random(5); //For testing
int currentDirection = get_wind_direction();
windspdavg[seconds_2m] = (int)currentSpeed;
winddiravg[seconds_2m] = currentDirection;
//if(seconds_2m % 10 == 0) displayArrays(); //For testing
//Check to see if this is a gust for the minute
if(currentSpeed > windgust_10m[minutes_10m])
{
windgust_10m[minutes_10m] = currentSpeed;
windgustdirection_10m[minutes_10m] = currentDirection;
}
//Check to see if this is a gust for the day
if(currentSpeed > windgustmph)
{
windgustmph = currentSpeed;
windgustdir = currentDirection;
}
if(++seconds > 59)
{
seconds = 0;
if(++minutes > 59) minutes = 0;
if(++minutes_10m > 9) minutes_10m = 0;
rainHour[minutes] = 0; //Zero out this minute's rainfall amount
windgust_10m[minutes_10m] = 0; //Zero out this minute's gust
}
//Report all readings every second
printWeather();
digitalWrite(STAT1, LOW); //Turn off stat LED
}
delay(100);
}
//Calculates each of the variables that wunderground is expecting
void calcWeather()
{
//Calc winddir
winddir = get_wind_direction();
//Calc windspeed
windspeedmph = get_wind_speed();
//Calc windgustmph
//Calc windgustdir
//Report the largest windgust today
windgustmph = 0;
windgustdir = 0;
//Calc windspdmph_avg2m
float temp = 0;
for(int i = 0 ; i < 120 ; i++)
temp += windspdavg[i];
temp /= 120.0;
windspdmph_avg2m = temp;
//Calc winddir_avg2m
temp = 0; //Can't use winddir_avg2m because it's an int
for(int i = 0 ; i < 120 ; i++)
temp += winddiravg[i];
temp /= 120;
winddir_avg2m = temp;
//Calc windgustmph_10m
//Calc windgustdir_10m
//Find the largest windgust in the last 10 minutes
windgustmph_10m = 0;
windgustdir_10m = 0;
//Step through the 10 minutes
for(int i = 0; i < 10 ; i++)
{
if(windgust_10m[i] > windgustmph_10m)
{
windgustmph_10m = windgust_10m[i];
windgustdir_10m = windgustdirection_10m[i];
}
}
//Calc humidity
humidity = myHumidity.readHumidity();
temp_h = myHumidity.readTemperature();
//Serial.print(" TempH:");
//Serial.print(temp_h, 2);
//Calc tempf from pressure sensor
tempf = myPressure.readTempF();
//Serial.print(" TempP:");
//Serial.print(tempf, 2);
//Total rainfall for the day is calculated within the interrupt
//Calculate amount of rainfall for the last 60 minutes
rainin = 0;
for(int i = 0 ; i < 60 ; i++)
rainin += rainHour[i];
//Calc pressure
pressure = myPressure.readPressure();
//Calc dewptf
//Calc light level
light_lvl = get_light_level();
//Calc battery level
batt_lvl = get_battery_level();
}
//Returns the voltage of the light sensor based on the 3.3V rail
//This allows us to ignore what VCC might be (an Arduino plugged into USB has VCC of 4.5 to 5.2V)
float get_light_level()
{
float operatingVoltage = analogRead(REFERENCE_3V3);
float lightSensor = analogRead(LIGHT);
operatingVoltage = 3.3 / operatingVoltage; //The reference voltage is 3.3V
lightSensor = operatingVoltage * lightSensor;
return(lightSensor);
}
//Returns the voltage of the raw pin based on the 3.3V rail
//This allows us to ignore what VCC might be (an Arduino plugged into USB has VCC of 4.5 to 5.2V)
//Battery level is connected to the RAW pin on Arduino and is fed through two 5% resistors:
//3.9K on the high side (R1), and 1K on the low side (R2)
float get_battery_level()
{
float operatingVoltage = analogRead(REFERENCE_3V3);
float rawVoltage = analogRead(BATT);
operatingVoltage = 3.30 / operatingVoltage; //The reference voltage is 3.3V
rawVoltage = operatingVoltage * rawVoltage; //Convert the 0 to 1023 int to actual voltage on BATT pin
rawVoltage *= 4.90; //(3.9k+1k)/1k - multiple BATT voltage by the voltage divider to get actual system voltage
return(rawVoltage);
}
//Returns the instataneous wind speed
float get_wind_speed()
{
float deltaTime = millis() - lastWindCheck; //750ms
deltaTime /= 1000.0; //Covert to seconds
float windSpeed = (float)windClicks / deltaTime; //3 / 0.750s = 4
windClicks = 0; //Reset and start watching for new wind
lastWindCheck = millis();
windSpeed *= 1.492; //4 * 1.492 = 5.968MPH
/* Serial.println();
Serial.print("Windspeed:");
Serial.println(windSpeed);*/
return(windSpeed);
}
//Read the wind direction sensor, return heading in degrees
int get_wind_direction()
{
unsigned int adc;
adc = analogRead(WDIR); // get the current reading from the sensor
// The following table is ADC readings for the wind direction sensor output, sorted from low to high.
// Each threshold is the midpoint between adjacent headings. The output is degrees for that ADC reading.
// Note that these are not in compass degree order! See Weather Meters datasheet for more information.
if (adc < 380) return (113);
if (adc < 393) return (68);
if (adc < 414) return (90);
if (adc < 456) return (158);
if (adc < 508) return (135);
if (adc < 551) return (203);
if (adc < 615) return (180);
if (adc < 680) return (23);
if (adc < 746) return (45);
if (adc < 801) return (248);
if (adc < 833) return (225);
if (adc < 878) return (338);
if (adc < 913) return (0);
if (adc < 940) return (293);
if (adc < 967) return (315);
if (adc < 990) return (270);
return (-1); // error, disconnected?
}
//Prints the various variables directly to the port
//I don't like the way this function is written but Arduino doesn't support floats under sprintf
int sequenceNumber =0;
void printWeather()
{
calcWeather(); //Go calc all the various sensors
// print string for temperature, separated by line for ease of reading
// sent as one Serial.Print to reduce risk of serial errors
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID1);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure1);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units1);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(tempf,8,2,dtostrfbuffer));
strcat(buffer,"}");
MYSERIAL.println(buffer);
// print string for humidity, separated by line for ease of reading
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID2);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure2);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units2);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(humidity,6,2,dtostrfbuffer));
strcat(buffer,"}");
MYSERIAL.println(buffer);
// print string for light, separated by line for ease of reading
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID3);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure3);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units3);
strcat(buffer,"\",\"value\":");
strcat(buffer,dtostrf(light_lvl,6,2,dtostrfbuffer));
strcat(buffer,"}");
MYSERIAL.println(buffer);
/*
MYSERIAL.print("{");
MYSERIAL.print("\"guid\":");
MYSERIAL.print("\"");
MYSERIAL.print(GUID1);
MYSERIAL.print("\"");
MYSERIAL.print(",\"organization\":");
MYSERIAL.print("\"");
MYSERIAL.print(Org);
MYSERIAL.print("\"");
MYSERIAL.print(",\"displayname\":");
MYSERIAL.print("\"");
MYSERIAL.print(Disp);
MYSERIAL.print("\"");
MYSERIAL.print(",\"location\":");
MYSERIAL.print("\"");
MYSERIAL.print(Locn);
MYSERIAL.print("\"");
MYSERIAL.print(",\"measurename\":");
MYSERIAL.print("\"");
MYSERIAL.print(Measure1);
MYSERIAL.print("\"");
MYSERIAL.print(",\"unitofmeasure\":");
MYSERIAL.print("\"");
MYSERIAL.print(Units1);
MYSERIAL.print("\"");
MYSERIAL.print(",\"value\":");
MYSERIAL.print(tempf, 1);
MYSERIAL.println("}");
// print string for humidity
MYSERIAL.print("{");
MYSERIAL.print("\"guid\":");
MYSERIAL.print("\"");
MYSERIAL.print(GUID2);
MYSERIAL.print("\"");
MYSERIAL.print(",\"organization\":");
MYSERIAL.print("\"");
MYSERIAL.print(Org);
MYSERIAL.print("\"");
MYSERIAL.print(",\"displayname\":");
MYSERIAL.print("\"");
MYSERIAL.print(Disp);
MYSERIAL.print("\"");
MYSERIAL.print(",\"location\":");
MYSERIAL.print("\"");
MYSERIAL.print(Locn);
MYSERIAL.print("\"");
MYSERIAL.print(",\"measurename\":");
MYSERIAL.print("\"");
MYSERIAL.print(Measure2);
MYSERIAL.print("\"");
MYSERIAL.print(",\"unitofmeasure\":");
MYSERIAL.print("\"");
MYSERIAL.print(Units2);
MYSERIAL.print("\"");
MYSERIAL.print(",\"value\":");
MYSERIAL.print(humidity, 1);
MYSERIAL.println("}");
// print string for light
MYSERIAL.print("{");
MYSERIAL.print("\"guid\":");
MYSERIAL.print("\"");
MYSERIAL.print(GUID3);
MYSERIAL.print("\"");
MYSERIAL.print(",\"organization\":");
MYSERIAL.print("\"");
MYSERIAL.print(Org);
MYSERIAL.print("\"");
MYSERIAL.print(",\"displayname\":");
MYSERIAL.print("\"");
MYSERIAL.print(Disp);
MYSERIAL.print("\"");
MYSERIAL.print(",\"location\":");
MYSERIAL.print("\"");
MYSERIAL.print(Locn);
MYSERIAL.print("\"");
MYSERIAL.print(",\"measurename\":");
MYSERIAL.print("\"");
MYSERIAL.print(Measure3);
MYSERIAL.print("\"");
MYSERIAL.print(",\"unitofmeasure\":");
MYSERIAL.print("\"");
MYSERIAL.print(Units3);
MYSERIAL.print("\"");
MYSERIAL.print(",\"value\":");
MYSERIAL.print(light_lvl, 2);
MYSERIAL.println("}");
*/
}
================================================
FILE: Devices/GatewayConnectedDevices/Arduino Zero/Weather/SeeedGroveJson/SeeedGroveJson.ino
================================================
/*
Arduino code using Seeed Grove Shield for http://connectthedots.io end-to-end example of sending data to Microsoft Azure
By: Microsoft.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Copyright (c) Microsoft. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Based upon Tony DiCola and Adafruit's DHT_Unified_Sensor example
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Original header follows
*/
// DHT Temperature & Humidity Sensor
// Unified Sensor Library Example
// Written by Tony DiCola for Adafruit Industries
// Released under an MIT license.
// Depends on the following Arduino libraries:
// - Adafruit Unified Sensor Library: https://github.com/adafruit/Adafruit_Sensor
// - DHT Sensor Library: https://github.com/adafruit/DHT-sensor-library
#include
#include
#include
#define DHTPIN A0 // Pin which is connected to the DHT sensor.
#define LIGHTPIN A1 // Pin which is connected to the lumen sensor.
// Uncomment the type of sensor in use:
#define DHTTYPE DHT11 // DHT 11
//#define DHTTYPE DHT22 // DHT 22 (AM2302)
//#define DHTTYPE DHT21 // DHT 21 (AM2301)
DHT_Unified dht(DHTPIN, DHTTYPE);
uint32_t delayMS;
// Constants used for the ConnectTheDots project
// Disp value will be the label for the curve on the chart
// GUID ensures all the data from this sensor appears on the same chart
// You can use Visual Studio to create DeviceGUID and copy it here. In VS, On the Tools menu, click Create GUID. The Create GUID
// tool appears with a GUID in the Result box. Click Copy, and paste below.
//
char GUID1[] = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
char GUID2[] = "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy";
char GUID3[] = "zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz";
char Org[] = "My organization";
char Disp[] = "Arduino + Seeed Grove 01";
char Locn[] = "here";
char Measure1[] = "temperature";
char Units1[] = "F";
char Measure2[] = "humidity";
char Units2[] = "%";
char Measure3[] = "light";
char Units3[] = "lumen";
char buffer[300];
char convbuffer[15];
// Variables for values from sensors
int humidity = 0; // [%]
int tempf = 0; // [temperature F]
int tempc = 0; // [temperature in Celsius ]
// Using int above on Zero, to use float see this post to implement dtostrf: http://forum.arduino.cc/index.php?topic=368720.0
int light_lvl = 0; //[analog value from 0 to 1023]
void setup() {
Serial.begin(9600);
// Initialize device.
dht.begin();
sensor_t sensor;
dht.temperature().getSensor(&sensor);
dht.humidity().getSensor(&sensor);
// Set delay between sensor readings based on sensor details.
delayMS = sensor.min_delay / 1000;
}
void loop() {
// Delay between measurements.
delay(delayMS);
// Get temperature event and save its value.
sensors_event_t event;
dht.temperature().getEvent(&event);
if (isnan(event.temperature)) {
Serial.println("Error reading temperature!");
}
else {
tempc = event.temperature;
tempf = tempc * 9 / 5 + 32;
}
// Get humidity event and save its value.
dht.humidity().getEvent(&event);
if (isnan(event.relative_humidity)) {
Serial.println("Error reading humidity!");
}
else {
humidity = event.relative_humidity;
}
// Get light level
light_lvl = analogRead(LIGHTPIN);
//Format to JSON
printWeather();
}
void printWeather()
{
// print string for temperature, separated by line for ease of reading
// sent as one Serial.Print to reduce risk of serial errors
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID1);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure1);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units1);
strcat(buffer,"\",\"value\":");
sprintf(convbuffer, "%d", tempf);
strcat(buffer,convbuffer);
// On AVRs like the Uno the above can be done as:
//strcat(buffer,dtostrf(tempf,8,2,convbuffer));
strcat(buffer,"}");
Serial.println(buffer);
// print string for humidity, separated by line for ease of reading
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID2);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure2);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units2);
strcat(buffer,"\",\"value\":");
sprintf(convbuffer, "%d", humidity);
strcat(buffer,convbuffer);
strcat(buffer,"}");
Serial.println(buffer);
// print string for light, separated by line for ease of reading
memset(buffer,'\0',sizeof(buffer));
strcat(buffer,"{");
strcat(buffer,"\"guid\":\"");
strcat(buffer,GUID3);
strcat(buffer,"\",\"organization\":\"");
strcat(buffer,Org);
strcat(buffer,"\",\"displayname\":\"");
strcat(buffer,Disp);
strcat(buffer,"\",\"location\":\"");
strcat(buffer,Locn);
strcat(buffer,"\",\"measurename\":\"");
strcat(buffer,Measure3);
strcat(buffer,"\",\"unitofmeasure\":\"");
strcat(buffer,Units3);
strcat(buffer,"\",\"value\":");
sprintf(convbuffer, "%d", light_lvl);
strcat(buffer,convbuffer);
strcat(buffer,"}");
Serial.println(buffer);
}
================================================
FILE: Devices/GatewayConnectedDevices/Arduino Zero/Weather/SeeedGroveJson/readme.md
================================================
# Setup Arduino and Weather Shield #
This document explains how to setup an Arduino Zero with a Seeed Gove shield for monitoring temperature, humidity and light level in the Connect The Dots getting started project. It assumes that you have the right tools installed and that you have cloned or downloaded the ConnectTheDots.io project on your machine.

##Hardware requirements ##
You need an [Arduino Zero](https://www.arduino.cc/en/Main/ArduinoBoardZero), a [Seeed Grove shield](http://www.seeedstudio.com/wiki/Grove_-_Base_Shield), a [Grove Light Sensor](http://www.seeedstudio.com/wiki/Grove_-_Light_Sensor), and a [Grove Temperature sensor](http://www.seeedstudio.com/wiki/Grove_-_Temperature_and_Humidity_Sensor).
This sample should work unmodified with an [Arduino Uno](https://www.arduino.cc/en/Main/ArduinoBoardUno). There are comments in the code showing some changes you can make to use floating point rather than int with the Uno owing to some library differences.
##Prepare the Arduino Uno R3 ##
* Connect the Arduino Zero directly to your computer with the USB cable
* Install and run the Arduino IDE (we recommend the current official release, with the Windows Installer) which you can find on the [Arduino.cc](http://arduino.cc/en/Main/Software) website.
* If necessary, install the Windows device drivers for the Arduino on your computer, following the instructions [here](http://arduino.cc/en/Guide/Windows#toc4).
* Get the necessary libraries, in the Arduino IDE go to the menu Sketch, Libraries, Manage Libraries. Search for and install the Adafruit libraries: DHT sensor library, DHT Unified, and Unified Sensor.
* In the Arduino IDE open `Devices/GatewayConnectedDevices/Arduino Zero/Weather/SeeedGroveJson/SeeedGroveJson.ino`. (It is modified from the original Adafruit sample to send data in JSON format as well as additional self-describing fields.) Edit the code to set your own values for the first four constants (GUID - Location) - for example, DisplayName will contain the label for the sensor on the website. (If you send multiple variables (e.g. temp and humidity), you need to reproduce the UnitOfMeasure and the MeasureName fields.
char GUID[] = "81E79059-A393-4797-8A7E-526C3EF9D64B";
char Organization[] = "Me";
char DisplayName[] = "Arduino + Seeed Grove 01";
char Location[] = "My office";
char MeasureName[] = "temperature";
char UnitOfMeasure[] = "F";
char MeasureName2[] = "humidity";
char UnitOfMeasure2[] = "%";
char MeasureName3[] = "light";
char UnitOfMeasure3[] = "lumen";
* Compile and upload the sketch to the Arduino: *Sketch > Upload* or Ctrl-U.
* If the upload fails, make sure you have the correct board selected on the correct COM port through `Tools > Port` menu.
* Open the serial monitor (Shift-Ctrl-M). You should now see temperature and other data on the serial monitor. Note the format of the data being sent out the serial port of the Arduino – in the next section you’ll see the same data being read from the serial port of the Raspberry Pi:

* Disconnect the Arduino from your computer
##Connect the Arduino board to the gateway ##
* Plug Arduino’s USB cable into one of the Raspberry Pi USB ports.
Now you're ready to get your [Raspberry Pi setup](../../../../Gateways/GatewayService/RaspberryPi-Gateway-setup.md).
================================================
FILE: Devices/GatewayConnectedDevices/BLEMoisture/BLEMoistureSensor.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read data from a Decagon 10HS moisture sensor connected to a RedBear BLE Nano micro controller, then augment and format as JSON to send via
socket connection to a gateway. Example of sending moisture to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
Real time output viewable at http://connectthedots.msopentech.com .
'''
# code based on https://github.com/switchdoclabs/iBeacon-Scanner-
DEBUG = False
import os
import sys
import struct
import bluetooth._bluetooth as bluez
LE_META_EVENT = 0x3e
LE_PUBLIC_ADDRESS=0x00
LE_RANDOM_ADDRESS=0x01
LE_SET_SCAN_PARAMETERS_CP_SIZE=7
OGF_LE_CTL=0x08
OCF_LE_SET_SCAN_PARAMETERS=0x000B
OCF_LE_SET_SCAN_ENABLE=0x000C
OCF_LE_CREATE_CONN=0x000D
LE_ROLE_MASTER = 0x00
LE_ROLE_SLAVE = 0x01
# these are actually sub-events of LE_META_EVENT
EVT_LE_CONN_COMPLETE=0x01
EVT_LE_ADVERTISING_REPORT=0x02
EVT_LE_CONN_UPDATE_COMPLETE=0x03
EVT_LE_READ_REMOTE_USED_FEATURES_COMPLETE=0x04
# Advertisement event types
ADV_IND=0x00
ADV_DIRECT_IND=0x01
ADV_SCAN_IND=0x02
ADV_NONCONN_IND=0x03
ADV_SCAN_RSP=0x04
def eventHandler(macAddress, value):
f(macAddress,value)
class BLEMoistureSensor:
sock = None
callback = None
dev_id = 0
def __init__(self) :
try:
self.sock = bluez.hci_open_dev(self.dev_id)
old_filter = self.sock.getsockopt( bluez.SOL_HCI, bluez.HCI_FILTER, 14)
enable = 1
cmd_pkt = struct.pack("
2. Import the code in main.cpp
3. Import the BLE\_API and nRF51822 libraries
4. Ensure device target is set to BLE nano
5. Compile and download the generated .hex file to the BLE nano device
Device Usage
------------
Since the data is sent over the advertising packet, no device paring is required. Simply turn the device on.
================================================
FILE: Devices/GatewayConnectedDevices/BLEMoisture/RedBear_BLE_nano/main.cpp
================================================
/* mbed Microcontroller Library
* Copyright (c) 2006-2013 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "mbed.h"
#include "iBeaconService.h"
/**
* For this demo application, populate the beacon advertisement payload
* with 2 AD structures: FLAG and MSD (manufacturer specific data).
*
* Reference:
* Bluetooth Core Specification 4.0 (Vol. 3), Part C, Section 11, 18
*/
const float cAdvertisingIntervalSec = 5.0;
const float cLEDStatusDurationSec = .010;
const float cMoistureSensorPowerDurationSec = .020;
const char cShortDeviceName[] = "MSOT_BLE_Demo:";
BLEDevice ble;
DigitalOut led1(LED1);
DigitalOut moistureSensorPower[] = { DigitalOut(P0_9), DigitalOut(P0_10), DigitalOut(P0_11) };
AnalogIn moistureSensorInput(P0_4);
// attempt to get more current by tying 3 outputs together and setting high output drive/low disable (GPIO_PIN_CNF_DRIVE_D0H1)
void nrf_gpio_cfg__high_current_output(uint32_t pin_number)
{
NRF_GPIO->PIN_CNF[pin_number] = (GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos)
| (GPIO_PIN_CNF_DRIVE_D0H1 << GPIO_PIN_CNF_DRIVE_Pos)
| (GPIO_PIN_CNF_PULL_Disabled << GPIO_PIN_CNF_PULL_Pos)
| (GPIO_PIN_CNF_INPUT_Disconnect << GPIO_PIN_CNF_INPUT_Pos)
| (GPIO_PIN_CNF_DIR_Output << GPIO_PIN_CNF_DIR_Pos);
}
void MeasureMoisture()
{
// board LED is active low
led1 = 0;
wait(cLEDStatusDurationSec);
led1 = 1;
// turn on moisture sensor and wait for sensor reading to stabilize
for( int index = 0; index < 3; index ++)
{
moistureSensorPower[index] = 1;
}
wait(cMoistureSensorPowerDurationSec);
// read inputs
float moisture = moistureSensorInput;
// turn off moisture sensor
for( int index = 0; index < 3; index ++)
{
moistureSensorPower[index] = 0;
}
// ADC range of 0-1 = 0-3.3V
float mV = moisture * 3.3 * 1000.0;
// convert ADC value into water volume content as documented at http://manuals.decagon.com/Manuals/13508_10HS_Web.pdf
float WVC = (2.97e-9 * pow(mV,3)) - (7.37e-6 * pow(mV, 2)) + (6.69e-3 * mV) -1.92;
// build advertising data
ble.clearAdvertisingPayload();
char buffer[32];
sprintf(buffer, "%s%0.8f", cShortDeviceName, WVC );
ble.accumulateAdvertisingPayload(GapAdvertisingData::MANUFACTURER_SPECIFIC_DATA, (const uint8_t*)buffer, strlen(buffer));
}
void Advertise()
{
ble.startAdvertising();
}
void periodicCallback(void)
{
MeasureMoisture();
Advertise();
}
int main(void)
{
nrf_gpio_cfg__high_current_output( P0_9 );
nrf_gpio_cfg__high_current_output( P0_10 );
nrf_gpio_cfg__high_current_output( P0_11 );
Ticker ticker;
ticker.attach(periodicCallback, cAdvertisingIntervalSec);
ble.init();
ble.setDeviceName((uint8_t*)cShortDeviceName);
ble.setAdvertisingInterval(cAdvertisingIntervalSec * 1000);
// AnnounceDevice();
// Advertise();
while(1)
{
ble.waitForEvent(); // allows or low power operation
}
}
================================================
FILE: Devices/GatewayConnectedDevices/BLEMoisture/SensorAgent.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read a moisture sensor attached to a RedBear BLE Nano, then augment and format as JSON to send via socket connection to a gateway.
Example of sending hydrology data to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
'''
import sys
import socket
import time
import datetime
import re
import csv
import sys
Debug = False
IronPythonPlatform = 'cli'
if sys.platform != IronPythonPlatform:
from BLEMoistureSensor import BLEMoistureSensor
CONNECT_RETRY_INTERVAL = 2
EXCEPTION_THRESHOLD = 3
SEND_INTERVAL = 5
s = None
deviceConfig = {}
sensorAgentConfig = None
def processSensorData(macAddress, value) :
global s
global deviceConfig
global sensorAgentConfig
timeStr = datetime.datetime.utcnow().isoformat()
macAddressRecognized = False
# replace last group of digits with mac address of BLE sensor board
deviceID = sensorAgentConfig["GUID"]
deviceID = deviceID[:24] + macAddress
JSONString = "{"
JSONString += "\"value\": %s" % value
JSONString += ",\"guid\":\"" + deviceID
macAddressKey = macAddress
displayName = ""
if macAddress in deviceConfig:
macAddressRecognized = True
displayName = deviceConfig[macAddressKey]["DisplayName"]
elif '*' in deviceConfig:
macAddressKey = '*'
macAddressRecognized = True
displayName = macAddress
if macAddressRecognized == True:
JSONString += "\",\"organization\":\"" + deviceConfig[macAddressKey]["Organization"]
JSONString += "\",\"displayname\":\"" + displayName
JSONString += "\",\"unitofmeasure\":\"" + deviceConfig[macAddressKey]["UnitsOfMeasure"]
JSONString += "\",\"measurename\":\"" + deviceConfig[macAddressKey]["MeasureName"]
JSONString += "\",\"location\":\"" + deviceConfig[macAddressKey]["Location"]
JSONString += "\",\"timecreated\":\"" + timeStr + "\""
JSONString += "}"
if Debug == True:
print "JSONString=", JSONString
if s != None :
# send JSON string to gateway over socket interface
s.send("<" + JSONString + ">")
def main() :
global s
global deviceConfig
global sensorAgentConfig
# parse SensorAgent configuration CSV file
try:
with open('SensorAgentConfig.csv') as sensorAgentConfigFile:
sensorAgentConfigSource = csv.DictReader(sensorAgentConfigFile)
for row in sensorAgentConfigSource :
sensorAgentConfig = row
# we only care about first row in config file
break;
except:
print "Error reading config file. Please correct before continuing."
sys.exit()
# parse device configuration (BLE device) CSV file
try:
with open('DeviceConfig.csv') as deviceConfigFile:
deviceConfigSource = csv.DictReader(deviceConfigFile)
for row in deviceConfigSource:
deviceConfig[row["MACAddress"]] = row
except:
print "Error reading config file. Please correct before continuing."
sys.exit()
try:
# setup moisture sensor
if sys.platform != 'cli':
moistureSensor = BLEMoistureSensor()
moistureSensor.setSensorDataAvailableEvent(processSensorData)
# setup server socket
if Debug == False :
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print "Socket created."
while True:
try:
s.connect((sensorAgentConfig["Host"], int(sensorAgentConfig["Port"])))
break
except socket.error as msg:
print "Socket connection failed. Error Code : " + str(msg[0]) + " Message " + msg[1]
time.sleep(CONNECT_RETRY_INTERVAL)
print "Socket connection succeeded."
# this will listen forever for advertising events and call
# processSensorData() when data arrives
if sys.platform != IronPythonPlatform:
moistureSensor.Listen()
except KeyboardInterrupt:
print "Continuous polling stopped"
if __name__ == '__main__':
main()
================================================
FILE: Devices/GatewayConnectedDevices/BLEMoisture/SensorAgentConfig.csv
================================================
GUID,Host,Port
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx,127.0.0.1,5002
================================================
FILE: Devices/GatewayConnectedDevices/BLEMoisture/autorun2.sh
================================================
# ---------------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# ---------------------------------------------------------------------------------
#!/bin/bash
#
export GW_HOME=/home/pi/ctdgtwy
echo "$(date) => autorun2.sh: started" >> $GW_HOME/boot_sequence.log
echo "Starting secondary script"
cd $GW_HOME
sudo python $GW_HOME/SensorAgent.py &
echo "$(date) => autorun2.sh: finished" >> $GW_HOME/boot_sequence.log
================================================
FILE: Devices/GatewayConnectedDevices/BLEMoisture/configuration.md
================================================
Get the Bluetooth stack on Raspbian:
sudo apt-get install bluetooth bluez-utils blueman
sudo apt-get install python-bluez
Enable the Bluetooth device
sudo hciconfig hci0 up
If the device ever gets disconnected try:
sudo hciconfig hci0 down
followed by:
sudo hciconfig hci0 up
================================================
FILE: Devices/GatewayConnectedDevices/BLEMoisture/deploy_next.cmd
================================================
@echo off
REM // ---------------------------------------------------------------------------------
REM // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
REM //
REM // The MIT License (MIT)
REM //
REM // Permission is hereby granted, free of charge, to any person obtaining a copy
REM // of this software and associated documentation files (the "Software"), to deal
REM // in the Software without restriction, including without limitation the rights
REM // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
REM // copies of the Software, and to permit persons to whom the Software is
REM // furnished to do so, subject to the following conditions:
REM //
REM // The above copyright notice and this permission notice shall be included in
REM // all copies or substantial portions of the Software.
REM //
REM // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
REM // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
REM // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
REM // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
REM // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
REM // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
REM // THE SOFTWARE.
REM // ---------------------------------------------------------------------------------
set puttydir="C:\software\putty\"
set prjdir=..\..\Gateways\GatewayService\
set scdir=%prjdir%Scripts\ScriptConverter\bin\
set rpi_ip=10.121.204.139
set rpi_usr=pi
set rpi_pw=raspberry
set Configuration=Release
set GW_Home=ctdgtwy
set Staging=%GW_Home%/staging
set PUTTY_CMD=%puttydir%putty %rpi_usr%@%rpi_ip% -pw %rpi_pw%
set PSCP_CMD=%puttydir%pscp -pw %rpi_pw%
echo editing line endings for Pi
%scdir%%Configuration%\ScriptConverter.exe "autorun2.sh"
echo Copying file that starts up python script to read hydrology sensors and format as JSON
%PSCP_CMD% SensorAgent.py %rpi_usr%@%rpi_ip%:%Staging%/
%PSCP_CMD% BLEMoistureSensor.py %rpi_usr%@%rpi_ip%:%Staging%/
%PSCP_CMD% SensorAgentConfig.csv %rpi_usr%@%rpi_ip%:%Staging%/
%PSCP_CMD% DeviceConfig.csv %rpi_usr%@%rpi_ip%:%Staging%/
%PSCP_CMD% Modified\autorun2.sh %rpi_usr%@%rpi_ip%:%Staging%/
echo Marking autorun2.sh as executable
del /f %temp%\rpigatewayautorunx.tmp
echo chmod 755 %Staging%/autorun2.sh >> %temp%\rpigatewayautorunx.tmp
%PUTTY_CMD% -m %temp%\rpigatewayautorunx.tmp
================================================
FILE: Devices/GatewayConnectedDevices/BluetoothUARTExample/BluetoothUARTExample.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read data from a Wensn 1361 Digital Sound Level Meter, then augment and format as JSON to send via socket connection to a gateway.
Example of sending sound level data to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
Real time output viewable at http://connectthedots.msopentech.com .
'''
import serial
import sys
import socket
import time
import datetime
#SensorSubject = "sound" # determines how Azure website will chart the data
Org = "My organization";
Disp = "Bluetooth example" # will be the label for the curve on the chart
GUID = "nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn" # ensures all the data from this sensor appears on the same chart. You can use the Tools/Create GUID in Visual Studio to create
Locn = "here";
Measure = "measure";
Units = "units";
HOST = '127.0.0.1'
PORT = 5000
SERIAL_PORT = '/dev/ttyAMA0'
BAUD_RATE = 9600
CONNECT_RETRY_INTERVAL = 2
EXCEPTION_THRESHOLD = 3
SEND_INTERVAL = 1
while True:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print("Socket created")
while True:
try:
s.connect((HOST, PORT));
break;
except socket.error as msg:
print("Socket connection failed. Error Code : " + str(msg[0]) + " Message " + msg[1])
time.sleep(CONNECT_RETRY_INTERVAL)
print ("Socket connection succeeded.")
exceptions_count = 0
serial_port = serial.Serial(SERIAL_PORT, BAUD_RATE, timeout=.1)
while True:
timeStr = datetime.datetime.utcnow().isoformat()
try:
serialData = serial_port.readline()[:-2]
if len(serialData) > 0:
JSONdata="{\"value\":"+serialData+",\"guid\":\""+GUID+"\",\"organization\":\""+Org+"\",\"displayname\":\""+Disp +"\",\"unitofmeasure\":\""+Units+"\",\"measurename\":\""+Measure+"\",\"location\":\""+Locn+"\",\"timecreated\":\""+timeStr+"\"}"
s.send("<" + JSONdata + ">"); # sends to gateway over socket interface
print(JSONdata) # print only for debugging purposes
except Exception as msg:
exceptions_count += 1
print(msg[0])
# if we get too many exceptions, we assume the server is dead
# we will ignore the casual exception
if exceptions_count > EXCEPTION_THRESHOLD:
break
else:
continue
time.sleep(1)
# will never get here, unless server dies
try:
s.close()
except Exception as msg:
# eat all exception and go back to connect loop
print(msg[0])
================================================
FILE: Devices/GatewayConnectedDevices/BluetoothUARTExample/SetupSerialBaudRate.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
This script is used for setting up raspberry's uart.
It corrects some config files.
User can set baudrate as argument.
'''
import os
import sys
def fixEtcInittab(baudrate):
lines = []
inittabFilename = '/etc/inittab'
inittabTrueLine = '#T0:23:respawn:/sbin/getty -L ttyAMA0 %d vt100\n' % baudrate
with open(inittabFilename, 'r') as fd:
for line in fd:
lines.append(line)
fd.close()
for i, line in enumerate(lines):
if line.startswith('T0:23:respawn') and line.endswith('vt100\n'):
lines[i] = inittabTrueLine
os.remove(inittabFilename)
fd = open(inittabFilename, 'w')
for i, line in enumerate(lines):
fd.write(lines[i])
fd.close()
#print lines
def fixBootCmdLine(baudrate):
lines = []
bootcmdlineFilename = '/boot/cmdline.txt'
bootcmdlineTrueLine = 'dwc_otg.lpm_enable=0 console=ttyAMA0,%d ' % baudrate \
+ 'kgdboc=ttyAMA0,%d console=tty1 root=/dev/mmcblk0p2 ' % baudrate \
+ 'rootfstype=ext4 rootwait\n'
with open(bootcmdlineFilename, 'r') as fd:
for line in fd:
lines.append(line)
fd.close()
for i, line in enumerate(lines):
if line.startswith('dwc_otg.lpm_enable=0') and line.endswith('rootwait\n'):
lines[i] = bootcmdlineTrueLine
os.remove(bootcmdlineFilename)
fd = open(bootcmdlineFilename, 'w')
for i, line in enumerate(lines):
fd.write(lines[i])
fd.close()
#print lines
def main(arguments):
baudrate = int(arguments[1])
#print baudrate
fixEtcInittab(baudrate)
fixBootCmdLine(baudrate)
if __name__ == '__main__':
main(sys.argv)
================================================
FILE: Devices/GatewayConnectedDevices/BluetoothUARTExample/readme
================================================
BT example UART setup instruction:
0) Install raspbian wheezy on you raspberry, just follow instructions on raspbian official site.
1) Call SetupSerialBaudRate.py with need baudrate as argument - it will set up uart.
2) Reboot RPI
3) Install prerequisites:
a. sudo apt-get install python-pip
b. sudo pip install pySerial
4) Disable Raspberry: sudo shutdown -h now, unplug micro-usb after 10-15 seconds
5) Do the wiring. Raspberry PI pinout depends on Raspberry version. You need to find RX and TX lines on your.
a. Connect TX on bluetooth module to RX on raspberry
b. Connect RX on bluetooth module to TX on raspberry
c. Connect Ground on bluetooth module to Ground on RPI
d. Checkout what voltage your BT module uses. RPI has 5V or 3.3V.
HC-06 module uses 3.3V, so if you have HC-06 BT module connect it's VCC to 3.3V on RPI.
e. Power up raspberry.
6) Pair your device (cellphone, sensor or etc) with bluetooth module.
7) To start reading UART and sending data to gateway: python BluetoothUARTExample.py on your Raspberry
Notes:
1) To check UART and wiring without bluetooth you can build test device using arduino and RPI.
You can find instructions in UartSetup.pdf (same folder)
2) Clearly this instruction should work for any bluetooth module that supports UART.
User just need to know uart baudrate and set it via script.
================================================
FILE: Devices/GatewayConnectedDevices/BtUSB_2_BtUART_Example/ArduinoSensorMock/ArduinoSensorMock.ino
================================================
#include
SoftwareSerial bt(4,5);
void setup()
{
Serial.begin(9600);
bt.begin(9600);
randomSeed(analogRead(A1));
}
void loop()
{
// init array with random bytes from my head
static uint8_t bytes[2] = { 0x02, 0x1A };
while (bt.available() > 0)
{
char incomingByte = bt.read();
Serial.println(incomingByte);
}
bytes[0] = random(0xFF);
bytes[1] = random(0xFF);
uint16_t number = bytes[0] << 8 + bytes[1];
Serial.print("Sending to BT:");
Serial.println(number, DEC);
bt.write(bytes, 2);
delay(500);
}
================================================
FILE: Devices/GatewayConnectedDevices/BtUSB_2_BtUART_Example/BtUSB_2_BtUART_Example.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read data from a sensor which uses Bluetooth to transmit data, then augment and format as JSON to send via socket connection to a gateway.
Example of sending data to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
Real time output viewable at http://connectthedots.msopentech.com .
'''
import bluetooth
import sys
import socket
import time
import datetime
#SensorSubject = "distanceMeasurer" # determines how Azure website will chart the data
Org = "My organization";
Disp = "Bluetooth example" # will be the label for the curve on the chart
GUID = "nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn" # ensures all the data from this sensor appears on the same chart. You can use the Tools/Create GUID in Visual Studio to create
Locn = "here";
Measure = "measure";
Units = "units";
HOST = '127.0.0.1'
PORT = 5000
BT_PORT = 1
BT_PACKET_LEN = 2
BT_DEV_ADDR = "20:14:10:10:14:17" # Please set needed MAC address
BT_SOCK_TIMEOUT = 10
CONNECT_RETRY_INTERVAL = 2
def connectSockets(bt, gatewaySock):
# Connect BT first
while bt == None:
print "Connection RFCOMM"
try:
bt = bluetooth.BluetoothSocket(bluetooth.RFCOMM)
bt.connect((BT_DEV_ADDR, BT_PORT));
print ("BT connection succeded")
except socket.error as msg:
bt = None
print("Socket connection failed. Error Code : " + str(msg[0]) + " Message " + msg[1])
time.sleep(CONNECT_RETRY_INTERVAL)
while gatewaySock == None:
print "Connecting TCP"
try:
gatewaySock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
gatewaySock.connect((HOST, PORT));
print ("Connection to gateway succeded")
except socket.error as msg:
gatewaySock = None
print("Socket connection failed. Error Code : " + str(msg[0]) + " Message " + msg[1])
time.sleep(CONNECT_RETRY_INTERVAL)
return bt, gatewaySock
def recvDataFromBT(bt, packetLen):
btData = 0
i = 0
while(i < packetLen):
byteAsStr = bt.recv(1)
if (byteAsStr == ''):
break
byte = ord(byteAsStr)
btData = (btData << 8) + byte
i = i + 1
return str(btData)
bt = None
s = None
while True:
bt, s = connectSockets(bt, s)
btData = None
# btData != "" means remote host is down
while btData == None:
wasExceptionOccured = 0
try:
btData = recvDataFromBT(bt, BT_PACKET_LEN);
except socket.error as sockErr:
print(sockErr)
try:
s.close()
except Exception as msg:
print(msg[0])
wasExceptionOccured = 1
if (wasExceptionOccured == 1 or btData == ''):
# something went wrong, reconnect bluetooth socket
btData = None
bt = None
bt = connectSockets(bt,s)
timeStr = datetime.datetime.utcnow().isoformat()
JSONdata = "{\"value\":"+btData+",\"guid\":\""+GUID+"\",\"organization\":\""+Org+"\",\"displayname\":\""+Disp +"\",\"unitofmeasure\":\""+Units+"\",\"measurename\":\""+Measure+"\",\"location\":\""+Locn+"\",\"timecreated\":\""+timeStr+"\"}"
print(JSONdata)
wasExceptionOccured = 0
try:
# send to gateway over socket interface
bytesNeedToBeSent = len(JSONdata)
bytesSent = 0
while(bytesSent < bytesNeedToBeSent):
bytesSent = bytesSent + s.send("<" + JSONdata + ">")
# TODO check if all bytes sent. Sent again if necessary.
except Exception as msg:
print(msg[0])
try:
s.close()
except Exception as msg:
print(msg[0])
wasExceptionOccured = 1
if (wasExceptionOccured == 1):
# something went wrong, reconnect gateway socket
s = None
print "gateway socket exception occured"
bt,s = connectSockets(bt,s)
time.sleep(1)
# will never get here, unless server dies
try:
s.close()
except Exception as msg:
# eat all exception and go back to connect loop
print(msg[0])
try:
bt.close()
except Exception as msg:
# eat all exception and go back to connect loop
print(msg[0])
================================================
FILE: Devices/GatewayConnectedDevices/BtUSB_2_BtUART_Example/TestServer.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
This is tiny tcp server for testing python scripts that translate sensor data to gateway.
Instead of setting up all gateway one can use this tiny sensor just to check if device works and transmits data to the network.
'''
import sys
import socket
HOST = '127.0.0.1'
PORT = 5000
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
s.bind((HOST, PORT))
except socket.error as msg:
print("Bind failed. Error Code : " + str(msg[0]) + " Message " + msg[1])
sys.exit()
print ("Socket bind complete")
s.listen(10)
conn, addr = s.accept()
while True:
data = conn.recv(256)
if len(data) > 0:
strData = data.decode('utf-8')
print strData
else:
break
s.close()
================================================
FILE: Devices/GatewayConnectedDevices/BtUSB_2_BtUART_Example/readme
================================================
USB BT + Raspberry example setup instruction:
0) Install raspbian wheezy on you raspberry, just follow instructions on raspbian official site.
1) Please follow instructions from BluetoothSetup.pdf(same folder as readme)
2) During executing instruction you will obtain other side Bluetooth module's MAC(sensor MAC, cellphone MAC)
Open the script and set BT_DEV_ADDR equal to obtained MAC.
Also you can set some meta information about your organization and etc
3) Do the wiring. Construct/power up your bluetooth device on the other side.
We tested on Arduino + HC-06 UART module on other side and ACORP USB BT module + Raspberry.
Notes:
1) This method should work with USB Bluetooth modules from here http://elinux.org/RPi_USB_Bluetooth_adapters.
This list is not complete, code was tested on ACORP BT module, but if you use device from the list,
you most probably will succeed.
2) Sensor mock is implemented on arduino, you can find it's sketch in ArduinoSensorMock folder.
Upload it to arduino, connect uart bluetooth to arduino, set MAC in python script and you are ready to go.
Sketch was tested on HC-06 UART bluetooth module, but should work on any UART BT module. Just set correct baudrate in the sketch.
================================================
FILE: Devices/GatewayConnectedDevices/Hydrology/DO2Sensor.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read data from an Atlas Scientific Dissolved Oxygen Sensor Board.
'''
import serial
import re
class DO2Sensor(object):
default_device = '/dev/ttyAMA0'
port = serial.Serial()
def __init__(self, device = default_device):
# DO2 sensor is on UART because we have the legacy version of the DO2 board
self.port = serial.Serial( device,38400,timeout=1, bytesize=8, parity='N', stopbits=1, xonxoff=0, rtscts=0)
def GetDataSample(self) :
# get data command for DO2 sensor board
self.port.write('R\r')
line = self.port.readline()
# occasionally no data is returned
while len(line) < 3:
self.port.write('R\r')
line = self.port.readline()
return line;
def main() :
device = DO2Sensor()
try:
while True:
DO2Sample = device.GetDataSample()
DO2Parsed = re.findall(r"([0-9]+\.[0-9]+)",DO2Sample)
if DO2Parsed:
print "Dissolved O2 = {0} % ({1} mg/L)".format( DO2Parsed[0], DO2Parsed[1] )
else:
print "failed to parse:" + DO2Sample
except KeyboardInterrupt: # catches the ctrl-c command, which breaks the loop above
print("Continuous polling stopped")
if __name__ == '__main__':
main()
================================================
FILE: Devices/GatewayConnectedDevices/Hydrology/Documentation/DeviceSetup.md
================================================
Hardware Description
====================
This project uses 3 hydrology sensors:
- A Dissolved Oxygen Sensor Board () with an appropriate probe ()
- An Electrical Conductivity Sensor Board () with an appropriate probe ()
- A Soil Moisture Sensor () with an Analog-To-Digital converter ()
The Raspberry PI 2 was chosen to both host the Device Gateway and support communication with the sensors.
The Dissolved Oxygen sensor board available only supported UART communication. Thus it was connected to the UART of the PI.
The soil moisture sensor has an analog output that needed to be converted to digital for the host computer. In order to do this an ADS1115 breakout board from Adafruit was added. This board uses the I2C bus to connect to the host system.
The Electrical Conductivity board supports both UART and I2C communication. I2C was chosen in this implementation in order to avoid having to add a UART multiplexer to the circuit configuration.
The schematic and image of the breadboard may be found in the Hydrology\\Documentation folder.
Raspberry PI Configuration
==========================
The I2C port needs to be enabled on the PI, and the login shell over serial needs to be disabled. This can be done with:
sudo raspi-config
Choose AdvancedI2C Configuration enable, then choose AdvancesSerial Configurationdisable
Python Setup
============
You will need several packages installed for the python scripts to run:
apt-get install I2C\_Tools python-serial python-smbbus
Running the Code
================
Individual sensors can be tested out by running the python script for that sensor (ECSensor.py, DO2Sensor.py, or MoistureSensor.py). Output will be sent to stdout.
SensorAgent.py gathers the data from each of the sensors and make it available via local host socket for consumption by the gateway service.
The deploy\_next.cmd script in the Hydrology folder can be used to deploy these scripts to the device after the Gateway service has been deployed. This will also install the SensorAgent.py script so that it runs at device startup.
================================================
FILE: Devices/GatewayConnectedDevices/Hydrology/ECSensor.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read data from an Atlas Scientific Electrical Conductivity Sensor Board.
'''
# Much of code in the ECSensor class is taken from http://www.atlas-scientific.com/_files/code/pi_i2c_sample_code.pdf
#!/usr/bin/python
import io # used to create file streams
import fcntl # used to access I2C parameters like addresses
import time # used for sleep delay and timestamps
import string # helps parse strings
class ECSensor:
long_timeout = 1.5 # the timeout needed to query readings and calibrations
short_timeout = .3 # timeout for regular commands
default_bus = 1 # the default bus for I2C on the newer Raspberry Pis, certain older boards use bus 0
default_address = 100 # the default address for the EC sensor
def __init__(self, address = default_address, bus = default_bus):
# open two file streams, one for reading and one for writing
# the specific I2C channel is selected with bus
# it is usually 1, except for older revisions where its 0
# wb and rb indicate binary read and write
self.file_read = io.open("/dev/i2c-"+str(bus), "rb", buffering = 0)
self.file_write = io.open("/dev/i2c-"+str(bus), "wb", buffering = 0)
# initializes I2C to either a user specified or default address
self.set_i2c_address(address)
def set_i2c_address(self, addr):
# set the I2C communications to the slave specified by the address
# The commands for I2C dev using the ioctl functions are specified in
# the i2c-dev.h file from i2c-tools
I2C_SLAVE = 0x703
fcntl.ioctl(self.file_read, I2C_SLAVE, addr)
fcntl.ioctl(self.file_write, I2C_SLAVE, addr)
def write(self, string):
# appends the null character and sends the string over I2C
string += "\00"
self.file_write.write(string)
def read(self, num_of_bytes = 31):
# reads a specified number of bytes from I2C, then parses and displays the result
res = self.file_read.read(num_of_bytes) # read from the board
response = filter(lambda x: x != '\x00', res) # remove the null characters to get the response
if(ord(response[0]) == 1): # if the response isnt an error
char_list = map(lambda x: chr(ord(x) & ~0x80), list(response[1:])) # change MSB to 0 for all received characters except the first and get a list of characters
# NOTE: having to change the MSB to 0 is a glitch in the raspberry pi, and you shouldn't have to do this!
return "Command success:" + ''.join(char_list) # convert the char list to a string and returns it
else:
return "Error " + str(ord(response[0]))
def query(self, string):
# write a command to the board, wait the correct timeout, and read the response
self.write(string)
# the read and calibration commands require a longer timeout
if((string.upper().startswith("R")) or
(string.upper().startswith("CAL"))):
time.sleep(self.long_timeout)
else:
time.sleep(self.short_timeout)
return self.read()
def close(self):
self.file_read.close()
self.file_write.close()
def main () :
device = ECSensor()
try:
while True:
print(device.query("R"))
except KeyboardInterrupt: # catches the ctrl-c command, which breaks the loop above
print("Continuous polling stopped")
if __name__ == '__main__':
main()
================================================
FILE: Devices/GatewayConnectedDevices/Hydrology/MoistureSensor.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read data from a Decagon 10HS moisture sensor over the adafruit ADS1115 ADC breakout board.
'''
#!/usr/bin/python
import math
import re
import time
import smbus
# Adafruit_I2C Class taken from https://github.com/adafruit/Adafruit-Raspberry-Pi-Python-Code/tree/master/Adafruit_ADS1x15
# ===========================================================================
# Adafruit_I2C Class
# ===========================================================================
class Adafruit_I2C:
@staticmethod
def getPiRevision():
"Gets the version number of the Raspberry Pi board"
# Revision list available at: http://elinux.org/RPi_HardwareHistory#Board_Revision_History
try:
with open('/proc/cpuinfo', 'r') as infile:
for line in infile:
# Match a line of the form "Revision : 0002" while ignoring extra
# info in front of the revsion (like 1000 when the Pi was over-volted).
match = re.match('Revision\s+:\s+.*(\w{4})$', line)
if match and match.group(1) in ['0000', '0002', '0003']:
# Return revision 1 if revision ends with 0000, 0002 or 0003.
return 1
elif match:
# Assume revision 2 if revision ends with any other 4 chars.
return 2
# Couldn't find the revision, assume revision 0 like older code for compatibility.
return 0
except:
return 0
@staticmethod
def getPiI2CBusNumber():
# Gets the I2C bus number /dev/i2c#
return 1 if Adafruit_I2C.getPiRevision() > 1 else 0
def __init__(self, address, busnum=-1, debug=False):
self.address = address
# By default, the correct I2C bus is auto-detected using /proc/cpuinfo
# Alternatively, you can hard-code the bus version below:
# self.bus = smbus.SMBus(0); # Force I2C0 (early 256MB Pi's)
# self.bus = smbus.SMBus(1); # Force I2C1 (512MB Pi's)
self.bus = smbus.SMBus(busnum if busnum >= 0 else Adafruit_I2C.getPiI2CBusNumber())
self.debug = debug
def reverseByteOrder(self, data):
"Reverses the byte order of an int (16-bit) or long (32-bit) value"
# Courtesy Vishal Sapre
byteCount = len(hex(data)[2:].replace('L','')[::2])
val = 0
for i in range(byteCount):
val = (val << 8) | (data & 0xff)
data >>= 8
return val
def errMsg(self):
print "Error accessing 0x%02X: Check your I2C address" % self.address
return -1
def write8(self, reg, value):
"Writes an 8-bit value to the specified register/address"
try:
self.bus.write_byte_data(self.address, reg, value)
if self.debug:
print "I2C: Wrote 0x%02X to register 0x%02X" % (value, reg)
except IOError, err:
return self.errMsg()
def write16(self, reg, value):
"Writes a 16-bit value to the specified register/address pair"
try:
self.bus.write_word_data(self.address, reg, value)
if self.debug:
print ("I2C: Wrote 0x%02X to register pair 0x%02X,0x%02X" %
(value, reg, reg+1))
except IOError, err:
return self.errMsg()
def writeRaw8(self, value):
"Writes an 8-bit value on the bus"
try:
self.bus.write_byte(self.address, value)
if self.debug:
print "I2C: Wrote 0x%02X" % value
except IOError, err:
return self.errMsg()
def writeList(self, reg, list):
"Writes an array of bytes using I2C format"
try:
if self.debug:
print "I2C: Writing list to register 0x%02X:" % reg
print list
self.bus.write_i2c_block_data(self.address, reg, list)
except IOError, err:
return self.errMsg()
def readList(self, reg, length):
"Read a list of bytes from the I2C device"
try:
results = self.bus.read_i2c_block_data(self.address, reg, length)
if self.debug:
print ("I2C: Device 0x%02X returned the following from reg 0x%02X" %
(self.address, reg))
print results
return results
except IOError, err:
return self.errMsg()
def readU8(self, reg):
"Read an unsigned byte from the I2C device"
try:
result = self.bus.read_byte_data(self.address, reg)
if self.debug:
print ("I2C: Device 0x%02X returned 0x%02X from reg 0x%02X" %
(self.address, result & 0xFF, reg))
return result
except IOError, err:
return self.errMsg()
def readS8(self, reg):
"Reads a signed byte from the I2C device"
try:
result = self.bus.read_byte_data(self.address, reg)
if result > 127: result -= 256
if self.debug:
print ("I2C: Device 0x%02X returned 0x%02X from reg 0x%02X" %
(self.address, result & 0xFF, reg))
return result
except IOError, err:
return self.errMsg()
def readU16(self, reg, little_endian=True):
"Reads an unsigned 16-bit value from the I2C device"
try:
result = self.bus.read_word_data(self.address,reg)
# Swap bytes if using big endian because read_word_data assumes little
# endian on ARM (little endian) systems.
if not little_endian:
result = ((result << 8) & 0xFF00) + (result >> 8)
if (self.debug):
print "I2C: Device 0x%02X returned 0x%04X from reg 0x%02X" % (self.address, result & 0xFFFF, reg)
return result
except IOError, err:
return self.errMsg()
def readS16(self, reg, little_endian=True):
"Reads a signed 16-bit value from the I2C device"
try:
result = self.readU16(reg,little_endian)
if result > 32767: result -= 65536
return result
except IOError, err:
return self.errMsg()
if __name__ == '__main__':
try:
bus = Adafruit_I2C(address=0)
print "Default I2C bus is accessible"
except:
print "Error accessing default I2C bus"
# ===========================================================================
# ADS1x15 Class
#
# Originally written by K. Townsend, Adafruit (https://github.com/adafruit/Adafruit-Raspberry-Pi-Python-Code/tree/master/Adafruit_ADS1x15)
# Updates and new functions implementation by Pedro Villanueva, 03/2013.
# The only error in the original code was in line 57:
# __ADS1015_REG_CONFIG_DR_920SPS = 0x0050
# should be
# __ADS1015_REG_CONFIG_DR_920SPS = 0x0060
#
# NOT IMPLEMENTED: Conversion ready pin, page 15 datasheet.
# ===========================================================================
class ADS1x15:
i2c = None
# IC Identifiers
__IC_ADS1015 = 0x00
__IC_ADS1115 = 0x01
# Pointer Register
__ADS1015_REG_POINTER_MASK = 0x03
__ADS1015_REG_POINTER_CONVERT = 0x00
__ADS1015_REG_POINTER_CONFIG = 0x01
__ADS1015_REG_POINTER_LOWTHRESH = 0x02
__ADS1015_REG_POINTER_HITHRESH = 0x03
# Config Register
__ADS1015_REG_CONFIG_OS_MASK = 0x8000
__ADS1015_REG_CONFIG_OS_SINGLE = 0x8000 # Write: Set to start a single-conversion
__ADS1015_REG_CONFIG_OS_BUSY = 0x0000 # Read: Bit = 0 when conversion is in progress
__ADS1015_REG_CONFIG_OS_NOTBUSY = 0x8000 # Read: Bit = 1 when device is not performing a conversion
__ADS1015_REG_CONFIG_MUX_MASK = 0x7000
__ADS1015_REG_CONFIG_MUX_DIFF_0_1 = 0x0000 # Differential P = AIN0, N = AIN1 (default)
__ADS1015_REG_CONFIG_MUX_DIFF_0_3 = 0x1000 # Differential P = AIN0, N = AIN3
__ADS1015_REG_CONFIG_MUX_DIFF_1_3 = 0x2000 # Differential P = AIN1, N = AIN3
__ADS1015_REG_CONFIG_MUX_DIFF_2_3 = 0x3000 # Differential P = AIN2, N = AIN3
__ADS1015_REG_CONFIG_MUX_SINGLE_0 = 0x4000 # Single-ended AIN0
__ADS1015_REG_CONFIG_MUX_SINGLE_1 = 0x5000 # Single-ended AIN1
__ADS1015_REG_CONFIG_MUX_SINGLE_2 = 0x6000 # Single-ended AIN2
__ADS1015_REG_CONFIG_MUX_SINGLE_3 = 0x7000 # Single-ended AIN3
__ADS1015_REG_CONFIG_PGA_MASK = 0x0E00
__ADS1015_REG_CONFIG_PGA_6_144V = 0x0000 # +/-6.144V range
__ADS1015_REG_CONFIG_PGA_4_096V = 0x0200 # +/-4.096V range
__ADS1015_REG_CONFIG_PGA_2_048V = 0x0400 # +/-2.048V range (default)
__ADS1015_REG_CONFIG_PGA_1_024V = 0x0600 # +/-1.024V range
__ADS1015_REG_CONFIG_PGA_0_512V = 0x0800 # +/-0.512V range
__ADS1015_REG_CONFIG_PGA_0_256V = 0x0A00 # +/-0.256V range
__ADS1015_REG_CONFIG_MODE_MASK = 0x0100
__ADS1015_REG_CONFIG_MODE_CONTIN = 0x0000 # Continuous conversion mode
__ADS1015_REG_CONFIG_MODE_SINGLE = 0x0100 # Power-down single-shot mode (default)
__ADS1015_REG_CONFIG_DR_MASK = 0x00E0
__ADS1015_REG_CONFIG_DR_128SPS = 0x0000 # 128 samples per second
__ADS1015_REG_CONFIG_DR_250SPS = 0x0020 # 250 samples per second
__ADS1015_REG_CONFIG_DR_490SPS = 0x0040 # 490 samples per second
__ADS1015_REG_CONFIG_DR_920SPS = 0x0060 # 920 samples per second
__ADS1015_REG_CONFIG_DR_1600SPS = 0x0080 # 1600 samples per second (default)
__ADS1015_REG_CONFIG_DR_2400SPS = 0x00A0 # 2400 samples per second
__ADS1015_REG_CONFIG_DR_3300SPS = 0x00C0 # 3300 samples per second (also 0x00E0)
__ADS1115_REG_CONFIG_DR_8SPS = 0x0000 # 8 samples per second
__ADS1115_REG_CONFIG_DR_16SPS = 0x0020 # 16 samples per second
__ADS1115_REG_CONFIG_DR_32SPS = 0x0040 # 32 samples per second
__ADS1115_REG_CONFIG_DR_64SPS = 0x0060 # 64 samples per second
__ADS1115_REG_CONFIG_DR_128SPS = 0x0080 # 128 samples per second
__ADS1115_REG_CONFIG_DR_250SPS = 0x00A0 # 250 samples per second (default)
__ADS1115_REG_CONFIG_DR_475SPS = 0x00C0 # 475 samples per second
__ADS1115_REG_CONFIG_DR_860SPS = 0x00E0 # 860 samples per second
__ADS1015_REG_CONFIG_CMODE_MASK = 0x0010
__ADS1015_REG_CONFIG_CMODE_TRAD = 0x0000 # Traditional comparator with hysteresis (default)
__ADS1015_REG_CONFIG_CMODE_WINDOW = 0x0010 # Window comparator
__ADS1015_REG_CONFIG_CPOL_MASK = 0x0008
__ADS1015_REG_CONFIG_CPOL_ACTVLOW = 0x0000 # ALERT/RDY pin is low when active (default)
__ADS1015_REG_CONFIG_CPOL_ACTVHI = 0x0008 # ALERT/RDY pin is high when active
__ADS1015_REG_CONFIG_CLAT_MASK = 0x0004 # Determines if ALERT/RDY pin latches once asserted
__ADS1015_REG_CONFIG_CLAT_NONLAT = 0x0000 # Non-latching comparator (default)
__ADS1015_REG_CONFIG_CLAT_LATCH = 0x0004 # Latching comparator
__ADS1015_REG_CONFIG_CQUE_MASK = 0x0003
__ADS1015_REG_CONFIG_CQUE_1CONV = 0x0000 # Assert ALERT/RDY after one conversions
__ADS1015_REG_CONFIG_CQUE_2CONV = 0x0001 # Assert ALERT/RDY after two conversions
__ADS1015_REG_CONFIG_CQUE_4CONV = 0x0002 # Assert ALERT/RDY after four conversions
__ADS1015_REG_CONFIG_CQUE_NONE = 0x0003 # Disable the comparator and put ALERT/RDY in high state (default)
# Dictionaries with the sampling speed values
# These simplify and clean the code (avoid the abuse of if/elif/else clauses)
spsADS1115 = {
8:__ADS1115_REG_CONFIG_DR_8SPS,
16:__ADS1115_REG_CONFIG_DR_16SPS,
32:__ADS1115_REG_CONFIG_DR_32SPS,
64:__ADS1115_REG_CONFIG_DR_64SPS,
128:__ADS1115_REG_CONFIG_DR_128SPS,
250:__ADS1115_REG_CONFIG_DR_250SPS,
475:__ADS1115_REG_CONFIG_DR_475SPS,
860:__ADS1115_REG_CONFIG_DR_860SPS
}
spsADS1015 = {
128:__ADS1015_REG_CONFIG_DR_128SPS,
250:__ADS1015_REG_CONFIG_DR_250SPS,
490:__ADS1015_REG_CONFIG_DR_490SPS,
920:__ADS1015_REG_CONFIG_DR_920SPS,
1600:__ADS1015_REG_CONFIG_DR_1600SPS,
2400:__ADS1015_REG_CONFIG_DR_2400SPS,
3300:__ADS1015_REG_CONFIG_DR_3300SPS
}
# Dictionariy with the programable gains
pgaADS1x15 = {
6144:__ADS1015_REG_CONFIG_PGA_6_144V,
4096:__ADS1015_REG_CONFIG_PGA_4_096V,
2048:__ADS1015_REG_CONFIG_PGA_2_048V,
1024:__ADS1015_REG_CONFIG_PGA_1_024V,
512:__ADS1015_REG_CONFIG_PGA_0_512V,
256:__ADS1015_REG_CONFIG_PGA_0_256V
}
# Constructor
def __init__(self, address=0x48, ic=__IC_ADS1015, debug=False):
# Depending on if you have an old or a new Raspberry Pi, you
# may need to change the I2C bus. Older Pis use SMBus 0,
# whereas new Pis use SMBus 1. If you see an error like:
# 'Error accessing 0x48: Check your I2C address '
# change the SMBus number in the initializer below!
self.i2c = Adafruit_I2C(address)
self.address = address
self.debug = debug
# Make sure the IC specified is valid
if ((ic < self.__IC_ADS1015) | (ic > self.__IC_ADS1115)):
if (self.debug):
print "ADS1x15: Invalid IC specfied: %h" % ic
return -1
else:
self.ic = ic
# Set pga value, so that getLastConversionResult() can use it,
# any function that accepts a pga value must update this.
self.pga = 6144
def readADCSingleEnded(self, channel=0, pga=6144, sps=250):
"Gets a single-ended ADC reading from the specified channel in mV. \
The sample rate for this mode (single-shot) can be used to lower the noise \
(low sps) or to lower the power consumption (high sps) by duty cycling, \
see datasheet page 14 for more info. \
The pga must be given in mV, see page 13 for the supported values."
# With invalid channel return -1
if (channel > 3):
if (self.debug):
print "ADS1x15: Invalid channel specified: %d" % channel
return -1
# Disable comparator, Non-latching, Alert/Rdy active low
# traditional comparator, single-shot mode
config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \
self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \
self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \
self.__ADS1015_REG_CONFIG_CMODE_TRAD | \
self.__ADS1015_REG_CONFIG_MODE_SINGLE
# Set sample per seconds, defaults to 250sps
# If sps is in the dictionary (defined in init) it returns the value of the constant
# othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
if (self.ic == self.__IC_ADS1015):
config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
else:
if ( (sps not in self.spsADS1115) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
# Set PGA/voltage range, defaults to +-6.144V
if ( (pga not in self.pgaADS1x15) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
self.pga = pga
# Set the channel to be converted
if channel == 3:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_3
elif channel == 2:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_2
elif channel == 1:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_1
else:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_0
# Set 'start single-conversion' bit
config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
# Write config register to the ADC
bytes = [(config >> 8) & 0xFF, config & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
# Wait for the ADC conversion to complete
# The minimum delay depends on the sps: delay >= 1/sps
# We add 0.1ms to be sure
delay = 1.0/sps+0.0001
time.sleep(delay)
# Read the conversion results
result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
if (self.ic == self.__IC_ADS1015):
# Shift right 4 bits for the 12-bit ADS1015 and convert to mV
return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*pga/2048.0
else:
# Return a mV value for the ADS1115
# (Take signed values into account as well)
val = (result[0] << 8) | (result[1])
if val > 0x7FFF:
return (val - 0xFFFF)*pga/32768.0
else:
return ( (result[0] << 8) | (result[1]) )*pga/32768.0
def readADCDifferential(self, chP=0, chN=1, pga=6144, sps=250):
"Gets a differential ADC reading from channels chP and chN in mV. \
The sample rate for this mode (single-shot) can be used to lower the noise \
(low sps) or to lower the power consumption (high sps) by duty cycling, \
see data sheet page 14 for more info. \
The pga must be given in mV, see page 13 for the supported values."
# Disable comparator, Non-latching, Alert/Rdy active low
# traditional comparator, single-shot mode
config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \
self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \
self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \
self.__ADS1015_REG_CONFIG_CMODE_TRAD | \
self.__ADS1015_REG_CONFIG_MODE_SINGLE
# Set channels
if ( (chP == 0) & (chN == 1) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_1
elif ( (chP == 0) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_3
elif ( (chP == 2) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_2_3
elif ( (chP == 1) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_1_3
else:
if (self.debug):
print "ADS1x15: Invalid channels specified: %d, %d" % (chP, chN)
return -1
# Set sample per seconds, defaults to 250sps
# If sps is in the dictionary (defined in init()) it returns the value of the constant
# othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
if (self.ic == self.__IC_ADS1015):
config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
else:
if ( (sps not in self.spsADS1115) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
# Set PGA/voltage range, defaults to +-6.144V
if ( (pga not in self.pgaADS1x15) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
self.pga = pga
# Set 'start single-conversion' bit
config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
# Write config register to the ADC
bytes = [(config >> 8) & 0xFF, config & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
# Wait for the ADC conversion to complete
# The minimum delay depends on the sps: delay >= 1/sps
# We add 0.1ms to be sure
delay = 1.0/sps+0.0001
time.sleep(delay)
# Read the conversion results
result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
if (self.ic == self.__IC_ADS1015):
# Shift right 4 bits for the 12-bit ADS1015 and convert to mV
val = ((result[0] << 8) | (result[1] & 0xFF)) >> 4
# (Take signed values into account as well)
if val >> 11:
val = val - 0xfff
return val*pga/2048.0
else:
# Return a mV value for the ADS1115
# (Take signed values into account as well)
val = (result[0] << 8) | (result[1])
if val > 0x7FFF:
return (val - 0xFFFF)*pga/32768.0
else:
return ( (result[0] << 8) | (result[1]) )*pga/32768.0
def readADCDifferential01(self, pga=6144, sps=250):
"Gets a differential ADC reading from channels 0 and 1 in mV\
The sample rate for this mode (single-shot) can be used to lower the noise \
(low sps) or to lower the power consumption (high sps) by duty cycling, \
see data sheet page 14 for more info. \
The pga must be given in mV, see page 13 for the supported values."
return self.readADCDifferential(0, 1, pga, sps)
def readADCDifferential03(self, pga=6144, sps=250):
"Gets a differential ADC reading from channels 0 and 3 in mV \
The sample rate for this mode (single-shot) can be used to lower the noise \
(low sps) or to lower the power consumption (high sps) by duty cycling, \
see data sheet page 14 for more info. \
The pga must be given in mV, see page 13 for the supported values."
return self.readADCDifferential(0, 3, pga, sps)
def readADCDifferential13(self, pga=6144, sps=250):
"Gets a differential ADC reading from channels 1 and 3 in mV \
The sample rate for this mode (single-shot) can be used to lower the noise \
(low sps) or to lower the power consumption (high sps) by duty cycling, \
see data sheet page 14 for more info. \
The pga must be given in mV, see page 13 for the supported values."
return self.__readADCDifferential(1, 3, pga, sps)
def readADCDifferential23(self, pga=6144, sps=250):
"Gets a differential ADC reading from channels 2 and 3 in mV \
The sample rate for this mode (single-shot) can be used to lower the noise \
(low sps) or to lower the power consumption (high sps) by duty cycling, \
see data sheet page 14 for more info. \
The pga must be given in mV, see page 13 for the supported values."
return self.readADCDifferential(2, 3, pga, sps)
def startContinuousConversion(self, channel=0, pga=6144, sps=250):
"Starts the continuous conversion mode and returns the first ADC reading \
in mV from the specified channel. \
The sps controls the sample rate. \
The pga must be given in mV, see datasheet page 13 for the supported values. \
Use getLastConversionResults() to read the next values and \
stopContinuousConversion() to stop converting."
# Default to channel 0 with invalid channel, or return -1?
if (channel > 3):
if (self.debug):
print "ADS1x15: Invalid channel specified: %d" % channel
return -1
# Disable comparator, Non-latching, Alert/Rdy active low
# traditional comparator, continuous mode
# The last flag is the only change we need, page 11 datasheet
config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \
self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \
self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \
self.__ADS1015_REG_CONFIG_CMODE_TRAD | \
self.__ADS1015_REG_CONFIG_MODE_CONTIN
# Set sample per seconds, defaults to 250sps
# If sps is in the dictionary (defined in init()) it returns the value of the constant
# othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
if (self.ic == self.__IC_ADS1015):
config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
else:
if ( (sps not in self.spsADS1115) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
# Set PGA/voltage range, defaults to +-6.144V
if ( (pga not in self.pgaADS1x15) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
self.pga = pga
# Set the channel to be converted
if channel == 3:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_3
elif channel == 2:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_2
elif channel == 1:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_1
else:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_0
# Set 'start single-conversion' bit to begin conversions
# No need to change this for continuous mode!
config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
# Write config register to the ADC
# Once we write the ADC will convert continously
# we can read the next values using getLastConversionResult
bytes = [(config >> 8) & 0xFF, config & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
# Wait for the ADC conversion to complete
# The minimum delay depends on the sps: delay >= 1/sps
# We add 0.5ms to be sure
delay = 1.0/sps+0.0005
time.sleep(delay)
# Read the conversion results
result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
if (self.ic == self.__IC_ADS1015):
# Shift right 4 bits for the 12-bit ADS1015 and convert to mV
return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*pga/2048.0
else:
# Return a mV value for the ADS1115
# (Take signed values into account as well)
val = (result[0] << 8) | (result[1])
if val > 0x7FFF:
return (val - 0xFFFF)*pga/32768.0
else:
return ( (result[0] << 8) | (result[1]) )*pga/32768.0
def startContinuousDifferentialConversion(self, chP=0, chN=1, pga=6144, sps=250):
"Starts the continuous differential conversion mode and returns the first ADC reading \
in mV as the difference from the specified channels. \
The sps controls the sample rate. \
The pga must be given in mV, see datasheet page 13 for the supported values. \
Use getLastConversionResults() to read the next values and \
stopContinuousConversion() to stop converting."
# Disable comparator, Non-latching, Alert/Rdy active low
# traditional comparator, continuous mode
# The last flag is the only change we need, page 11 datasheet
config = self.__ADS1015_REG_CONFIG_CQUE_NONE | \
self.__ADS1015_REG_CONFIG_CLAT_NONLAT | \
self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW | \
self.__ADS1015_REG_CONFIG_CMODE_TRAD | \
self.__ADS1015_REG_CONFIG_MODE_CONTIN
# Set sample per seconds, defaults to 250sps
# If sps is in the dictionary (defined in init()) it returns the value of the constant
# othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
if (self.ic == self.__IC_ADS1015):
config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
else:
if ( (sps not in self.spsADS1115) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
# Set PGA/voltage range, defaults to +-6.144V
if ( (pga not in self.pgaADS1x15) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % sps
config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
self.pga = pga
# Set channels
if ( (chP == 0) & (chN == 1) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_1
elif ( (chP == 0) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_3
elif ( (chP == 2) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_2_3
elif ( (chP == 1) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_1_3
else:
if (self.debug):
print "ADS1x15: Invalid channels specified: %d, %d" % (chP, chN)
return -1
# Set 'start single-conversion' bit to begin conversions
# No need to change this for continuous mode!
config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
# Write config register to the ADC
# Once we write the ADC will convert continously
# we can read the next values using getLastConversionResult
bytes = [(config >> 8) & 0xFF, config & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
# Wait for the ADC conversion to complete
# The minimum delay depends on the sps: delay >= 1/sps
# We add 0.5ms to be sure
delay = 1.0/sps+0.0005
time.sleep(delay)
# Read the conversion results
result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
if (self.ic == self.__IC_ADS1015):
# Shift right 4 bits for the 12-bit ADS1015 and convert to mV
return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*pga/2048.0
else:
# Return a mV value for the ADS1115
# (Take signed values into account as well)
val = (result[0] << 8) | (result[1])
if val > 0x7FFF:
return (val - 0xFFFF)*pga/32768.0
else:
return ( (result[0] << 8) | (result[1]) )*pga/32768.0
def stopContinuousConversion(self):
"Stops the ADC's conversions when in continuous mode \
and resets the configuration to its default value."
# Write the default config register to the ADC
# Once we write, the ADC will do a single conversion and
# enter power-off mode.
config = 0x8583 # Page 18 datasheet.
bytes = [(config >> 8) & 0xFF, config & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
return True
def getLastConversionResults(self):
"Returns the last ADC conversion result in mV"
# Read the conversion results
result = self.i2c.readList(self.__ADS1015_REG_POINTER_CONVERT, 2)
if (self.ic == self.__IC_ADS1015):
# Shift right 4 bits for the 12-bit ADS1015 and convert to mV
return ( ((result[0] << 8) | (result[1] & 0xFF)) >> 4 )*self.pga/2048.0
else:
# Return a mV value for the ADS1115
# (Take signed values into account as well)
val = (result[0] << 8) | (result[1])
if val > 0x7FFF:
return (val - 0xFFFF)*self.pga/32768.0
else:
return ( (result[0] << 8) | (result[1]) )*self.pga/32768.0
def startSingleEndedComparator(self, channel, thresholdHigh, thresholdLow, \
pga=6144, sps=250, \
activeLow=True, traditionalMode=True, latching=False, \
numReadings=1):
"Starts the comparator mode on the specified channel, see datasheet pg. 15. \
In traditional mode it alerts (ALERT pin will go low) when voltage exceeds \
thresholdHigh until it falls below thresholdLow (both given in mV). \
In window mode (traditionalMode=False) it alerts when voltage doesn't lie\
between both thresholds.\
In latching mode the alert will continue until the conversion value is read. \
numReadings controls how many readings are necessary to trigger an alert: 1, 2 or 4.\
Use getLastConversionResults() to read the current value (which may differ \
from the one that triggered the alert) and clear the alert pin in latching mode. \
This function starts the continuous conversion mode. The sps controls \
the sample rate and the pga the gain, see datasheet page 13. "
# With invalid channel return -1
if (channel > 3):
if (self.debug):
print "ADS1x15: Invalid channel specified: %d" % channel
return -1
# Continuous mode
config = self.__ADS1015_REG_CONFIG_MODE_CONTIN
if (activeLow==False):
config |= self.__ADS1015_REG_CONFIG_CPOL_ACTVHI
else:
config |= self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW
if (traditionalMode==False):
config |= self.__ADS1015_REG_CONFIG_CMODE_WINDOW
else:
config |= self.__ADS1015_REG_CONFIG_CMODE_TRAD
if (latching==True):
config |= self.__ADS1015_REG_CONFIG_CLAT_LATCH
else:
config |= self.__ADS1015_REG_CONFIG_CLAT_NONLAT
if (numReadings==4):
config |= self.__ADS1015_REG_CONFIG_CQUE_4CONV
elif (numReadings==2):
config |= self.__ADS1015_REG_CONFIG_CQUE_2CONV
else:
config |= self.__ADS1015_REG_CONFIG_CQUE_1CONV
# Set sample per seconds, defaults to 250sps
# If sps is in the dictionary (defined in init()) it returns the value of the constant
# othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
if (self.ic == self.__IC_ADS1015):
if ( (sps not in self.spsADS1015) & self.debug):
print "ADS1x15: Invalid sps specified: %d, using 1600sps" % sps
config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
else:
if ( (sps not in self.spsADS1115) & self.debug):
print "ADS1x15: Invalid sps specified: %d, using 250sps" % sps
config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
# Set PGA/voltage range, defaults to +-6.144V
if ( (pga not in self.pgaADS1x15) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % pga
config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
self.pga = pga
# Set the channel to be converted
if channel == 3:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_3
elif channel == 2:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_2
elif channel == 1:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_1
else:
config |= self.__ADS1015_REG_CONFIG_MUX_SINGLE_0
# Set 'start single-conversion' bit to begin conversions
config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
# Write threshold high and low registers to the ADC
# V_digital = (2^(n-1)-1)/pga*V_analog
if (self.ic == self.__IC_ADS1015):
thresholdHighWORD = int(thresholdHigh*(2048.0/pga))
else:
thresholdHighWORD = int(thresholdHigh*(32767.0/pga))
bytes = [(thresholdHighWORD >> 8) & 0xFF, thresholdHighWORD & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_HITHRESH, bytes)
if (self.ic == self.__IC_ADS1015):
thresholdLowWORD = int(thresholdLow*(2048.0/pga))
else:
thresholdLowWORD = int(thresholdLow*(32767.0/pga))
bytes = [(thresholdLowWORD >> 8) & 0xFF, thresholdLowWORD & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_LOWTHRESH, bytes)
# Write config register to the ADC
# Once we write the ADC will convert continously and alert when things happen,
# we can read the converted values using getLastConversionResult
bytes = [(config >> 8) & 0xFF, config & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
def startDifferentialComparator(self, chP, chN, thresholdHigh, thresholdLow, \
pga=6144, sps=250, \
activeLow=True, traditionalMode=True, latching=False, \
numReadings=1):
"Starts the comparator mode on the specified channel, see datasheet pg. 15. \
In traditional mode it alerts (ALERT pin will go low) when voltage exceeds \
thresholdHigh until it falls below thresholdLow (both given in mV). \
In window mode (traditionalMode=False) it alerts when voltage doesn't lie\
between both thresholds.\
In latching mode the alert will continue until the conversion value is read. \
numReadings controls how many readings are necessary to trigger an alert: 1, 2 or 4.\
Use getLastConversionResults() to read the current value (which may differ \
from the one that triggered the alert) and clear the alert pin in latching mode. \
This function starts the continuous conversion mode. The sps controls \
the sample rate and the pga the gain, see datasheet page 13. "
# Continuous mode
config = self.__ADS1015_REG_CONFIG_MODE_CONTIN
if (activeLow==False):
config |= self.__ADS1015_REG_CONFIG_CPOL_ACTVHI
else:
config |= self.__ADS1015_REG_CONFIG_CPOL_ACTVLOW
if (traditionalMode==False):
config |= self.__ADS1015_REG_CONFIG_CMODE_WINDOW
else:
config |= self.__ADS1015_REG_CONFIG_CMODE_TRAD
if (latching==True):
config |= self.__ADS1015_REG_CONFIG_CLAT_LATCH
else:
config |= self.__ADS1015_REG_CONFIG_CLAT_NONLAT
if (numReadings==4):
config |= self.__ADS1015_REG_CONFIG_CQUE_4CONV
elif (numReadings==2):
config |= self.__ADS1015_REG_CONFIG_CQUE_2CONV
else:
config |= self.__ADS1015_REG_CONFIG_CQUE_1CONV
# Set sample per seconds, defaults to 250sps
# If sps is in the dictionary (defined in init()) it returns the value of the constant
# othewise it returns the value for 250sps. This saves a lot of if/elif/else code!
if (self.ic == self.__IC_ADS1015):
if ( (sps not in self.spsADS1015) & self.debug):
print "ADS1x15: Invalid sps specified: %d, using 1600sps" % sps
config |= self.spsADS1015.setdefault(sps, self.__ADS1015_REG_CONFIG_DR_1600SPS)
else:
if ( (sps not in self.spsADS1115) & self.debug):
print "ADS1x15: Invalid sps specified: %d, using 250sps" % sps
config |= self.spsADS1115.setdefault(sps, self.__ADS1115_REG_CONFIG_DR_250SPS)
# Set PGA/voltage range, defaults to +-6.144V
if ( (pga not in self.pgaADS1x15) & self.debug):
print "ADS1x15: Invalid pga specified: %d, using 6144mV" % pga
config |= self.pgaADS1x15.setdefault(pga, self.__ADS1015_REG_CONFIG_PGA_6_144V)
self.pga = pga
# Set channels
if ( (chP == 0) & (chN == 1) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_1
elif ( (chP == 0) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_0_3
elif ( (chP == 2) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_2_3
elif ( (chP == 1) & (chN == 3) ):
config |= self.__ADS1015_REG_CONFIG_MUX_DIFF_1_3
else:
if (self.debug):
print "ADS1x15: Invalid channels specified: %d, %d" % (chP, chN)
return -1
# Set 'start single-conversion' bit to begin conversions
config |= self.__ADS1015_REG_CONFIG_OS_SINGLE
# Write threshold high and low registers to the ADC
# V_digital = (2^(n-1)-1)/pga*V_analog
if (self.ic == self.__IC_ADS1015):
thresholdHighWORD = int(thresholdHigh*(2048.0/pga))
else:
thresholdHighWORD = int(thresholdHigh*(32767.0/pga))
bytes = [(thresholdHighWORD >> 8) & 0xFF, thresholdHighWORD & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_HITHRESH, bytes)
if (self.ic == self.__IC_ADS1015):
thresholdLowWORD = int(thresholdLow*(2048.0/pga))
else:
thresholdLowWORD = int(thresholdLow*(32767.0/pga))
bytes = [(thresholdLowWORD >> 8) & 0xFF, thresholdLowWORD & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_LOWTHRESH, bytes)
# Write config register to the ADC
# Once we write the ADC will convert continously and alert when things happen,
# we can read the converted values using getLastConversionResult
bytes = [(config >> 8) & 0xFF, config & 0xFF]
self.i2c.writeList(self.__ADS1015_REG_POINTER_CONFIG, bytes)
# ===========================================================================
# MoistureSensor Class
# Implements interfacing with the Decagon 10HS moisture sensor over the
# adafruit ADS1115 ADC breakout board.
# ===========================================================================
class MoistureSensor:
adc = None
def __init__(self) :
self.adc = ADS1x15(ic=1)
def GetDataSample(self) :
# 10HS sensor has an output of 300-1250mv, setting pga so that full scale is 2.048v inorder to maximize resolution
mV = self.adc.readADCSingleEnded(channel = 0, pga=2048)
# Water volume content measured as m^3/m^3. It looks like a percentage.
WVC = (2.97e-9 * math.pow(mV,3)) - (7.37e-6 * math.pow(mV, 2)) + (6.69e-3 * mV) -1.92
return WVC
def main() :
device = MoistureSensor()
try:
while True:
moisture = device.GetDataSample()
print moisture
time.sleep(1);
except KeyboardInterrupt: # catches the ctrl-c command, which breaks the loop above
print("Continuous polling stopped")
if __name__ == '__main__':
main()
================================================
FILE: Devices/GatewayConnectedDevices/Hydrology/SensorAgent.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read several Hydrology sensors, then augment and format as JSON to send via socket connection to a gateway.
Example of sending hydrology data to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
Real time output viewable at http://connectthedots.msopentech.com .
'''
import sys
import socket
import time
import datetime
import re
from DO2Sensor import DO2Sensor
from ECSensor import ECSensor
from MoistureSensor import MoistureSensor
Org = "MSOpenTech"
Disp = "Hydrology Sensors" # will be the label for the curve on the chart
GUID = "nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn" # ensures all the data from this sensor appears on the same chart. You can
# use the Tools/Create GUID in Visual Studio to create
Locn = "here"
UnitsMap = {'Moisture':'unitless', 'Conductivity':'uS/cm', 'TDS':'ppm', 'Salinity':'unitless', 'SpecificGravity':'unitless', 'DissolvedOxygen':'ml/l' }
Vendor = 0xfffe # Vendor ID for our custom device
Product = 0xfffe # Product ID for our custom device
HOST = '127.0.0.1'
PORT = 5001
CONNECT_RETRY_INTERVAL = 2
EXCEPTION_THRESHOLD = 3
SEND_INTERVAL = 5
class SensorAgent:
s = None
do2Sensor = None
ecSensor = None
moistureSensor = None
def __init__(self) :
self.do2Sensor = DO2Sensor()
self.ecSensor = ECSensor()
self.moistureSensor = MoistureSensor()
def connectToServer(self) :
self.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print("Socket created.")
while True:
try:
self.s.connect((HOST, PORT))
break
except socket.error as msg:
print("Socket connection failed. Error Code : " + str(msg[0]) + " Message " + msg[1])
time.sleep(CONNECT_RETRY_INTERVAL)
print ("Socket connection succeeded.")
def close(self) :
self.s.close()
def sendMessage(self, measureName, value) :
timeStr = datetime.datetime.utcnow().isoformat()
JSONdB = "{\"value\":" + value + ",\"guid\":\"" + GUID + "\",\"organization\":\"" + Org + "\",\"displayname\":\"" + Disp + "\",\"unitofmeasure\":\"" + UnitsMap[measureName] + "\",\"measurename\":\"" + measureName + "\",\"location\":\"" + Locn + "\",\"timecreated\":\"" + timeStr + "\"}"
if self.s != None :
self.s.send("<" + JSONdB + ">") # sends to gateway over socket interface
print(JSONdB) # print only for debugging purposes
def processSensorData(self) :
DO2Sample = self.do2Sensor.GetDataSample()
DO2Parsed = re.findall(r"([0-9]+\.[0-9]+)",DO2Sample)
if DO2Parsed:
self.sendMessage('Dissolved Oxygen', DO2Parsed[1])
ECSample = self.ecSensor.query("R")
print(ECSample)
ECParsed = re.match("Command success:([0-9]+\.*[0-9]*),([0-9]+\.*[0-9]*),([0-9]+\.*[0-9]*),([0-9]+\.*[0-9]*)",ECSample)
if ECParsed :
self.sendMessage('Conductivity', ECParsed.group(1))
self.sendMessage('TDS', ECParsed.group(2))
self.sendMessage('Salinity', ECParsed.group(3))
self.sendMessage('Specific Gravity',ECParsed.group(4))
MoistureSample = self.moistureSensor.GetDataSample()
self.sendMessage('Moisture', str(MoistureSample))
def main() :
agent = SensorAgent()
while True:
exceptions_count = 0
agent.connectToServer()
while True:
try:
start = time.time()
agent.processSensorData()
end = time.time()
if end - start < SEND_INTERVAL :
time.sleep(SEND_INTERVAL - (end - start))
except Exception as msg:
exceptions_count += 1
print(msg[0])
# if we get too many exceptions, we assume the server is dead
# we will ignore the casual exception
if exceptions_count > EXCEPTION_THRESHOLD:
break
else:
continue
# will never get here, unless server dies
try:
agent.close()
except KeyboardInterrupt:
print("Continuous polling stopped")
except Exception as msg:
# eat all exception and go back to connect loop
print(msg[0])
if __name__ == '__main__':
main()
================================================
FILE: Devices/GatewayConnectedDevices/Hydrology/autorun2.sh
================================================
# ---------------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# ---------------------------------------------------------------------------------
#!/bin/bash
#
export GW_HOME=/home/pi/ctdgtwy
echo "$(date) => autorun2.sh: started" >> $GW_HOME/boot_sequence.log
echo "Starting secondary script"
cd $GW_HOME
sudo python $GW_HOME/SensorAgent.py &
echo "$(date) => autorun2.sh: finished" >> $GW_HOME/boot_sequence.log
================================================
FILE: Devices/GatewayConnectedDevices/Hydrology/deploy_next.cmd
================================================
@echo off
REM // ---------------------------------------------------------------------------------
REM // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
REM //
REM // The MIT License (MIT)
REM //
REM // Permission is hereby granted, free of charge, to any person obtaining a copy
REM // of this software and associated documentation files (the "Software"), to deal
REM // in the Software without restriction, including without limitation the rights
REM // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
REM // copies of the Software, and to permit persons to whom the Software is
REM // furnished to do so, subject to the following conditions:
REM //
REM // The above copyright notice and this permission notice shall be included in
REM // all copies or substantial portions of the Software.
REM //
REM // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
REM // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
REM // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
REM // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
REM // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
REM // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
REM // THE SOFTWARE.
REM // ---------------------------------------------------------------------------------
set puttydir="C:\software\putty\"
set prjdir=..\..\Gateways\GatewayService\
set scdir=%prjdir%Scripts\ScriptConverter\bin\
set rpi_ip=xxx.xxx.xxx.xxx
set rpi_usr=pi
set rpi_pw=raspberry
set Configuration=Release
set GW_Home=ctdgtwy
set Staging=%GW_Home%/staging
set PUTTY_CMD=%puttydir%putty %rpi_usr%@%rpi_ip% -pw %rpi_pw%
set PSCP_CMD=%puttydir%pscp -pw %rpi_pw%
echo editing line endings for Pi
%scdir%%Configuration%\ScriptConverter.exe "autorun2.sh"
echo Copying file that starts up python script to read hydrology sensors and format as JSON
%PSCP_CMD% SensorAgent.py %rpi_usr%@%rpi_ip%:%Staging%/
%PSCP_CMD% Modified\autorun2.sh %rpi_usr%@%rpi_ip%:%Staging%/
echo Marking autorun2.sh as executable
del /f %temp%\rpigatewayautorunx.tmp
echo chmod 755 %Staging%/autorun2.sh >> %temp%\rpigatewayautorunx.tmp
%PUTTY_CMD% -m %temp%\rpigatewayautorunx.tmp
================================================
FILE: Devices/GatewayConnectedDevices/WensnSoundLevelMeter/WensnPiVS01/WensnPiVS01.py
================================================
'''
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Code to read data from a Wensn 1361 Digital Sound Level Meter, then augment and format as JSON to send via socket connection to a gateway.
Example of sending sound level data to Microsoft Azure and analyzing with Azure Stream Analytics or Azure Machine Learning.
Real time output viewable at http://connectthedots.msopentech.com .
'''
import sys
import usb.core
import socket
import time
import datetime
#SensorSubject = "sound" # determines how Azure website will chart the data
Org = "My organization";
Disp = "Wensn SLM 01" # will be the label for the curve on the chart
GUID = "nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn" # ensures all the data from this sensor appears on the same chart. You can use the Tools/Create GUID in Visual Studio to create
Locn = "here";
Measure = "sound";
Units = "decibels";
Vendor = 0x16c0 # Vendor ID for Wensn
Product = 0x5dc # Product ID for Wensn 1361
HOST = '127.0.0.1'
PORT = 5000
CONNECT_RETRY_INTERVAL = 2
EXCEPTION_THRESHOLD = 3
SEND_INTERVAL = 1
while 1:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print("Socket created.")
while 1:
try:
s.connect((HOST, PORT));
break;
except socket.error as msg:
print("Socket connection failed. Error Code : " + str(msg[0]) + " Message " + msg[1])
time.sleep(CONNECT_RETRY_INTERVAL)
print ("Socket connection succeeded.")
print ("Looking for an usb device...")
while 1:
dev = usb.core.find(idVendor=Vendor, idProduct=Product)
if dev is not None:
break;
print ("Please plug usb device in. Waiting...")
time.sleep(CONNECT_RETRY_INTERVAL)
print(dev)
print(hex(dev.idVendor) + ", " + hex(dev.idProduct))
exceptions_count = 0
while 1:
ret = dev.ctrl_transfer(0xC0, 4, 0, 0, 200)
dB = (ret[0] + ((ret[1] & 3) * 256)) * 0.1 + 30
timeStr = datetime.datetime.utcnow().isoformat()
try:
JSONdB="{\"value\":"+str(dB)+",\"guid\":\""+GUID+"\",\"organization\":\""+Org+"\",\"displayname\":\""+Disp +"\",\"unitofmeasure\":\""+Units+"\",\"measurename\":\""+Measure+"\",\"location\":\""+Locn+"\",\"timecreated\":\""+timeStr+"\"}"
s.send("<" + JSONdB + ">"); # sends to gateway over socket interface
print(JSONdB) # print only for debugging purposes
except Exception as msg:
exceptions_count += 1
print(msg[0])
# if we get too many exceptions, we assume the server is dead
# we will ignore the casual exception
if exceptions_count > EXCEPTION_THRESHOLD:
break
else:
continue
time.sleep(SEND_INTERVAL)
# will never get here, unless server dies
try:
s.close()
except Exception as msg:
# eat all exception and go back to connect loop
print(msg[0])
================================================
FILE: Devices/GatewayConnectedDevices/WensnSoundLevelMeter/WensnPiVS01/autorun2.sh
================================================
# ---------------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# ---------------------------------------------------------------------------------
#!/bin/bash
#
export GW_HOME=/home/pi/ctdgtwy
echo "$(date) => autorun2.sh: started" >> $GW_HOME/boot_sequence.log
echo "Starting secondary script"
cd $GW_HOME
sudo python $GW_HOME/WensnPiVS01.py &
echo "$(date) => autorun2.sh: finished" >> $GW_HOME/boot_sequence.log
================================================
FILE: Devices/GatewayConnectedDevices/WensnSoundLevelMeter/WensnPiVS01/deploy_next.cmd
================================================
@echo off
REM // ---------------------------------------------------------------------------------
REM // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
REM //
REM // The MIT License (MIT)
REM //
REM // Permission is hereby granted, free of charge, to any person obtaining a copy
REM // of this software and associated documentation files (the "Software"), to deal
REM // in the Software without restriction, including without limitation the rights
REM // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
REM // copies of the Software, and to permit persons to whom the Software is
REM // furnished to do so, subject to the following conditions:
REM //
REM // The above copyright notice and this permission notice shall be included in
REM // all copies or substantial portions of the Software.
REM //
REM // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
REM // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
REM // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
REM // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
REM // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
REM // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
REM // THE SOFTWARE.
REM // ---------------------------------------------------------------------------------
set puttydir="C:\software\putty\"
set prjdir=..\..\..\Gateways\GatewayService\
set scdir=%prjdir%Scripts\ScriptConverter\bin\
set rpi_ip=xxx.xxx.xxx.xxx
set rpi_usr=pi
set rpi_pw=raspberry
set Configuration=Release
set GW_Home=ctdgtwy
set Staging=%GW_Home%/staging
set PUTTY_CMD=%puttydir%putty %rpi_usr%@%rpi_ip% -pw %rpi_pw%
set PSCP_CMD=%puttydir%pscp -pw %rpi_pw%
echo editing line endings for Pi
%scdir%%Configuration%\ScriptConverter.exe "autorun2.sh"
echo Copying file that starts up python script to read USB port connected to Wensn and format as JSON
%PSCP_CMD% WensnPiVS01.py %rpi_usr%@%rpi_ip%:%Staging%/
%PSCP_CMD% Modified\autorun2.sh %rpi_usr%@%rpi_ip%:%Staging%/
echo Marking autorun2.sh as executable
del /f %temp%\rpigatewayautorunx.tmp
echo chmod 755 %Staging%/autorun2.sh >> %temp%\rpigatewayautorunx.tmp
%PUTTY_CMD% -m %temp%\rpigatewayautorunx.tmp
================================================
FILE: Devices/Gateways/GatewayService/Common/Adapter/SensorEndpoint.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
//--//
public class SensorEndpoint
{
public string Name { get; set; }
public string Host { get; set; }
public int Port { get; set; }
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/ILogger.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
public interface ILogger
{
void Flush( );
void LogError( string logMessage );
void LogInfo( string logMessage );
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/IPAddressHelper.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.NetworkInformation;
using System.Net.Sockets;
public static class IPAddressHelper
{
public static void GetIPAddressString( ref string IPString )
{
const int PING_TIMEOUT = 5000;
const int PING_RETRIES_COUNT = 100;
IPString = string.Empty;
string result = string.Empty;
IEnumerable localList = GetLocalIPAddressList( );
if( localList != null && localList.Any( ) )
{
result += "Gateway local IP: " + localList.First( ) + '\n';
}
for( int step = 0; step < PING_RETRIES_COUNT; ++step )
{
IPAddress replyAddress;
replyAddress = GetIPAddressByPing( "corp.microsoft.com", PING_TIMEOUT );
if( replyAddress != null )
{
result += "Gateway public IP: " + replyAddress + '\n';
break;
}
replyAddress = GetIPAddressByPing( "www.microsoft.com", PING_TIMEOUT );
if( replyAddress != null )
{
result += "Gateway public IP: " + replyAddress + '\n';
break;
}
}
if( !string.IsNullOrEmpty( result ) )
{
IPString = result;
}
}
public static IEnumerable GetLocalIPAddressList( )
{
IPHostEntry ipHostEntry = Dns.GetHostEntry( string.Empty );
if( ipHostEntry != null )
{
var selected = ipHostEntry.AddressList.Where( a => a.AddressFamily == AddressFamily.InterNetwork );
return selected;
}
return null;
}
public static IPAddress GetIPAddressByPing( string hostName, int timeout )
{
try
{
Ping ping = new Ping( );
PingReply replay = ping.Send( hostName, timeout );
if( replay != null && replay.Status == IPStatus.Success )
{
return replay.Address;
}
}
catch( Exception )
{
}
return null;
}
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/Logger/NLogEventLogger.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
using NLog;
public class NLogEventLogger : ILogger
{
#region Singleton implementation
private static readonly object _syncRoot = new object( );
//--//
private static ILogger _NLogEventLoggerInstance;
private static NLog.Logger _NLog;
//--//
public static ILogger Instance
{
get
{
if( _NLogEventLoggerInstance == null )
{
lock( _syncRoot )
{
if( _NLogEventLoggerInstance == null )
{
_NLogEventLoggerInstance = new NLogEventLogger( );
}
}
}
return _NLogEventLoggerInstance;
}
}
private NLogEventLogger( )
{
_NLog = LogManager.GetCurrentClassLogger( );
}
#endregion
public void Flush( )
{
LogManager.Flush( );
}
public void LogError( string logMessage )
{
_NLog.Error( logMessage );
}
public void LogInfo( string logMessage )
{
_NLog.Info( logMessage );
}
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/Logger/SafeLogger.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
public class SafeLogger : ILogger
{
protected readonly ILogger _logger;
//--//
protected SafeLogger( ILogger logger )
{
_logger = logger;
}
static public SafeLogger FromLogger( ILogger logger )
{
if( logger is SafeLogger )
{
return ( SafeLogger )logger;
}
return new SafeLogger( logger );
}
public void Flush( )
{
if( _logger != null )
{
_logger.Flush( );
}
}
public void LogError( string logMessage )
{
if( _logger != null )
{
_logger.LogError( logMessage );
}
}
public void LogInfo( string logMessage )
{
if( _logger != null )
{
_logger.LogInfo( logMessage );
}
}
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/Logger/TunableLogger.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
using System;
//--//
public class TunableLogger : ILogger
{
public enum LoggingLevel
{
Disabled = 0,
Errors = 1,
Verbose = 2,
Undefined = 3,
}
//--//
private LoggingLevel _level;
//--//
protected readonly ILogger _Logger;
//--//
protected TunableLogger( ILogger logger )
{
_Logger = logger;
_level = LoggingLevel.Errors;
}
//--//
public static LoggingLevel LevelFromString( string value )
{
if( !String.IsNullOrEmpty( value ) )
{
if( value == LoggingLevel.Disabled.ToString( ) )
{
return LoggingLevel.Disabled;
}
if( value == LoggingLevel.Errors.ToString( ) )
{
return LoggingLevel.Errors;
}
if( value == LoggingLevel.Verbose.ToString( ) )
{
return LoggingLevel.Verbose;
}
}
return LoggingLevel.Undefined;
}
public static TunableLogger FromLogger( ILogger logger )
{
if( logger is TunableLogger )
{
return ( TunableLogger )logger;
}
return new TunableLogger( logger );
}
//--//
public void Flush( )
{
if (_Logger != null)
{
_Logger.Flush( );
}
}
public void LogError( string logMessage )
{
if( _level >= LoggingLevel.Errors )
{
_Logger.LogError( logMessage );
}
}
public void LogInfo( string logMessage )
{
if( _level >= LoggingLevel.Verbose )
{
_Logger.LogInfo( logMessage );
}
}
public LoggingLevel Level
{
get
{
return _level;
}
set
{
_level = value;
}
}
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/Microsoft.ConnectTheDots.Common.csproj
================================================
Debug
AnyCPU
{96FEDA4B-C7E0-4DDB-AD3A-BFF2FD8D973D}
Library
Properties
Microsoft.ConnectTheDots.Common
Microsoft.ConnectTheDots.Common
v4.5.2
512
true
full
false
bin\Debug\
DEBUG;TRACE
prompt
4
pdbonly
true
bin\Release\
TRACE
prompt
4
..\packages\Microsoft.Azure.Devices.Client.PCL.1.0.5\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10+UAP10\Microsoft.Azure.Devices.Client.PCL.dll
True
..\packages\Mono.Security.3.2.3.0\lib\net45\Mono.Security.dll
True
..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll
True
..\packages\NLog.3.2.0.0\lib\net45\NLog.dll
True
..\packages\PCLCrypto.1.0.86\lib\net40-Client\PCLCrypto.dll
True
..\packages\Validation.2.0.6.15003\lib\portable-net40+sl50+win+wpa81+wp80+Xamarin.iOS10+MonoAndroid10+MonoTouch10\Validation.dll
True
================================================
FILE: Devices/Gateways/GatewayService/Common/Platform.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
using System;
public static class Platform
{
public static bool IsMono
{
get
{
return Type.GetType( "Mono.Runtime" ) != null;
}
}
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/Properties/AssemblyInfo.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SharedInterfaces")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SharedInterfaces")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("8acb289d-dbd9-4700-b444-2e8b1de47e8c")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
================================================
FILE: Devices/Gateways/GatewayService/Common/SafeAction.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
using System;
//--//
public class SafeAction
{
private readonly Action _action;
private readonly ILogger _logger;
//--//
public SafeAction( Action action, ILogger logger )
{
_action = action;
_logger = SafeLogger.FromLogger( logger );
}
public void SafeInvoke( TParam obj )
{
try
{
_action( obj );
}
catch( Exception ex )
{
_logger.LogError("Exception in task: " + ex.StackTrace);
_logger.LogError("Message in task: " + ex.Message);
}
}
}
public class SafeAction
{
private readonly Action _action;
private readonly ILogger _logger;
//--//
public SafeAction( Action action, ILogger logger )
{
_action = action;
_logger = SafeLogger.FromLogger( logger );
}
public void SafeInvoke( )
{
try
{
_action( );
}
catch( Exception ex )
{
_logger.LogError("Exception in task: " + ex.StackTrace);
_logger.LogError("Message in task: " + ex.Message);
}
}
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/SafeFunction.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
namespace Microsoft.ConnectTheDots.Common
{
using System;
//--//
public class SafeFunc
{
private readonly Func _function;
private readonly ILogger _logger;
//--//
public SafeFunc( Func function, ILogger logger )
{
_function = function;
_logger = SafeLogger.FromLogger( logger );
}
public TResult SafeInvoke( )
{
try
{
return _function( );
}
catch( Exception ex )
{
_logger.LogError( "Exception in task: " + ex.StackTrace );
}
return default( TResult );
}
}
}
================================================
FILE: Devices/Gateways/GatewayService/Common/Threading/TaskWrapper.cs
================================================
// ---------------------------------------------------------------------------------
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
//
// The MIT License (MIT)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// ---------------------------------------------------------------------------------
//#define USE_TASKS
namespace Microsoft.ConnectTheDots.Common.Threading
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
//--//
using _THREADING = System.Threading.Tasks;
//--//
#if USE_TASKS
public class TaskWrapper
{
private _THREADING.Task _t;
//--//
public static TaskWrapper Run( Action action )
{
var t = new TaskWrapper( action );
t.Start();
return t;
}
public static void WaitAll( params TaskWrapper[] tasks )
{
_THREADING.Task[] ts = new _THREADING.Task[ tasks.Length ];
for( int i = 0; i < tasks.Length; ++i )
{
ts[ i ] = tasks[ i ].InnerTask;
}
_THREADING.Task.WaitAll( ts );
}
public static void BatchWaitAll( params TaskWrapper[] tasks )
{
// we can wait on 64 handles at the most
const int maxHandles = 64;
int remainder = tasks.Length % maxHandles;
int loops = tasks.Length / maxHandles;
_THREADING.Task[] wh = null;
if( tasks.Length > maxHandles )
{
wh = new _THREADING.Task[ maxHandles ];
for( int i = 0; i < loops; ++i )
{
for( int j = 0; j < maxHandles; ++j )
{
wh[ j ] = tasks[ ( i * maxHandles ) + j ].InnerTask;
}
_THREADING.Task.WaitAll( wh, Timeout.Infinite );
}
}
if( remainder > 0 )
{
wh = new _THREADING.Task[ remainder ];
for( int j = 0; j < remainder; ++j )
{
wh[ j ] = tasks[ ( loops * maxHandles ) + j ].InnerTask;
}
_THREADING.Task.WaitAll( wh, Timeout.Infinite );
}
}
//--//
protected TaskWrapper( )
{
}
protected TaskWrapper( Action action )
{
_t = new _THREADING.Task( action );
}
protected TaskWrapper( _THREADING.Task t )
{
Debug.Assert( t != null );
_t = t;
}
public void Start()
{
_t.Start( );
}
public void Wait()
{
_t.Wait( );
}
public int Id
{
get
{
return _t.Id;
}
}
public _THREADING.TaskStatus Status
{
get
{
return (_THREADING.TaskStatus)_t.Status;
}
}
protected _THREADING.Task InnerTask
{
get
{
return _t;
}
set
{
_t = value;
}
}
}
public class TaskWrapper : TaskWrapper
{
private readonly _THREADING.Task _t;
//--//
public static TaskWrapper Run( Func function )
{
var t = new TaskWrapper( function );
t.Start();
return t;
}
//--//
private static Action MakeDefault( Func function )
{
return () => { function(); };
}
public TaskWrapper( Func function )
: base( )
{
_t = new _THREADING.Task( function );
InnerTask = _t;
}
private TaskWrapper( _THREADING.Task t )
: base ( t )
{
}
public TaskWrapper ContinueWith( Func<_THREADING.Task