msbuild: 16.3 -> 16.8

+1631 -1355
+41 -16
pkgs/development/tools/build-managers/msbuild/create-deps.sh
··· 1 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p msbuild 2 + #!nix-shell -i bash -p jq -p xmlstarlet -p curl 3 3 set -euo pipefail 4 4 5 5 cat << EOL 6 6 { fetchurl }: [ 7 7 EOL 8 8 9 - tmpdir="$(mktemp -d -p "$(pwd)")" # must be under source root 10 - trap 'rm -rf $tmpdir' EXIT 9 + mapfile -t repos < <( 10 + xmlstarlet sel -t -v 'configuration/packageSources/add/@value' -n NuGet.config | 11 + while IFS= read index 12 + do 13 + curl --compressed -fsL "$index" | \ 14 + jq -r '.resources[] | select(."@type" == "PackageBaseAddress/3.0.0")."@id"' 15 + done 16 + ) 17 + 18 + find .packages fake-home/.nuget/packages -name \*.nupkg -printf '%P\n' | sort -u | 19 + while IFS= read file 20 + do 21 + packagedir=$(dirname $file) 22 + version=$(basename $packagedir) 23 + package=$(dirname $packagedir) 24 + 25 + found=false 26 + for repo in "${repos[@]}" 27 + do 28 + url="$repo$package/$version/$package.$version.nupkg" 29 + if curl -fsL "$url" -o /dev/null 30 + then 31 + found=true 32 + break 33 + fi 34 + done 35 + 36 + if ! $found 37 + then 38 + echo "couldn't find $package $version" >&2 39 + exit 1 40 + fi 11 41 12 - ( 13 - ulimit -n 8192 # https://github.com/NuGet/Home/issues/8571 14 - export HOME="$tmpdir" 15 - msbuild -noAutoRsp -t:restore -p:RestoreNoCache=true MSBuild.sln 16 - msbuild -noAutoRsp -t:restore -p:RestoreNoCache=true "$tmpdir"/.nuget/packages/microsoft.dotnet.arcade.sdk/*/tools/Tools.proj 17 - ) | \ 18 - sed -nr 's/^ *OK *(.*\.nupkg).*$/\1/p' | \ 19 - sort -u | \ 20 - while read url; do 21 42 sha256=$(nix-prefetch-url "$url" 2>/dev/null) 22 43 cat << EOL 23 - (fetchurl { 24 - url = "$url"; 25 - sha256 = "$sha256"; 26 - }) 44 + { 45 + name = "$package"; 46 + version = "$version"; 47 + src = fetchurl { 48 + url = "$url"; 49 + sha256 = "$sha256"; 50 + }; 51 + } 27 52 EOL 28 53 done 29 54
+28 -13
pkgs/development/tools/build-managers/msbuild/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, glibcLocales, mono, dotnetPackages, unzip, dotnet-sdk }: 1 + { lib, stdenv, fetchurl, fetchpatch, makeWrapper, glibcLocales, mono, dotnetPackages, unzip, dotnet-sdk, writeText }: 2 2 3 3 let 4 4 5 5 xplat = fetchurl { 6 - url = "https://github.com/mono/msbuild/releases/download/0.07/mono_msbuild_xplat-master-8f608e49.zip"; 7 - sha256 = "1jxq3fk9a6q2a8i9zacxaz3fkvc22i9qvzlpa7wbb95h42g0ffhq"; 6 + url = "https://github.com/mono/msbuild/releases/download/0.08/mono_msbuild_6.4.0.208.zip"; 7 + sha256 = "05k7qmnhfvrdgyjn6vp81jb97y21m261jnwdyqpjqpcmzz18j93g"; 8 8 }; 9 9 10 - deps = import ./nuget.nix { inherit fetchurl; }; 10 + deps = map (package: package.src) 11 + (import ./deps.nix { inherit fetchurl; }); 12 + 13 + nuget-config = writeText "NuGet.config" '' 14 + <?xml version="1.0" encoding="utf-8"?> 15 + <configuration> 16 + <packageSources> 17 + <clear /> 18 + </packageSources> 19 + </configuration> 20 + ''; 11 21 12 22 in 13 23 14 24 stdenv.mkDerivation rec { 15 25 pname = "msbuild"; 16 - version = "16.3+xamarinxplat.2019.07.26.14.57"; 26 + version = "16.8+xamarinxplat.2020.07.30.15.02"; 17 27 18 28 src = fetchurl { 19 29 url = "https://download.mono-project.com/sources/msbuild/msbuild-${version}.tar.xz"; 20 - sha256 = "1zcdfx4xsh62wj3g1jc2an0lppsfs691lz4dv05xbgi01aq1hk6a"; 30 + sha256 = "10amyca78b6pjfsy54b1rgwz2c1bx0sfky9zhldvzy4divckp25g"; 21 31 }; 22 32 23 33 nativeBuildInputs = [ ··· 37 47 LOCALE_ARCHIVE = lib.optionalString stdenv.isLinux 38 48 "${glibcLocales}/lib/locale/locale-archive"; 39 49 50 + patches = [ 51 + (fetchpatch { 52 + url = "https://github.com/mono/msbuild/commit/cad85cefabdaa001fb4bdbea2f5bf1d1cdb83c9b.patch"; 53 + sha256 = "1s8agc7nxxs69b3fl1v1air0c4dpig3hy4sk11l1560jrlx06dhh"; 54 + }) 55 + ]; 56 + 40 57 buildPhase = '' 41 58 # nuget would otherwise try to base itself in /homeless-shelter 42 59 export HOME=$(pwd)/fake-home 43 60 61 + cp ${nuget-config} NuGet.config 62 + nuget sources Add -Name nixos -Source $(pwd)/nixos 63 + 44 64 for package in ${toString deps}; do 45 65 nuget add $package -Source nixos 46 66 done 47 - 48 - nuget sources Disable -Name "nuget.org" 49 - nuget sources Add -Name nixos -Source $(pwd)/nixos 50 67 51 68 # license check is case sensitive 52 69 mv LICENSE license.bak && mv license.bak license ··· 61 78 # overwrite the file 62 79 echo "#!${stdenv.shell}" > eng/common/dotnet-install.sh 63 80 64 - # msbuild response files to use only the nixos source 65 - echo "/p:RestoreSources=nixos" > artifacts/mono-msbuild/MSBuild.rsp 66 - 67 81 # not patchShebangs, there is /bin/bash in the body of the script as well 68 82 substituteInPlace ./eng/cibuild_bootstrapped_msbuild.sh --replace /bin/bash ${stdenv.shell} 69 83 70 84 # DisableNerdbankVersioning https://gitter.im/Microsoft/msbuild/archives/2018/06/27?at=5b33dbc4ce3b0f268d489bfa 71 85 # TODO there are some (many?) failing tests 72 86 ./eng/cibuild_bootstrapped_msbuild.sh --host_type mono --configuration Release --skip_tests /p:DisableNerdbankVersioning=true 87 + patchShebangs stage1/mono-msbuild/msbuild 73 88 ''; 74 89 75 90 installPhase = '' 76 - mono artifacts/mono-msbuild/MSBuild.dll mono/build/install.proj /p:MonoInstallPrefix="$out" /p:Configuration=Release-MONO 91 + stage1/mono-msbuild/msbuild mono/build/install.proj /p:MonoInstallPrefix="$out" /p:Configuration=Release-MONO 77 92 78 93 ln -s ${mono}/lib/mono/msbuild/Current/bin/Roslyn $out/lib/mono/msbuild/Current/bin/Roslyn 79 94
+1562
pkgs/development/tools/build-managers/msbuild/deps.nix
··· 1 + { fetchurl }: [ 2 + { 3 + name = "fsharp.net.sdk"; 4 + version = "1.0.4-bundled-0100"; 5 + src = fetchurl { 6 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/fsharp.net.sdk/1.0.4-bundled-0100/fsharp.net.sdk.1.0.4-bundled-0100.nupkg"; 7 + sha256 = "0zy4n2an2jh3xrdy1m5fjvynpd0b66i0hkpqdhy2q6d7dj0ks351"; 8 + }; 9 + } 10 + { 11 + name = "illink.tasks"; 12 + version = "0.1.6-prerelease.19380.1"; 13 + src = fetchurl { 14 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/illink.tasks/0.1.6-prerelease.19380.1/illink.tasks.0.1.6-prerelease.19380.1.nupkg"; 15 + sha256 = "1ihgzhizgiijg2kj38fn6hsinvxi7bvl0dpk7mbgc08rpgfdsvja"; 16 + }; 17 + } 18 + { 19 + name = "largeaddressaware"; 20 + version = "1.0.3"; 21 + src = fetchurl { 22 + url = "https://api.nuget.org/v3-flatcontainer/largeaddressaware/1.0.3/largeaddressaware.1.0.3.nupkg"; 23 + sha256 = "1ppss9bgj0hf5s8307bnm2a4qm10mrymp0v12m28a5q81zjz0fr5"; 24 + }; 25 + } 26 + { 27 + name = "microbuild.core"; 28 + version = "0.2.0"; 29 + src = fetchurl { 30 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microbuild.core/0.2.0/microbuild.core.0.2.0.nupkg"; 31 + sha256 = "1ya040l8fhi0hhira8kwdmv7cc88ar7kiixkpxirgcn9gmpn7ggv"; 32 + }; 33 + } 34 + { 35 + name = "microbuild.core.sentinel"; 36 + version = "1.0.0"; 37 + src = fetchurl { 38 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microbuild.core.sentinel/1.0.0/microbuild.core.sentinel.1.0.0.nupkg"; 39 + sha256 = "035kqx5fkapql108n222lz8psvxk04mv3dy1qg3h08i4b8j3dy8i"; 40 + }; 41 + } 42 + { 43 + name = "microsoft.bcl.asyncinterfaces"; 44 + version = "1.1.0"; 45 + src = fetchurl { 46 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/1.1.0/microsoft.bcl.asyncinterfaces.1.1.0.nupkg"; 47 + sha256 = "1dq5yw7cy6s42193yl4iqscfw5vzkjkgv0zyy32scr4jza6ni1a1"; 48 + }; 49 + } 50 + { 51 + name = "microsoft.build"; 52 + version = "14.3.0"; 53 + src = fetchurl { 54 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.build/14.3.0/microsoft.build.14.3.0.nupkg"; 55 + sha256 = "16jzspb0qj9szjfhhmb836vgqdq4m1gk3y816qg2mdjmv52r91dh"; 56 + }; 57 + } 58 + { 59 + name = "microsoft.build.centralpackageversions"; 60 + version = "2.0.1"; 61 + src = fetchurl { 62 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.centralpackageversions/2.0.1/microsoft.build.centralpackageversions.2.0.1.nupkg"; 63 + sha256 = "17cjiaj2b98q8s89168g42jb8rhwm6062jcbv57rbkdiiwdsn55k"; 64 + }; 65 + } 66 + { 67 + name = "microsoft.build.framework"; 68 + version = "14.3.0"; 69 + src = fetchurl { 70 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.build.framework/14.3.0/microsoft.build.framework.14.3.0.nupkg"; 71 + sha256 = "19p1w27d3qi09fxag0byvjrv6x54nd5fkiszqzqr7676r90aswxh"; 72 + }; 73 + } 74 + { 75 + name = "microsoft.build.framework"; 76 + version = "15.5.180"; 77 + src = fetchurl { 78 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/15.5.180/microsoft.build.framework.15.5.180.nupkg"; 79 + sha256 = "064y3a711ikx9pm9d2wyms4i3k4f9hfvn3vymhwygg7yv7gcj92z"; 80 + }; 81 + } 82 + { 83 + name = "microsoft.build.nugetsdkresolver"; 84 + version = "5.7.0-rtm.6710"; 85 + src = fetchurl { 86 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/microsoft.build.nugetsdkresolver/5.7.0-rtm.6710/microsoft.build.nugetsdkresolver.5.7.0-rtm.6710.nupkg"; 87 + sha256 = "07zi6akd5iqq6q3cwc273vvfx70dn2lzx1ham4pzlq7dh7gq3vha"; 88 + }; 89 + } 90 + { 91 + name = "microsoft.build.tasks.git"; 92 + version = "1.1.0-beta-20206-02"; 93 + src = fetchurl { 94 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.build.tasks.git/1.1.0-beta-20206-02/microsoft.build.tasks.git.1.1.0-beta-20206-02.nupkg"; 95 + sha256 = "1gwlhvqlkvs5c7qjky726alf71xflbh3x970g3dypfczi0y6gccx"; 96 + }; 97 + } 98 + { 99 + name = "microsoft.build.utilities.core"; 100 + version = "14.3.0"; 101 + src = fetchurl { 102 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.build.utilities.core/14.3.0/microsoft.build.utilities.core.14.3.0.nupkg"; 103 + sha256 = "0xk5n4i40w53amrd7bxlhikdvmh8z2anrk99pvz2rf50v946g6li"; 104 + }; 105 + } 106 + { 107 + name = "microsoft.build.utilities.core"; 108 + version = "15.5.180"; 109 + src = fetchurl { 110 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/15.5.180/microsoft.build.utilities.core.15.5.180.nupkg"; 111 + sha256 = "0c4bjhaqgc98bchln8p5d2p1vyn8qrha2b8gpn2l7bnznbcrd630"; 112 + }; 113 + } 114 + { 115 + name = "microsoft.codeanalysis.build.tasks"; 116 + version = "3.0.0-beta3-19064-03"; 117 + src = fetchurl { 118 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.codeanalysis.build.tasks/3.0.0-beta3-19064-03/microsoft.codeanalysis.build.tasks.3.0.0-beta3-19064-03.nupkg"; 119 + sha256 = "1l01l0jyqgs8ix5v6b6n0q4yv1y1khr14dh7pw0qivkc5gsys19v"; 120 + }; 121 + } 122 + { 123 + name = "microsoft.codecoverage"; 124 + version = "16.1.1"; 125 + src = fetchurl { 126 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.codecoverage/16.1.1/microsoft.codecoverage.16.1.1.nupkg"; 127 + sha256 = "0xca3sys0a5ilz16ic7g4gds2b974nvmf89qwr1i6v8f7illhda5"; 128 + }; 129 + } 130 + { 131 + name = "microsoft.diasymreader.pdb2pdb"; 132 + version = "1.1.0-beta2-19521-03"; 133 + src = fetchurl { 134 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.diasymreader.pdb2pdb/1.1.0-beta2-19521-03/microsoft.diasymreader.pdb2pdb.1.1.0-beta2-19521-03.nupkg"; 135 + sha256 = "1r82h0qiah2xx9rg8lvfvfdzxz60zd6vfs8kvck0csha5psmn56w"; 136 + }; 137 + } 138 + { 139 + name = "microsoft.dotnet.arcade.sdk"; 140 + version = "1.0.0-beta.20365.6"; 141 + src = fetchurl { 142 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.arcade.sdk/1.0.0-beta.20365.6/microsoft.dotnet.arcade.sdk.1.0.0-beta.20365.6.nupkg"; 143 + sha256 = "1ypsxq3ljdfwvrqyg6b8ii8mbqnjcb2vdr17jc4h0mdmkj0rlcdl"; 144 + }; 145 + } 146 + { 147 + name = "microsoft.dotnet.msbuildsdkresolver"; 148 + version = "3.1.400-preview.20365.4"; 149 + src = fetchurl { 150 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.msbuildsdkresolver/3.1.400-preview.20365.4/microsoft.dotnet.msbuildsdkresolver.3.1.400-preview.20365.4.nupkg"; 151 + sha256 = "0ifhk0whgbq0yw075al8sb14ajcnvyp883srx1j62vil9gfz0fp9"; 152 + }; 153 + } 154 + { 155 + name = "microsoft.dotnet.signtool"; 156 + version = "1.0.0-beta.20365.6"; 157 + src = fetchurl { 158 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.signtool/1.0.0-beta.20365.6/microsoft.dotnet.signtool.1.0.0-beta.20365.6.nupkg"; 159 + sha256 = "0zaw9hc19ldms3jy6n27x4p9clzz3nvpddyacwhgqiahjw2wqasz"; 160 + }; 161 + } 162 + { 163 + name = "microsoft.net.build.extensions"; 164 + version = "3.1.400-preview.20365.20"; 165 + src = fetchurl { 166 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.build.extensions/3.1.400-preview.20365.20/microsoft.net.build.extensions.3.1.400-preview.20365.20.nupkg"; 167 + sha256 = "1vmcj7p7jsr1lbkbxqqjsixkaxdazr5nwhhp1q402dgky9cayhd5"; 168 + }; 169 + } 170 + { 171 + name = "microsoft.net.compilers.toolset"; 172 + version = "3.7.0-5.20367.1"; 173 + src = fetchurl { 174 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.compilers.toolset/3.7.0-5.20367.1/microsoft.net.compilers.toolset.3.7.0-5.20367.1.nupkg"; 175 + sha256 = "1z8hzzmxs8jchq1jmmmwhpf3hsvrj803y3zb8j3xg9xkbnryfzwk"; 176 + }; 177 + } 178 + { 179 + name = "microsoft.netcore.platforms"; 180 + version = "1.0.1"; 181 + src = fetchurl { 182 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg"; 183 + sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; 184 + }; 185 + } 186 + { 187 + name = "microsoft.netcore.platforms"; 188 + version = "1.1.0"; 189 + src = fetchurl { 190 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg"; 191 + sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; 192 + }; 193 + } 194 + { 195 + name = "microsoft.netcore.targets"; 196 + version = "1.0.1"; 197 + src = fetchurl { 198 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg"; 199 + sha256 = "1gn085ddzn8psqfhmwcjzq2zrmb5gca2liap79a43wyw4gs8ip78"; 200 + }; 201 + } 202 + { 203 + name = "microsoft.netcore.targets"; 204 + version = "1.1.0"; 205 + src = fetchurl { 206 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg"; 207 + sha256 = "0idlsfwd9sn4p9jr1dqi14b8n2ly0k4dnjpvh8jfhxgnzzl98z5k"; 208 + }; 209 + } 210 + { 211 + name = "microsoft.netframework.referenceassemblies"; 212 + version = "1.0.0"; 213 + src = fetchurl { 214 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netframework.referenceassemblies/1.0.0/microsoft.netframework.referenceassemblies.1.0.0.nupkg"; 215 + sha256 = "0na724xhvqm63vq9y18fl9jw9q2v99bdwr353378s5fsi11qzxp9"; 216 + }; 217 + } 218 + { 219 + name = "microsoft.netframework.referenceassemblies.net472"; 220 + version = "1.0.0"; 221 + src = fetchurl { 222 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netframework.referenceassemblies.net472/1.0.0/microsoft.netframework.referenceassemblies.net472.1.0.0.nupkg"; 223 + sha256 = "1bqinq2nxnpqxziypg1sqy3ly0nymxxjpn8fwkn3rl4vl6gdg3rc"; 224 + }; 225 + } 226 + { 227 + name = "microsoft.net.sdk"; 228 + version = "3.1.400-preview.20365.20"; 229 + src = fetchurl { 230 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.sdk/3.1.400-preview.20365.20/microsoft.net.sdk.3.1.400-preview.20365.20.nupkg"; 231 + sha256 = "02ann6rsnc6wl84wsk2fz7dpxcp5sq0b6jm3vv23av4b1f86f82y"; 232 + }; 233 + } 234 + { 235 + name = "microsoft.net.sdk.publish"; 236 + version = "3.1.300-servicing.20216.7"; 237 + src = fetchurl { 238 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.sdk.publish/3.1.300-servicing.20216.7/microsoft.net.sdk.publish.3.1.300-servicing.20216.7.nupkg"; 239 + sha256 = "1xivqihp2zrkmd4f65fgh9hn9ix75sqklbnanqlfk9dq67wscp41"; 240 + }; 241 + } 242 + { 243 + name = "microsoft.net.sdk.razor"; 244 + version = "3.1.6"; 245 + src = fetchurl { 246 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.net.sdk.razor/3.1.6/microsoft.net.sdk.razor.3.1.6.nupkg"; 247 + sha256 = "1vw0zi0lq52frivq8mgfvm79rfx0v492q6fci1jls1zwwjk0v9ia"; 248 + }; 249 + } 250 + { 251 + name = "microsoft.net.sdk.web"; 252 + version = "3.1.300-servicing.20216.7"; 253 + src = fetchurl { 254 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.sdk.web/3.1.300-servicing.20216.7/microsoft.net.sdk.web.3.1.300-servicing.20216.7.nupkg"; 255 + sha256 = "001jd2iwww0vb5x5dii915z82syh1aj48n62bn8zi1d3chwacr51"; 256 + }; 257 + } 258 + { 259 + name = "microsoft.net.sdk.web.projectsystem"; 260 + version = "3.1.300-servicing.20216.7"; 261 + src = fetchurl { 262 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.sdk.web.projectsystem/3.1.300-servicing.20216.7/microsoft.net.sdk.web.projectsystem.3.1.300-servicing.20216.7.nupkg"; 263 + sha256 = "0601mix6l18h8afxxgdbbv695d0sjskady209z52sf4bvf4h4kal"; 264 + }; 265 + } 266 + { 267 + name = "microsoft.net.test.sdk"; 268 + version = "16.1.1"; 269 + src = fetchurl { 270 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.net.test.sdk/16.1.1/microsoft.net.test.sdk.16.1.1.nupkg"; 271 + sha256 = "13mcqv85yf4f1rx06sz5ff4pcmbr4rkgqkqzmwl8ywadbh523125"; 272 + }; 273 + } 274 + { 275 + name = "microsoft.sourcelink.azurerepos.git"; 276 + version = "1.1.0-beta-20206-02"; 277 + src = fetchurl { 278 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.sourcelink.azurerepos.git/1.1.0-beta-20206-02/microsoft.sourcelink.azurerepos.git.1.1.0-beta-20206-02.nupkg"; 279 + sha256 = "00hfjh8d3z5np51qgr1s3q4j7bl34mfiypf7nbxcmxa7cyj0rg65"; 280 + }; 281 + } 282 + { 283 + name = "microsoft.sourcelink.common"; 284 + version = "1.1.0-beta-20206-02"; 285 + src = fetchurl { 286 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.sourcelink.common/1.1.0-beta-20206-02/microsoft.sourcelink.common.1.1.0-beta-20206-02.nupkg"; 287 + sha256 = "1qv0k0apxv3j1pccki2rzakjfb0868hmg0968da0639f75s3glr9"; 288 + }; 289 + } 290 + { 291 + name = "microsoft.sourcelink.github"; 292 + version = "1.1.0-beta-20206-02"; 293 + src = fetchurl { 294 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.sourcelink.github/1.1.0-beta-20206-02/microsoft.sourcelink.github.1.1.0-beta-20206-02.nupkg"; 295 + sha256 = "0q1mgjjkwxvzn5v29pqiyg0j0jwi5qc0q04za9k1x138kliq2iba"; 296 + }; 297 + } 298 + { 299 + name = "microsoft.visualstudio.sdk.embedinteroptypes"; 300 + version = "15.0.15"; 301 + src = fetchurl { 302 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.sdk.embedinteroptypes/15.0.15/microsoft.visualstudio.sdk.embedinteroptypes.15.0.15.nupkg"; 303 + sha256 = "0chr3slzzcanwcyd9isx4gichqzmfh4zd3h83piw0r4xsww1wmpd"; 304 + }; 305 + } 306 + { 307 + name = "microsoft.visualstudio.setup.configuration.interop"; 308 + version = "1.16.30"; 309 + src = fetchurl { 310 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.setup.configuration.interop/1.16.30/microsoft.visualstudio.setup.configuration.interop.1.16.30.nupkg"; 311 + sha256 = "14022lx03vdcqlvbbdmbsxg5pqfx1rfq2jywxlyaz9v68cvsb0g4"; 312 + }; 313 + } 314 + { 315 + name = "microsoft.web.xdt"; 316 + version = "2.1.2"; 317 + src = fetchurl { 318 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.web.xdt/2.1.2/microsoft.web.xdt.2.1.2.nupkg"; 319 + sha256 = "1as6cih26xyxjsa5ibqik1fwbyxl58ivpngidr6w1nh5fi5zg9zw"; 320 + }; 321 + } 322 + { 323 + name = "microsoft.win32.primitives"; 324 + version = "4.0.1"; 325 + src = fetchurl { 326 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.win32.primitives/4.0.1/microsoft.win32.primitives.4.0.1.nupkg"; 327 + sha256 = "1pviskapkc6qm108r0q2x15vkgyqsczf9xpmrlm42q68ainc9ai3"; 328 + }; 329 + } 330 + { 331 + name = "microsoft.win32.primitives"; 332 + version = "4.3.0"; 333 + src = fetchurl { 334 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg"; 335 + sha256 = "1nvwzj039y9ngdpz7zg0vszvrr3za2vfmjg222jc8c1dibk6y6ah"; 336 + }; 337 + } 338 + { 339 + name = "netstandard.library"; 340 + version = "1.6.1"; 341 + src = fetchurl { 342 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg"; 343 + sha256 = "03pxpc6dzpw56l8qhcb0wzvirqgs3c008jcakqxvfqmy25m3dnyn"; 344 + }; 345 + } 346 + { 347 + name = "newtonsoft.json"; 348 + version = "9.0.1"; 349 + src = fetchurl { 350 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg"; 351 + sha256 = "1qayanmqh3xiw0bjwm825j1n6nvbhc6yqkdpaawpyd0l71d5qh13"; 352 + }; 353 + } 354 + { 355 + name = "nuget.build.tasks"; 356 + version = "5.7.0-rtm.6710"; 357 + src = fetchurl { 358 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.build.tasks/5.7.0-rtm.6710/nuget.build.tasks.5.7.0-rtm.6710.nupkg"; 359 + sha256 = "0zwacvci3y8xyhy6jzc0wd20rzgb6lzv0ci8a4qg8ay315bmd9sp"; 360 + }; 361 + } 362 + { 363 + name = "nuget.build.tasks.pack"; 364 + version = "5.7.0-rtm.6710"; 365 + src = fetchurl { 366 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.build.tasks.pack/5.7.0-rtm.6710/nuget.build.tasks.pack.5.7.0-rtm.6710.nupkg"; 367 + sha256 = "16scfs0gwfs9r5kp65jfz3ip7w56xyni6fwgpmj0y6dbazzqm6zs"; 368 + }; 369 + } 370 + { 371 + name = "nuget.commandline"; 372 + version = "4.1.0"; 373 + src = fetchurl { 374 + url = "https://api.nuget.org/v3-flatcontainer/nuget.commandline/4.1.0/nuget.commandline.4.1.0.nupkg"; 375 + sha256 = "03ik0rcdl7vdwxa9fx5cgl98yzb45swr08jmrnjk1ympjqvf94s1"; 376 + }; 377 + } 378 + { 379 + name = "nuget.commands"; 380 + version = "5.7.0-rtm.6710"; 381 + src = fetchurl { 382 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.commands/5.7.0-rtm.6710/nuget.commands.5.7.0-rtm.6710.nupkg"; 383 + sha256 = "0sm2x95q8y0sab7fsb2sqqhvw2x0scsavv968jxjf3ynb5n155q3"; 384 + }; 385 + } 386 + { 387 + name = "nuget.common"; 388 + version = "5.7.0-rtm.6710"; 389 + src = fetchurl { 390 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.common/5.7.0-rtm.6710/nuget.common.5.7.0-rtm.6710.nupkg"; 391 + sha256 = "07wxir208mmfzi2xxhn8xskbchx9d7nahmy2xqcx09mwkkr7m0qg"; 392 + }; 393 + } 394 + { 395 + name = "nuget.configuration"; 396 + version = "5.7.0-rtm.6710"; 397 + src = fetchurl { 398 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.configuration/5.7.0-rtm.6710/nuget.configuration.5.7.0-rtm.6710.nupkg"; 399 + sha256 = "1h9r627nj3bhwfwzf2b265s5zl00sj5z5x085a6l8qg2v8sig628"; 400 + }; 401 + } 402 + { 403 + name = "nuget.credentials"; 404 + version = "5.7.0-rtm.6710"; 405 + src = fetchurl { 406 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.credentials/5.7.0-rtm.6710/nuget.credentials.5.7.0-rtm.6710.nupkg"; 407 + sha256 = "06yd4ny5nzpxl6n3l57n585inj0bjybcmwcz0w3clyib9l2ybsjz"; 408 + }; 409 + } 410 + { 411 + name = "nuget.dependencyresolver.core"; 412 + version = "5.7.0-rtm.6710"; 413 + src = fetchurl { 414 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.dependencyresolver.core/5.7.0-rtm.6710/nuget.dependencyresolver.core.5.7.0-rtm.6710.nupkg"; 415 + sha256 = "0s3qlwg98qd5brfh6k9lsviqpij8n73ci54c9bmal56k12hkvfdm"; 416 + }; 417 + } 418 + { 419 + name = "nuget.frameworks"; 420 + version = "5.7.0-rtm.6710"; 421 + src = fetchurl { 422 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.frameworks/5.7.0-rtm.6710/nuget.frameworks.5.7.0-rtm.6710.nupkg"; 423 + sha256 = "05g4aaq3gc1p104dpanr255xcag399918m02vpanf29qpz3g325d"; 424 + }; 425 + } 426 + { 427 + name = "nuget.librarymodel"; 428 + version = "5.7.0-rtm.6710"; 429 + src = fetchurl { 430 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.librarymodel/5.7.0-rtm.6710/nuget.librarymodel.5.7.0-rtm.6710.nupkg"; 431 + sha256 = "1pj5y29f21ch4sgwg5xx4n0lsd1qiiyjy6ly6vaabfrimx4d0s23"; 432 + }; 433 + } 434 + { 435 + name = "nuget.packagemanagement"; 436 + version = "5.7.0-rtm.6710"; 437 + src = fetchurl { 438 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.packagemanagement/5.7.0-rtm.6710/nuget.packagemanagement.5.7.0-rtm.6710.nupkg"; 439 + sha256 = "1kiix6r2birnrlwki5mb5a7sbxh8wqj87f69qid6dr556x2w8h9z"; 440 + }; 441 + } 442 + { 443 + name = "nuget.packaging"; 444 + version = "5.7.0-rtm.6710"; 445 + src = fetchurl { 446 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.packaging/5.7.0-rtm.6710/nuget.packaging.5.7.0-rtm.6710.nupkg"; 447 + sha256 = "16frbw8k81cazary6d8sbdccr6hv57rc7rzdi9bagdnzvpm8h13l"; 448 + }; 449 + } 450 + { 451 + name = "nuget.projectmodel"; 452 + version = "5.7.0-rtm.6710"; 453 + src = fetchurl { 454 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.projectmodel/5.7.0-rtm.6710/nuget.projectmodel.5.7.0-rtm.6710.nupkg"; 455 + sha256 = "11i1kyqvmq70rkqrxhxnhsihaxx32ww0l9175473mmyia3wrbwyw"; 456 + }; 457 + } 458 + { 459 + name = "nuget.protocol"; 460 + version = "5.7.0-rtm.6710"; 461 + src = fetchurl { 462 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.protocol/5.7.0-rtm.6710/nuget.protocol.5.7.0-rtm.6710.nupkg"; 463 + sha256 = "1515p7a4kdm9wr8iizcmvzwqphxsfwqbnq41jv8mibrx7vih0s90"; 464 + }; 465 + } 466 + { 467 + name = "nuget.resolver"; 468 + version = "5.7.0-rtm.6710"; 469 + src = fetchurl { 470 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.resolver/5.7.0-rtm.6710/nuget.resolver.5.7.0-rtm.6710.nupkg"; 471 + sha256 = "17bm159knhx7iznm9ilk3mwb0n1gh1dp0ihhapyb1fmh9ings30b"; 472 + }; 473 + } 474 + { 475 + name = "nuget.versioning"; 476 + version = "5.7.0-rtm.6710"; 477 + src = fetchurl { 478 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/9d15d80a-6afc-4f7e-901b-9378146a4b8b/nuget/v3/flat2/nuget.versioning/5.7.0-rtm.6710/nuget.versioning.5.7.0-rtm.6710.nupkg"; 479 + sha256 = "1kj9xvcbwvvhhi45bi6f9m1cv8wx6y4xfmnxc8liwcgwh9gvwdjl"; 480 + }; 481 + } 482 + { 483 + name = "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl"; 484 + version = "4.3.0"; 485 + src = fetchurl { 486 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 487 + sha256 = "10a3jqkh1h23qsn7pjlji61d7dph7qy8c6ssfjqmlgydm4rnin64"; 488 + }; 489 + } 490 + { 491 + name = "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl"; 492 + version = "4.3.0"; 493 + src = fetchurl { 494 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 495 + sha256 = "1md38ys5h8srinnq9qxz47c9i27x7pv84avdi3rbq68hfkcslx93"; 496 + }; 497 + } 498 + { 499 + name = "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl"; 500 + version = "4.3.0"; 501 + src = fetchurl { 502 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 503 + sha256 = "0cgvqxccg4lkxiyvw3jrn71pbybbbcd3i8v6v4przgrr7f7k6nfj"; 504 + }; 505 + } 506 + { 507 + name = "runtime.native.system"; 508 + version = "4.0.0"; 509 + src = fetchurl { 510 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system/4.0.0/runtime.native.system.4.0.0.nupkg"; 511 + sha256 = "0fwsjhqj235hhy2zl8x3a828whn4nck7jr7hi09ccbk24xf4f17f"; 512 + }; 513 + } 514 + { 515 + name = "runtime.native.system"; 516 + version = "4.3.0"; 517 + src = fetchurl { 518 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg"; 519 + sha256 = "02gnfm33gf163kybkahfza8q10jp890hiczcnbg2aasf1n0jq857"; 520 + }; 521 + } 522 + { 523 + name = "runtime.native.system.io.compression"; 524 + version = "4.3.0"; 525 + src = fetchurl { 526 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg"; 527 + sha256 = "05370qi83pxfyn3whzkjjwb4q80vlr3mbz0dfa0hc0cbl5jx4y20"; 528 + }; 529 + } 530 + { 531 + name = "runtime.native.system.security.cryptography.openssl"; 532 + version = "4.3.0"; 533 + src = fetchurl { 534 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 535 + sha256 = "1il7m43j4nq15xf01npgxd8q83q8mkk4xk07dd7g0sfsxm9k127d"; 536 + }; 537 + } 538 + { 539 + name = "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl"; 540 + version = "4.3.0"; 541 + src = fetchurl { 542 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 543 + sha256 = "1pr8ji41rsifx6yh89xg1yw45g5snw96xxqw0g3q48rbdg5j79iw"; 544 + }; 545 + } 546 + { 547 + name = "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl"; 548 + version = "4.3.0"; 549 + src = fetchurl { 550 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 551 + sha256 = "1r8hllb6fdb4adij7b7ld32hf5r5jxyqh4pacrvfgjckmyx8js8c"; 552 + }; 553 + } 554 + { 555 + name = "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl"; 556 + version = "4.3.0"; 557 + src = fetchurl { 558 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 559 + sha256 = "16r149hajvr8ikyjbsw2m67yqfvxg6j1sb2slw9pzrly06mxmpks"; 560 + }; 561 + } 562 + { 563 + name = "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl"; 564 + version = "4.3.0"; 565 + src = fetchurl { 566 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 567 + sha256 = "0j2f2v1nm7sys6qpljhp4s18zz3hblymjl60yrccqfac7yr9hxrq"; 568 + }; 569 + } 570 + { 571 + name = "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl"; 572 + version = "4.3.0"; 573 + src = fetchurl { 574 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 575 + sha256 = "0wgz0y2fm6xcnlmpl1zh5963ribjbnzr2l6prsw3xi7sbfyjyi8c"; 576 + }; 577 + } 578 + { 579 + name = "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl"; 580 + version = "4.3.0"; 581 + src = fetchurl { 582 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 583 + sha256 = "0qr13ykxj7zs7i8z0x63v8za2h33ndnvvw83wffp9xbb2fibj3gi"; 584 + }; 585 + } 586 + { 587 + name = "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl"; 588 + version = "4.3.0"; 589 + src = fetchurl { 590 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 591 + sha256 = "1jg8gfh261zqmimf5ba76djr201q0bamm2385zxni5jnyyc4iis4"; 592 + }; 593 + } 594 + { 595 + name = "shouldly"; 596 + version = "3.0.0"; 597 + src = fetchurl { 598 + url = "https://api.nuget.org/v3-flatcontainer/shouldly/3.0.0/shouldly.3.0.0.nupkg"; 599 + sha256 = "1hg28w898kl84rx57sclb2z9b76v5hxlwxig1xnb6fr81aahzlw3"; 600 + }; 601 + } 602 + { 603 + name = "sn"; 604 + version = "1.0.0"; 605 + src = fetchurl { 606 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/sn/1.0.0/sn.1.0.0.nupkg"; 607 + sha256 = "1012fcdc6vq2355v86h434s6p2nnqgpdapb7p25l4h39g5q8p1qs"; 608 + }; 609 + } 610 + { 611 + name = "system.appcontext"; 612 + version = "4.1.0"; 613 + src = fetchurl { 614 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg"; 615 + sha256 = "02vsx9l8ahzykjw6psf8yd5grndk63x4rw0lc0rl0s9z203694j3"; 616 + }; 617 + } 618 + { 619 + name = "system.appcontext"; 620 + version = "4.3.0"; 621 + src = fetchurl { 622 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg"; 623 + sha256 = "1ipqwwfphj4ndi6krnbali0f3260bmdg0lb9w7w00k3z20gwpjgy"; 624 + }; 625 + } 626 + { 627 + name = "system.buffers"; 628 + version = "4.3.0"; 629 + src = fetchurl { 630 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.buffers/4.3.0/system.buffers.4.3.0.nupkg"; 631 + sha256 = "1x5m2z3x8s4d0z13l8j6jfbaqpwh8dwyg930pcg67gz88zchfhq8"; 632 + }; 633 + } 634 + { 635 + name = "system.buffers"; 636 + version = "4.4.0"; 637 + src = fetchurl { 638 + url = "https://api.nuget.org/v3-flatcontainer/system.buffers/4.4.0/system.buffers.4.4.0.nupkg"; 639 + sha256 = "183f8063w8zqn99pv0ni0nnwh7fgx46qzxamwnans55hhs2l0g19"; 640 + }; 641 + } 642 + { 643 + name = "system.buffers"; 644 + version = "4.5.0"; 645 + src = fetchurl { 646 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.buffers/4.5.0/system.buffers.4.5.0.nupkg"; 647 + sha256 = "0c8qh10lhc8gcl58772i91lc97bljy3dvi6s2r8cjlf0240j5yll"; 648 + }; 649 + } 650 + { 651 + name = "system.collections"; 652 + version = "4.0.11"; 653 + src = fetchurl { 654 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections/4.0.11/system.collections.4.0.11.nupkg"; 655 + sha256 = "19kjsnpbpznh7qjsyxadw2i8pd4iikrlxwak12l749sli2qd77dj"; 656 + }; 657 + } 658 + { 659 + name = "system.collections"; 660 + version = "4.3.0"; 661 + src = fetchurl { 662 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections/4.3.0/system.collections.4.3.0.nupkg"; 663 + sha256 = "0209rky2iyiyqxg0amhmvy6c3fww6pbrq9ffynjnmapizmsvq7ya"; 664 + }; 665 + } 666 + { 667 + name = "system.collections.concurrent"; 668 + version = "4.0.12"; 669 + src = fetchurl { 670 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.concurrent/4.0.12/system.collections.concurrent.4.0.12.nupkg"; 671 + sha256 = "1c4lv39n2i7k146njgk7334izcxjn06cnhmippc1vhwj3bqbzg62"; 672 + }; 673 + } 674 + { 675 + name = "system.collections.concurrent"; 676 + version = "4.3.0"; 677 + src = fetchurl { 678 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg"; 679 + sha256 = "0y6jag332kgkj392mrv7i2a3cgc60ff4hl0nx5qw40hq3w2d9j8z"; 680 + }; 681 + } 682 + { 683 + name = "system.collections.immutable"; 684 + version = "1.2.0"; 685 + src = fetchurl { 686 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.immutable/1.2.0/system.collections.immutable.1.2.0.nupkg"; 687 + sha256 = "1ywivzq43lqlh42qywq6v57yf499dya5rbzk6k7fnkj1121fr7kw"; 688 + }; 689 + } 690 + { 691 + name = "system.collections.immutable"; 692 + version = "1.5.0"; 693 + src = fetchurl { 694 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.immutable/1.5.0/system.collections.immutable.1.5.0.nupkg"; 695 + sha256 = "1yn0g10x5lss68i5n5x9q9z1kbxcbblrwp51ph79cgbi01ga999q"; 696 + }; 697 + } 698 + { 699 + name = "system.collections.nongeneric"; 700 + version = "4.0.1"; 701 + src = fetchurl { 702 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.nongeneric/4.0.1/system.collections.nongeneric.4.0.1.nupkg"; 703 + sha256 = "1wj1ddyycsggg3sjq0iflzyj93m7ny8mc2dpzvh5iqy89lj3gx1m"; 704 + }; 705 + } 706 + { 707 + name = "system.console"; 708 + version = "4.0.0"; 709 + src = fetchurl { 710 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.console/4.0.0/system.console.4.0.0.nupkg"; 711 + sha256 = "0fw0ap3c0svxjbkgr5yrkck36lbrijhsx48v53xkam5y6m0vh1s3"; 712 + }; 713 + } 714 + { 715 + name = "system.console"; 716 + version = "4.3.0"; 717 + src = fetchurl { 718 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.console/4.3.0/system.console.4.3.0.nupkg"; 719 + sha256 = "0hyp57lqq986hnj7h017mz1qa1p3qqw3n98nxngdj947ck4mwmpd"; 720 + }; 721 + } 722 + { 723 + name = "system.diagnostics.debug"; 724 + version = "4.0.11"; 725 + src = fetchurl { 726 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg"; 727 + sha256 = "0j4czvcp72qamsj8irwg0sv5lqil4g6q1ghqsm40g5f3380fxcn3"; 728 + }; 729 + } 730 + { 731 + name = "system.diagnostics.debug"; 732 + version = "4.3.0"; 733 + src = fetchurl { 734 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg"; 735 + sha256 = "02az3f9n0sy9hpjqq05dkwa4d4bgyrs57b69byya20zydvyxxm9z"; 736 + }; 737 + } 738 + { 739 + name = "system.diagnostics.diagnosticsource"; 740 + version = "4.3.0"; 741 + src = fetchurl { 742 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg"; 743 + sha256 = "0rqi76pqplmk8lzqhwxkkn6ramk56bm66ijg3zki9gzaaqx7fbfk"; 744 + }; 745 + } 746 + { 747 + name = "system.diagnostics.process"; 748 + version = "4.1.0"; 749 + src = fetchurl { 750 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.process/4.1.0/system.diagnostics.process.4.1.0.nupkg"; 751 + sha256 = "1fzm5jrfs4awz0qc2yav1assdnx45j5crpva50a4s0l0dnnvf2jh"; 752 + }; 753 + } 754 + { 755 + name = "system.diagnostics.tools"; 756 + version = "4.3.0"; 757 + src = fetchurl { 758 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg"; 759 + sha256 = "0fmmnsvnjxh4gjw2jjix3f7ndvhdh9h4rb4nbjk285c2rgfp2kyn"; 760 + }; 761 + } 762 + { 763 + name = "system.diagnostics.tracesource"; 764 + version = "4.0.0"; 765 + src = fetchurl { 766 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.4.0.0.nupkg"; 767 + sha256 = "0dwq0z7p3jpxp4y9x1k3pglrs572xx5dsp4nmnz5v5wr6a1kdc8l"; 768 + }; 769 + } 770 + { 771 + name = "system.diagnostics.tracing"; 772 + version = "4.1.0"; 773 + src = fetchurl { 774 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracing/4.1.0/system.diagnostics.tracing.4.1.0.nupkg"; 775 + sha256 = "0lzdnq31spwv2xd9xkf0ph4zlg7bqifcvp1915jk1hb5fjjf1byp"; 776 + }; 777 + } 778 + { 779 + name = "system.diagnostics.tracing"; 780 + version = "4.3.0"; 781 + src = fetchurl { 782 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg"; 783 + sha256 = "0zwc9qk2ig6h74dnn4hxlyhnfchp6yd6hqv39dy0dhp3xagwfqp3"; 784 + }; 785 + } 786 + { 787 + name = "system.globalization"; 788 + version = "4.0.11"; 789 + src = fetchurl { 790 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization/4.0.11/system.globalization.4.0.11.nupkg"; 791 + sha256 = "04pycnih66s15rbwss94ylm0svfr276ym4w4w14bb9g56dk0wwyy"; 792 + }; 793 + } 794 + { 795 + name = "system.globalization"; 796 + version = "4.3.0"; 797 + src = fetchurl { 798 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization/4.3.0/system.globalization.4.3.0.nupkg"; 799 + sha256 = "1sydnlnaqmarcfs1cvaa3rpax7qhzd8wd67f74k89lr3k77cagfh"; 800 + }; 801 + } 802 + { 803 + name = "system.globalization.calendars"; 804 + version = "4.3.0"; 805 + src = fetchurl { 806 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg"; 807 + sha256 = "1qfa54p7ab2himyry3lf0j85gpz3mx9yj0sy0v2j9i94ndvk1w7c"; 808 + }; 809 + } 810 + { 811 + name = "system.io"; 812 + version = "4.1.0"; 813 + src = fetchurl { 814 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io/4.1.0/system.io.4.1.0.nupkg"; 815 + sha256 = "0drs586wimx7vzwqfdb72k640iz24645cwz053n1f08752bjkzq8"; 816 + }; 817 + } 818 + { 819 + name = "system.io"; 820 + version = "4.3.0"; 821 + src = fetchurl { 822 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io/4.3.0/system.io.4.3.0.nupkg"; 823 + sha256 = "1n3qypsgn18pg13vyjcnchz3zbfajdk6swl1wzf0hv6324v8xyd7"; 824 + }; 825 + } 826 + { 827 + name = "system.io.compression"; 828 + version = "4.3.0"; 829 + src = fetchurl { 830 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg"; 831 + sha256 = "0mxp384amfdapgsf6fkyf3c5q10jc2yy55v3vim8wq1w8aim1qcf"; 832 + }; 833 + } 834 + { 835 + name = "system.io.compression.zipfile"; 836 + version = "4.3.0"; 837 + src = fetchurl { 838 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg"; 839 + sha256 = "08fbnsgbbnfj7d6k5zdqvm3580iqwrq4qzbnyq6iw9g93kmlyh5p"; 840 + }; 841 + } 842 + { 843 + name = "system.io.filesystem"; 844 + version = "4.0.1"; 845 + src = fetchurl { 846 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg"; 847 + sha256 = "0mp3n5214lzxz7qn2y5k7f2y9qv067xa23bnbyyhpmlkbl3grwc6"; 848 + }; 849 + } 850 + { 851 + name = "system.io.filesystem"; 852 + version = "4.3.0"; 853 + src = fetchurl { 854 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg"; 855 + sha256 = "1p4r4n4minxgir17xh7rwv503fj1zgnm1vb24and7v2n6id4ma61"; 856 + }; 857 + } 858 + { 859 + name = "system.io.filesystem.primitives"; 860 + version = "4.0.1"; 861 + src = fetchurl { 862 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg"; 863 + sha256 = "12mspig2fvzhvbdm22yk081lpn7rc45xwwricc5vnaszgjp83gns"; 864 + }; 865 + } 866 + { 867 + name = "system.io.filesystem.primitives"; 868 + version = "4.3.0"; 869 + src = fetchurl { 870 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg"; 871 + sha256 = "0s22vnhy6cxyzicipj3937rldxk1znlykakc6j596mjgsmshpfqn"; 872 + }; 873 + } 874 + { 875 + name = "system.linq"; 876 + version = "4.1.0"; 877 + src = fetchurl { 878 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq/4.1.0/system.linq.4.1.0.nupkg"; 879 + sha256 = "1n404dvsz6p2d18q9k3ip1vyl8ffbsz6xvc2bl2bba9ccpyjhygm"; 880 + }; 881 + } 882 + { 883 + name = "system.linq"; 884 + version = "4.3.0"; 885 + src = fetchurl { 886 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg"; 887 + sha256 = "1419wbklbn2vliwfy77p759k084h8jp9i3559shbhrzfxjr2fcv9"; 888 + }; 889 + } 890 + { 891 + name = "system.linq.expressions"; 892 + version = "4.3.0"; 893 + src = fetchurl { 894 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg"; 895 + sha256 = "177cz5hgcbq8lpgvdjmkpsx4kr645wpxhbgh3aw3f28nqlmhl70j"; 896 + }; 897 + } 898 + { 899 + name = "system.memory"; 900 + version = "4.5.3"; 901 + src = fetchurl { 902 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.memory/4.5.3/system.memory.4.5.3.nupkg"; 903 + sha256 = "1igqq2lqrijpbn66w1020cyyqiwy80i9fkqrmalamjmvmyg28p8m"; 904 + }; 905 + } 906 + { 907 + name = "system.net.http"; 908 + version = "4.3.0"; 909 + src = fetchurl { 910 + url = "https://api.nuget.org/v3-flatcontainer/system.net.http/4.3.0/system.net.http.4.3.0.nupkg"; 911 + sha256 = "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j"; 912 + }; 913 + } 914 + { 915 + name = "system.net.primitives"; 916 + version = "4.3.0"; 917 + src = fetchurl { 918 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg"; 919 + sha256 = "1zfrz4p3nmz3cnb0i8xwc76175328dfgrlmp3bcwvp5vplv3ncnz"; 920 + }; 921 + } 922 + { 923 + name = "system.net.sockets"; 924 + version = "4.3.0"; 925 + src = fetchurl { 926 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg"; 927 + sha256 = "026ghgh25lw953aqd83npk856g4bwi6a8y7jc695qj8lb929yp5s"; 928 + }; 929 + } 930 + { 931 + name = "system.numerics.vectors"; 932 + version = "4.4.0"; 933 + src = fetchurl { 934 + url = "https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg"; 935 + sha256 = "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba"; 936 + }; 937 + } 938 + { 939 + name = "system.numerics.vectors"; 940 + version = "4.5.0"; 941 + src = fetchurl { 942 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg"; 943 + sha256 = "1r66gjpvbmgr3216ch2fx9zzd08fb78br4hzblvsvi7wfwp6w7ip"; 944 + }; 945 + } 946 + { 947 + name = "system.objectmodel"; 948 + version = "4.0.12"; 949 + src = fetchurl { 950 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg"; 951 + sha256 = "06abwzrai4k999qmc8bkcvq26px2ws9gk04c01c1ix9fw02pf546"; 952 + }; 953 + } 954 + { 955 + name = "system.objectmodel"; 956 + version = "4.3.0"; 957 + src = fetchurl { 958 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg"; 959 + sha256 = "18mryszf4a66a52v9din5wgqiykp0ficl5zl5l9grkrisjnl7jh4"; 960 + }; 961 + } 962 + { 963 + name = "system.private.datacontractserialization"; 964 + version = "4.1.1"; 965 + src = fetchurl { 966 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.private.datacontractserialization/4.1.1/system.private.datacontractserialization.4.1.1.nupkg"; 967 + sha256 = "1hrbq85s14x7ck6an570z8p7slprlsswxlydz0pdzfmnqwpv0qbi"; 968 + }; 969 + } 970 + { 971 + name = "system.reflection"; 972 + version = "4.1.0"; 973 + src = fetchurl { 974 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection/4.1.0/system.reflection.4.1.0.nupkg"; 975 + sha256 = "003bmllpdf35jsbbhgsi4a24rqprdhgjpi3d76jk7sgllbh6p1wj"; 976 + }; 977 + } 978 + { 979 + name = "system.reflection"; 980 + version = "4.3.0"; 981 + src = fetchurl { 982 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection/4.3.0/system.reflection.4.3.0.nupkg"; 983 + sha256 = "00f1n6r8z6zw3mfhrfg402s6fj95jj9d8z5s62kfmd7pdsnv39xi"; 984 + }; 985 + } 986 + { 987 + name = "system.reflection.emit"; 988 + version = "4.0.1"; 989 + src = fetchurl { 990 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg"; 991 + sha256 = "0s1cpkpnn2x6bicspj1x7z7zlfg1h5iy8mvr5bcq55fgpyf6xin8"; 992 + }; 993 + } 994 + { 995 + name = "system.reflection.emit.ilgeneration"; 996 + version = "4.0.1"; 997 + src = fetchurl { 998 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg"; 999 + sha256 = "0q789n72y47jkld2076khan7zz2gm04znpnz0nznin7ykp8aa0ih"; 1000 + }; 1001 + } 1002 + { 1003 + name = "system.reflection.emit.lightweight"; 1004 + version = "4.0.1"; 1005 + src = fetchurl { 1006 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg"; 1007 + sha256 = "10hsbdar8vzvq3izv3v8a93rz7brnmrcrcl5c0nvy8vlmdk41jlx"; 1008 + }; 1009 + } 1010 + { 1011 + name = "system.reflection.extensions"; 1012 + version = "4.0.1"; 1013 + src = fetchurl { 1014 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg"; 1015 + sha256 = "1n1gig2nlycrz1rzy1gi56gcw568ibdpnbknjy7gv9i76aw2kvy7"; 1016 + }; 1017 + } 1018 + { 1019 + name = "system.reflection.extensions"; 1020 + version = "4.3.0"; 1021 + src = fetchurl { 1022 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg"; 1023 + sha256 = "020gr3yjb3aa49hm4qyxqrz318ll2rnc8qpcby341ik0gr4ij3wz"; 1024 + }; 1025 + } 1026 + { 1027 + name = "system.reflection.metadata"; 1028 + version = "1.6.0"; 1029 + src = fetchurl { 1030 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg"; 1031 + sha256 = "1kw4xsm093zd10jf3vjc2lxmv0zq6chi3g8rka8w0d3l3a5hh3ly"; 1032 + }; 1033 + } 1034 + { 1035 + name = "system.reflection.primitives"; 1036 + version = "4.0.1"; 1037 + src = fetchurl { 1038 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg"; 1039 + sha256 = "1r0a1xhlrdr6kdhia9r6rcywds4r8wbk0jagsac6x3rc0kq5f1yi"; 1040 + }; 1041 + } 1042 + { 1043 + name = "system.reflection.primitives"; 1044 + version = "4.3.0"; 1045 + src = fetchurl { 1046 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg"; 1047 + sha256 = "1b10cxizldqk8niyihhxsabfjkyrlnkgf4im038lbxs3pq7a12yl"; 1048 + }; 1049 + } 1050 + { 1051 + name = "system.reflection.typeextensions"; 1052 + version = "4.1.0"; 1053 + src = fetchurl { 1054 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg"; 1055 + sha256 = "13y2gvadvzgv5hrizwd53xyciq88p8mpclyqfmikspij4pyb5328"; 1056 + }; 1057 + } 1058 + { 1059 + name = "system.resources.extensions"; 1060 + version = "4.6.0"; 1061 + src = fetchurl { 1062 + url = "https://api.nuget.org/v3-flatcontainer/system.resources.extensions/4.6.0/system.resources.extensions.4.6.0.nupkg"; 1063 + sha256 = "0inch9jgchgmsg3xjivbhh9mpin40mhdd8dgf4i1p3g42i0hzc0j"; 1064 + }; 1065 + } 1066 + { 1067 + name = "system.resources.reader"; 1068 + version = "4.0.0"; 1069 + src = fetchurl { 1070 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.reader/4.0.0/system.resources.reader.4.0.0.nupkg"; 1071 + sha256 = "0nipl2mayrbgf62mbi3z9crk9hvcrxnry008a33iyk9xy45rmyk1"; 1072 + }; 1073 + } 1074 + { 1075 + name = "system.resources.resourcemanager"; 1076 + version = "4.0.1"; 1077 + src = fetchurl { 1078 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg"; 1079 + sha256 = "1hjlz6rvr5c7qmvmbv1a338zqjl1dbj0qqidwv9z0ldy4jmg89cy"; 1080 + }; 1081 + } 1082 + { 1083 + name = "system.resources.resourcemanager"; 1084 + version = "4.3.0"; 1085 + src = fetchurl { 1086 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg"; 1087 + sha256 = "1bi65kd8fps7gncs053pawc0j44pz4wcgdj3jcw7gpjr4j0zyxwi"; 1088 + }; 1089 + } 1090 + { 1091 + name = "system.runtime"; 1092 + version = "4.1.0"; 1093 + src = fetchurl { 1094 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime/4.1.0/system.runtime.4.1.0.nupkg"; 1095 + sha256 = "05n73j0s3qgjnp5w2jxaacn93kpq14cldxncv15v04b3lla30mpr"; 1096 + }; 1097 + } 1098 + { 1099 + name = "system.runtime"; 1100 + version = "4.3.0"; 1101 + src = fetchurl { 1102 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime/4.3.0/system.runtime.4.3.0.nupkg"; 1103 + sha256 = "0cffdplihjrivvcayzvz32gmv7yissf2pmyaga4fw7g262rf5mxi"; 1104 + }; 1105 + } 1106 + { 1107 + name = "system.runtime.compilerservices.unsafe"; 1108 + version = "4.5.2"; 1109 + src = fetchurl { 1110 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.compilerservices.unsafe/4.5.2/system.runtime.compilerservices.unsafe.4.5.2.nupkg"; 1111 + sha256 = "0bp6in9qqhprbk85wd0cnfnpjcwdknyyc9rk0891kldx3alnd4h7"; 1112 + }; 1113 + } 1114 + { 1115 + name = "system.runtime.compilerservices.unsafe"; 1116 + version = "4.7.0"; 1117 + src = fetchurl { 1118 + url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.7.0/system.runtime.compilerservices.unsafe.4.7.0.nupkg"; 1119 + sha256 = "16r6sn4czfjk8qhnz7bnqlyiaaszr0ihinb7mq9zzr1wba257r54"; 1120 + }; 1121 + } 1122 + { 1123 + name = "system.runtime.extensions"; 1124 + version = "4.1.0"; 1125 + src = fetchurl { 1126 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.extensions/4.1.0/system.runtime.extensions.4.1.0.nupkg"; 1127 + sha256 = "0bms87hf2q90kkfg75ljdk09410fl64326wpvhqgfkgw019704yc"; 1128 + }; 1129 + } 1130 + { 1131 + name = "system.runtime.extensions"; 1132 + version = "4.3.0"; 1133 + src = fetchurl { 1134 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg"; 1135 + sha256 = "18qn6zjvpngda5bd9nrpphwy5lppmkla86jk5bdapz6ar44ic8wy"; 1136 + }; 1137 + } 1138 + { 1139 + name = "system.runtime.handles"; 1140 + version = "4.0.1"; 1141 + src = fetchurl { 1142 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.handles/4.0.1/system.runtime.handles.4.0.1.nupkg"; 1143 + sha256 = "00kzqs5d8gm1ppc13idybcdrr07yk2a7f5bdrb0mw7c1bafjp1px"; 1144 + }; 1145 + } 1146 + { 1147 + name = "system.runtime.handles"; 1148 + version = "4.3.0"; 1149 + src = fetchurl { 1150 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg"; 1151 + sha256 = "1klsizwincb42v9yl6m9czgqcmxr7a1h1ri687ldqy4w15718adi"; 1152 + }; 1153 + } 1154 + { 1155 + name = "system.runtime.interopservices"; 1156 + version = "4.1.0"; 1157 + src = fetchurl { 1158 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices/4.1.0/system.runtime.interopservices.4.1.0.nupkg"; 1159 + sha256 = "1876kwm4ziikya5s75sb1cp23qwdsd7xhlmlb9gaglibzwkd8b9d"; 1160 + }; 1161 + } 1162 + { 1163 + name = "system.runtime.interopservices"; 1164 + version = "4.3.0"; 1165 + src = fetchurl { 1166 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg"; 1167 + sha256 = "0l13wfr3y4rq667cyw1rl3bdq24zhs34jwv61piwnv77flwr4brq"; 1168 + }; 1169 + } 1170 + { 1171 + name = "system.runtime.interopservices.runtimeinformation"; 1172 + version = "4.0.0"; 1173 + src = fetchurl { 1174 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices.runtimeinformation/4.0.0/system.runtime.interopservices.runtimeinformation.4.0.0.nupkg"; 1175 + sha256 = "05pmsmrjmy3mk4r8xqihc3w7128d4qccjg6wkyd7zc2yq67w7xmg"; 1176 + }; 1177 + } 1178 + { 1179 + name = "system.runtime.interopservices.runtimeinformation"; 1180 + version = "4.3.0"; 1181 + src = fetchurl { 1182 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg"; 1183 + sha256 = "131108h1vnayxx6ms2axinja3sqckb1b8z9v8fjnaf9ix8zvmaxq"; 1184 + }; 1185 + } 1186 + { 1187 + name = "system.runtime.numerics"; 1188 + version = "4.3.0"; 1189 + src = fetchurl { 1190 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg"; 1191 + sha256 = "06i4k2ng909fvlq9dhglgyp0iv5vj6b42vqlsvk2gcn6ssgkq9ya"; 1192 + }; 1193 + } 1194 + { 1195 + name = "system.runtime.serialization.primitives"; 1196 + version = "4.1.1"; 1197 + src = fetchurl { 1198 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg"; 1199 + sha256 = "1mqwgsda61xm2p4chcniypnnrahh8l6j8c9j45jd2r0hmrvnsc4k"; 1200 + }; 1201 + } 1202 + { 1203 + name = "system.runtime.serialization.xml"; 1204 + version = "4.1.1"; 1205 + src = fetchurl { 1206 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.xml/4.1.1/system.runtime.serialization.xml.4.1.1.nupkg"; 1207 + sha256 = "19mwnihzks4l2q73bsg5ylbawxqcji3slzzp0v46v6xvvrq480wq"; 1208 + }; 1209 + } 1210 + { 1211 + name = "system.security.cryptography.algorithms"; 1212 + version = "4.3.0"; 1213 + src = fetchurl { 1214 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg"; 1215 + sha256 = "04lfa74ll34fk2r42fkdldvcgjp27i3d5zbxx5bxx1dfpsqhkavv"; 1216 + }; 1217 + } 1218 + { 1219 + name = "system.security.cryptography.encoding"; 1220 + version = "4.3.0"; 1221 + src = fetchurl { 1222 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg"; 1223 + sha256 = "1icdqp1c8f7971h1vkls87m8bdxs7xqg4xs7ygi0x3n56pjbqfpi"; 1224 + }; 1225 + } 1226 + { 1227 + name = "system.security.cryptography.primitives"; 1228 + version = "4.3.0"; 1229 + src = fetchurl { 1230 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg"; 1231 + sha256 = "02dsnjxw9bymk0a2qnnlavpi0jq8832dviblv5f9icmwldridc8y"; 1232 + }; 1233 + } 1234 + { 1235 + name = "system.security.cryptography.x509certificates"; 1236 + version = "4.3.0"; 1237 + src = fetchurl { 1238 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg"; 1239 + sha256 = "0p02s2k8gcx86ys67ydbgrlnp5q7f073jnlgpliqp4f7d2wiwszd"; 1240 + }; 1241 + } 1242 + { 1243 + name = "system.security.principal.windows"; 1244 + version = "4.7.0"; 1245 + src = fetchurl { 1246 + url = "https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg"; 1247 + sha256 = "1a56ls5a9sr3ya0nr086sdpa9qv0abv31dd6fp27maqa9zclqq5d"; 1248 + }; 1249 + } 1250 + { 1251 + name = "system.text.encoding"; 1252 + version = "4.0.11"; 1253 + src = fetchurl { 1254 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg"; 1255 + sha256 = "0q829jqhv2sdggb3xjlbdp65g2670w9gw64q2irdzr47gl7zpzyl"; 1256 + }; 1257 + } 1258 + { 1259 + name = "system.text.encoding"; 1260 + version = "4.3.0"; 1261 + src = fetchurl { 1262 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg"; 1263 + sha256 = "04fsaadvsnjz6jmf88n26md9zcmvwgn2dkwqkjvhf5apph8gi44g"; 1264 + }; 1265 + } 1266 + { 1267 + name = "system.text.encoding.codepages"; 1268 + version = "4.0.1"; 1269 + src = fetchurl { 1270 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding.codepages/4.0.1/system.text.encoding.codepages.4.0.1.nupkg"; 1271 + sha256 = "0ixii299wspn434ccjjv8pcvxww3qjl8257r0dx7myh816v3a9sz"; 1272 + }; 1273 + } 1274 + { 1275 + name = "system.text.encoding.extensions"; 1276 + version = "4.0.11"; 1277 + src = fetchurl { 1278 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg"; 1279 + sha256 = "15f89w0vwnfp10544wbq0z6fjqn7ig03q3kl16x2pp47rac6yj17"; 1280 + }; 1281 + } 1282 + { 1283 + name = "system.text.encoding.extensions"; 1284 + version = "4.3.0"; 1285 + src = fetchurl { 1286 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg"; 1287 + sha256 = "1w6jxdkrczxwyw2bbs9ng0zi2nk3paznyhm1vnh5vc8v10k96v98"; 1288 + }; 1289 + } 1290 + { 1291 + name = "system.text.encodings.web"; 1292 + version = "4.7.0"; 1293 + src = fetchurl { 1294 + url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/4.7.0/system.text.encodings.web.4.7.0.nupkg"; 1295 + sha256 = "0sd3bihfar5rwm6nib4lhyys306nkm02qvk6p6sgzmnlfmma2wn3"; 1296 + }; 1297 + } 1298 + { 1299 + name = "system.text.json"; 1300 + version = "4.7.0"; 1301 + src = fetchurl { 1302 + url = "https://api.nuget.org/v3-flatcontainer/system.text.json/4.7.0/system.text.json.4.7.0.nupkg"; 1303 + sha256 = "0fp3xrysccm5dkaac4yb51d793vywxks978kkl5x4db9gw29rfdr"; 1304 + }; 1305 + } 1306 + { 1307 + name = "system.text.regularexpressions"; 1308 + version = "4.1.0"; 1309 + src = fetchurl { 1310 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg"; 1311 + sha256 = "1ndgfw99bds4772p7578ylcb4whls76qhiz9a3bh4qy9si48afcv"; 1312 + }; 1313 + } 1314 + { 1315 + name = "system.text.regularexpressions"; 1316 + version = "4.3.0"; 1317 + src = fetchurl { 1318 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg"; 1319 + sha256 = "1510mdlfdc42vyp738wvmqdy3sir2yyh5w3da3v5i0ar2c4jn6wi"; 1320 + }; 1321 + } 1322 + { 1323 + name = "system.threading"; 1324 + version = "4.0.11"; 1325 + src = fetchurl { 1326 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading/4.0.11/system.threading.4.0.11.nupkg"; 1327 + sha256 = "12w6vdai88ldgnv9f71rybwyvlzkk1nr57d7f8cz6rajwliz7h6g"; 1328 + }; 1329 + } 1330 + { 1331 + name = "system.threading"; 1332 + version = "4.3.0"; 1333 + src = fetchurl { 1334 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading/4.3.0/system.threading.4.3.0.nupkg"; 1335 + sha256 = "1ad1drl7q1f8fmfaq3r2bswg58nbc2y01mrbhlwkv41ij1ij3fz3"; 1336 + }; 1337 + } 1338 + { 1339 + name = "system.threading.tasks"; 1340 + version = "4.0.11"; 1341 + src = fetchurl { 1342 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg"; 1343 + sha256 = "03gvdi1qk4kyws4sjfl5w3fy9qbrq0d0i72n7a8d59lchm6l9zjk"; 1344 + }; 1345 + } 1346 + { 1347 + name = "system.threading.tasks"; 1348 + version = "4.3.0"; 1349 + src = fetchurl { 1350 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg"; 1351 + sha256 = "0y0gw9q62dchzhk3fcdcdfhk6c5zr0a6rs34qfdbkgksnva10cm1"; 1352 + }; 1353 + } 1354 + { 1355 + name = "system.threading.tasks.dataflow"; 1356 + version = "4.9.0"; 1357 + src = fetchurl { 1358 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.dataflow/4.9.0/system.threading.tasks.dataflow.4.9.0.nupkg"; 1359 + sha256 = "01lhdmb9w4h82yaqrqpzvz5cv2b228kj332k2h6nz0qycpjd6b0y"; 1360 + }; 1361 + } 1362 + { 1363 + name = "system.threading.tasks.extensions"; 1364 + version = "4.0.0"; 1365 + src = fetchurl { 1366 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg"; 1367 + sha256 = "1dxi845z4cd83v2ph7dq9ykf5gxr6gaw9k29wckv5zhx1rjwprfg"; 1368 + }; 1369 + } 1370 + { 1371 + name = "system.threading.tasks.extensions"; 1372 + version = "4.3.0"; 1373 + src = fetchurl { 1374 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg"; 1375 + sha256 = "1dr14m9c2psrvavv74dzwbi09avn0hxmdvr6z03f96mxkrk3cm1d"; 1376 + }; 1377 + } 1378 + { 1379 + name = "system.threading.tasks.extensions"; 1380 + version = "4.5.2"; 1381 + src = fetchurl { 1382 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.extensions/4.5.2/system.threading.tasks.extensions.4.5.2.nupkg"; 1383 + sha256 = "03qkna7pwxaxnxg3ydc1vpjzzrizq55gm7w519gqlmd6yca61vzm"; 1384 + }; 1385 + } 1386 + { 1387 + name = "system.threading.tasks.parallel"; 1388 + version = "4.0.1"; 1389 + src = fetchurl { 1390 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.parallel/4.0.1/system.threading.tasks.parallel.4.0.1.nupkg"; 1391 + sha256 = "00l76cv7yys3ilrpi32xrs8qk45gmliqvmw2w2zxg3h21y6r0xc0"; 1392 + }; 1393 + } 1394 + { 1395 + name = "system.threading.thread"; 1396 + version = "4.0.0"; 1397 + src = fetchurl { 1398 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.thread/4.0.0/system.threading.thread.4.0.0.nupkg"; 1399 + sha256 = "0ay1bjmyk0jv6plj9layh3nhr7lnl5a6gzlqi2pgqglb1s9j1x4s"; 1400 + }; 1401 + } 1402 + { 1403 + name = "system.threading.timer"; 1404 + version = "4.0.1"; 1405 + src = fetchurl { 1406 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.timer/4.0.1/system.threading.timer.4.0.1.nupkg"; 1407 + sha256 = "0imrcq43k6ii97xpfkwzsvhs6idvgc6mi5c9p7ah828wbaxqh1my"; 1408 + }; 1409 + } 1410 + { 1411 + name = "system.threading.timer"; 1412 + version = "4.3.0"; 1413 + src = fetchurl { 1414 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg"; 1415 + sha256 = "11p4yxkcn2amlxhwipyia38k8glpam5c9l47y5dvjdicg42dgxl8"; 1416 + }; 1417 + } 1418 + { 1419 + name = "system.valuetuple"; 1420 + version = "4.5.0"; 1421 + src = fetchurl { 1422 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg"; 1423 + sha256 = "068v2h0v8873jh3zc06bxcfzch9frggak1s9csyisl7xzwdijsqn"; 1424 + }; 1425 + } 1426 + { 1427 + name = "system.xml.readerwriter"; 1428 + version = "4.0.11"; 1429 + src = fetchurl { 1430 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg"; 1431 + sha256 = "04ijmcrb40x08br0fdpxmrm0fw2ahpiqjs9wmrqx38ngf96irb7l"; 1432 + }; 1433 + } 1434 + { 1435 + name = "system.xml.readerwriter"; 1436 + version = "4.3.0"; 1437 + src = fetchurl { 1438 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg"; 1439 + sha256 = "1dsj4s5jwjqix52sizyncvrv5p1h9cdnkh5c4a6407s3gkkh4gzw"; 1440 + }; 1441 + } 1442 + { 1443 + name = "system.xml.xdocument"; 1444 + version = "4.3.0"; 1445 + src = fetchurl { 1446 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg"; 1447 + sha256 = "14j57hlnmba6rwjwkxx8yp7rk5zf2dzq5j9f22j84jr0xxf00j2f"; 1448 + }; 1449 + } 1450 + { 1451 + name = "system.xml.xmldocument"; 1452 + version = "4.0.1"; 1453 + src = fetchurl { 1454 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xmldocument/4.0.1/system.xml.xmldocument.4.0.1.nupkg"; 1455 + sha256 = "1x2iz1l482876vjr11vsrl895n1bbaflxbj239dpf5a48p06gq7y"; 1456 + }; 1457 + } 1458 + { 1459 + name = "system.xml.xmlserializer"; 1460 + version = "4.0.11"; 1461 + src = fetchurl { 1462 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xmlserializer/4.0.11/system.xml.xmlserializer.4.0.11.nupkg"; 1463 + sha256 = "0987zp4nskf0dbsl3h4s5m1ianjcc398zmp2b98j4834c45jh0bm"; 1464 + }; 1465 + } 1466 + { 1467 + name = "system.xml.xpath"; 1468 + version = "4.3.0"; 1469 + src = fetchurl { 1470 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg"; 1471 + sha256 = "0hvn82chjynkixvvk9dy9djqvb0hlkbc2hy00gy27vjhd8i4iqkx"; 1472 + }; 1473 + } 1474 + { 1475 + name = "vswhere"; 1476 + version = "2.6.7"; 1477 + src = fetchurl { 1478 + url = "https://api.nuget.org/v3-flatcontainer/vswhere/2.6.7/vswhere.2.6.7.nupkg"; 1479 + sha256 = "0h4k5i96p7633zzf4xsv7615f9x72rr5qr7b9934ri2y6gshfcwk"; 1480 + }; 1481 + } 1482 + { 1483 + name = "xlifftasks"; 1484 + version = "1.0.0-beta.20206.1"; 1485 + src = fetchurl { 1486 + url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/xlifftasks/1.0.0-beta.20206.1/xlifftasks.1.0.0-beta.20206.1.nupkg"; 1487 + sha256 = "0xsfzws7rn9sfk4mgkbil21m8d3k3kccfk5f4g6lzvc1vk0pa26j"; 1488 + }; 1489 + } 1490 + { 1491 + name = "xunit"; 1492 + version = "2.4.1"; 1493 + src = fetchurl { 1494 + url = "https://api.nuget.org/v3-flatcontainer/xunit/2.4.1/xunit.2.4.1.nupkg"; 1495 + sha256 = "0xf3kaywpg15flqaqfgywqyychzk15kz0kz34j21rcv78q9ywq20"; 1496 + }; 1497 + } 1498 + { 1499 + name = "xunit.abstractions"; 1500 + version = "2.0.3"; 1501 + src = fetchurl { 1502 + url = "https://api.nuget.org/v3-flatcontainer/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg"; 1503 + sha256 = "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh"; 1504 + }; 1505 + } 1506 + { 1507 + name = "xunit.analyzers"; 1508 + version = "0.10.0"; 1509 + src = fetchurl { 1510 + url = "https://api.nuget.org/v3-flatcontainer/xunit.analyzers/0.10.0/xunit.analyzers.0.10.0.nupkg"; 1511 + sha256 = "15n02q3akyqbvkp8nq75a8rd66d4ax0rx8fhdcn8j78pi235jm7j"; 1512 + }; 1513 + } 1514 + { 1515 + name = "xunit.assert"; 1516 + version = "2.4.1"; 1517 + src = fetchurl { 1518 + url = "https://api.nuget.org/v3-flatcontainer/xunit.assert/2.4.1/xunit.assert.2.4.1.nupkg"; 1519 + sha256 = "1imynzh80wxq2rp9sc4gxs4x1nriil88f72ilhj5q0m44qqmqpc6"; 1520 + }; 1521 + } 1522 + { 1523 + name = "xunit.core"; 1524 + version = "2.4.1"; 1525 + src = fetchurl { 1526 + url = "https://api.nuget.org/v3-flatcontainer/xunit.core/2.4.1/xunit.core.2.4.1.nupkg"; 1527 + sha256 = "1nnb3j4kzmycaw1g76ii4rfqkvg6l8gqh18falwp8g28h802019a"; 1528 + }; 1529 + } 1530 + { 1531 + name = "xunit.extensibility.core"; 1532 + version = "2.4.1"; 1533 + src = fetchurl { 1534 + url = "https://api.nuget.org/v3-flatcontainer/xunit.extensibility.core/2.4.1/xunit.extensibility.core.2.4.1.nupkg"; 1535 + sha256 = "103qsijmnip2pnbhciqyk2jyhdm6snindg5z2s57kqf5pcx9a050"; 1536 + }; 1537 + } 1538 + { 1539 + name = "xunit.extensibility.execution"; 1540 + version = "2.4.1"; 1541 + src = fetchurl { 1542 + url = "https://api.nuget.org/v3-flatcontainer/xunit.extensibility.execution/2.4.1/xunit.extensibility.execution.2.4.1.nupkg"; 1543 + sha256 = "1pbilxh1gp2ywm5idfl0klhl4gb16j86ib4x83p8raql1dv88qia"; 1544 + }; 1545 + } 1546 + { 1547 + name = "xunit.runner.console"; 1548 + version = "2.4.1"; 1549 + src = fetchurl { 1550 + url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.console/2.4.1/xunit.runner.console.2.4.1.nupkg"; 1551 + sha256 = "13ykz9anhz72xc4q6byvdfwrp54hlcbl6zsfapwfhnzyvfgb9w13"; 1552 + }; 1553 + } 1554 + { 1555 + name = "xunit.runner.visualstudio"; 1556 + version = "2.4.1"; 1557 + src = fetchurl { 1558 + url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.visualstudio/2.4.1/xunit.runner.visualstudio.2.4.1.nupkg"; 1559 + sha256 = "0fln5pk18z98gp0zfshy1p9h6r9wc55nyqhap34k89yran646vhn"; 1560 + }; 1561 + } 1562 + ]
-1326
pkgs/development/tools/build-managers/msbuild/nuget.nix
··· 1 - { fetchurl }: [ 2 - (fetchurl { 3 - url = "https://api.nuget.org/v3-flatcontainer/largeaddressaware/1.0.3/largeaddressaware.1.0.3.nupkg"; 4 - sha256 = "1ppss9bgj0hf5s8307bnm2a4qm10mrymp0v12m28a5q81zjz0fr5"; 5 - }) 6 - (fetchurl { 7 - url = "https://api.nuget.org/v3-flatcontainer/microbuild.core/0.2.0/microbuild.core.0.2.0.nupkg"; 8 - sha256 = "0q4s45jskbyxfx4ay6znnvv94zma2wd85b8rwmwszd2nb0xl3194"; 9 - }) 10 - (fetchurl { 11 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build/14.3.0/microsoft.build.14.3.0.nupkg"; 12 - sha256 = "1zamn3p8xxi0wsjlpln0y71ncb977f3fp08mvaz4wmbmi76nr0rz"; 13 - }) 14 - (fetchurl { 15 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.centralpackageversions/2.0.1/microsoft.build.centralpackageversions.2.0.1.nupkg"; 16 - sha256 = "17cjiaj2b98q8s89168g42jb8rhwm6062jcbv57rbkdiiwdsn55k"; 17 - }) 18 - (fetchurl { 19 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/14.3.0/microsoft.build.framework.14.3.0.nupkg"; 20 - sha256 = "0r7y1i7dbr3pb53fdrh268hyi627w85nzv2iblwyg8dzkfxraafd"; 21 - }) 22 - (fetchurl { 23 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/15.5.180/microsoft.build.framework.15.5.180.nupkg"; 24 - sha256 = "064y3a711ikx9pm9d2wyms4i3k4f9hfvn3vymhwygg7yv7gcj92z"; 25 - }) 26 - (fetchurl { 27 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.tasks.git/1.0.0-beta2-19367-01/microsoft.build.tasks.git.1.0.0-beta2-19367-01.nupkg"; 28 - sha256 = "1f6lqp86ybdgf0clmszpbqhhddynky7xl43fawvgnvz0bb2xw73j"; 29 - }) 30 - (fetchurl { 31 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/14.3.0/microsoft.build.utilities.core.14.3.0.nupkg"; 32 - sha256 = "0351nsnx12nzkss6vaqwwh7d7car7hrgyh0vyd4bl83c4x3ls1kb"; 33 - }) 34 - (fetchurl { 35 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/15.5.180/microsoft.build.utilities.core.15.5.180.nupkg"; 36 - sha256 = "0c4bjhaqgc98bchln8p5d2p1vyn8qrha2b8gpn2l7bnznbcrd630"; 37 - }) 38 - (fetchurl { 39 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.codecoverage/15.9.0/microsoft.codecoverage.15.9.0.nupkg"; 40 - sha256 = "10v5xrdilnm362g9545qxvlrbwc9vn65jhpb1i0jlhyqsj6bfwzg"; 41 - }) 42 - (fetchurl { 43 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.3.0/microsoft.csharp.4.3.0.nupkg"; 44 - sha256 = "0gw297dgkh0al1zxvgvncqs0j15lsna9l1wpqas4rflmys440xvb"; 45 - }) 46 - (fetchurl { 47 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.platformabstractions/1.0.3/microsoft.dotnet.platformabstractions.1.0.3.nupkg"; 48 - sha256 = "1nayc88w80jrmnf3mkq0fk2bjhpgnk59m9yl40d9qfj06bzvckxl"; 49 - }) 50 - (fetchurl { 51 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.platformabstractions/2.1.0/microsoft.dotnet.platformabstractions.2.1.0.nupkg"; 52 - sha256 = "1qydvyyinj3b5mraazjal3n2k7jqhn05b6n1a2f3qjkqkxi63dmy"; 53 - }) 54 - (fetchurl { 55 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/1.0.3/microsoft.extensions.dependencymodel.1.0.3.nupkg"; 56 - sha256 = "1vclzbn8aq3wnvib34kr8g86gi37r6hn1ax9nc1sllid3h026irl"; 57 - }) 58 - (fetchurl { 59 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/2.1.0/microsoft.extensions.dependencymodel.2.1.0.nupkg"; 60 - sha256 = "0dl4qhjgifm6v3jsfzvzkvddyic77ggp9fq49ah661v45gk6ilgd"; 61 - }) 62 - (fetchurl { 63 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.dotnetapphost/2.1.0/microsoft.netcore.dotnetapphost.2.1.0.nupkg"; 64 - sha256 = "10hnhkix2av0c7djp2q88pw407m8gk3im4r06x762a3cs6f2jprd"; 65 - }) 66 - (fetchurl { 67 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.dotnethostpolicy/2.1.0/microsoft.netcore.dotnethostpolicy.2.1.0.nupkg"; 68 - sha256 = "1xh8ij7zyfkrk20rgpwqs00mxdy2qiwr7qar2xk397zk2bh2d90n"; 69 - }) 70 - (fetchurl { 71 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.dotnethostresolver/2.1.0/microsoft.netcore.dotnethostresolver.2.1.0.nupkg"; 72 - sha256 = "1384k3cg4sjcn3hyalcm43fhmlfj5pnywpzd9zpgc4jsr2c16x76"; 73 - }) 74 - (fetchurl { 75 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg"; 76 - sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; 77 - }) 78 - (fetchurl { 79 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg"; 80 - sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; 81 - }) 82 - (fetchurl { 83 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg"; 84 - sha256 = "164wycgng4mi9zqi2pnsf1pq6gccbqvw6ib916mqizgjmd8f44pj"; 85 - }) 86 - (fetchurl { 87 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/2.1.0/microsoft.netcore.platforms.2.1.0.nupkg"; 88 - sha256 = "0nmdnkmwyxj8cp746hs9an57zspqlmqdm55b00i7yk8a22s6akxz"; 89 - }) 90 - (fetchurl { 91 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg"; 92 - sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; 93 - }) 94 - (fetchurl { 95 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.net.test.sdk/15.9.0/microsoft.net.test.sdk.15.9.0.nupkg"; 96 - sha256 = "0g7wjgiigs4v8qa32g9ysqgx8bx55dzmbxfkc4ic95mpd1vkjqxw"; 97 - }) 98 - (fetchurl { 99 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.sourcelink.common/1.0.0-beta2-19367-01/microsoft.sourcelink.common.1.0.0-beta2-19367-01.nupkg"; 100 - sha256 = "1p4zyz0jmq53k2zlaqq6qhy0shyjz2i9wfllw9kg8hsm1rwig1p6"; 101 - }) 102 - (fetchurl { 103 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.sourcelink.github/1.0.0-beta2-19367-01/microsoft.sourcelink.github.1.0.0-beta2-19367-01.nupkg"; 104 - sha256 = "0c4l82jnc0prkwcjawhpqx1i5439ryj53gbphqlv3snq7alv3vdd"; 105 - }) 106 - (fetchurl { 107 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.sourcelink.vsts.git/1.0.0-beta2-19367-01/microsoft.sourcelink.vsts.git.1.0.0-beta2-19367-01.nupkg"; 108 - sha256 = "0si4xx30c9s8sfhlq3s5ll9grli2d36ic5bcp7pms7yls0cg0ik4"; 109 - }) 110 - (fetchurl { 111 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.objectmodel/15.9.0/microsoft.testplatform.objectmodel.15.9.0.nupkg"; 112 - sha256 = "0xj09b2pmf573dl0zhfgbs3qf2073yipnx55spvf7h2qvyqvf7db"; 113 - }) 114 - (fetchurl { 115 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.testhost/15.9.0/microsoft.testplatform.testhost.15.9.0.nupkg"; 116 - sha256 = "1srhq00bs44yv56k2zyxglkm2b7fs4fhvfr1clapaiz09rnqspl3"; 117 - }) 118 - (fetchurl { 119 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.sdk.embedinteroptypes/15.0.15/microsoft.visualstudio.sdk.embedinteroptypes.15.0.15.nupkg"; 120 - sha256 = "0chr3slzzcanwcyd9isx4gichqzmfh4zd3h83piw0r4xsww1wmpd"; 121 - }) 122 - (fetchurl { 123 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.visualstudio.setup.configuration.interop/1.16.30/microsoft.visualstudio.setup.configuration.interop.1.16.30.nupkg"; 124 - sha256 = "14022lx03vdcqlvbbdmbsxg5pqfx1rfq2jywxlyaz9v68cvsb0g4"; 125 - }) 126 - (fetchurl { 127 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg"; 128 - sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; 129 - }) 130 - (fetchurl { 131 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.win32.registry/4.0.0/microsoft.win32.registry.4.0.0.nupkg"; 132 - sha256 = "1spf4m9pikkc19544p29a47qnhcd885klncahz133hbnyqbkmz9k"; 133 - }) 134 - (fetchurl { 135 - url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/1.6.0/netstandard.library.1.6.0.nupkg"; 136 - sha256 = "0nmmv4yw7gw04ik8ialj3ak0j6pxa9spih67hnn1h2c38ba8h58k"; 137 - }) 138 - (fetchurl { 139 - url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg"; 140 - sha256 = "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8"; 141 - }) 142 - (fetchurl { 143 - url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg"; 144 - sha256 = "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y"; 145 - }) 146 - (fetchurl { 147 - url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system/4.0.0/runtime.native.system.4.0.0.nupkg"; 148 - sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf"; 149 - }) 150 - (fetchurl { 151 - url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg"; 152 - sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4"; 153 - }) 154 - (fetchurl { 155 - url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg"; 156 - sha256 = "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk"; 157 - }) 158 - (fetchurl { 159 - url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 160 - sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97"; 161 - }) 162 - (fetchurl { 163 - url = "https://api.nuget.org/v3-flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 164 - sha256 = "0zy5r25jppz48i2bkg8b9lfig24xixg6nm3xyr1379zdnqnpm8f6"; 165 - }) 166 - (fetchurl { 167 - url = "https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 168 - sha256 = "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5"; 169 - }) 170 - (fetchurl { 171 - url = "https://api.nuget.org/v3-flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 172 - sha256 = "1x0g58pbpjrmj2x2qw17rdwwnrcl0wvim2hdwz48lixvwvp22n9c"; 173 - }) 174 - (fetchurl { 175 - url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x64.microsoft.netcore.app/2.1.0/runtime.win-x64.microsoft.netcore.app.2.1.0.nupkg"; 176 - sha256 = "11447rh8rbazksj5bp3gvvdl33glq37ajc1ds18xrr69b1shxzrl"; 177 - }) 178 - (fetchurl { 179 - url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x64.microsoft.netcore.dotnetapphost/2.1.0/runtime.win-x64.microsoft.netcore.dotnetapphost.2.1.0.nupkg"; 180 - sha256 = "0g6kdwycs7zxyzks98az54zzs5s7cms5x0zklxhl93ldr847nw07"; 181 - }) 182 - (fetchurl { 183 - url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x64.microsoft.netcore.dotnethostpolicy/2.1.0/runtime.win-x64.microsoft.netcore.dotnethostpolicy.2.1.0.nupkg"; 184 - sha256 = "14qr09a9gq3x3licvqfwsbh3m4kdp3jh47xgajhhy6ycs66rgpba"; 185 - }) 186 - (fetchurl { 187 - url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x64.microsoft.netcore.dotnethostresolver/2.1.0/runtime.win-x64.microsoft.netcore.dotnethostresolver.2.1.0.nupkg"; 188 - sha256 = "1x14nq85ciaqrj32k5cnb7f8dj3xw2wfp1idnyrc9cks3xkpmqd6"; 189 - }) 190 - (fetchurl { 191 - url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x86.microsoft.netcore.app/2.1.0/runtime.win-x86.microsoft.netcore.app.2.1.0.nupkg"; 192 - sha256 = "0dqdh0k30nqdrgz24aldvghhcpw8fj10gdwpgy4nzn7gsbzni6x4"; 193 - }) 194 - (fetchurl { 195 - url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x86.microsoft.netcore.dotnetapphost/2.1.0/runtime.win-x86.microsoft.netcore.dotnetapphost.2.1.0.nupkg"; 196 - sha256 = "1qrx237qb5lp2zm2c8hnj1k9jzhcf718davalsaxyvipbs1bkhnx"; 197 - }) 198 - (fetchurl { 199 - url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x86.microsoft.netcore.dotnethostpolicy/2.1.0/runtime.win-x86.microsoft.netcore.dotnethostpolicy.2.1.0.nupkg"; 200 - sha256 = "1cf841qmnfgi83k6pdqsdgr9a62isrilshmli7ihzpfn44vfqfrm"; 201 - }) 202 - (fetchurl { 203 - url = "https://api.nuget.org/v3-flatcontainer/runtime.win-x86.microsoft.netcore.dotnethostresolver/2.1.0/runtime.win-x86.microsoft.netcore.dotnethostresolver.2.1.0.nupkg"; 204 - sha256 = "1bwvncpywns45b2drks6i1liprzjj6fcwg2wy3x9mvphi9njsb0l"; 205 - }) 206 - (fetchurl { 207 - url = "https://api.nuget.org/v3-flatcontainer/shouldly/3.0.0/shouldly.3.0.0.nupkg"; 208 - sha256 = "1hg28w898kl84rx57sclb2z9b76v5hxlwxig1xnb6fr81aahzlw3"; 209 - }) 210 - (fetchurl { 211 - url = "https://api.nuget.org/v3-flatcontainer/sourcelink.create.commandline/2.1.2/sourcelink.create.commandline.2.1.2.nupkg"; 212 - sha256 = "1lbgia8fsinmds4fy98hzfsrvh3fdccs39rs816mrdpdappw1n1z"; 213 - }) 214 - (fetchurl { 215 - url = "https://api.nuget.org/v3-flatcontainer/system.codedom/4.4.0/system.codedom.4.4.0.nupkg"; 216 - sha256 = "1zgbafm5p380r50ap5iddp11kzhr9khrf2pnai6k593wjar74p1g"; 217 - }) 218 - (fetchurl { 219 - url = "https://api.nuget.org/v3-flatcontainer/system.collections/4.0.11/system.collections.4.0.11.nupkg"; 220 - sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; 221 - }) 222 - (fetchurl { 223 - url = "https://api.nuget.org/v3-flatcontainer/system.collections/4.3.0/system.collections.4.3.0.nupkg"; 224 - sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; 225 - }) 226 - (fetchurl { 227 - url = "https://api.nuget.org/v3-flatcontainer/system.collections.concurrent/4.0.12/system.collections.concurrent.4.0.12.nupkg"; 228 - sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; 229 - }) 230 - (fetchurl { 231 - url = "https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.2.0/system.collections.immutable.1.2.0.nupkg"; 232 - sha256 = "1jm4pc666yiy7af1mcf7766v710gp0h40p228ghj6bavx7xfa38m"; 233 - }) 234 - (fetchurl { 235 - url = "https://api.nuget.org/v3-flatcontainer/system.collections.immutable/1.3.1/system.collections.immutable.1.3.1.nupkg"; 236 - sha256 = "17615br2x5riyx8ivf1dcqwj6q3ipq1bi5hqhw54yfyxmx38ddva"; 237 - }) 238 - (fetchurl { 239 - url = "https://api.nuget.org/v3-flatcontainer/system.collections.nongeneric/4.0.1/system.collections.nongeneric.4.0.1.nupkg"; 240 - sha256 = "19994r5y5bpdhj7di6w047apvil8lh06lh2c2yv9zc4fc5g9bl4d"; 241 - }) 242 - (fetchurl { 243 - url = "https://api.nuget.org/v3-flatcontainer/system.collections.specialized/4.0.1/system.collections.specialized.4.0.1.nupkg"; 244 - sha256 = "1wbv7y686p5x169rnaim7sln67ivmv6r57falrnx8aap9y33mam9"; 245 - }) 246 - (fetchurl { 247 - url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel/4.0.1/system.componentmodel.4.0.1.nupkg"; 248 - sha256 = "0v4qpmqlzyfad2kswxxj2frnaqqhz9201c3yn8fmmarx5vlzg52z"; 249 - }) 250 - (fetchurl { 251 - url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel.eventbasedasync/4.0.11/system.componentmodel.eventbasedasync.4.0.11.nupkg"; 252 - sha256 = "07r5i7xwban347nsfw28hhjwpr78ywksjyhywvhj1yr0s7sr00wh"; 253 - }) 254 - (fetchurl { 255 - url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel.primitives/4.1.0/system.componentmodel.primitives.4.1.0.nupkg"; 256 - sha256 = "0wb5mnaag0w4fnyc40x19j8v2vshxp266razw64bcqfyj1whb1q0"; 257 - }) 258 - (fetchurl { 259 - url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel.typeconverter/4.1.0/system.componentmodel.typeconverter.4.1.0.nupkg"; 260 - sha256 = "178cva9p1cs043h5n2fry5xkzr3wc9n0hwbxa8m3ymld9m6wcv0y"; 261 - }) 262 - (fetchurl { 263 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg"; 264 - sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; 265 - }) 266 - (fetchurl { 267 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg"; 268 - sha256 = "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq"; 269 - }) 270 - (fetchurl { 271 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.1.0/system.diagnostics.process.4.1.0.nupkg"; 272 - sha256 = "061lrcs7xribrmq7kab908lww6kn2xn1w3rdc41q189y0jibl19s"; 273 - }) 274 - (fetchurl { 275 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg"; 276 - sha256 = "0g4prsbkygq8m21naqmcp70f24a1ksyix3dihb1r1f71lpi3cfj7"; 277 - }) 278 - (fetchurl { 279 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg"; 280 - sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; 281 - }) 282 - (fetchurl { 283 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg"; 284 - sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; 285 - }) 286 - (fetchurl { 287 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg"; 288 - sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; 289 - }) 290 - (fetchurl { 291 - url = "https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.0.11/system.dynamic.runtime.4.0.11.nupkg"; 292 - sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; 293 - }) 294 - (fetchurl { 295 - url = "https://api.nuget.org/v3-flatcontainer/system.globalization/4.0.11/system.globalization.4.0.11.nupkg"; 296 - sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; 297 - }) 298 - (fetchurl { 299 - url = "https://api.nuget.org/v3-flatcontainer/system.globalization/4.3.0/system.globalization.4.3.0.nupkg"; 300 - sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; 301 - }) 302 - (fetchurl { 303 - url = "https://api.nuget.org/v3-flatcontainer/system.globalization.calendars/4.0.1/system.globalization.calendars.4.0.1.nupkg"; 304 - sha256 = "0bv0alrm2ck2zk3rz25lfyk9h42f3ywq77mx1syl6vvyncnpg4qh"; 305 - }) 306 - (fetchurl { 307 - url = "https://api.nuget.org/v3-flatcontainer/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg"; 308 - sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq"; 309 - }) 310 - (fetchurl { 311 - url = "https://api.nuget.org/v3-flatcontainer/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg"; 312 - sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; 313 - }) 314 - (fetchurl { 315 - url = "https://api.nuget.org/v3-flatcontainer/system.io/4.1.0/system.io.4.1.0.nupkg"; 316 - sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; 317 - }) 318 - (fetchurl { 319 - url = "https://api.nuget.org/v3-flatcontainer/system.io.compression/4.1.0/system.io.compression.4.1.0.nupkg"; 320 - sha256 = "0iym7s3jkl8n0vzm3jd6xqg9zjjjqni05x45dwxyjr2dy88hlgji"; 321 - }) 322 - (fetchurl { 323 - url = "https://api.nuget.org/v3-flatcontainer/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg"; 324 - sha256 = "084zc82yi6yllgda0zkgl2ys48sypiswbiwrv7irb3r0ai1fp4vz"; 325 - }) 326 - (fetchurl { 327 - url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg"; 328 - sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; 329 - }) 330 - (fetchurl { 331 - url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg"; 332 - sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; 333 - }) 334 - (fetchurl { 335 - url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem.driveinfo/4.3.0/system.io.filesystem.driveinfo.4.3.0.nupkg"; 336 - sha256 = "0j67khc75lwdf7d5i3z41cks7zhac4zdccgvk2xmq6wm1l08xnlh"; 337 - }) 338 - (fetchurl { 339 - url = "https://api.nuget.org/v3-flatcontainer/system.io.pipes/4.3.0/system.io.pipes.4.3.0.nupkg"; 340 - sha256 = "1ygv16gzpi9cnlzcqwijpv7055qc50ynwg3vw29vj1q3iha3h06r"; 341 - }) 342 - (fetchurl { 343 - url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.1.0/system.linq.4.1.0.nupkg"; 344 - sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; 345 - }) 346 - (fetchurl { 347 - url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg"; 348 - sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; 349 - }) 350 - (fetchurl { 351 - url = "https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg"; 352 - sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; 353 - }) 354 - (fetchurl { 355 - url = "https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg"; 356 - sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; 357 - }) 358 - (fetchurl { 359 - url = "https://api.nuget.org/v3-flatcontainer/system.linq.parallel/4.0.1/system.linq.parallel.4.0.1.nupkg"; 360 - sha256 = "0i33x9f4h3yq26yvv6xnq4b0v51rl5z8v1bm7vk972h5lvf4apad"; 361 - }) 362 - (fetchurl { 363 - url = "https://api.nuget.org/v3-flatcontainer/system.net.http/4.3.4/system.net.http.4.3.4.nupkg"; 364 - sha256 = "0kdp31b8819v88l719j6my0yas6myv9d1viql3qz5577mv819jhl"; 365 - }) 366 - (fetchurl { 367 - url = "https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.0.11/system.net.primitives.4.0.11.nupkg"; 368 - sha256 = "10xzzaynkzkakp7jai1ik3r805zrqjxiz7vcagchyxs2v26a516r"; 369 - }) 370 - (fetchurl { 371 - url = "https://api.nuget.org/v3-flatcontainer/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg"; 372 - sha256 = "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii"; 373 - }) 374 - (fetchurl { 375 - url = "https://api.nuget.org/v3-flatcontainer/system.numerics.vectors/4.4.0/system.numerics.vectors.4.4.0.nupkg"; 376 - sha256 = "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba"; 377 - }) 378 - (fetchurl { 379 - url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg"; 380 - sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; 381 - }) 382 - (fetchurl { 383 - url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg"; 384 - sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 385 - }) 386 - (fetchurl { 387 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg"; 388 - sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; 389 - }) 390 - (fetchurl { 391 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg"; 392 - sha256 = "11f8y3qfysfcrscjpjym9msk7lsfxkk4fmz9qq95kn3jd0769f74"; 393 - }) 394 - (fetchurl { 395 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg"; 396 - sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; 397 - }) 398 - (fetchurl { 399 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg"; 400 - sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; 401 - }) 402 - (fetchurl { 403 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg"; 404 - sha256 = "0ql7lcakycrvzgi9kxz1b3lljd990az1x6c4jsiwcacrvimpib5c"; 405 - }) 406 - (fetchurl { 407 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg"; 408 - sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; 409 - }) 410 - (fetchurl { 411 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg"; 412 - sha256 = "02bly8bdc98gs22lqsfx9xicblszr2yan7v2mmw3g7hy6miq5hwq"; 413 - }) 414 - (fetchurl { 415 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/1.3.0/system.reflection.metadata.1.3.0.nupkg"; 416 - sha256 = "1y5m6kryhjpqqm2g3h3b6bzig13wkiw954x3b7icqjm6xypm1x3b"; 417 - }) 418 - (fetchurl { 419 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.metadata/1.4.2/system.reflection.metadata.1.4.2.nupkg"; 420 - sha256 = "08b7b43vczlliv8k7q43jinjfrxwpljsglw7sxmc6sd7d54pd1vi"; 421 - }) 422 - (fetchurl { 423 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg"; 424 - sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; 425 - }) 426 - (fetchurl { 427 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg"; 428 - sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; 429 - }) 430 - (fetchurl { 431 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg"; 432 - sha256 = "0y2ssg08d817p0vdag98vn238gyrrynjdj4181hdg780sif3ykp1"; 433 - }) 434 - (fetchurl { 435 - url = "https://api.nuget.org/v3-flatcontainer/system.resources.reader/4.0.0/system.resources.reader.4.0.0.nupkg"; 436 - sha256 = "1jafi73dcf1lalrir46manq3iy6xnxk2z7gpdpwg4wqql7dv3ril"; 437 - }) 438 - (fetchurl { 439 - url = "https://api.nuget.org/v3-flatcontainer/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg"; 440 - sha256 = "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi"; 441 - }) 442 - (fetchurl { 443 - url = "https://api.nuget.org/v3-flatcontainer/system.resources.writer/4.0.0/system.resources.writer.4.0.0.nupkg"; 444 - sha256 = "07hp218kjdcvpl27djspnixgnacbp9apma61zz3wsca9fx5g3lmv"; 445 - }) 446 - (fetchurl { 447 - url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.5.2/system.runtime.compilerservices.unsafe.4.5.2.nupkg"; 448 - sha256 = "1vz4275fjij8inf31np78hw50al8nqkngk04p3xv5n4fcmf1grgi"; 449 - }) 450 - (fetchurl { 451 - url = "https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.1.0/system.runtime.extensions.4.1.0.nupkg"; 452 - sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; 453 - }) 454 - (fetchurl { 455 - url = "https://api.nuget.org/v3-flatcontainer/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg"; 456 - sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; 457 - }) 458 - (fetchurl { 459 - url = "https://api.nuget.org/v3-flatcontainer/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg"; 460 - sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; 461 - }) 462 - (fetchurl { 463 - url = "https://api.nuget.org/v3-flatcontainer/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg"; 464 - sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; 465 - }) 466 - (fetchurl { 467 - url = "https://api.nuget.org/v3-flatcontainer/system.security.accesscontrol/4.3.0/system.security.accesscontrol.4.3.0.nupkg"; 468 - sha256 = "1gakrskmlmwhzmjc1c2mrwk0fml615rsk31dw0kbjnn9yqnnrjbi"; 469 - }) 470 - (fetchurl { 471 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/4.2.0/system.security.cryptography.algorithms.4.2.0.nupkg"; 472 - sha256 = "148s9g5dgm33ri7dnh19s4lgnlxbpwvrw2jnzllq2kijj4i4vs85"; 473 - }) 474 - (fetchurl { 475 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg"; 476 - sha256 = "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml"; 477 - }) 478 - (fetchurl { 479 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.cng/4.2.0/system.security.cryptography.cng.4.2.0.nupkg"; 480 - sha256 = "118jijz446kix20blxip0f0q8mhsh9bz118mwc2ch1p6g7facpzc"; 481 - }) 482 - (fetchurl { 483 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg"; 484 - sha256 = "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv"; 485 - }) 486 - (fetchurl { 487 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/4.0.0/system.security.cryptography.encoding.4.0.0.nupkg"; 488 - sha256 = "0a8y1a5wkmpawc787gfmnrnbzdgxmx1a14ax43jf3rj9gxmy3vk4"; 489 - }) 490 - (fetchurl { 491 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg"; 492 - sha256 = "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32"; 493 - }) 494 - (fetchurl { 495 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.openssl/4.0.0/system.security.cryptography.openssl.4.0.0.nupkg"; 496 - sha256 = "16sx3cig3d0ilvzl8xxgffmxbiqx87zdi8fc73i3i7zjih1a7f4q"; 497 - }) 498 - (fetchurl { 499 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg"; 500 - sha256 = "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc"; 501 - }) 502 - (fetchurl { 503 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg"; 504 - sha256 = "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby"; 505 - }) 506 - (fetchurl { 507 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/4.3.0/system.security.cryptography.protecteddata.4.3.0.nupkg"; 508 - sha256 = "1kg264xmqabyz8gfg8ymp6qp6aw43vawfp0znf0909d7b5jd3dq9"; 509 - }) 510 - (fetchurl { 511 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/4.1.0/system.security.cryptography.x509certificates.4.1.0.nupkg"; 512 - sha256 = "0clg1bv55mfv5dq00m19cp634zx6inm31kf8ppbq1jgyjf2185dh"; 513 - }) 514 - (fetchurl { 515 - url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg"; 516 - sha256 = "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h"; 517 - }) 518 - (fetchurl { 519 - url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg"; 520 - sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; 521 - }) 522 - (fetchurl { 523 - url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.codepages/4.3.0/system.text.encoding.codepages.4.3.0.nupkg"; 524 - sha256 = "0lgxg1gn7pg7j0f942pfdc9q7wamzxsgq3ng248ikdasxz0iadkv"; 525 - }) 526 - (fetchurl { 527 - url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg"; 528 - sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; 529 - }) 530 - (fetchurl { 531 - url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg"; 532 - sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; 533 - }) 534 - (fetchurl { 535 - url = "https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg"; 536 - sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; 537 - }) 538 - (fetchurl { 539 - url = "https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg"; 540 - sha256 = "1bgq51k7fwld0njylfn7qc5fmwrk2137gdq7djqdsw347paa9c2l"; 541 - }) 542 - (fetchurl { 543 - url = "https://api.nuget.org/v3-flatcontainer/system.threading/4.0.11/system.threading.4.0.11.nupkg"; 544 - sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls"; 545 - }) 546 - (fetchurl { 547 - url = "https://api.nuget.org/v3-flatcontainer/system.threading/4.3.0/system.threading.4.3.0.nupkg"; 548 - sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; 549 - }) 550 - (fetchurl { 551 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg"; 552 - sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; 553 - }) 554 - (fetchurl { 555 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.dataflow/4.5.24/system.threading.tasks.dataflow.4.5.24.nupkg"; 556 - sha256 = "0wahbfdb0jxx3hi04xggfms8wgf68wmvv68m2vfp8v2kiqr5mr2r"; 557 - }) 558 - (fetchurl { 559 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg"; 560 - sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; 561 - }) 562 - (fetchurl { 563 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg"; 564 - sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; 565 - }) 566 - (fetchurl { 567 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.parallel/4.3.0/system.threading.tasks.parallel.4.3.0.nupkg"; 568 - sha256 = "1rr3qa4hxwyj531s4nb3bwrxnxxwz617i0n9gh6x7nr7dd3ayzgh"; 569 - }) 570 - (fetchurl { 571 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.thread/4.3.0/system.threading.thread.4.3.0.nupkg"; 572 - sha256 = "0y2xiwdfcph7znm2ysxanrhbqqss6a3shi1z3c779pj2s523mjx4"; 573 - }) 574 - (fetchurl { 575 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/4.0.10/system.threading.threadpool.4.0.10.nupkg"; 576 - sha256 = "0fdr61yjcxh5imvyf93n2m3n5g9pp54bnw2l1d2rdl9z6dd31ypx"; 577 - }) 578 - (fetchurl { 579 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.timer/4.0.1/system.threading.timer.4.0.1.nupkg"; 580 - sha256 = "15n54f1f8nn3mjcjrlzdg6q3520571y012mx7v991x2fvp73lmg6"; 581 - }) 582 - (fetchurl { 583 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg"; 584 - sha256 = "1nx773nsx6z5whv8kaa1wjh037id2f1cxhb69pvgv12hd2b6qs56"; 585 - }) 586 - (fetchurl { 587 - url = "https://api.nuget.org/v3-flatcontainer/system.valuetuple/4.3.0/system.valuetuple.4.3.0.nupkg"; 588 - sha256 = "1227k7fxbxapq7dms4lvwwjdf3pr1jcsmhy2nzzhj6g6hs530hxn"; 589 - }) 590 - (fetchurl { 591 - url = "https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg"; 592 - sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; 593 - }) 594 - (fetchurl { 595 - url = "https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg"; 596 - sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; 597 - }) 598 - (fetchurl { 599 - url = "https://api.nuget.org/v3-flatcontainer/system.xml.xmldocument/4.0.1/system.xml.xmldocument.4.0.1.nupkg"; 600 - sha256 = "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1"; 601 - }) 602 - (fetchurl { 603 - url = "https://api.nuget.org/v3-flatcontainer/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg"; 604 - sha256 = "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi"; 605 - }) 606 - (fetchurl { 607 - url = "https://api.nuget.org/v3-flatcontainer/system.xml.xpath/4.0.1/system.xml.xpath.4.0.1.nupkg"; 608 - sha256 = "0fjqgb6y66d72d5n8qq1h213d9nv2vi8mpv8p28j3m9rccmsh04m"; 609 - }) 610 - (fetchurl { 611 - url = "https://api.nuget.org/v3-flatcontainer/system.xml.xpath.xdocument/4.3.0/system.xml.xpath.xdocument.4.3.0.nupkg"; 612 - sha256 = "1wxckyb7n1pi433xzz0qcwcbl1swpra64065mbwwi8dhdc4kiabn"; 613 - }) 614 - (fetchurl { 615 - url = "https://api.nuget.org/v3-flatcontainer/system.xml.xpath.xmldocument/4.0.1/system.xml.xpath.xmldocument.4.0.1.nupkg"; 616 - sha256 = "0l7yljgif41iv5g56l3nxy97hzzgck2a7rhnfnljhx9b0ry41bvc"; 617 - }) 618 - (fetchurl { 619 - url = "https://api.nuget.org/v3-flatcontainer/vswhere/2.6.7/vswhere.2.6.7.nupkg"; 620 - sha256 = "0h4k5i96p7633zzf4xsv7615f9x72rr5qr7b9934ri2y6gshfcwk"; 621 - }) 622 - (fetchurl { 623 - url = "https://api.nuget.org/v3-flatcontainer/xunit/2.4.1/xunit.2.4.1.nupkg"; 624 - sha256 = "0xf3kaywpg15flqaqfgywqyychzk15kz0kz34j21rcv78q9ywq20"; 625 - }) 626 - (fetchurl { 627 - url = "https://api.nuget.org/v3-flatcontainer/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg"; 628 - sha256 = "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh"; 629 - }) 630 - (fetchurl { 631 - url = "https://api.nuget.org/v3-flatcontainer/xunit.analyzers/0.10.0/xunit.analyzers.0.10.0.nupkg"; 632 - sha256 = "15n02q3akyqbvkp8nq75a8rd66d4ax0rx8fhdcn8j78pi235jm7j"; 633 - }) 634 - (fetchurl { 635 - url = "https://api.nuget.org/v3-flatcontainer/xunit.assert/2.4.1/xunit.assert.2.4.1.nupkg"; 636 - sha256 = "1imynzh80wxq2rp9sc4gxs4x1nriil88f72ilhj5q0m44qqmqpc6"; 637 - }) 638 - (fetchurl { 639 - url = "https://api.nuget.org/v3-flatcontainer/xunit.console/2.4.1/xunit.console.2.4.1.nupkg"; 640 - sha256 = "1anjrxjv8ssy9yyr3r6p51bsy8iy6wc5nb9k2771dc44n828vw03"; 641 - }) 642 - (fetchurl { 643 - url = "https://api.nuget.org/v3-flatcontainer/xunit.core/2.4.1/xunit.core.2.4.1.nupkg"; 644 - sha256 = "1nnb3j4kzmycaw1g76ii4rfqkvg6l8gqh18falwp8g28h802019a"; 645 - }) 646 - (fetchurl { 647 - url = "https://api.nuget.org/v3-flatcontainer/xunit.extensibility.core/2.4.1/xunit.extensibility.core.2.4.1.nupkg"; 648 - sha256 = "103qsijmnip2pnbhciqyk2jyhdm6snindg5z2s57kqf5pcx9a050"; 649 - }) 650 - (fetchurl { 651 - url = "https://api.nuget.org/v3-flatcontainer/xunit.extensibility.execution/2.4.1/xunit.extensibility.execution.2.4.1.nupkg"; 652 - sha256 = "1pbilxh1gp2ywm5idfl0klhl4gb16j86ib4x83p8raql1dv88qia"; 653 - }) 654 - (fetchurl { 655 - url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.console/2.4.1/xunit.runner.console.2.4.1.nupkg"; 656 - sha256 = "13ykz9anhz72xc4q6byvdfwrp54hlcbl6zsfapwfhnzyvfgb9w13"; 657 - }) 658 - (fetchurl { 659 - url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.reporters/2.4.1/xunit.runner.reporters.2.4.1.nupkg"; 660 - sha256 = "1b44i5cacxcvvp9c7izzhq6mk4db46yhf4kfqxbhp34p7x8z4snp"; 661 - }) 662 - (fetchurl { 663 - url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.utility/2.4.1/xunit.runner.utility.2.4.1.nupkg"; 664 - sha256 = "0v0bpjiq07m5s7gnnwlq813zpnm693aaxjyqcnakhwkjy1zprlds"; 665 - }) 666 - (fetchurl { 667 - url = "https://api.nuget.org/v3-flatcontainer/xunit.runner.visualstudio/2.4.1/xunit.runner.visualstudio.2.4.1.nupkg"; 668 - sha256 = "0fln5pk18z98gp0zfshy1p9h6r9wc55nyqhap34k89yran646vhn"; 669 - }) 670 - (fetchurl { 671 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microbuild.core.sentinel/1.0.0/microbuild.core.sentinel.1.0.0.nupkg"; 672 - sha256 = "035kqx5fkapql108n222lz8psvxk04mv3dy1qg3h08i4b8j3dy8i"; 673 - }) 674 - (fetchurl { 675 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.csharp/4.0.1/microsoft.csharp.4.0.1.nupkg"; 676 - sha256 = "1brjgpkhv2v2aqvrhdwgsvn574bz5wd9hd3ydxv29x74yg7p1gqv"; 677 - }) 678 - (fetchurl { 679 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.diasymreader.pdb2pdb/1.1.0-beta1-62506-02/microsoft.diasymreader.pdb2pdb.1.1.0-beta1-62506-02.nupkg"; 680 - sha256 = "1dkhpmq5aw34nndvb4xc370866vf33x70zrjhgvnpwwspb6vb0zh"; 681 - }) 682 - (fetchurl { 683 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.arcade.sdk/1.0.0-beta.19372.10/microsoft.dotnet.arcade.sdk.1.0.0-beta.19372.10.nupkg"; 684 - sha256 = "1lii0yg4fbsma80mmvw2zwplc26abb46q6gkxwbsbkyszkw128hv"; 685 - }) 686 - (fetchurl { 687 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.build.tasks.visualstudio/1.0.0-beta.19372.10/microsoft.dotnet.build.tasks.visualstudio.1.0.0-beta.19372.10.nupkg"; 688 - sha256 = "0v8abpsrf3950wajfss8y3wldjmiid58218yhzgpl80ww2m9v0b4"; 689 - }) 690 - (fetchurl { 691 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.dotnet.signtool/1.0.0-beta.19372.10/microsoft.dotnet.signtool.1.0.0-beta.19372.10.nupkg"; 692 - sha256 = "1f2im2lilw10zslfclxh49knr542jy7q09p009flxsgn68riy0j6"; 693 - }) 694 - (fetchurl { 695 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.net.compilers.toolset/3.3.0-beta2-19367-02/microsoft.net.compilers.toolset.3.3.0-beta2-19367-02.nupkg"; 696 - sha256 = "1v9lz2fmfprhql0klqa8iipiiz3wcflvlgr3a86pcjjk7x0y84sl"; 697 - }) 698 - (fetchurl { 699 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.app/2.1.0/microsoft.netcore.app.2.1.0.nupkg"; 700 - sha256 = "163giw7vcjhzn2z4jv9kmjh4x4i5larr112x6n6yx9r0sxxzfgyy"; 701 - }) 702 - (fetchurl { 703 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg"; 704 - sha256 = "0w9jw8gnpmc6z09s4l9ll53js6d4n2ylg2p2x6916yb11vxr4z27"; 705 - }) 706 - (fetchurl { 707 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/1.0.1/microsoft.netcore.targets.1.0.1.nupkg"; 708 - sha256 = "1gn085ddzn8psqfhmwcjzq2zrmb5gca2liap79a43wyw4gs8ip78"; 709 - }) 710 - (fetchurl { 711 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg"; 712 - sha256 = "0idlsfwd9sn4p9jr1dqi14b8n2ly0k4dnjpvh8jfhxgnzzl98z5k"; 713 - }) 714 - (fetchurl { 715 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.netcore.targets/2.1.0/microsoft.netcore.targets.2.1.0.nupkg"; 716 - sha256 = "0sv2pj8s8fv1pjl25fmhbw85h6hmh0ma0y2gd7r30q9ridhgkr2a"; 717 - }) 718 - (fetchurl { 719 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.symboluploader.build.task/1.0.0-beta-64131-01/microsoft.symboluploader.build.task.1.0.0-beta-64131-01.nupkg"; 720 - sha256 = "163rk3jq0gx242mfr49lw40bxd881l0hipbygf4y1si7a5nhdnkd"; 721 - }) 722 - (fetchurl { 723 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.win32.primitives/4.0.1/microsoft.win32.primitives.4.0.1.nupkg"; 724 - sha256 = "1pviskapkc6qm108r0q2x15vkgyqsczf9xpmrlm42q68ainc9ai3"; 725 - }) 726 - (fetchurl { 727 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/microsoft.win32.registry/4.3.0/microsoft.win32.registry.4.3.0.nupkg"; 728 - sha256 = "1gpfc8nzsbpr71k02cqilcl22ygryzsfcyxhdkjlqm8xqrkp2vyp"; 729 - }) 730 - (fetchurl { 731 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg"; 732 - sha256 = "1qayanmqh3xiw0bjwm825j1n6nvbhc6yqkdpaawpyd0l71d5qh13"; 733 - }) 734 - (fetchurl { 735 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 736 - sha256 = "10a3jqkh1h23qsn7pjlji61d7dph7qy8c6ssfjqmlgydm4rnin64"; 737 - }) 738 - (fetchurl { 739 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 740 - sha256 = "08mz7l384s2lk7j0xndnl5ywqfr9ziv5bw5pdqhphd4pjpf7gdff"; 741 - }) 742 - (fetchurl { 743 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 744 - sha256 = "1md38ys5h8srinnq9qxz47c9i27x7pv84avdi3rbq68hfkcslx93"; 745 - }) 746 - (fetchurl { 747 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 748 - sha256 = "0ylpfg4fq1ww95k0h732wy9wiacic5j8gnwrlb9brzr00aqxgfgz"; 749 - }) 750 - (fetchurl { 751 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 752 - sha256 = "0cgvqxccg4lkxiyvw3jrn71pbybbbcd3i8v6v4przgrr7f7k6nfj"; 753 - }) 754 - (fetchurl { 755 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 756 - sha256 = "1wzb5l22giw2jaqpb120n234qj8fd3f4mmhj5y40a787clinpkmc"; 757 - }) 758 - (fetchurl { 759 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg"; 760 - sha256 = "02gnfm33gf163kybkahfza8q10jp890hiczcnbg2aasf1n0jq857"; 761 - }) 762 - (fetchurl { 763 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.io.compression/4.1.0/runtime.native.system.io.compression.4.1.0.nupkg"; 764 - sha256 = "0d46l61lbyy4gp4ny7jzvba2qd7ld9ybz4g77qbmlssx55wky5x5"; 765 - }) 766 - (fetchurl { 767 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg"; 768 - sha256 = "05370qi83pxfyn3whzkjjwb4q80vlr3mbz0dfa0hc0cbl5jx4y20"; 769 - }) 770 - (fetchurl { 771 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.net.http/4.0.1/runtime.native.system.net.http.4.0.1.nupkg"; 772 - sha256 = "06la17kis5xmny9nksqv3ls5zi9c006s7drhp52nkn52zgsa8wpx"; 773 - }) 774 - (fetchurl { 775 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg"; 776 - sha256 = "1sp68k261viqhp5025r2r6yznmpqy3gajxn21sn85zhzg823ar4h"; 777 - }) 778 - (fetchurl { 779 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.security.cryptography/4.0.0/runtime.native.system.security.cryptography.4.0.0.nupkg"; 780 - sha256 = "1mxal16ml65wdc251lhlqix8m92nmzwhqd9b2zpjmjbfynqd8gz6"; 781 - }) 782 - (fetchurl { 783 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg"; 784 - sha256 = "0rsp0hqivnhx25739rl2v9r4hsqgyyrbgb18zhl3rv4b2ciybpd7"; 785 - }) 786 - (fetchurl { 787 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 788 - sha256 = "0pwl43xa39lnfbl7y26m42j07i28bmz5ziwxsz0bwfpkqznkywvq"; 789 - }) 790 - (fetchurl { 791 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 792 - sha256 = "1pr8ji41rsifx6yh89xg1yw45g5snw96xxqw0g3q48rbdg5j79iw"; 793 - }) 794 - (fetchurl { 795 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 796 - sha256 = "056yjf7r5lfyyzdfjapf2jgzrxla2rjh7z62hysyjn64jx4a3pkn"; 797 - }) 798 - (fetchurl { 799 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 800 - sha256 = "1r8hllb6fdb4adij7b7ld32hf5r5jxyqh4pacrvfgjckmyx8js8c"; 801 - }) 802 - (fetchurl { 803 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 804 - sha256 = "1afzdbzwzbcj1b6lywm90rwwbwy2mi0chrdhp4f9jh2hps653k68"; 805 - }) 806 - (fetchurl { 807 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg"; 808 - sha256 = "183fc5kzsz8pf80c3jvyb3ixr3wxid6d0zb7wsnhg8cjdssmis33"; 809 - }) 810 - (fetchurl { 811 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 812 - sha256 = "0ck0l1d5558rxh5rh1bynar18f1ah7789pbgizkls5wf9cxfbsk6"; 813 - }) 814 - (fetchurl { 815 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 816 - sha256 = "0j2f2v1nm7sys6qpljhp4s18zz3hblymjl60yrccqfac7yr9hxrq"; 817 - }) 818 - (fetchurl { 819 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 820 - sha256 = "0iddbp46nz6f76p60fdwjq70lkc8b7i87js8sb0s6dq2fqbv0dl5"; 821 - }) 822 - (fetchurl { 823 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 824 - sha256 = "1n0p46c8yix5kx37cgnqirl3r2rhkx3lz250gqv9xq1blvg1vvkq"; 825 - }) 826 - (fetchurl { 827 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 828 - sha256 = "0x7vzghvix9xjxr7ilak8935q84djpjdwhxqi655abmcdrz9lbcy"; 829 - }) 830 - (fetchurl { 831 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 832 - sha256 = "07igi3l9qza05cqkpxf9mywm2j3c8g5fy0yw0wh9h33inp2h0iv9"; 833 - }) 834 - (fetchurl { 835 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/sn/1.0.0/sn.1.0.0.nupkg"; 836 - sha256 = "1012fcdc6vq2355v86h434s6p2nnqgpdapb7p25l4h39g5q8p1qs"; 837 - }) 838 - (fetchurl { 839 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.appcontext/4.1.0/system.appcontext.4.1.0.nupkg"; 840 - sha256 = "02vsx9l8ahzykjw6psf8yd5grndk63x4rw0lc0rl0s9z203694j3"; 841 - }) 842 - (fetchurl { 843 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg"; 844 - sha256 = "1ipqwwfphj4ndi6krnbali0f3260bmdg0lb9w7w00k3z20gwpjgy"; 845 - }) 846 - (fetchurl { 847 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.buffers/4.0.0/system.buffers.4.0.0.nupkg"; 848 - sha256 = "19rn53vkzvd7j0mds1crnkiw246vxqf4crym67i0nlsg5p8p8y7f"; 849 - }) 850 - (fetchurl { 851 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.buffers/4.3.0/system.buffers.4.3.0.nupkg"; 852 - sha256 = "1x5m2z3x8s4d0z13l8j6jfbaqpwh8dwyg930pcg67gz88zchfhq8"; 853 - }) 854 - (fetchurl { 855 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.codedom/4.4.0/system.codedom.4.4.0.nupkg"; 856 - sha256 = "18cgw5fzhg4zbnzzgsban5rpv3zw5gq3npqmr1qp0j7w8ckamaxr"; 857 - }) 858 - (fetchurl { 859 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg"; 860 - sha256 = "0y6jag332kgkj392mrv7i2a3cgc60ff4hl0nx5qw40hq3w2d9j8z"; 861 - }) 862 - (fetchurl { 863 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.collections.immutable/1.5.0/system.collections.immutable.1.5.0.nupkg"; 864 - sha256 = "1yn0g10x5lss68i5n5x9q9z1kbxcbblrwp51ph79cgbi01ga999q"; 865 - }) 866 - (fetchurl { 867 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.console/4.0.0/system.console.4.0.0.nupkg"; 868 - sha256 = "0fw0ap3c0svxjbkgr5yrkck36lbrijhsx48v53xkam5y6m0vh1s3"; 869 - }) 870 - (fetchurl { 871 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.console/4.3.0/system.console.4.3.0.nupkg"; 872 - sha256 = "0hyp57lqq986hnj7h017mz1qa1p3qqw3n98nxngdj947ck4mwmpd"; 873 - }) 874 - (fetchurl { 875 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg"; 876 - sha256 = "02az3f9n0sy9hpjqq05dkwa4d4bgyrs57b69byya20zydvyxxm9z"; 877 - }) 878 - (fetchurl { 879 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.diagnosticsource/4.0.0/system.diagnostics.diagnosticsource.4.0.0.nupkg"; 880 - sha256 = "1ww723ayg4ddwahaplscrf71688ibqzfld5chsgdnp5nwysl2r6r"; 881 - }) 882 - (fetchurl { 883 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg"; 884 - sha256 = "0rqi76pqplmk8lzqhwxkkn6ramk56bm66ijg3zki9gzaaqx7fbfk"; 885 - }) 886 - (fetchurl { 887 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.fileversioninfo/4.3.0/system.diagnostics.fileversioninfo.4.3.0.nupkg"; 888 - sha256 = "04ldc5xzk1s6xrf5jv3w99hs26z226j7zaiyln5sy1mlsdwf4j2f"; 889 - }) 890 - (fetchurl { 891 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.stacktrace/4.3.0/system.diagnostics.stacktrace.4.3.0.nupkg"; 892 - sha256 = "0nakc5w6lisd927b3rs26h6h02jc1bh15gq2gjf18ipg64f5k9f2"; 893 - }) 894 - (fetchurl { 895 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.textwritertracelistener/4.0.0/system.diagnostics.textwritertracelistener.4.0.0.nupkg"; 896 - sha256 = "1a4dsyxpl5vrf4p4rwff7q07kn115i00j09zgyx5dxx9bpg8mjr9"; 897 - }) 898 - (fetchurl { 899 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracesource/4.0.0/system.diagnostics.tracesource.4.0.0.nupkg"; 900 - sha256 = "0dwq0z7p3jpxp4y9x1k3pglrs572xx5dsp4nmnz5v5wr6a1kdc8l"; 901 - }) 902 - (fetchurl { 903 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracing/4.1.0/system.diagnostics.tracing.4.1.0.nupkg"; 904 - sha256 = "0lzdnq31spwv2xd9xkf0ph4zlg7bqifcvp1915jk1hb5fjjf1byp"; 905 - }) 906 - (fetchurl { 907 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg"; 908 - sha256 = "0zwc9qk2ig6h74dnn4hxlyhnfchp6yd6hqv39dy0dhp3xagwfqp3"; 909 - }) 910 - (fetchurl { 911 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg"; 912 - sha256 = "1criw17b7lf4qllmr0p5lpswdqxdmbzwwsm31ryvgrwiyljsr800"; 913 - }) 914 - (fetchurl { 915 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization/4.0.11/system.globalization.4.0.11.nupkg"; 916 - sha256 = "04pycnih66s15rbwss94ylm0svfr276ym4w4w14bb9g56dk0wwyy"; 917 - }) 918 - (fetchurl { 919 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg"; 920 - sha256 = "1qfa54p7ab2himyry3lf0j85gpz3mx9yj0sy0v2j9i94ndvk1w7c"; 921 - }) 922 - (fetchurl { 923 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization.extensions/4.0.1/system.globalization.extensions.4.0.1.nupkg"; 924 - sha256 = "0ibjk6rmn3hcvawcn60wq3zlv3yzmfm19p661a08g0y1cn6wjvpb"; 925 - }) 926 - (fetchurl { 927 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg"; 928 - sha256 = "17gqqkmf2drv7k5q66vfcg6y3krc51isx96fd5w0vv38vdrh04iw"; 929 - }) 930 - (fetchurl { 931 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io/4.1.0/system.io.4.1.0.nupkg"; 932 - sha256 = "0drs586wimx7vzwqfdb72k640iz24645cwz053n1f08752bjkzq8"; 933 - }) 934 - (fetchurl { 935 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io/4.3.0/system.io.4.3.0.nupkg"; 936 - sha256 = "1n3qypsgn18pg13vyjcnchz3zbfajdk6swl1wzf0hv6324v8xyd7"; 937 - }) 938 - (fetchurl { 939 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg"; 940 - sha256 = "1p4r4n4minxgir17xh7rwv503fj1zgnm1vb24and7v2n6id4ma61"; 941 - }) 942 - (fetchurl { 943 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg"; 944 - sha256 = "0s22vnhy6cxyzicipj3937rldxk1znlykakc6j596mjgsmshpfqn"; 945 - }) 946 - (fetchurl { 947 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg"; 948 - sha256 = "1419wbklbn2vliwfy77p759k084h8jp9i3559shbhrzfxjr2fcv9"; 949 - }) 950 - (fetchurl { 951 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.linq.parallel/4.0.1/system.linq.parallel.4.0.1.nupkg"; 952 - sha256 = "10d25jxz29mlrqwwgmvz01kj222ccn7hyfrbpnfwczf3x50jxqzn"; 953 - }) 954 - (fetchurl { 955 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.memory/4.5.3/system.memory.4.5.3.nupkg"; 956 - sha256 = "1igqq2lqrijpbn66w1020cyyqiwy80i9fkqrmalamjmvmyg28p8m"; 957 - }) 958 - (fetchurl { 959 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg"; 960 - sha256 = "1zfrz4p3nmz3cnb0i8xwc76175328dfgrlmp3bcwvp5vplv3ncnz"; 961 - }) 962 - (fetchurl { 963 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.sockets/4.1.0/system.net.sockets.4.1.0.nupkg"; 964 - sha256 = "18gqm890rj9k5nd35xiv747hh11zzc8yx72y6pzr8xkp7fn9jjmg"; 965 - }) 966 - (fetchurl { 967 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg"; 968 - sha256 = "026ghgh25lw953aqd83npk856g4bwi6a8y7jc695qj8lb929yp5s"; 969 - }) 970 - (fetchurl { 971 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.private.datacontractserialization/4.1.1/system.private.datacontractserialization.4.1.1.nupkg"; 972 - sha256 = "1hrbq85s14x7ck6an570z8p7slprlsswxlydz0pdzfmnqwpv0qbi"; 973 - }) 974 - (fetchurl { 975 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection/4.1.0/system.reflection.4.1.0.nupkg"; 976 - sha256 = "003bmllpdf35jsbbhgsi4a24rqprdhgjpi3d76jk7sgllbh6p1wj"; 977 - }) 978 - (fetchurl { 979 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection/4.3.0/system.reflection.4.3.0.nupkg"; 980 - sha256 = "00f1n6r8z6zw3mfhrfg402s6fj95jj9d8z5s62kfmd7pdsnv39xi"; 981 - }) 982 - (fetchurl { 983 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg"; 984 - sha256 = "1kw4xsm093zd10jf3vjc2lxmv0zq6chi3g8rka8w0d3l3a5hh3ly"; 985 - }) 986 - (fetchurl { 987 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.primitives/4.0.1/system.reflection.primitives.4.0.1.nupkg"; 988 - sha256 = "1r0a1xhlrdr6kdhia9r6rcywds4r8wbk0jagsac6x3rc0kq5f1yi"; 989 - }) 990 - (fetchurl { 991 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg"; 992 - sha256 = "13y2gvadvzgv5hrizwd53xyciq88p8mpclyqfmikspij4pyb5328"; 993 - }) 994 - (fetchurl { 995 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.extensions/4.6.0-preview8.19364.1/system.resources.extensions.4.6.0-preview8.19364.1.nupkg"; 996 - sha256 = "0jh9ilbicmsngv77a4ayzs0n7s440ycdf726nbljw029gq4rzvqf"; 997 - }) 998 - (fetchurl { 999 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.resourcemanager/4.0.1/system.resources.resourcemanager.4.0.1.nupkg"; 1000 - sha256 = "1hjlz6rvr5c7qmvmbv1a338zqjl1dbj0qqidwv9z0ldy4jmg89cy"; 1001 - }) 1002 - (fetchurl { 1003 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg"; 1004 - sha256 = "1bi65kd8fps7gncs053pawc0j44pz4wcgdj3jcw7gpjr4j0zyxwi"; 1005 - }) 1006 - (fetchurl { 1007 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.resources.writer/4.0.0/system.resources.writer.4.0.0.nupkg"; 1008 - sha256 = "0f9l4pr5clyl9sb9ysswjfmx6v76dy6cwn79dw10v451gb2c9x4g"; 1009 - }) 1010 - (fetchurl { 1011 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime/4.1.0/system.runtime.4.1.0.nupkg"; 1012 - sha256 = "05n73j0s3qgjnp5w2jxaacn93kpq14cldxncv15v04b3lla30mpr"; 1013 - }) 1014 - (fetchurl { 1015 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime/4.3.0/system.runtime.4.3.0.nupkg"; 1016 - sha256 = "0cffdplihjrivvcayzvz32gmv7yissf2pmyaga4fw7g262rf5mxi"; 1017 - }) 1018 - (fetchurl { 1019 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.handles/4.0.1/system.runtime.handles.4.0.1.nupkg"; 1020 - sha256 = "00kzqs5d8gm1ppc13idybcdrr07yk2a7f5bdrb0mw7c1bafjp1px"; 1021 - }) 1022 - (fetchurl { 1023 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices/4.1.0/system.runtime.interopservices.4.1.0.nupkg"; 1024 - sha256 = "1876kwm4ziikya5s75sb1cp23qwdsd7xhlmlb9gaglibzwkd8b9d"; 1025 - }) 1026 - (fetchurl { 1027 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices.runtimeinformation/4.0.0/system.runtime.interopservices.runtimeinformation.4.0.0.nupkg"; 1028 - sha256 = "05pmsmrjmy3mk4r8xqihc3w7128d4qccjg6wkyd7zc2yq67w7xmg"; 1029 - }) 1030 - (fetchurl { 1031 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg"; 1032 - sha256 = "131108h1vnayxx6ms2axinja3sqckb1b8z9v8fjnaf9ix8zvmaxq"; 1033 - }) 1034 - (fetchurl { 1035 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.loader/4.0.0/system.runtime.loader.4.0.0.nupkg"; 1036 - sha256 = "1jw95ygcbhnlz3fw8krsmgi2kb6xzm8bq40xh59piig52c7cayaf"; 1037 - }) 1038 - (fetchurl { 1039 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.numerics/4.0.1/system.runtime.numerics.4.0.1.nupkg"; 1040 - sha256 = "0z3m39cx33dq72y4byv3hx499csr2v66cbx533i2444a8hv24zb8"; 1041 - }) 1042 - (fetchurl { 1043 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg"; 1044 - sha256 = "06i4k2ng909fvlq9dhglgyp0iv5vj6b42vqlsvk2gcn6ssgkq9ya"; 1045 - }) 1046 - (fetchurl { 1047 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.formatters/4.3.0/system.runtime.serialization.formatters.4.3.0.nupkg"; 1048 - sha256 = "1cf8y7vllfw08sxql8j62igi755s70pxzpsns1lvls00iw7svisk"; 1049 - }) 1050 - (fetchurl { 1051 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.json/4.0.2/system.runtime.serialization.json.4.0.2.nupkg"; 1052 - sha256 = "0l0rfxdw6vv3iy68dh6ppdn4jzxkrvphp11s80lm5g12yxlikjw8"; 1053 - }) 1054 - (fetchurl { 1055 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg"; 1056 - sha256 = "1mqwgsda61xm2p4chcniypnnrahh8l6j8c9j45jd2r0hmrvnsc4k"; 1057 - }) 1058 - (fetchurl { 1059 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.primitives/4.3.0/system.runtime.serialization.primitives.4.3.0.nupkg"; 1060 - sha256 = "1k5pmplsys171mdp7d5a02xcxfs6f91igifcm173kh6y8n6y0y5f"; 1061 - }) 1062 - (fetchurl { 1063 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.runtime.serialization.xml/4.1.1/system.runtime.serialization.xml.4.1.1.nupkg"; 1064 - sha256 = "19mwnihzks4l2q73bsg5ylbawxqcji3slzzp0v46v6xvvrq480wq"; 1065 - }) 1066 - (fetchurl { 1067 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg"; 1068 - sha256 = "1hjp789gif4607iv5702six5cbd61wc39ads1yfln0sdmv1m42i6"; 1069 - }) 1070 - (fetchurl { 1071 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg"; 1072 - sha256 = "04lfa74ll34fk2r42fkdldvcgjp27i3d5zbxx5bxx1dfpsqhkavv"; 1073 - }) 1074 - (fetchurl { 1075 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg"; 1076 - sha256 = "130qyk4r796vm8z5nlp49klb245pn1msmgmahwqxpcwr0kskmi46"; 1077 - }) 1078 - (fetchurl { 1079 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg"; 1080 - sha256 = "0958zmahjiz4i3wa4x149vz7n7xs81pn12522g54h1rzdszr1d57"; 1081 - }) 1082 - (fetchurl { 1083 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg"; 1084 - sha256 = "1icdqp1c8f7971h1vkls87m8bdxs7xqg4xs7ygi0x3n56pjbqfpi"; 1085 - }) 1086 - (fetchurl { 1087 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg"; 1088 - sha256 = "0kyqlrnc20syqlgaakjrhd7yi6jpdzsp2idyzgm3jr66h2saak6x"; 1089 - }) 1090 - (fetchurl { 1091 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg"; 1092 - sha256 = "02dsnjxw9bymk0a2qnnlavpi0jq8832dviblv5f9icmwldridc8y"; 1093 - }) 1094 - (fetchurl { 1095 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg"; 1096 - sha256 = "0p02s2k8gcx86ys67ydbgrlnp5q7f073jnlgpliqp4f7d2wiwszd"; 1097 - }) 1098 - (fetchurl { 1099 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg"; 1100 - sha256 = "0vnp7gacidqkd9p4zd2cl5457g91zs6kb3fjf7msmh6rpn9s7wxq"; 1101 - }) 1102 - (fetchurl { 1103 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.security.principal.windows/4.3.0/system.security.principal.windows.4.3.0.nupkg"; 1104 - sha256 = "0s42hnqsmczfym8vx6vqjh1pl4szwhjcy452l2z65ldkv41hk1gw"; 1105 - }) 1106 - (fetchurl { 1107 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding/4.0.11/system.text.encoding.4.0.11.nupkg"; 1108 - sha256 = "0q829jqhv2sdggb3xjlbdp65g2670w9gw64q2irdzr47gl7zpzyl"; 1109 - }) 1110 - (fetchurl { 1111 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg"; 1112 - sha256 = "04fsaadvsnjz6jmf88n26md9zcmvwgn2dkwqkjvhf5apph8gi44g"; 1113 - }) 1114 - (fetchurl { 1115 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.text.encoding.codepages/4.0.1/system.text.encoding.codepages.4.0.1.nupkg"; 1116 - sha256 = "0ixii299wspn434ccjjv8pcvxww3qjl8257r0dx7myh816v3a9sz"; 1117 - }) 1118 - (fetchurl { 1119 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg"; 1120 - sha256 = "1s8s2mhzvlb7v36z96w5jf0hcbix5drjc647g03l9dnp7dzgbm03"; 1121 - }) 1122 - (fetchurl { 1123 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks/4.0.11/system.threading.tasks.4.0.11.nupkg"; 1124 - sha256 = "03gvdi1qk4kyws4sjfl5w3fy9qbrq0d0i72n7a8d59lchm6l9zjk"; 1125 - }) 1126 - (fetchurl { 1127 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg"; 1128 - sha256 = "0y0gw9q62dchzhk3fcdcdfhk6c5zr0a6rs34qfdbkgksnva10cm1"; 1129 - }) 1130 - (fetchurl { 1131 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.dataflow/4.6.0/system.threading.tasks.dataflow.4.6.0.nupkg"; 1132 - sha256 = "0ayk4qdl6nvq4w027xqj0r5m89m2isdqm6ndj6h7px526fg1skf8"; 1133 - }) 1134 - (fetchurl { 1135 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.tasks.parallel/4.0.1/system.threading.tasks.parallel.4.0.1.nupkg"; 1136 - sha256 = "00l76cv7yys3ilrpi32xrs8qk45gmliqvmw2w2zxg3h21y6r0xc0"; 1137 - }) 1138 - (fetchurl { 1139 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.thread/4.0.0/system.threading.thread.4.0.0.nupkg"; 1140 - sha256 = "0ay1bjmyk0jv6plj9layh3nhr7lnl5a6gzlqi2pgqglb1s9j1x4s"; 1141 - }) 1142 - (fetchurl { 1143 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg"; 1144 - sha256 = "1ahzhk016anakja3c8nhqxi40nr4n2psm920gvfpjh4gbpglki9b"; 1145 - }) 1146 - (fetchurl { 1147 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg"; 1148 - sha256 = "04ijmcrb40x08br0fdpxmrm0fw2ahpiqjs9wmrqx38ngf96irb7l"; 1149 - }) 1150 - (fetchurl { 1151 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg"; 1152 - sha256 = "1dsj4s5jwjqix52sizyncvrv5p1h9cdnkh5c4a6407s3gkkh4gzw"; 1153 - }) 1154 - (fetchurl { 1155 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xmlserializer/4.0.11/system.xml.xmlserializer.4.0.11.nupkg"; 1156 - sha256 = "0987zp4nskf0dbsl3h4s5m1ianjcc398zmp2b98j4834c45jh0bm"; 1157 - }) 1158 - (fetchurl { 1159 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg"; 1160 - sha256 = "0hvn82chjynkixvvk9dy9djqvb0hlkbc2hy00gy27vjhd8i4iqkx"; 1161 - }) 1162 - (fetchurl { 1163 - url = "https://dotnetfeed.blob.core.windows.net/dotnet-core/flatcontainer/xlifftasks/1.0.0-beta.19252.1/xlifftasks.1.0.0-beta.19252.1.nupkg"; 1164 - sha256 = "0249sfb30y9dgsfryaj8644qw3yc1xp2xzc08lsrwvmm8vjcvkri"; 1165 - }) 1166 - (fetchurl { 1167 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/microsoft.netcore.platforms/1.0.1/microsoft.netcore.platforms.1.0.1.nupkg"; 1168 - sha256 = "14kgk4j8hy50a2wdsg6zsyqxnjxjhwbxfhl0x9wvqzgl3zf2qhbs"; 1169 - }) 1170 - (fetchurl { 1171 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg"; 1172 - sha256 = "19wns10x30bnqyrzqjixhn92zyhwyaqiymrdj674044q4bardhs9"; 1173 - }) 1174 - (fetchurl { 1175 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 1176 - sha256 = "16r149hajvr8ikyjbsw2m67yqfvxg6j1sb2slw9pzrly06mxmpks"; 1177 - }) 1178 - (fetchurl { 1179 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 1180 - sha256 = "0ck0l1d5558rxh5rh1bynar18f1ah7789pbgizkls5wf9cxfbsk6"; 1181 - }) 1182 - (fetchurl { 1183 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 1184 - sha256 = "0wgz0y2fm6xcnlmpl1zh5963ribjbnzr2l6prsw3xi7sbfyjyi8c"; 1185 - }) 1186 - (fetchurl { 1187 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 1188 - sha256 = "1n0p46c8yix5kx37cgnqirl3r2rhkx3lz250gqv9xq1blvg1vvkq"; 1189 - }) 1190 - (fetchurl { 1191 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg"; 1192 - sha256 = "0qr13ykxj7zs7i8z0x63v8za2h33ndnvvw83wffp9xbb2fibj3gi"; 1193 - }) 1194 - (fetchurl { 1195 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg"; 1196 - sha256 = "0x7vzghvix9xjxr7ilak8935q84djpjdwhxqi655abmcdrz9lbcy"; 1197 - }) 1198 - (fetchurl { 1199 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.buffers/4.4.0/system.buffers.4.4.0.nupkg"; 1200 - sha256 = "1wwkbr6z7a89vv3m0d84ws2w639xs7r65433sjdi3z6m1jckfch8"; 1201 - }) 1202 - (fetchurl { 1203 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.io.compression.zipfile/4.0.1/system.io.compression.zipfile.4.0.1.nupkg"; 1204 - sha256 = "07f05lgmq2iwzby21gqsh0474ppw3q4n321qmf4n01dydvgladf6"; 1205 - }) 1206 - (fetchurl { 1207 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg"; 1208 - sha256 = "08fbnsgbbnfj7d6k5zdqvm3580iqwrq4qzbnyq6iw9g93kmlyh5p"; 1209 - }) 1210 - (fetchurl { 1211 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg"; 1212 - sha256 = "12mspig2fvzhvbdm22yk081lpn7rc45xwwricc5vnaszgjp83gns"; 1213 - }) 1214 - (fetchurl { 1215 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg"; 1216 - sha256 = "0s22vnhy6cxyzicipj3937rldxk1znlykakc6j596mjgsmshpfqn"; 1217 - }) 1218 - (fetchurl { 1219 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.net.http/4.1.0/system.net.http.4.1.0.nupkg"; 1220 - sha256 = "0jzs6m3yfzvh4przqchhh7x98q61nmnch5inapk9i2ca6d9920rd"; 1221 - }) 1222 - (fetchurl { 1223 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.net.http/4.3.0/system.net.http.4.3.0.nupkg"; 1224 - sha256 = "0bmm1lv2z5fwhlxkdbn8nsa4j2yqsiqj4al8d1qpv3vvsyn9ns2m"; 1225 - }) 1226 - (fetchurl { 1227 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg"; 1228 - sha256 = "05jq9l0jr2nnk13nx8d85lfwpjimwpyknq8fnf7q7cyz3508dska"; 1229 - }) 1230 - (fetchurl { 1231 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-buildtools/nuget/v3/flatcontainer/system.security.cryptography.primitives/4.0.0/system.security.cryptography.primitives.4.0.0.nupkg"; 1232 - sha256 = "1aw253xms9kx5a6vcy024cjlad46dwrh2jfwj6pg54l1p1jj86av"; 1233 - }) 1234 - (fetchurl { 1235 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-core/nuget/v3/flatcontainer/microsoft.codeanalysis.analyzers/1.1.0/microsoft.codeanalysis.analyzers.1.1.0.nupkg"; 1236 - sha256 = "1if1zj237dc1qwgb2i29143zpj0590m629n4arx6g0h29888p1ra"; 1237 - }) 1238 - (fetchurl { 1239 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-core/nuget/v3/flatcontainer/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg"; 1240 - sha256 = "0y6jag332kgkj392mrv7i2a3cgc60ff4hl0nx5qw40hq3w2d9j8z"; 1241 - }) 1242 - (fetchurl { 1243 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-core/nuget/v3/flatcontainer/system.security.cryptography.csp/4.0.0/system.security.cryptography.csp.4.0.0.nupkg"; 1244 - sha256 = "1mk44mnj7d4mmkrqqz7i396h4kjzzsfknm89hywpn64bimfvqzpn"; 1245 - }) 1246 - (fetchurl { 1247 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/dotnet-core/nuget/v3/flatcontainer/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg"; 1248 - sha256 = "0958zmahjiz4i3wa4x149vz7n7xs81pn12522g54h1rzdszr1d57"; 1249 - }) 1250 - (fetchurl { 1251 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/microsoft.build.nugetsdkresolver/5.2.0-rtm.6067/microsoft.build.nugetsdkresolver.5.2.0-rtm.6067.nupkg"; 1252 - sha256 = "1rz2i4md7b8rlybb9s7416l0pr357f3ar149s6ipfq0xijn3xgmh"; 1253 - }) 1254 - (fetchurl { 1255 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.build.tasks/5.2.0-rtm.6067/nuget.build.tasks.5.2.0-rtm.6067.nupkg"; 1256 - sha256 = "1rim4zclm5xd63sdw8y7r1ssgxhnl8bs410gcz0nb1k839i05fns"; 1257 - }) 1258 - (fetchurl { 1259 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.commands/5.2.0-rtm.6067/nuget.commands.5.2.0-rtm.6067.nupkg"; 1260 - sha256 = "06vnphsmwnvcigwj37hy5abipjzwhnq61zw66cclwd6jjibb1kh9"; 1261 - }) 1262 - (fetchurl { 1263 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.common/5.2.0-rtm.6067/nuget.common.5.2.0-rtm.6067.nupkg"; 1264 - sha256 = "1ff5dhkv8v04n2kr5gyjjvki4mqsp1w4dwsgj7cvdcfcm8alba0m"; 1265 - }) 1266 - (fetchurl { 1267 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.configuration/5.2.0-rtm.6067/nuget.configuration.5.2.0-rtm.6067.nupkg"; 1268 - sha256 = "075mypb32i0d0x73rcr0di6pb0bhlp0izv3633ky64kddriajma1"; 1269 - }) 1270 - (fetchurl { 1271 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.credentials/5.2.0-rtm.6067/nuget.credentials.5.2.0-rtm.6067.nupkg"; 1272 - sha256 = "07g2na590sph9li5igww74i3gqyrj5cb6gsgjh54f1f4bs4x1c4k"; 1273 - }) 1274 - (fetchurl { 1275 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.dependencyresolver.core/5.2.0-rtm.6067/nuget.dependencyresolver.core.5.2.0-rtm.6067.nupkg"; 1276 - sha256 = "0iw1z2lascjjmdkk9nf2wqm5sj5nqjv4611xx29vlmp6cyhnpq4i"; 1277 - }) 1278 - (fetchurl { 1279 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.frameworks/5.2.0-rtm.6067/nuget.frameworks.5.2.0-rtm.6067.nupkg"; 1280 - sha256 = "1g1kcfqhxr1bhl3ksbdmz3rb9nq1qmkac1sijf9ng4gmr9fmprdm"; 1281 - }) 1282 - (fetchurl { 1283 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.librarymodel/5.2.0-rtm.6067/nuget.librarymodel.5.2.0-rtm.6067.nupkg"; 1284 - sha256 = "0dxvnspgkc1lcmilb67kkipg39ih34cmifs6jwk9kbrwf96z51q9"; 1285 - }) 1286 - (fetchurl { 1287 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.packaging/5.2.0-rtm.6067/nuget.packaging.5.2.0-rtm.6067.nupkg"; 1288 - sha256 = "16p5glvvpp5rw10ycbpyg39k4prir450l12r5frpm8qz0rdp3xig"; 1289 - }) 1290 - (fetchurl { 1291 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.projectmodel/5.2.0-rtm.6067/nuget.projectmodel.5.2.0-rtm.6067.nupkg"; 1292 - sha256 = "1s5950nbcsnfrpbaxdnl6cv1xbsa57fln04lhyrki536476a6wcn"; 1293 - }) 1294 - (fetchurl { 1295 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.protocol/5.2.0-rtm.6067/nuget.protocol.5.2.0-rtm.6067.nupkg"; 1296 - sha256 = "0fm3qgcdsy6dy6fih0n9a4w39mzdha4cz51gr9pp9g4nag34za2a"; 1297 - }) 1298 - (fetchurl { 1299 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/nuget-build/nuget/v3/flatcontainer/nuget.versioning/5.2.0-rtm.6067/nuget.versioning.5.2.0-rtm.6067.nupkg"; 1300 - sha256 = "04rr31ms95h7ymqxlalpv3xs48j8ng4ljfz5lmrfw7547rhcrj2h"; 1301 - }) 1302 - (fetchurl { 1303 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn/nuget/v3/flatcontainer/microsoft.codeanalysis.build.tasks/3.0.0-beta1-61516-01/microsoft.codeanalysis.build.tasks.3.0.0-beta1-61516-01.nupkg"; 1304 - sha256 = "1cjpqbd4i0gxhh86nvamlpkisd1krcrya6riwjhghvpjph6115vp"; 1305 - }) 1306 - (fetchurl { 1307 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn/nuget/v3/flatcontainer/microsoft.codeanalysis.common/3.0.0-beta1-61516-01/microsoft.codeanalysis.common.3.0.0-beta1-61516-01.nupkg"; 1308 - sha256 = "1qfm61yrsmihhir7n3hb5ccn1r50i39rv1g74880ma7ihjl1hz54"; 1309 - }) 1310 - (fetchurl { 1311 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn/nuget/v3/flatcontainer/microsoft.codeanalysis.csharp/3.0.0-beta1-61516-01/microsoft.codeanalysis.csharp.3.0.0-beta1-61516-01.nupkg"; 1312 - sha256 = "0a7npkdw6s5jczw1lkm63x2bpz1z3ccid20h5nm6k78cv7sihm4h"; 1313 - }) 1314 - (fetchurl { 1315 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn-tools/nuget/v3/flatcontainer/microsoft.netframework.referenceassemblies/1.0.0-alpha-004/microsoft.netframework.referenceassemblies.1.0.0-alpha-004.nupkg"; 1316 - sha256 = "1qrpxhcx11v92lqwvrih88mlyfw2rkrsjqh7gl8c1h71vyppr3bp"; 1317 - }) 1318 - (fetchurl { 1319 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn-tools/nuget/v3/flatcontainer/microsoft.netframework.referenceassemblies.net20/1.0.0-alpha-004/microsoft.netframework.referenceassemblies.net20.1.0.0-alpha-004.nupkg"; 1320 - sha256 = "18808v22l9rv8drb3xxwzmiv40mfbd6p16hhwlww05i7bkr6mcav"; 1321 - }) 1322 - (fetchurl { 1323 - url = "https://dotnetmyget.blob.core.windows.net/artifacts/roslyn-tools/nuget/v3/flatcontainer/microsoft.netframework.referenceassemblies.net472/1.0.0-alpha-004/microsoft.netframework.referenceassemblies.net472.1.0.0-alpha-004.nupkg"; 1324 - sha256 = "08wa54dm7yskayzxivnwbm8sg1pf6ai8ccr64ixf9lyz3yw6y0nc"; 1325 - }) 1326 - ]