fable-compiler-js
Advanced tools
Comparing version
191
dist/app.js
@@ -7,2 +7,3 @@ "use strict"; | ||
exports.$007CRegex$007C_$007C = $007CRegex$007C_$007C; | ||
exports.parseProjectScript = parseProjectScript; | ||
exports.parseProjectFile = parseProjectFile; | ||
@@ -44,3 +45,3 @@ exports.parseProject = parseProject; | ||
exports.references = references; | ||
const metadataPath = (0, _String.trim)((0, _platform.getMetadataDir)(), "\\", "/") + "/"; | ||
const metadataPath = (0, _String.trimEnd)((0, _platform.getMetadataDir)(), "\\", "/") + "/"; | ||
exports.metadataPath = metadataPath; | ||
@@ -64,25 +65,20 @@ | ||
function parseProjectFile(projectPath) { | ||
function parseProjectScript(projectPath) { | ||
const projectFileName = (0, _platform.Path$$$GetFileName)(projectPath); | ||
const projectText = (0, _platform.readAllText)(projectPath); | ||
const projectDir = (0, _platform.Path$$$GetDirectoryName)(projectPath); | ||
const patternInput = (0, _Array.fold)(function folder(tupledArg, line) { | ||
var path; | ||
const line$$1 = line.trim(); | ||
const matchValue = line$$1.trim(); | ||
var $target$$24, path$$1; | ||
const activePatternResult150 = $007CRegex$007C_$007C("^#r\\s+\"(.*?)\"$", matchValue); | ||
if ((0, _String.endsWith)(projectPath, ".fsx")) { | ||
const projDir = (0, _platform.Path$$$GetDirectoryName)(projectPath); | ||
const patternInput = (0, _Array.fold)(function folder(tupledArg, line) { | ||
var path; | ||
const line$$1 = line.trim(); | ||
const matchValue = line$$1.trim(); | ||
var $target$$24, path$$1; | ||
const activePatternResult150 = $007CRegex$007C_$007C("^#r\\s+\"(.*?)\"$", matchValue); | ||
if (activePatternResult150 != null) { | ||
if (activePatternResult150.tail != null) { | ||
if (activePatternResult150.tail.tail != null) { | ||
if (activePatternResult150.tail.tail.tail == null) { | ||
if (path = activePatternResult150.tail.head, !(0, _String.endsWith)(path, "Fable.Core.dll")) { | ||
$target$$24 = 0; | ||
path$$1 = activePatternResult150.tail.head; | ||
} else { | ||
$target$$24 = 1; | ||
} | ||
if (activePatternResult150 != null) { | ||
if (activePatternResult150.tail != null) { | ||
if (activePatternResult150.tail.tail != null) { | ||
if (activePatternResult150.tail.tail.tail == null) { | ||
if (path = activePatternResult150.tail.head, !(0, _String.endsWith)(path, "Fable.Core.dll")) { | ||
$target$$24 = 0; | ||
path$$1 = activePatternResult150.tail.head; | ||
} else { | ||
@@ -100,23 +96,23 @@ $target$$24 = 1; | ||
} | ||
} else { | ||
$target$$24 = 1; | ||
} | ||
switch ($target$$24) { | ||
case 0: | ||
{ | ||
return [(0, _Array.append)([(0, _platform.Path$$$Combine)(projDir, path$$1)], tupledArg[0], Array), tupledArg[1]]; | ||
} | ||
switch ($target$$24) { | ||
case 0: | ||
{ | ||
return [(0, _Array.append)([(0, _platform.Path$$$Combine)(projectDir, path$$1)], tupledArg[0], Array), tupledArg[1]]; | ||
} | ||
case 1: | ||
{ | ||
var $target$$25, path$$2; | ||
const activePatternResult148 = $007CRegex$007C_$007C("^#load\\s+\"(.*?)\"$", matchValue); | ||
case 1: | ||
{ | ||
var $target$$25, path$$2; | ||
const activePatternResult148 = $007CRegex$007C_$007C("^#load\\s+\"(.*?)\"$", matchValue); | ||
if (activePatternResult148 != null) { | ||
if (activePatternResult148.tail != null) { | ||
if (activePatternResult148.tail.tail != null) { | ||
if (activePatternResult148.tail.tail.tail == null) { | ||
$target$$25 = 0; | ||
path$$2 = activePatternResult148.tail.head; | ||
} else { | ||
$target$$25 = 1; | ||
} | ||
if (activePatternResult148 != null) { | ||
if (activePatternResult148.tail != null) { | ||
if (activePatternResult148.tail.tail != null) { | ||
if (activePatternResult148.tail.tail.tail == null) { | ||
$target$$25 = 0; | ||
path$$2 = activePatternResult148.tail.head; | ||
} else { | ||
@@ -131,45 +127,55 @@ $target$$25 = 1; | ||
} | ||
} else { | ||
$target$$25 = 1; | ||
} | ||
switch ($target$$25) { | ||
case 0: | ||
{ | ||
return [tupledArg[0], (0, _Array.append)([(0, _platform.Path$$$Combine)(projDir, path$$2)], tupledArg[1], Array)]; | ||
} | ||
switch ($target$$25) { | ||
case 0: | ||
{ | ||
return [tupledArg[0], (0, _Array.append)([(0, _platform.Path$$$Combine)(projectDir, path$$2)], tupledArg[1], Array)]; | ||
} | ||
case 1: | ||
{ | ||
return [tupledArg[0], tupledArg[1]]; | ||
} | ||
} | ||
case 1: | ||
{ | ||
return [tupledArg[0], tupledArg[1]]; | ||
} | ||
} | ||
} | ||
}, [[], []], (0, _String.split)(projectText, ["\n"], null, 0)); | ||
return [projectFileName, patternInput[0], [], (0, _Array.append)(patternInput[1], [projectPath], Array), ["FABLE_COMPILER"]]; | ||
} else { | ||
const projectText$$1 = (0, _RegExp.replace)(projectText, "<!--[\\s\\S]*?-->", ""); | ||
const definesRegex = "<DefineConstants[^>]*>([^<]*)<\\/DefineConstants[^>]*>"; | ||
const defines = (0, _Array.ofSeq)((0, _Seq.except)(["$(DefineConstants)", ""], (0, _Set.distinct)((0, _Seq.map)(function mapping$$1(s) { | ||
return s.trim(); | ||
}, (0, _Seq.append)(["FABLE_COMPILER"], (0, _Seq.collect)(function mapping(m$$1) { | ||
return (0, _String.split)(m$$1[1] || "", [";"], null, 0); | ||
}, (0, _RegExp.matches)(projectText$$1, definesRegex)))), { | ||
Compare: _Util.comparePrimitives | ||
})), Array); | ||
const projectRefsRegex = "<ProjectReference\\s+[^>]*Include\\s*=\\s*(\"[^\"]*|'[^']*)"; | ||
const projectRefs = (0, _Array.ofSeq)((0, _Seq.map)(function mapping$$2(m$$2) { | ||
return (0, _String.replace)((0, _String.trimStart)((0, _String.trimStart)(m$$2[1] || "", "\""), "'").trim(), "\\", "/"); | ||
}, (0, _RegExp.matches)(projectText$$1, projectRefsRegex)), Array); | ||
const projectText$$2 = (0, _String.replace)(projectText$$1, "$(MSBuildProjectDirectory)", __dirname); | ||
const sourceFilesRegex = "<Compile\\s+[^>]*Include\\s*=\\s*(\"[^\"]*|'[^']*)"; | ||
const sourceFiles = (0, _Array.ofSeq)((0, _Seq.map)(function mapping$$3(m$$3) { | ||
return (0, _String.replace)((0, _String.trimStart)((0, _String.trimStart)(m$$3[1] || "", "\""), "'").trim(), "\\", "/"); | ||
}, (0, _RegExp.matches)(projectText$$2, sourceFilesRegex)), Array); | ||
return [projectFileName, [], projectRefs, sourceFiles, defines]; | ||
} | ||
} | ||
} | ||
}, [[], []], (0, _String.split)(projectText, ["\n"], null, 0)); | ||
const sourceFiles = (0, _Array.append)(patternInput[1], [(0, _platform.Path$$$GetFileName)(projectPath)], Array); | ||
return [projectFileName, patternInput[0], [], sourceFiles, ["FABLE_COMPILER"]]; | ||
} | ||
function parseProject(projectPath$$1) { | ||
const patternInput$$1 = parseProjectFile(projectPath$$1); | ||
const projectFileDir = (0, _platform.Path$$$GetDirectoryName)(projectPath$$1); | ||
function parseProjectFile(projectPath$$1) { | ||
const projectFileName$$1 = (0, _platform.Path$$$GetFileName)(projectPath$$1); | ||
const projectText$$1 = (0, _platform.readAllText)(projectPath$$1); | ||
const projectText$$2 = (0, _RegExp.replace)(projectText$$1, "<!--[\\s\\S]*?-->", ""); | ||
const definesRegex = "<DefineConstants[^>]*>([^<]*)<\\/DefineConstants[^>]*>"; | ||
const defines = (0, _Array.ofSeq)((0, _Seq.except)(["$(DefineConstants)", ""], (0, _Set.distinct)((0, _Seq.map)(function mapping$$1(s) { | ||
return s.trim(); | ||
}, (0, _Seq.append)(["FABLE_COMPILER"], (0, _Seq.collect)(function mapping(m$$1) { | ||
return (0, _String.split)(m$$1[1] || "", [";"], null, 0); | ||
}, (0, _RegExp.matches)(projectText$$2, definesRegex)))), { | ||
Compare: _Util.comparePrimitives | ||
})), Array); | ||
const projectRefsRegex = "<ProjectReference\\s+[^>]*Include\\s*=\\s*(\"[^\"]*|'[^']*)"; | ||
const projectRefs = (0, _Array.ofSeq)((0, _Seq.map)(function mapping$$2(m$$2) { | ||
return (0, _String.replace)((0, _String.trimStart)((0, _String.trimStart)(m$$2[1] || "", "\""), "'").trim(), "\\", "/"); | ||
}, (0, _RegExp.matches)(projectText$$2, projectRefsRegex)), Array); | ||
const projectText$$3 = (0, _String.replace)(projectText$$2, "$(MSBuildProjectDirectory)", __dirname); | ||
const m$$3 = (0, _RegExp.match)(projectText$$3, "<FSharpSourcesRoot[^>]*>([^<]*)<\\/FSharpSourcesRoot[^>]*>"); | ||
const sourcesRoot = m$$3 != null ? (0, _String.replace)(m$$3[1] || "", "\\", "/") : ""; | ||
const projectText$$4 = (0, _String.replace)(projectText$$3, "$(FSharpSourcesRoot)", sourcesRoot); | ||
const sourceFilesRegex = "<Compile\\s+[^>]*Include\\s*=\\s*(\"[^\"]*|'[^']*)"; | ||
const sourceFiles$$1 = (0, _Array.ofSeq)((0, _Seq.map)(function mapping$$3(m$$4) { | ||
return (0, _String.replace)((0, _String.trimStart)((0, _String.trimStart)(m$$4[1] || "", "\""), "'").trim(), "\\", "/"); | ||
}, (0, _RegExp.matches)(projectText$$4, sourceFilesRegex)), Array); | ||
return [projectFileName$$1, [], projectRefs, sourceFiles$$1, defines]; | ||
} | ||
function parseProject(projectPath$$2) { | ||
const patternInput$$1 = (0, _String.endsWith)(projectPath$$2, ".fsx") ? parseProjectScript(projectPath$$2) : parseProjectFile(projectPath$$2); | ||
const projectFileDir = (0, _platform.Path$$$GetDirectoryName)(projectPath$$2); | ||
const isAbsolutePath = function isAbsolutePath(path$$3) { | ||
@@ -184,3 +190,3 @@ if (path$$3.indexOf("/") === 0) { | ||
const trimPath = function trimPath(path$$4) { | ||
return (0, _String.replace)((0, _String.trimStart)(path$$4, ".", "/"), ":", ""); | ||
return (0, _String.replace)((0, _String.replace)((0, _String.replace)(path$$4, "../", ""), "./", ""), ":", ""); | ||
}; | ||
@@ -285,4 +291,4 @@ | ||
function parseFiles(projectPath$$3, outDir, options) { | ||
const patternInput$$3 = parseProject(projectPath$$3); | ||
function parseFiles(projectPath$$4, outDir, options) { | ||
const patternInput$$3 = parseProject(projectPath$$4); | ||
const fileNames$$4 = dedupFileNames(patternInput$$3[2]); | ||
@@ -343,7 +349,7 @@ const extraDll = (0, _Map.ofSeq)((0, _Seq.map)(function mapping$$10(x$$3) { | ||
function run(opts, projectPath$$4, outDir$$1) { | ||
function run(opts, projectPath$$5, outDir$$1) { | ||
const commandToRun = (0, _Option.defaultArg)((0, _Array.tryFindIndex)(function predicate$$2(y) { | ||
return "--run" === y; | ||
}, opts), null, function mapping$$11(i$$1) { | ||
const scriptFile = (0, _platform.Path$$$Combine)(outDir$$1, (0, _platform.Path$$$GetFileNameWithoutExtension)(projectPath$$4) + ".js"); | ||
const scriptFile = (0, _platform.Path$$$Combine)(outDir$$1, (0, _platform.Path$$$GetFileNameWithoutExtension)(projectPath$$5) + ".js"); | ||
const runArgs = (0, _String.join)(" ", ...opts.slice(i$$1 + 1, opts.length)); | ||
@@ -371,3 +377,3 @@ return (0, _String.toText)((0, _String.printf)("node %s %s"))(scriptFile)(runArgs); | ||
})); | ||
parseFiles(projectPath$$4, outDir$$1, options$$1); | ||
parseFiles(projectPath$$5, outDir$$1, options$$1); | ||
(0, _Seq.iterate)(_platform.runCmdAndExitIfFails, (0, _Option.defaultArg)(commandToRun, [], function ($x$$13) { | ||
@@ -393,3 +399,3 @@ return [$x$$13]; | ||
const matchValue$$2 = [patternInput$$7[1], patternInput$$7[0]]; | ||
var $target$$27, projectPath$$5, outDir$$3, projectPath$$6; | ||
var $target$$27, projectPath$$6, outDir$$3, projectPath$$7; | ||
@@ -403,7 +409,7 @@ if (!(0, _Array.equalsWith)(_Util.comparePrimitives, matchValue$$2[0], null) ? matchValue$$2[0].length === 1 : false) { | ||
$target$$27 = 2; | ||
projectPath$$5 = matchValue$$2[1][0]; | ||
projectPath$$6 = matchValue$$2[1][0]; | ||
} else if (!(0, _Array.equalsWith)(_Util.comparePrimitives, matchValue$$2[1], null) ? matchValue$$2[1].length === 2 : false) { | ||
$target$$27 = 3; | ||
outDir$$3 = matchValue$$2[1][1]; | ||
projectPath$$6 = matchValue$$2[1][0]; | ||
projectPath$$7 = matchValue$$2[1][0]; | ||
} else { | ||
@@ -414,7 +420,7 @@ $target$$27 = 4; | ||
$target$$27 = 2; | ||
projectPath$$5 = matchValue$$2[1][0]; | ||
projectPath$$6 = matchValue$$2[1][0]; | ||
} else if (!(0, _Array.equalsWith)(_Util.comparePrimitives, matchValue$$2[1], null) ? matchValue$$2[1].length === 2 : false) { | ||
$target$$27 = 3; | ||
outDir$$3 = matchValue$$2[1][1]; | ||
projectPath$$6 = matchValue$$2[1][0]; | ||
projectPath$$7 = matchValue$$2[1][0]; | ||
} else { | ||
@@ -439,3 +445,3 @@ $target$$27 = 4; | ||
{ | ||
run(patternInput$$7[1], projectPath$$5, (0, _platform.Path$$$Combine)((0, _platform.Path$$$GetDirectoryName)(projectPath$$5), "bin")); | ||
run(patternInput$$7[1], projectPath$$6, (0, _platform.Path$$$Combine)((0, _platform.Path$$$GetDirectoryName)(projectPath$$6), "bin")); | ||
break; | ||
@@ -446,3 +452,3 @@ } | ||
{ | ||
run(patternInput$$7[1], projectPath$$6, outDir$$3); | ||
run(patternInput$$7[1], projectPath$$7, outDir$$3); | ||
break; | ||
@@ -460,9 +466,4 @@ } | ||
(function (argv$$1) { | ||
try { | ||
parseArguments(argv$$1); | ||
} catch (ex) { | ||
(0, _String.toConsole)((0, _String.printf)("Error: %A"))(ex.message); | ||
} | ||
parseArguments(argv$$1); | ||
return 0; | ||
})(process.argv.slice(2)); |
@@ -136,2 +136,6 @@ "use strict"; | ||
break; | ||
case "f": | ||
rep = utc ? date.getUTCMilliseconds() : date.getMilliseconds(); | ||
break; | ||
} | ||
@@ -138,0 +142,0 @@ |
@@ -76,2 +76,5 @@ /** | ||
break; | ||
case "f": | ||
rep = utc ? date.getUTCMilliseconds() : date.getMilliseconds(); | ||
break; | ||
} | ||
@@ -78,0 +81,0 @@ if (rep !== match && rep < 10 && match.length > 1) { |
@@ -14,4 +14,8 @@ "use strict"; | ||
exports.Path$$$GetDirectoryName = Path$$$GetDirectoryName; | ||
exports.runCmdAndExitIfFails = exports.getMetadataDir = exports.initFable = exports.transformAndSaveBabelAst = exports.copyFolder = exports.ensureDirExists = exports.getVersion = void 0; | ||
exports.runCmdAndExitIfFails = exports.transformAndSaveBabelAst = exports.copyFolder = exports.ensureDirExists = exports.getVersion = exports.getMetadataDir = exports.initFable = void 0; | ||
var _commonjs = require("fable-standalone/dist/commonjs"); | ||
var _fableMetadata = _interopRequireDefault(require("fable-metadata")); | ||
var fs = _interopRequireWildcard(require("fs")); | ||
@@ -27,10 +31,10 @@ | ||
var _fableStandalone = require("fable-standalone"); | ||
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } } | ||
var _fableMetadata = _interopRequireDefault(require("fable-metadata")); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } } | ||
const initFable = _commonjs.init; | ||
exports.initFable = initFable; | ||
const getMetadataDir = _fableMetadata.default; | ||
exports.getMetadataDir = getMetadataDir; | ||
const FileSystem = fs; | ||
@@ -66,6 +70,2 @@ const Process = process; | ||
exports.transformAndSaveBabelAst = transformAndSaveBabelAst; | ||
const initFable = _fableStandalone.init; | ||
exports.initFable = initFable; | ||
const getMetadataDir = _fableMetadata.default; | ||
exports.getMetadataDir = getMetadataDir; | ||
const runCmdAndExitIfFails = _util.runCmdAndExitIfFails; | ||
@@ -72,0 +72,0 @@ exports.runCmdAndExitIfFails = runCmdAndExitIfFails; |
{ | ||
"name": "fable-compiler-js", | ||
"version": "1.0.0-alpha-016", | ||
"version": "1.0.0-alpha-017", | ||
"main": "index.js", | ||
@@ -29,4 +29,4 @@ "bin": { | ||
"fable-metadata": "^1.0.0-beta-002", | ||
"fable-standalone": "^1.0.0-beta-001" | ||
"fable-standalone": "^1.0.0-beta-002" | ||
} | ||
} |
@@ -0,1 +1,5 @@ | ||
### 1.0.0-alpha-017 | ||
* Update dependencies and other fixes | ||
### 1.0.0-alpha-016 | ||
@@ -2,0 +6,0 @@ |
const path = require("path"); | ||
const testLocal = process.argv.find(v => v === "--test-local"); | ||
if (testLocal) { | ||
console.log("Using local fable-standalone and fable-metadata...") | ||
} | ||
module.exports = { | ||
entry: path.join(__dirname, "./src/fable-compiler.fsproj"), | ||
entry: path.join(__dirname, "./src/fable-compiler-js.fsproj"), | ||
outDir: path.join(__dirname, "./dist"), | ||
@@ -9,2 +14,5 @@ babel: { | ||
}, | ||
fable: { | ||
define: testLocal ? ["TEST_LOCAL"] : [] | ||
} | ||
}; |
{ | ||
"version": 3, | ||
"targets": { | ||
".NETCoreApp,Version=v2.0": { | ||
".NETCoreApp,Version=v2.1": { | ||
"Fable.Core/2.0.2": { | ||
@@ -70,174 +70,176 @@ "type": "package", | ||
}, | ||
"Microsoft.NETCore.App/2.0.0": { | ||
"Microsoft.NETCore.App/2.1.0": { | ||
"type": "package", | ||
"dependencies": { | ||
"Microsoft.NETCore.DotNetHostPolicy": "2.0.0", | ||
"Microsoft.NETCore.Platforms": "2.0.0", | ||
"NETStandard.Library": "2.0.0" | ||
"Microsoft.NETCore.DotNetHostPolicy": "2.1.0", | ||
"Microsoft.NETCore.Platforms": "2.1.0", | ||
"Microsoft.NETCore.Targets": "2.1.0", | ||
"NETStandard.Library": "2.0.3" | ||
}, | ||
"compile": { | ||
"ref/netcoreapp2.0/Microsoft.CSharp.dll": {}, | ||
"ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {}, | ||
"ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {}, | ||
"ref/netcoreapp2.0/System.AppContext.dll": {}, | ||
"ref/netcoreapp2.0/System.Buffers.dll": {}, | ||
"ref/netcoreapp2.0/System.Collections.Concurrent.dll": {}, | ||
"ref/netcoreapp2.0/System.Collections.Immutable.dll": {}, | ||
"ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {}, | ||
"ref/netcoreapp2.0/System.Collections.Specialized.dll": {}, | ||
"ref/netcoreapp2.0/System.Collections.dll": {}, | ||
"ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {}, | ||
"ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {}, | ||
"ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {}, | ||
"ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {}, | ||
"ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {}, | ||
"ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {}, | ||
"ref/netcoreapp2.0/System.ComponentModel.dll": {}, | ||
"ref/netcoreapp2.0/System.Configuration.dll": {}, | ||
"ref/netcoreapp2.0/System.Console.dll": {}, | ||
"ref/netcoreapp2.0/System.Core.dll": {}, | ||
"ref/netcoreapp2.0/System.Data.Common.dll": {}, | ||
"ref/netcoreapp2.0/System.Data.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.Process.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {}, | ||
"ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {}, | ||
"ref/netcoreapp2.0/System.Drawing.Primitives.dll": {}, | ||
"ref/netcoreapp2.0/System.Drawing.dll": {}, | ||
"ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {}, | ||
"ref/netcoreapp2.0/System.Globalization.Calendars.dll": {}, | ||
"ref/netcoreapp2.0/System.Globalization.Extensions.dll": {}, | ||
"ref/netcoreapp2.0/System.Globalization.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.Compression.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.FileSystem.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.Pipes.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {}, | ||
"ref/netcoreapp2.0/System.IO.dll": {}, | ||
"ref/netcoreapp2.0/System.Linq.Expressions.dll": {}, | ||
"ref/netcoreapp2.0/System.Linq.Parallel.dll": {}, | ||
"ref/netcoreapp2.0/System.Linq.Queryable.dll": {}, | ||
"ref/netcoreapp2.0/System.Linq.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.Http.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.HttpListener.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.Mail.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.NameResolution.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.Ping.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.Primitives.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.Requests.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.Security.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.ServicePoint.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.Sockets.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.WebClient.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.WebProxy.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.WebSockets.dll": {}, | ||
"ref/netcoreapp2.0/System.Net.dll": {}, | ||
"ref/netcoreapp2.0/System.Numerics.Vectors.dll": {}, | ||
"ref/netcoreapp2.0/System.Numerics.dll": {}, | ||
"ref/netcoreapp2.0/System.ObjectModel.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.Emit.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.Extensions.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.Metadata.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.Primitives.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {}, | ||
"ref/netcoreapp2.0/System.Reflection.dll": {}, | ||
"ref/netcoreapp2.0/System.Resources.Reader.dll": {}, | ||
"ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {}, | ||
"ref/netcoreapp2.0/System.Resources.Writer.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Extensions.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Handles.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Loader.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Numerics.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.dll": {}, | ||
"ref/netcoreapp2.0/System.Runtime.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.Claims.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.Principal.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.SecureString.dll": {}, | ||
"ref/netcoreapp2.0/System.Security.dll": {}, | ||
"ref/netcoreapp2.0/System.ServiceModel.Web.dll": {}, | ||
"ref/netcoreapp2.0/System.ServiceProcess.dll": {}, | ||
"ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {}, | ||
"ref/netcoreapp2.0/System.Text.Encoding.dll": {}, | ||
"ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.Overlapped.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.Tasks.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.Thread.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.Timer.dll": {}, | ||
"ref/netcoreapp2.0/System.Threading.dll": {}, | ||
"ref/netcoreapp2.0/System.Transactions.Local.dll": {}, | ||
"ref/netcoreapp2.0/System.Transactions.dll": {}, | ||
"ref/netcoreapp2.0/System.ValueTuple.dll": {}, | ||
"ref/netcoreapp2.0/System.Web.HttpUtility.dll": {}, | ||
"ref/netcoreapp2.0/System.Web.dll": {}, | ||
"ref/netcoreapp2.0/System.Windows.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.Linq.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.Serialization.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.XDocument.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.XPath.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {}, | ||
"ref/netcoreapp2.0/System.Xml.dll": {}, | ||
"ref/netcoreapp2.0/System.dll": {}, | ||
"ref/netcoreapp2.0/WindowsBase.dll": {}, | ||
"ref/netcoreapp2.0/mscorlib.dll": {}, | ||
"ref/netcoreapp2.0/netstandard.dll": {} | ||
"ref/netcoreapp2.1/Microsoft.CSharp.dll": {}, | ||
"ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {}, | ||
"ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {}, | ||
"ref/netcoreapp2.1/System.AppContext.dll": {}, | ||
"ref/netcoreapp2.1/System.Buffers.dll": {}, | ||
"ref/netcoreapp2.1/System.Collections.Concurrent.dll": {}, | ||
"ref/netcoreapp2.1/System.Collections.Immutable.dll": {}, | ||
"ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {}, | ||
"ref/netcoreapp2.1/System.Collections.Specialized.dll": {}, | ||
"ref/netcoreapp2.1/System.Collections.dll": {}, | ||
"ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {}, | ||
"ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {}, | ||
"ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {}, | ||
"ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {}, | ||
"ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {}, | ||
"ref/netcoreapp2.1/System.ComponentModel.dll": {}, | ||
"ref/netcoreapp2.1/System.Configuration.dll": {}, | ||
"ref/netcoreapp2.1/System.Console.dll": {}, | ||
"ref/netcoreapp2.1/System.Core.dll": {}, | ||
"ref/netcoreapp2.1/System.Data.Common.dll": {}, | ||
"ref/netcoreapp2.1/System.Data.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.Process.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {}, | ||
"ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {}, | ||
"ref/netcoreapp2.1/System.Drawing.Primitives.dll": {}, | ||
"ref/netcoreapp2.1/System.Drawing.dll": {}, | ||
"ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {}, | ||
"ref/netcoreapp2.1/System.Globalization.Calendars.dll": {}, | ||
"ref/netcoreapp2.1/System.Globalization.Extensions.dll": {}, | ||
"ref/netcoreapp2.1/System.Globalization.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.Compression.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.FileSystem.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.Pipes.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {}, | ||
"ref/netcoreapp2.1/System.IO.dll": {}, | ||
"ref/netcoreapp2.1/System.Linq.Expressions.dll": {}, | ||
"ref/netcoreapp2.1/System.Linq.Parallel.dll": {}, | ||
"ref/netcoreapp2.1/System.Linq.Queryable.dll": {}, | ||
"ref/netcoreapp2.1/System.Linq.dll": {}, | ||
"ref/netcoreapp2.1/System.Memory.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.Http.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.HttpListener.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.Mail.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.NameResolution.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.Ping.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.Primitives.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.Requests.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.Security.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.ServicePoint.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.Sockets.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.WebClient.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.WebProxy.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.WebSockets.dll": {}, | ||
"ref/netcoreapp2.1/System.Net.dll": {}, | ||
"ref/netcoreapp2.1/System.Numerics.Vectors.dll": {}, | ||
"ref/netcoreapp2.1/System.Numerics.dll": {}, | ||
"ref/netcoreapp2.1/System.ObjectModel.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.Emit.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.Extensions.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.Metadata.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.Primitives.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {}, | ||
"ref/netcoreapp2.1/System.Reflection.dll": {}, | ||
"ref/netcoreapp2.1/System.Resources.Reader.dll": {}, | ||
"ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {}, | ||
"ref/netcoreapp2.1/System.Resources.Writer.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Extensions.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Handles.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Loader.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Numerics.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.dll": {}, | ||
"ref/netcoreapp2.1/System.Runtime.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.Claims.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.Principal.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.SecureString.dll": {}, | ||
"ref/netcoreapp2.1/System.Security.dll": {}, | ||
"ref/netcoreapp2.1/System.ServiceModel.Web.dll": {}, | ||
"ref/netcoreapp2.1/System.ServiceProcess.dll": {}, | ||
"ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {}, | ||
"ref/netcoreapp2.1/System.Text.Encoding.dll": {}, | ||
"ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.Overlapped.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.Tasks.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.Thread.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.Timer.dll": {}, | ||
"ref/netcoreapp2.1/System.Threading.dll": {}, | ||
"ref/netcoreapp2.1/System.Transactions.Local.dll": {}, | ||
"ref/netcoreapp2.1/System.Transactions.dll": {}, | ||
"ref/netcoreapp2.1/System.ValueTuple.dll": {}, | ||
"ref/netcoreapp2.1/System.Web.HttpUtility.dll": {}, | ||
"ref/netcoreapp2.1/System.Web.dll": {}, | ||
"ref/netcoreapp2.1/System.Windows.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.Linq.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.Serialization.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.XDocument.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.XPath.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {}, | ||
"ref/netcoreapp2.1/System.Xml.dll": {}, | ||
"ref/netcoreapp2.1/System.dll": {}, | ||
"ref/netcoreapp2.1/WindowsBase.dll": {}, | ||
"ref/netcoreapp2.1/mscorlib.dll": {}, | ||
"ref/netcoreapp2.1/netstandard.dll": {} | ||
}, | ||
"build": { | ||
"build/netcoreapp2.0/Microsoft.NETCore.App.props": {}, | ||
"build/netcoreapp2.0/Microsoft.NETCore.App.targets": {} | ||
"build/netcoreapp2.1/Microsoft.NETCore.App.props": {}, | ||
"build/netcoreapp2.1/Microsoft.NETCore.App.targets": {} | ||
} | ||
}, | ||
"Microsoft.NETCore.DotNetAppHost/2.0.0": { | ||
"Microsoft.NETCore.DotNetAppHost/2.1.0": { | ||
"type": "package" | ||
}, | ||
"Microsoft.NETCore.DotNetHostPolicy/2.0.0": { | ||
"Microsoft.NETCore.DotNetHostPolicy/2.1.0": { | ||
"type": "package", | ||
"dependencies": { | ||
"Microsoft.NETCore.DotNetHostResolver": "2.0.0" | ||
"Microsoft.NETCore.DotNetHostResolver": "2.1.0" | ||
} | ||
}, | ||
"Microsoft.NETCore.DotNetHostResolver/2.0.0": { | ||
"Microsoft.NETCore.DotNetHostResolver/2.1.0": { | ||
"type": "package", | ||
"dependencies": { | ||
"Microsoft.NETCore.DotNetAppHost": "2.0.0" | ||
"Microsoft.NETCore.DotNetAppHost": "2.1.0" | ||
} | ||
}, | ||
"Microsoft.NETCore.Platforms/2.0.0": { | ||
"Microsoft.NETCore.Platforms/2.1.0": { | ||
"type": "package", | ||
@@ -251,4 +253,13 @@ "compile": { | ||
}, | ||
"NETStandard.Library/2.0.0": { | ||
"Microsoft.NETCore.Targets/2.1.0": { | ||
"type": "package", | ||
"compile": { | ||
"lib/netstandard1.0/_._": {} | ||
}, | ||
"runtime": { | ||
"lib/netstandard1.0/_._": {} | ||
} | ||
}, | ||
"NETStandard.Library/2.0.3": { | ||
"type": "package", | ||
"dependencies": { | ||
@@ -285,3 +296,3 @@ "Microsoft.NETCore.Platforms": "1.1.0" | ||
"FSharp.Core/4.5.2": { | ||
"sha512": "Pe3EDp9oBjQ3c3fvZAJsw7XFLHECS3zn3P7MSqsJy3sFYR6jvTgxxnCFeePR1JHiWyZ3bm+RZAjchqVYk61adA==", | ||
"sha512": "mQlCpyv/wNZAihLBUbBu8gS4NpXpBCTw/eMQqujn8sGBukxSYH3CoE0vPABACNQEv7HoAX7CJt5q7l6Yb2E2hg==", | ||
"type": "package", | ||
@@ -334,6 +345,6 @@ "path": "fsharp.core/4.5.2", | ||
}, | ||
"Microsoft.NETCore.App/2.0.0": { | ||
"sha512": "8Lrz5RgmfIUMtpTmGG1Z+nVlCr14bFco/aQdiNYfb7uys37vQ6dVtds9xPIFANVyf6HFePhD9nGmqFcfv5eKMQ==", | ||
"Microsoft.NETCore.App/2.1.0": { | ||
"sha512": "AvT774nTFgU8cYcGO9j1EMwuayKslxqYTurg32HGpWa2hEYNuW2+XgYVVNcZe6Ndbr84QX6fwaOZfd5n+1m2OA==", | ||
"type": "package", | ||
"path": "microsoft.netcore.app/2.0.0", | ||
"path": "microsoft.netcore.app/2.1.0", | ||
"files": [ | ||
@@ -345,276 +356,263 @@ ".nupkg.metadata", | ||
"THIRD-PARTY-NOTICES.TXT", | ||
"build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt", | ||
"build/netcoreapp2.0/Microsoft.NETCore.App.props", | ||
"build/netcoreapp2.0/Microsoft.NETCore.App.targets", | ||
"microsoft.netcore.app.2.0.0.nupkg.sha512", | ||
"build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt", | ||
"build/netcoreapp2.1/Microsoft.NETCore.App.props", | ||
"build/netcoreapp2.1/Microsoft.NETCore.App.targets", | ||
"microsoft.netcore.app.2.1.0.nupkg.sha512", | ||
"microsoft.netcore.app.nuspec", | ||
"paket-installmodel.cache", | ||
"ref/netcoreapp/_._", | ||
"ref/netcoreapp2.0/Microsoft.CSharp.dll", | ||
"ref/netcoreapp2.0/Microsoft.CSharp.xml", | ||
"ref/netcoreapp2.0/Microsoft.VisualBasic.dll", | ||
"ref/netcoreapp2.0/Microsoft.VisualBasic.xml", | ||
"ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll", | ||
"ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml", | ||
"ref/netcoreapp2.0/System.AppContext.dll", | ||
"ref/netcoreapp2.0/System.AppContext.xml", | ||
"ref/netcoreapp2.0/System.Buffers.dll", | ||
"ref/netcoreapp2.0/System.Buffers.xml", | ||
"ref/netcoreapp2.0/System.Collections.Concurrent.dll", | ||
"ref/netcoreapp2.0/System.Collections.Concurrent.xml", | ||
"ref/netcoreapp2.0/System.Collections.Immutable.dll", | ||
"ref/netcoreapp2.0/System.Collections.Immutable.xml", | ||
"ref/netcoreapp2.0/System.Collections.NonGeneric.dll", | ||
"ref/netcoreapp2.0/System.Collections.NonGeneric.xml", | ||
"ref/netcoreapp2.0/System.Collections.Specialized.dll", | ||
"ref/netcoreapp2.0/System.Collections.Specialized.xml", | ||
"ref/netcoreapp2.0/System.Collections.dll", | ||
"ref/netcoreapp2.0/System.Collections.xml", | ||
"ref/netcoreapp2.0/System.ComponentModel.Annotations.dll", | ||
"ref/netcoreapp2.0/System.ComponentModel.Annotations.xml", | ||
"ref/netcoreapp2.0/System.ComponentModel.Composition.dll", | ||
"ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll", | ||
"ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll", | ||
"ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml", | ||
"ref/netcoreapp2.0/System.ComponentModel.Primitives.dll", | ||
"ref/netcoreapp2.0/System.ComponentModel.Primitives.xml", | ||
"ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll", | ||
"ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml", | ||
"ref/netcoreapp2.0/System.ComponentModel.dll", | ||
"ref/netcoreapp2.0/System.ComponentModel.xml", | ||
"ref/netcoreapp2.0/System.Configuration.dll", | ||
"ref/netcoreapp2.0/System.Console.dll", | ||
"ref/netcoreapp2.0/System.Console.xml", | ||
"ref/netcoreapp2.0/System.Core.dll", | ||
"ref/netcoreapp2.0/System.Data.Common.dll", | ||
"ref/netcoreapp2.0/System.Data.Common.xml", | ||
"ref/netcoreapp2.0/System.Data.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.Contracts.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.Contracts.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.Debug.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.Debug.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.Process.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.Process.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.Tools.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.Tools.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml", | ||
"ref/netcoreapp2.0/System.Diagnostics.Tracing.dll", | ||
"ref/netcoreapp2.0/System.Diagnostics.Tracing.xml", | ||
"ref/netcoreapp2.0/System.Drawing.Primitives.dll", | ||
"ref/netcoreapp2.0/System.Drawing.Primitives.xml", | ||
"ref/netcoreapp2.0/System.Drawing.dll", | ||
"ref/netcoreapp2.0/System.Dynamic.Runtime.dll", | ||
"ref/netcoreapp2.0/System.Dynamic.Runtime.xml", | ||
"ref/netcoreapp2.0/System.Globalization.Calendars.dll", | ||
"ref/netcoreapp2.0/System.Globalization.Calendars.xml", | ||
"ref/netcoreapp2.0/System.Globalization.Extensions.dll", | ||
"ref/netcoreapp2.0/System.Globalization.Extensions.xml", | ||
"ref/netcoreapp2.0/System.Globalization.dll", | ||
"ref/netcoreapp2.0/System.Globalization.xml", | ||
"ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll", | ||
"ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll", | ||
"ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml", | ||
"ref/netcoreapp2.0/System.IO.Compression.dll", | ||
"ref/netcoreapp2.0/System.IO.Compression.xml", | ||
"ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll", | ||
"ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml", | ||
"ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll", | ||
"ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml", | ||
"ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll", | ||
"ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml", | ||
"ref/netcoreapp2.0/System.IO.FileSystem.dll", | ||
"ref/netcoreapp2.0/System.IO.FileSystem.xml", | ||
"ref/netcoreapp2.0/System.IO.IsolatedStorage.dll", | ||
"ref/netcoreapp2.0/System.IO.IsolatedStorage.xml", | ||
"ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll", | ||
"ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml", | ||
"ref/netcoreapp2.0/System.IO.Pipes.dll", | ||
"ref/netcoreapp2.0/System.IO.Pipes.xml", | ||
"ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll", | ||
"ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml", | ||
"ref/netcoreapp2.0/System.IO.dll", | ||
"ref/netcoreapp2.0/System.IO.xml", | ||
"ref/netcoreapp2.0/System.Linq.Expressions.dll", | ||
"ref/netcoreapp2.0/System.Linq.Expressions.xml", | ||
"ref/netcoreapp2.0/System.Linq.Parallel.dll", | ||
"ref/netcoreapp2.0/System.Linq.Parallel.xml", | ||
"ref/netcoreapp2.0/System.Linq.Queryable.dll", | ||
"ref/netcoreapp2.0/System.Linq.Queryable.xml", | ||
"ref/netcoreapp2.0/System.Linq.dll", | ||
"ref/netcoreapp2.0/System.Linq.xml", | ||
"ref/netcoreapp2.0/System.Net.Http.dll", | ||
"ref/netcoreapp2.0/System.Net.Http.xml", | ||
"ref/netcoreapp2.0/System.Net.HttpListener.dll", | ||
"ref/netcoreapp2.0/System.Net.HttpListener.xml", | ||
"ref/netcoreapp2.0/System.Net.Mail.dll", | ||
"ref/netcoreapp2.0/System.Net.Mail.xml", | ||
"ref/netcoreapp2.0/System.Net.NameResolution.dll", | ||
"ref/netcoreapp2.0/System.Net.NameResolution.xml", | ||
"ref/netcoreapp2.0/System.Net.NetworkInformation.dll", | ||
"ref/netcoreapp2.0/System.Net.NetworkInformation.xml", | ||
"ref/netcoreapp2.0/System.Net.Ping.dll", | ||
"ref/netcoreapp2.0/System.Net.Ping.xml", | ||
"ref/netcoreapp2.0/System.Net.Primitives.dll", | ||
"ref/netcoreapp2.0/System.Net.Primitives.xml", | ||
"ref/netcoreapp2.0/System.Net.Requests.dll", | ||
"ref/netcoreapp2.0/System.Net.Requests.xml", | ||
"ref/netcoreapp2.0/System.Net.Security.dll", | ||
"ref/netcoreapp2.0/System.Net.Security.xml", | ||
"ref/netcoreapp2.0/System.Net.ServicePoint.dll", | ||
"ref/netcoreapp2.0/System.Net.ServicePoint.xml", | ||
"ref/netcoreapp2.0/System.Net.Sockets.dll", | ||
"ref/netcoreapp2.0/System.Net.Sockets.xml", | ||
"ref/netcoreapp2.0/System.Net.WebClient.dll", | ||
"ref/netcoreapp2.0/System.Net.WebClient.xml", | ||
"ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll", | ||
"ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml", | ||
"ref/netcoreapp2.0/System.Net.WebProxy.dll", | ||
"ref/netcoreapp2.0/System.Net.WebProxy.xml", | ||
"ref/netcoreapp2.0/System.Net.WebSockets.Client.dll", | ||
"ref/netcoreapp2.0/System.Net.WebSockets.Client.xml", | ||
"ref/netcoreapp2.0/System.Net.WebSockets.dll", | ||
"ref/netcoreapp2.0/System.Net.WebSockets.xml", | ||
"ref/netcoreapp2.0/System.Net.dll", | ||
"ref/netcoreapp2.0/System.Numerics.Vectors.dll", | ||
"ref/netcoreapp2.0/System.Numerics.Vectors.xml", | ||
"ref/netcoreapp2.0/System.Numerics.dll", | ||
"ref/netcoreapp2.0/System.ObjectModel.dll", | ||
"ref/netcoreapp2.0/System.ObjectModel.xml", | ||
"ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll", | ||
"ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml", | ||
"ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll", | ||
"ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml", | ||
"ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll", | ||
"ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml", | ||
"ref/netcoreapp2.0/System.Reflection.Emit.dll", | ||
"ref/netcoreapp2.0/System.Reflection.Emit.xml", | ||
"ref/netcoreapp2.0/System.Reflection.Extensions.dll", | ||
"ref/netcoreapp2.0/System.Reflection.Extensions.xml", | ||
"ref/netcoreapp2.0/System.Reflection.Metadata.dll", | ||
"ref/netcoreapp2.0/System.Reflection.Metadata.xml", | ||
"ref/netcoreapp2.0/System.Reflection.Primitives.dll", | ||
"ref/netcoreapp2.0/System.Reflection.Primitives.xml", | ||
"ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll", | ||
"ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml", | ||
"ref/netcoreapp2.0/System.Reflection.dll", | ||
"ref/netcoreapp2.0/System.Reflection.xml", | ||
"ref/netcoreapp2.0/System.Resources.Reader.dll", | ||
"ref/netcoreapp2.0/System.Resources.Reader.xml", | ||
"ref/netcoreapp2.0/System.Resources.ResourceManager.dll", | ||
"ref/netcoreapp2.0/System.Resources.ResourceManager.xml", | ||
"ref/netcoreapp2.0/System.Resources.Writer.dll", | ||
"ref/netcoreapp2.0/System.Resources.Writer.xml", | ||
"ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll", | ||
"ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Extensions.dll", | ||
"ref/netcoreapp2.0/System.Runtime.Extensions.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Handles.dll", | ||
"ref/netcoreapp2.0/System.Runtime.Handles.xml", | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll", | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml", | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll", | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml", | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.dll", | ||
"ref/netcoreapp2.0/System.Runtime.InteropServices.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Loader.dll", | ||
"ref/netcoreapp2.0/System.Runtime.Loader.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Numerics.dll", | ||
"ref/netcoreapp2.0/System.Runtime.Numerics.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml", | ||
"ref/netcoreapp2.0/System.Runtime.Serialization.dll", | ||
"ref/netcoreapp2.0/System.Runtime.dll", | ||
"ref/netcoreapp2.0/System.Runtime.xml", | ||
"ref/netcoreapp2.0/System.Security.Claims.dll", | ||
"ref/netcoreapp2.0/System.Security.Claims.xml", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll", | ||
"ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml", | ||
"ref/netcoreapp2.0/System.Security.Principal.dll", | ||
"ref/netcoreapp2.0/System.Security.Principal.xml", | ||
"ref/netcoreapp2.0/System.Security.SecureString.dll", | ||
"ref/netcoreapp2.0/System.Security.SecureString.xml", | ||
"ref/netcoreapp2.0/System.Security.dll", | ||
"ref/netcoreapp2.0/System.ServiceModel.Web.dll", | ||
"ref/netcoreapp2.0/System.ServiceProcess.dll", | ||
"ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll", | ||
"ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml", | ||
"ref/netcoreapp2.0/System.Text.Encoding.dll", | ||
"ref/netcoreapp2.0/System.Text.Encoding.xml", | ||
"ref/netcoreapp2.0/System.Text.RegularExpressions.dll", | ||
"ref/netcoreapp2.0/System.Text.RegularExpressions.xml", | ||
"ref/netcoreapp2.0/System.Threading.Overlapped.dll", | ||
"ref/netcoreapp2.0/System.Threading.Overlapped.xml", | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll", | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml", | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll", | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml", | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll", | ||
"ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml", | ||
"ref/netcoreapp2.0/System.Threading.Tasks.dll", | ||
"ref/netcoreapp2.0/System.Threading.Tasks.xml", | ||
"ref/netcoreapp2.0/System.Threading.Thread.dll", | ||
"ref/netcoreapp2.0/System.Threading.Thread.xml", | ||
"ref/netcoreapp2.0/System.Threading.ThreadPool.dll", | ||
"ref/netcoreapp2.0/System.Threading.ThreadPool.xml", | ||
"ref/netcoreapp2.0/System.Threading.Timer.dll", | ||
"ref/netcoreapp2.0/System.Threading.Timer.xml", | ||
"ref/netcoreapp2.0/System.Threading.dll", | ||
"ref/netcoreapp2.0/System.Threading.xml", | ||
"ref/netcoreapp2.0/System.Transactions.Local.dll", | ||
"ref/netcoreapp2.0/System.Transactions.Local.xml", | ||
"ref/netcoreapp2.0/System.Transactions.dll", | ||
"ref/netcoreapp2.0/System.ValueTuple.dll", | ||
"ref/netcoreapp2.0/System.ValueTuple.xml", | ||
"ref/netcoreapp2.0/System.Web.HttpUtility.dll", | ||
"ref/netcoreapp2.0/System.Web.HttpUtility.xml", | ||
"ref/netcoreapp2.0/System.Web.dll", | ||
"ref/netcoreapp2.0/System.Windows.dll", | ||
"ref/netcoreapp2.0/System.Xml.Linq.dll", | ||
"ref/netcoreapp2.0/System.Xml.ReaderWriter.dll", | ||
"ref/netcoreapp2.0/System.Xml.ReaderWriter.xml", | ||
"ref/netcoreapp2.0/System.Xml.Serialization.dll", | ||
"ref/netcoreapp2.0/System.Xml.XDocument.dll", | ||
"ref/netcoreapp2.0/System.Xml.XDocument.xml", | ||
"ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll", | ||
"ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml", | ||
"ref/netcoreapp2.0/System.Xml.XPath.dll", | ||
"ref/netcoreapp2.0/System.Xml.XPath.xml", | ||
"ref/netcoreapp2.0/System.Xml.XmlDocument.dll", | ||
"ref/netcoreapp2.0/System.Xml.XmlDocument.xml", | ||
"ref/netcoreapp2.0/System.Xml.XmlSerializer.dll", | ||
"ref/netcoreapp2.0/System.Xml.XmlSerializer.xml", | ||
"ref/netcoreapp2.0/System.Xml.dll", | ||
"ref/netcoreapp2.0/System.dll", | ||
"ref/netcoreapp2.0/WindowsBase.dll", | ||
"ref/netcoreapp2.0/mscorlib.dll", | ||
"ref/netcoreapp2.0/netstandard.dll", | ||
"ref/netcoreapp2.1/Microsoft.CSharp.dll", | ||
"ref/netcoreapp2.1/Microsoft.CSharp.xml", | ||
"ref/netcoreapp2.1/Microsoft.VisualBasic.dll", | ||
"ref/netcoreapp2.1/Microsoft.VisualBasic.xml", | ||
"ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll", | ||
"ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml", | ||
"ref/netcoreapp2.1/System.AppContext.dll", | ||
"ref/netcoreapp2.1/System.Buffers.dll", | ||
"ref/netcoreapp2.1/System.Buffers.xml", | ||
"ref/netcoreapp2.1/System.Collections.Concurrent.dll", | ||
"ref/netcoreapp2.1/System.Collections.Concurrent.xml", | ||
"ref/netcoreapp2.1/System.Collections.Immutable.dll", | ||
"ref/netcoreapp2.1/System.Collections.Immutable.xml", | ||
"ref/netcoreapp2.1/System.Collections.NonGeneric.dll", | ||
"ref/netcoreapp2.1/System.Collections.NonGeneric.xml", | ||
"ref/netcoreapp2.1/System.Collections.Specialized.dll", | ||
"ref/netcoreapp2.1/System.Collections.Specialized.xml", | ||
"ref/netcoreapp2.1/System.Collections.dll", | ||
"ref/netcoreapp2.1/System.Collections.xml", | ||
"ref/netcoreapp2.1/System.ComponentModel.Annotations.dll", | ||
"ref/netcoreapp2.1/System.ComponentModel.Annotations.xml", | ||
"ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll", | ||
"ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll", | ||
"ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml", | ||
"ref/netcoreapp2.1/System.ComponentModel.Primitives.dll", | ||
"ref/netcoreapp2.1/System.ComponentModel.Primitives.xml", | ||
"ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll", | ||
"ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml", | ||
"ref/netcoreapp2.1/System.ComponentModel.dll", | ||
"ref/netcoreapp2.1/System.ComponentModel.xml", | ||
"ref/netcoreapp2.1/System.Configuration.dll", | ||
"ref/netcoreapp2.1/System.Console.dll", | ||
"ref/netcoreapp2.1/System.Console.xml", | ||
"ref/netcoreapp2.1/System.Core.dll", | ||
"ref/netcoreapp2.1/System.Data.Common.dll", | ||
"ref/netcoreapp2.1/System.Data.Common.xml", | ||
"ref/netcoreapp2.1/System.Data.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.Contracts.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.Contracts.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.Debug.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.Debug.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.Process.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.Process.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.Tools.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.Tools.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml", | ||
"ref/netcoreapp2.1/System.Diagnostics.Tracing.dll", | ||
"ref/netcoreapp2.1/System.Diagnostics.Tracing.xml", | ||
"ref/netcoreapp2.1/System.Drawing.Primitives.dll", | ||
"ref/netcoreapp2.1/System.Drawing.Primitives.xml", | ||
"ref/netcoreapp2.1/System.Drawing.dll", | ||
"ref/netcoreapp2.1/System.Dynamic.Runtime.dll", | ||
"ref/netcoreapp2.1/System.Globalization.Calendars.dll", | ||
"ref/netcoreapp2.1/System.Globalization.Extensions.dll", | ||
"ref/netcoreapp2.1/System.Globalization.dll", | ||
"ref/netcoreapp2.1/System.IO.Compression.Brotli.dll", | ||
"ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll", | ||
"ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll", | ||
"ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml", | ||
"ref/netcoreapp2.1/System.IO.Compression.dll", | ||
"ref/netcoreapp2.1/System.IO.Compression.xml", | ||
"ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll", | ||
"ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml", | ||
"ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll", | ||
"ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll", | ||
"ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml", | ||
"ref/netcoreapp2.1/System.IO.FileSystem.dll", | ||
"ref/netcoreapp2.1/System.IO.FileSystem.xml", | ||
"ref/netcoreapp2.1/System.IO.IsolatedStorage.dll", | ||
"ref/netcoreapp2.1/System.IO.IsolatedStorage.xml", | ||
"ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll", | ||
"ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml", | ||
"ref/netcoreapp2.1/System.IO.Pipes.dll", | ||
"ref/netcoreapp2.1/System.IO.Pipes.xml", | ||
"ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll", | ||
"ref/netcoreapp2.1/System.IO.dll", | ||
"ref/netcoreapp2.1/System.Linq.Expressions.dll", | ||
"ref/netcoreapp2.1/System.Linq.Expressions.xml", | ||
"ref/netcoreapp2.1/System.Linq.Parallel.dll", | ||
"ref/netcoreapp2.1/System.Linq.Parallel.xml", | ||
"ref/netcoreapp2.1/System.Linq.Queryable.dll", | ||
"ref/netcoreapp2.1/System.Linq.Queryable.xml", | ||
"ref/netcoreapp2.1/System.Linq.dll", | ||
"ref/netcoreapp2.1/System.Linq.xml", | ||
"ref/netcoreapp2.1/System.Memory.dll", | ||
"ref/netcoreapp2.1/System.Memory.xml", | ||
"ref/netcoreapp2.1/System.Net.Http.dll", | ||
"ref/netcoreapp2.1/System.Net.Http.xml", | ||
"ref/netcoreapp2.1/System.Net.HttpListener.dll", | ||
"ref/netcoreapp2.1/System.Net.HttpListener.xml", | ||
"ref/netcoreapp2.1/System.Net.Mail.dll", | ||
"ref/netcoreapp2.1/System.Net.Mail.xml", | ||
"ref/netcoreapp2.1/System.Net.NameResolution.dll", | ||
"ref/netcoreapp2.1/System.Net.NameResolution.xml", | ||
"ref/netcoreapp2.1/System.Net.NetworkInformation.dll", | ||
"ref/netcoreapp2.1/System.Net.NetworkInformation.xml", | ||
"ref/netcoreapp2.1/System.Net.Ping.dll", | ||
"ref/netcoreapp2.1/System.Net.Ping.xml", | ||
"ref/netcoreapp2.1/System.Net.Primitives.dll", | ||
"ref/netcoreapp2.1/System.Net.Primitives.xml", | ||
"ref/netcoreapp2.1/System.Net.Requests.dll", | ||
"ref/netcoreapp2.1/System.Net.Requests.xml", | ||
"ref/netcoreapp2.1/System.Net.Security.dll", | ||
"ref/netcoreapp2.1/System.Net.Security.xml", | ||
"ref/netcoreapp2.1/System.Net.ServicePoint.dll", | ||
"ref/netcoreapp2.1/System.Net.ServicePoint.xml", | ||
"ref/netcoreapp2.1/System.Net.Sockets.dll", | ||
"ref/netcoreapp2.1/System.Net.Sockets.xml", | ||
"ref/netcoreapp2.1/System.Net.WebClient.dll", | ||
"ref/netcoreapp2.1/System.Net.WebClient.xml", | ||
"ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll", | ||
"ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml", | ||
"ref/netcoreapp2.1/System.Net.WebProxy.dll", | ||
"ref/netcoreapp2.1/System.Net.WebProxy.xml", | ||
"ref/netcoreapp2.1/System.Net.WebSockets.Client.dll", | ||
"ref/netcoreapp2.1/System.Net.WebSockets.Client.xml", | ||
"ref/netcoreapp2.1/System.Net.WebSockets.dll", | ||
"ref/netcoreapp2.1/System.Net.WebSockets.xml", | ||
"ref/netcoreapp2.1/System.Net.dll", | ||
"ref/netcoreapp2.1/System.Numerics.Vectors.dll", | ||
"ref/netcoreapp2.1/System.Numerics.Vectors.xml", | ||
"ref/netcoreapp2.1/System.Numerics.dll", | ||
"ref/netcoreapp2.1/System.ObjectModel.dll", | ||
"ref/netcoreapp2.1/System.ObjectModel.xml", | ||
"ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll", | ||
"ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml", | ||
"ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll", | ||
"ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml", | ||
"ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll", | ||
"ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml", | ||
"ref/netcoreapp2.1/System.Reflection.Emit.dll", | ||
"ref/netcoreapp2.1/System.Reflection.Emit.xml", | ||
"ref/netcoreapp2.1/System.Reflection.Extensions.dll", | ||
"ref/netcoreapp2.1/System.Reflection.Metadata.dll", | ||
"ref/netcoreapp2.1/System.Reflection.Metadata.xml", | ||
"ref/netcoreapp2.1/System.Reflection.Primitives.dll", | ||
"ref/netcoreapp2.1/System.Reflection.Primitives.xml", | ||
"ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll", | ||
"ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml", | ||
"ref/netcoreapp2.1/System.Reflection.dll", | ||
"ref/netcoreapp2.1/System.Resources.Reader.dll", | ||
"ref/netcoreapp2.1/System.Resources.ResourceManager.dll", | ||
"ref/netcoreapp2.1/System.Resources.ResourceManager.xml", | ||
"ref/netcoreapp2.1/System.Resources.Writer.dll", | ||
"ref/netcoreapp2.1/System.Resources.Writer.xml", | ||
"ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll", | ||
"ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Extensions.dll", | ||
"ref/netcoreapp2.1/System.Runtime.Extensions.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Handles.dll", | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll", | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml", | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll", | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml", | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.dll", | ||
"ref/netcoreapp2.1/System.Runtime.InteropServices.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Loader.dll", | ||
"ref/netcoreapp2.1/System.Runtime.Loader.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Numerics.dll", | ||
"ref/netcoreapp2.1/System.Runtime.Numerics.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml", | ||
"ref/netcoreapp2.1/System.Runtime.Serialization.dll", | ||
"ref/netcoreapp2.1/System.Runtime.dll", | ||
"ref/netcoreapp2.1/System.Runtime.xml", | ||
"ref/netcoreapp2.1/System.Security.Claims.dll", | ||
"ref/netcoreapp2.1/System.Security.Claims.xml", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll", | ||
"ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml", | ||
"ref/netcoreapp2.1/System.Security.Principal.dll", | ||
"ref/netcoreapp2.1/System.Security.Principal.xml", | ||
"ref/netcoreapp2.1/System.Security.SecureString.dll", | ||
"ref/netcoreapp2.1/System.Security.dll", | ||
"ref/netcoreapp2.1/System.ServiceModel.Web.dll", | ||
"ref/netcoreapp2.1/System.ServiceProcess.dll", | ||
"ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll", | ||
"ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml", | ||
"ref/netcoreapp2.1/System.Text.Encoding.dll", | ||
"ref/netcoreapp2.1/System.Text.RegularExpressions.dll", | ||
"ref/netcoreapp2.1/System.Text.RegularExpressions.xml", | ||
"ref/netcoreapp2.1/System.Threading.Overlapped.dll", | ||
"ref/netcoreapp2.1/System.Threading.Overlapped.xml", | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll", | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml", | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll", | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml", | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll", | ||
"ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml", | ||
"ref/netcoreapp2.1/System.Threading.Tasks.dll", | ||
"ref/netcoreapp2.1/System.Threading.Tasks.xml", | ||
"ref/netcoreapp2.1/System.Threading.Thread.dll", | ||
"ref/netcoreapp2.1/System.Threading.Thread.xml", | ||
"ref/netcoreapp2.1/System.Threading.ThreadPool.dll", | ||
"ref/netcoreapp2.1/System.Threading.ThreadPool.xml", | ||
"ref/netcoreapp2.1/System.Threading.Timer.dll", | ||
"ref/netcoreapp2.1/System.Threading.Timer.xml", | ||
"ref/netcoreapp2.1/System.Threading.dll", | ||
"ref/netcoreapp2.1/System.Threading.xml", | ||
"ref/netcoreapp2.1/System.Transactions.Local.dll", | ||
"ref/netcoreapp2.1/System.Transactions.Local.xml", | ||
"ref/netcoreapp2.1/System.Transactions.dll", | ||
"ref/netcoreapp2.1/System.ValueTuple.dll", | ||
"ref/netcoreapp2.1/System.Web.HttpUtility.dll", | ||
"ref/netcoreapp2.1/System.Web.HttpUtility.xml", | ||
"ref/netcoreapp2.1/System.Web.dll", | ||
"ref/netcoreapp2.1/System.Windows.dll", | ||
"ref/netcoreapp2.1/System.Xml.Linq.dll", | ||
"ref/netcoreapp2.1/System.Xml.ReaderWriter.dll", | ||
"ref/netcoreapp2.1/System.Xml.ReaderWriter.xml", | ||
"ref/netcoreapp2.1/System.Xml.Serialization.dll", | ||
"ref/netcoreapp2.1/System.Xml.XDocument.dll", | ||
"ref/netcoreapp2.1/System.Xml.XDocument.xml", | ||
"ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll", | ||
"ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml", | ||
"ref/netcoreapp2.1/System.Xml.XPath.dll", | ||
"ref/netcoreapp2.1/System.Xml.XPath.xml", | ||
"ref/netcoreapp2.1/System.Xml.XmlDocument.dll", | ||
"ref/netcoreapp2.1/System.Xml.XmlSerializer.dll", | ||
"ref/netcoreapp2.1/System.Xml.XmlSerializer.xml", | ||
"ref/netcoreapp2.1/System.Xml.dll", | ||
"ref/netcoreapp2.1/System.dll", | ||
"ref/netcoreapp2.1/WindowsBase.dll", | ||
"ref/netcoreapp2.1/mscorlib.dll", | ||
"ref/netcoreapp2.1/netstandard.dll", | ||
"runtime.json" | ||
] | ||
}, | ||
"Microsoft.NETCore.DotNetAppHost/2.0.0": { | ||
"sha512": "dYQNVWNBsO9LldqAyJTt/wYUq2BScXq3ENBaNUjELS3sT53mwrgyPpmoLHsE7H10RzYOHEl5G0sg/jpZGlIAzA==", | ||
"Microsoft.NETCore.DotNetAppHost/2.1.0": { | ||
"sha512": "f/47I60Wg3SrveTvnecCQhCZCAMYlUujWF15EQ/AZTqF/54qeEJjbCIAxKcZI8ToUYzSg6JdfrHggsgjCyCE9Q==", | ||
"type": "package", | ||
"path": "microsoft.netcore.dotnetapphost/2.0.0", | ||
"path": "microsoft.netcore.dotnetapphost/2.1.0", | ||
"files": [ | ||
@@ -625,3 +623,3 @@ ".nupkg.metadata", | ||
"THIRD-PARTY-NOTICES.TXT", | ||
"microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512", | ||
"microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", | ||
"microsoft.netcore.dotnetapphost.nuspec", | ||
@@ -631,6 +629,6 @@ "runtime.json" | ||
}, | ||
"Microsoft.NETCore.DotNetHostPolicy/2.0.0": { | ||
"sha512": "uYoVFwvMIp9KtOjW6huBedoBP+50Pny0aIrmJGPoaHJ9anAtrvCjS+iKFR5MIS8amJRKsLc3YEtpT/AYfYmIdA==", | ||
"Microsoft.NETCore.DotNetHostPolicy/2.1.0": { | ||
"sha512": "LdhSWUEZmFalhz6fLBE5WDmCdO9jqvW5q3CUOTk9n/hdmmwnTu7KowPPIw5p2t1vn7ozStLG3RZMJbf48f7WtA==", | ||
"type": "package", | ||
"path": "microsoft.netcore.dotnethostpolicy/2.0.0", | ||
"path": "microsoft.netcore.dotnethostpolicy/2.1.0", | ||
"files": [ | ||
@@ -641,3 +639,3 @@ ".nupkg.metadata", | ||
"THIRD-PARTY-NOTICES.TXT", | ||
"microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512", | ||
"microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", | ||
"microsoft.netcore.dotnethostpolicy.nuspec", | ||
@@ -647,6 +645,6 @@ "runtime.json" | ||
}, | ||
"Microsoft.NETCore.DotNetHostResolver/2.0.0": { | ||
"sha512": "HYXxywd3EaAw1M2K5ox6oUu0NgG90oDIpyq70IBvOf2keNuMJWYTWZUAoTlpv8E0Ks09DA+gczoA64tCdII5Xw==", | ||
"Microsoft.NETCore.DotNetHostResolver/2.1.0": { | ||
"sha512": "fS9D8a+y55n6mHMbNqgHXaPGkjmpVH9h97OyrBxsCuo3Z8aQaFMJ5xIfmzji2ntUd/3truhMbSgSfIelHOkQpg==", | ||
"type": "package", | ||
"path": "microsoft.netcore.dotnethostresolver/2.0.0", | ||
"path": "microsoft.netcore.dotnethostresolver/2.1.0", | ||
"files": [ | ||
@@ -657,3 +655,3 @@ ".nupkg.metadata", | ||
"THIRD-PARTY-NOTICES.TXT", | ||
"microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512", | ||
"microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", | ||
"microsoft.netcore.dotnethostresolver.nuspec", | ||
@@ -663,6 +661,6 @@ "runtime.json" | ||
}, | ||
"Microsoft.NETCore.Platforms/2.0.0": { | ||
"sha512": "CCf4NjmDOoise7FAij2VPuHIgKKsu696vkTwhOkPVQfLsTmB2WLFfQ4yeO5Udtk8FD636UBMx6Y9eovzJKT76A==", | ||
"Microsoft.NETCore.Platforms/2.1.0": { | ||
"sha512": "TT+QCi9LcxGTjBssH7S7n5+8DVcwfG4DYgXX7Dk7+BfZ4oVHj8Q0CbYk9glzAlHLsSt3bYzol+fOdra2iu6GOw==", | ||
"type": "package", | ||
"path": "microsoft.netcore.platforms/2.0.0", | ||
"path": "microsoft.netcore.platforms/2.1.0", | ||
"files": [ | ||
@@ -674,4 +672,5 @@ ".nupkg.metadata", | ||
"lib/netstandard1.0/_._", | ||
"microsoft.netcore.platforms.2.0.0.nupkg.sha512", | ||
"microsoft.netcore.platforms.2.1.0.nupkg.sha512", | ||
"microsoft.netcore.platforms.nuspec", | ||
"paket-installmodel.cache", | ||
"runtime.json", | ||
@@ -682,6 +681,6 @@ "useSharedDesignerContext.txt", | ||
}, | ||
"NETStandard.Library/2.0.0": { | ||
"sha512": "sn4JwjEN5iNfqc0bd0Qje5oBZBB9wyuNn4GkQvEzfKVnZ3QH0HHoN9exxydlJGptiCMVdAZu7At9TNj0r8Z0yg==", | ||
"Microsoft.NETCore.Targets/2.1.0": { | ||
"sha512": "etaYwrLZQUS+b3UWTpCnUggd6SQ/ZIkZ5pHnoR7+dIWt/wp2Rv3CvMKOZISsrt7FYCHKwCxfcepuuyEWkQxADg==", | ||
"type": "package", | ||
"path": "netstandard.library/2.0.0", | ||
"path": "microsoft.netcore.targets/2.1.0", | ||
"files": [ | ||
@@ -692,3 +691,19 @@ ".nupkg.metadata", | ||
"THIRD-PARTY-NOTICES.TXT", | ||
"build/NETStandard.Library.targets", | ||
"lib/netstandard1.0/_._", | ||
"microsoft.netcore.targets.2.1.0.nupkg.sha512", | ||
"microsoft.netcore.targets.nuspec", | ||
"paket-installmodel.cache", | ||
"runtime.json", | ||
"useSharedDesignerContext.txt", | ||
"version.txt" | ||
] | ||
}, | ||
"NETStandard.Library/2.0.3": { | ||
"sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", | ||
"type": "package", | ||
"path": "netstandard.library/2.0.3", | ||
"files": [ | ||
".nupkg.metadata", | ||
"LICENSE.TXT", | ||
"THIRD-PARTY-NOTICES.TXT", | ||
"build/netstandard2.0/NETStandard.Library.targets", | ||
@@ -810,4 +825,5 @@ "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", | ||
"lib/netstandard1.0/_._", | ||
"netstandard.library.2.0.0.nupkg.sha512", | ||
"netstandard.library.nuspec" | ||
"netstandard.library.2.0.3.nupkg.sha512", | ||
"netstandard.library.nuspec", | ||
"paket-installmodel.cache" | ||
] | ||
@@ -817,11 +833,11 @@ } | ||
"projectFileDependencyGroups": { | ||
".NETCoreApp,Version=v2.0": [ | ||
".NETCoreApp,Version=v2.1": [ | ||
"FSharp.Core >= 4.5.2", | ||
"Fable.Core >= 2.0.2", | ||
"Microsoft.NETCore.App >= 2.0.0" | ||
"Microsoft.NETCore.App >= 2.1.0" | ||
] | ||
}, | ||
"packageFolders": { | ||
"C:\\Users\\alfon\\.nuget\\packages\\": {}, | ||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} | ||
"/Users/alfonsogarciacaronunez/.nuget/packages/": {}, | ||
"/usr/local/share/dotnet/sdk/NuGetFallbackFolder": {} | ||
}, | ||
@@ -831,18 +847,17 @@ "project": { | ||
"restore": { | ||
"projectUniqueName": "C:\\Users\\alfon\\dev\\fable\\src\\fable-compiler-js\\src\\fable-compiler.fsproj", | ||
"projectName": "fable-compiler", | ||
"projectPath": "C:\\Users\\alfon\\dev\\fable\\src\\fable-compiler-js\\src\\fable-compiler.fsproj", | ||
"packagesPath": "C:\\Users\\alfon\\.nuget\\packages\\", | ||
"outputPath": "C:\\Users\\alfon\\dev\\fable\\src\\fable-compiler-js\\src\\obj\\", | ||
"projectUniqueName": "/Users/alfonsogarciacaronunez/dev/fable/src/fable-compiler-js/src/fable-compiler-js.fsproj", | ||
"projectName": "fable-compiler-js", | ||
"projectPath": "/Users/alfonsogarciacaronunez/dev/fable/src/fable-compiler-js/src/fable-compiler-js.fsproj", | ||
"packagesPath": "/Users/alfonsogarciacaronunez/.nuget/packages/", | ||
"outputPath": "/Users/alfonsogarciacaronunez/dev/fable/src/fable-compiler-js/src/obj/", | ||
"projectStyle": "PackageReference", | ||
"fallbackFolders": [ | ||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" | ||
"/usr/local/share/dotnet/sdk/NuGetFallbackFolder" | ||
], | ||
"configFilePaths": [ | ||
"C:\\Users\\alfon\\dev\\fable\\NuGet.Config", | ||
"C:\\Users\\alfon\\AppData\\Roaming\\NuGet\\NuGet.Config", | ||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | ||
"/Users/alfonsogarciacaronunez/dev/fable/NuGet.Config", | ||
"/Users/alfonsogarciacaronunez/.nuget/NuGet/NuGet.Config" | ||
], | ||
"originalTargetFrameworks": [ | ||
"netcoreapp2.0" | ||
"netcoreapp2.1" | ||
], | ||
@@ -853,3 +868,3 @@ "sources": { | ||
"frameworks": { | ||
"netcoreapp2.0": { | ||
"netcoreapp2.1": { | ||
"projectReferences": {} | ||
@@ -860,3 +875,3 @@ } | ||
"frameworks": { | ||
"netcoreapp2.0": { | ||
"netcoreapp2.1": { | ||
"dependencies": { | ||
@@ -873,3 +888,3 @@ "FSharp.Core": { | ||
"target": "Package", | ||
"version": "[2.0.0, )", | ||
"version": "[2.1.0, )", | ||
"autoReferenced": true | ||
@@ -876,0 +891,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1491156
0.21%40991
0.07%114
-0.87%