From e33440101fe25af074c9ec80c30f2cb39ba7d69f Mon Sep 17 00:00:00 2001 From: Trent Mohay Date: Wed, 11 Dec 2024 11:59:07 +1100 Subject: [PATCH 1/4] add fullpath name to sha --- .../ConsolidatedPackageCreator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Calamari.ConsolidateCalamariPackages/ConsolidatedPackageCreator.cs b/source/Calamari.ConsolidateCalamariPackages/ConsolidatedPackageCreator.cs index b830e8a72..cd367a3b0 100644 --- a/source/Calamari.ConsolidateCalamariPackages/ConsolidatedPackageCreator.cs +++ b/source/Calamari.ConsolidateCalamariPackages/ConsolidatedPackageCreator.cs @@ -56,7 +56,7 @@ Dictionary GroupByPlatform(IEnumerable filesForPac .GroupBy(f => f.Platform) .ToDictionary( g => g.Key, - g => g.Select(f => f.Hash).OrderBy(h => h).ToArray() + g => g.Select(f => Path.Combine(f.Hash, f.FullNameInDestinationArchive.Replace('/', Path.DirectorySeparatorChar))).OrderBy(h => h).ToArray() ); var index = new ConsolidatedPackageIndex( From 7aeac8874c56807c56c4eaab448c19f8bec97467 Mon Sep 17 00:00:00 2001 From: Trent Mohay Date: Wed, 11 Dec 2024 15:46:07 +1100 Subject: [PATCH 2/4] update the int tests --- .../IntegrationTests.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.cs b/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.cs index 373e51270..220db4331 100644 --- a/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.cs +++ b/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.cs @@ -18,7 +18,7 @@ namespace Calamari.ConsolidateCalamariPackages.Tests [TestFixture] public class IntegrationTests { - readonly Assent.Configuration assentConfiguration = new Assent.Configuration().UsingSanitiser(s => Sanitise4PartVersions(SanitiseHashes(s))); + readonly Assent.Configuration assentConfiguration = new Assent.Configuration().UsingSanitiser(s => Sanitise4PartVersions(SanitiseFilenamesInIndex(s))); static readonly string TestPackagesDirectory = "../../../testPackages"; private string temp; @@ -85,7 +85,7 @@ public void AndThenThePackageIsCreated() public void AndThenThePackageContentsShouldBe() { using (var zip = ZipFile.Open(expectedZip, ZipArchiveMode.Read)) - this.Assent(string.Join("\r\n", zip.Entries.Select(e => SanitiseHashes(e.FullName)).OrderBy(k => k)), assentConfiguration); + this.Assent(string.Join("\r\n", zip.Entries.Select(e => SanitiseHashesInPackageList(e.FullName)).OrderBy(k => k)), assentConfiguration); } public void AndThenTheIndexShouldBe() @@ -96,8 +96,12 @@ public void AndThenTheIndexShouldBe() this.Assent(sr.ReadToEnd(), assentConfiguration); } - private static string SanitiseHashes(string s) - => Regex.Replace(s, "[a-z0-9]{32}", ""); + private static string SanitiseFilenamesInIndex(string s) + => Regex.Replace(s, "[a-z0-9]{32}\\\\[^\"]*", ""); + + private static string SanitiseHashesInPackageList(string s) + => Regex.Replace(s, "[a-z0-9]{32}", ""); + private static string Sanitise4PartVersions(string s) => Regex.Replace(s, @"[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+", ""); From 9a37922590b41e4a07d8c0b61dc90b6f52e376fb Mon Sep 17 00:00:00 2001 From: Trent Mohay Date: Tue, 17 Dec 2024 10:50:07 +1100 Subject: [PATCH 3/4] also update the source entry name to match --- .../ConsolidatedPackageCreator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Calamari.ConsolidateCalamariPackages/ConsolidatedPackageCreator.cs b/source/Calamari.ConsolidateCalamariPackages/ConsolidatedPackageCreator.cs index cd367a3b0..443db80d1 100644 --- a/source/Calamari.ConsolidateCalamariPackages/ConsolidatedPackageCreator.cs +++ b/source/Calamari.ConsolidateCalamariPackages/ConsolidatedPackageCreator.cs @@ -39,7 +39,7 @@ private static void WriteUniqueFilesToZip(IEnumerable sourceFiles, Z using (var sourceZip = ZipFile.OpenRead(groupedBySourceArchive.Key)) foreach (var uniqueFile in groupedBySourceArchive) { - var entryName = Path.Combine(uniqueFile.Hash, uniqueFile.FullNameInDestinationArchive); + var entryName = $"{uniqueFile.Hash}/{uniqueFile.FullNameInDestinationArchive}"; var entry = zip.CreateEntry(entryName, CompressionLevel.Fastest); using (var destStream = entry.Open()) @@ -56,7 +56,7 @@ Dictionary GroupByPlatform(IEnumerable filesForPac .GroupBy(f => f.Platform) .ToDictionary( g => g.Key, - g => g.Select(f => Path.Combine(f.Hash, f.FullNameInDestinationArchive.Replace('/', Path.DirectorySeparatorChar))).OrderBy(h => h).ToArray() + g => g.Select(f => Path.Combine(f.Hash, f.FullNameInDestinationArchive).Replace('\\', '/')).OrderBy(h => h).ToArray() ); var index = new ConsolidatedPackageIndex( From 01b4ca42a7d29eb3175525ccf09c3a0fc654120f Mon Sep 17 00:00:00 2001 From: Trent Mohay Date: Tue, 17 Dec 2024 14:04:03 +1100 Subject: [PATCH 4/4] update assent files --- ...henThePackageContentsShouldBe.approved.txt | 2862 ++++++++--------- .../IntegrationTests.cs | 2 +- 2 files changed, 1432 insertions(+), 1432 deletions(-) diff --git a/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.AndThenThePackageContentsShouldBe.approved.txt b/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.AndThenThePackageContentsShouldBe.approved.txt index 068b770ae..8b64441fb 100644 --- a/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.AndThenThePackageContentsShouldBe.approved.txt +++ b/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.AndThenThePackageContentsShouldBe.approved.txt @@ -1,1432 +1,1432 @@ -\AlphaFS.dll -\AlphaFS.dll -\api-ms-win-core-console-l1-1-0.dll -\api-ms-win-core-datetime-l1-1-0.dll -\api-ms-win-core-debug-l1-1-0.dll -\api-ms-win-core-errorhandling-l1-1-0.dll -\api-ms-win-core-file-l1-1-0.dll -\api-ms-win-core-file-l1-2-0.dll -\api-ms-win-core-file-l2-1-0.dll -\api-ms-win-core-handle-l1-1-0.dll -\api-ms-win-core-heap-l1-1-0.dll -\api-ms-win-core-interlocked-l1-1-0.dll -\api-ms-win-core-libraryloader-l1-1-0.dll -\api-ms-win-core-localization-l1-2-0.dll -\api-ms-win-core-memory-l1-1-0.dll -\api-ms-win-core-namedpipe-l1-1-0.dll -\api-ms-win-core-processenvironment-l1-1-0.dll -\api-ms-win-core-processthreads-l1-1-0.dll -\api-ms-win-core-processthreads-l1-1-1.dll -\api-ms-win-core-profile-l1-1-0.dll -\api-ms-win-core-rtlsupport-l1-1-0.dll -\api-ms-win-core-string-l1-1-0.dll -\api-ms-win-core-synch-l1-1-0.dll -\api-ms-win-core-synch-l1-2-0.dll -\api-ms-win-core-sysinfo-l1-1-0.dll -\api-ms-win-core-timezone-l1-1-0.dll -\api-ms-win-core-util-l1-1-0.dll -\api-ms-win-crt-conio-l1-1-0.dll -\api-ms-win-crt-convert-l1-1-0.dll -\api-ms-win-crt-environment-l1-1-0.dll -\api-ms-win-crt-filesystem-l1-1-0.dll -\api-ms-win-crt-heap-l1-1-0.dll -\api-ms-win-crt-locale-l1-1-0.dll -\api-ms-win-crt-math-l1-1-0.dll -\api-ms-win-crt-multibyte-l1-1-0.dll -\api-ms-win-crt-private-l1-1-0.dll -\api-ms-win-crt-process-l1-1-0.dll -\api-ms-win-crt-runtime-l1-1-0.dll -\api-ms-win-crt-stdio-l1-1-0.dll -\api-ms-win-crt-string-l1-1-0.dll -\api-ms-win-crt-time-l1-1-0.dll -\api-ms-win-crt-utility-l1-1-0.dll -\Autofac.dll -\Autofac.dll -\Autofac.dll -\AWSSDK.CloudFormation.dll -\AWSSDK.CloudFormation.dll -\AWSSDK.Core.dll -\AWSSDK.Core.dll -\AWSSDK.IdentityManagement.dll -\AWSSDK.IdentityManagement.dll -\AWSSDK.S3.dll -\AWSSDK.S3.dll -\AWSSDK.SecurityToken.dll -\AWSSDK.SecurityToken.dll -\BouncyCastle.Crypto.dll -\Calamari -\Calamari -\Calamari.Aws.dll -\Calamari.Aws.dll -\Calamari.Aws.dll -\Calamari.Aws.dll -\Calamari.Aws.dll.config -\Calamari.Aws.pdb -\Calamari.Aws.pdb -\Calamari.Azure.Accounts.dll -\Calamari.Azure.Accounts.dll -\Calamari.Azure.Accounts.dll -\Calamari.Azure.Accounts.dll -\Calamari.Azure.Accounts.pdb -\Calamari.Azure.CloudServices.dll -\Calamari.Azure.CloudServices.dll.config -\Calamari.Azure.CloudServices.pdb -\Calamari.Azure.dll -\Calamari.Azure.dll -\Calamari.Azure.dll -\Calamari.Azure.dll -\Calamari.Azure.dll.config -\Calamari.Azure.exe.manifest -\Calamari.Azure.pdb -\Calamari.Azure.pdb -\Calamari.Azure.ServiceFabric.dll -\Calamari.Azure.ServiceFabric.dll.config -\Calamari.Azure.ServiceFabric.pdb -\Calamari.Azure.WebApps.dll -\Calamari.Azure.WebApps.dll.config -\Calamari.Azure.WebApps.pdb -\Calamari.Cloud.nuspec -\Calamari.deps.json -\Calamari.deps.json -\Calamari.deps.json -\Calamari.dll -\Calamari.dll -\Calamari.dll -\Calamari.dll.config -\Calamari.exe -\Calamari.exe -\Calamari.exe -\Calamari.exe.config -\Calamari.exe.config -\Calamari.exe.manifest -\Calamari.linux-x64.nuspec -\Calamari.nuspec -\Calamari.osx-x64.nuspec -\Calamari.pdb -\Calamari.pdb -\Calamari.pdb -\Calamari.runtimeconfig.json -\Calamari.Shared.dll -\Calamari.Shared.dll -\Calamari.Shared.dll -\Calamari.Shared.dll -\Calamari.Shared.dll -\Calamari.Shared.pdb -\Calamari.Shared.pdb -\Calamari.Shared.pdb -\Calamari.Terraform -\Calamari.Terraform -\Calamari.Terraform.deps.json -\Calamari.Terraform.deps.json -\Calamari.Terraform.deps.json -\Calamari.Terraform.dll -\Calamari.Terraform.dll -\Calamari.Terraform.dll -\Calamari.Terraform.dll -\Calamari.Terraform.dll -\Calamari.Terraform.dll -\Calamari.Terraform.dll -\Calamari.Terraform.exe -\Calamari.Terraform.exe -\Calamari.Terraform.exe.config -\Calamari.Terraform.pdb -\Calamari.Terraform.pdb -\Calamari.Terraform.pdb -\Calamari.Terraform.pdb -\Calamari.Terraform.runtimeconfig.json -\Calamari.win-x64.nuspec -\clrcompression.dll -\clrcompression.dll -\clretwrc.dll -\clretwrc.dll -\clrjit.dll -\clrjit.dll -\coreclr.dll -\coreclr.dll -\createdump -\createdump -\dbgshim.dll -\dbgshim.dll -\de/Microsoft.Data.Edm.resources.dll -\de/Microsoft.Data.OData.resources.dll -\de/Microsoft.Data.Services.Client.resources.dll -\de/System.Spatial.resources.dll -\es/Microsoft.Data.Edm.resources.dll -\es/Microsoft.Data.OData.resources.dll -\es/Microsoft.Data.Services.Client.resources.dll -\es/System.Spatial.resources.dll -\fr/Microsoft.Data.Edm.resources.dll -\fr/Microsoft.Data.OData.resources.dll -\fr/Microsoft.Data.Services.Client.resources.dll -\fr/System.Spatial.resources.dll -\FSharp/fsc.exe -\FSharp/fsc.exe.config -\FSharp/fsc.xml -\FSharp/FSharp.Build.dll -\FSharp/FSharp.Build.xml -\FSharp/FSharp.Compiler.dll -\FSharp/FSharp.Compiler.Interactive.Settings.dll -\FSharp/FSharp.Compiler.Interactive.Settings.xml -\FSharp/FSharp.Compiler.Server.Shared.dll -\FSharp/FSharp.Compiler.Server.Shared.xml -\FSharp/FSharp.Compiler.xml -\FSharp/FSharp.Core.dll -\FSharp/FSharp.Core.optdata -\FSharp/FSharp.Core.sigdata -\FSharp/FSharp.Core.xml -\FSharp/fsi.exe -\FSharp/fsi.exe.config -\FSharp/fsi.xml -\FSharp/fsiAnyCpu.exe -\FSharp/fsiAnyCpu.exe.config -\FSharp/fsiAnyCpu.xml -\FSharp/Microsoft.Build.dll -\FSharp/Microsoft.Build.Engine.dll -\FSharp/Microsoft.Build.Framework.dll -\FSharp/Microsoft.Build.Tasks.v12.0.dll -\FSharp/Microsoft.Build.Utilities.v12.0.dll -\FSharp/Microsoft.FSharp.Targets -\hostfxr.dll -\hostfxr.dll -\hostpolicy.dll -\hostpolicy.dll -\Hyak.Common.dll -\it/Microsoft.Data.Edm.resources.dll -\it/Microsoft.Data.OData.resources.dll -\it/Microsoft.Data.Services.Client.resources.dll -\it/System.Spatial.resources.dll -\ja/Microsoft.Data.Edm.resources.dll -\ja/Microsoft.Data.OData.resources.dll -\ja/Microsoft.Data.Services.Client.resources.dll -\ja/System.Spatial.resources.dll -\javatest.jar -\ko/Microsoft.Data.Edm.resources.dll -\ko/Microsoft.Data.OData.resources.dll -\ko/Microsoft.Data.Services.Client.resources.dll -\ko/System.Spatial.resources.dll -\libclrjit.dylib -\libclrjit.dylib -\libclrjit.so -\libclrjit.so -\libcoreclr.dylib -\libcoreclr.dylib -\libcoreclr.so -\libcoreclr.so -\libcoreclrtraceptprovider.so -\libcoreclrtraceptprovider.so -\libdbgshim.dylib -\libdbgshim.dylib -\libdbgshim.so -\libdbgshim.so -\libhostfxr.dylib -\libhostfxr.dylib -\libhostfxr.so -\libhostfxr.so -\libhostpolicy.dylib -\libhostpolicy.dylib -\libhostpolicy.so -\libhostpolicy.so -\libmscordaccore.dylib -\libmscordaccore.dylib -\libmscordaccore.so -\libmscordaccore.so -\libmscordbi.dylib -\libmscordbi.dylib -\libmscordbi.so -\libmscordbi.so -\libsos.dylib -\libsos.so -\libsosplugin.so -\Markdig.dll -\Markdig.dll -\Markdown.dll -\MarkdownSharp.dll -\Microsoft.Azure.Common.dll -\Microsoft.Azure.Management.ResourceManager.dll -\Microsoft.Azure.Management.ResourceManager.dll -\Microsoft.Azure.Management.Websites.dll -\Microsoft.CSharp.dll -\Microsoft.CSharp.dll -\Microsoft.CSharp.dll -\Microsoft.CSharp.dll -\Microsoft.CSharp.dll -\Microsoft.CSharp.dll -\Microsoft.Data.Edm.dll -\Microsoft.Data.OData.dll -\Microsoft.Data.Services.Client.dll -\Microsoft.DiaSymReader.Native.amd64.dll -\Microsoft.Extensions.Caching.Abstractions.dll -\Microsoft.Extensions.Caching.Memory.dll -\Microsoft.Extensions.CommandLineUtils.dll -\Microsoft.Extensions.DependencyInjection.Abstractions.dll -\Microsoft.Extensions.Options.dll -\Microsoft.Extensions.Primitives.dll -\Microsoft.IdentityModel.Clients.ActiveDirectory.dll -\Microsoft.IdentityModel.Clients.ActiveDirectory.dll -\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll -\Microsoft.Rest.ClientRuntime.Azure.dll -\Microsoft.Rest.ClientRuntime.Azure.dll -\Microsoft.Rest.ClientRuntime.dll -\Microsoft.Rest.ClientRuntime.dll -\Microsoft.ServiceFabric.Internal.dll -\Microsoft.ServiceFabric.Internal.Strings.dll -\Microsoft.Threading.Tasks.dll -\Microsoft.Threading.Tasks.Extensions.Desktop.dll -\Microsoft.Threading.Tasks.Extensions.dll -\Microsoft.VisualBasic.Core.dll -\Microsoft.VisualBasic.Core.dll -\Microsoft.VisualBasic.Core.dll -\Microsoft.VisualBasic.dll -\Microsoft.VisualBasic.dll -\Microsoft.VisualBasic.dll -\Microsoft.VisualBasic.dll -\Microsoft.VisualBasic.dll -\Microsoft.VisualBasic.dll -\Microsoft.Web.Administration.dll -\Microsoft.Web.Delegation.dll -\Microsoft.Web.Deployment.dll -\Microsoft.Web.Deployment.Tracing.dll -\Microsoft.Web.XmlTransform.dll -\Microsoft.Win32.Primitives.dll -\Microsoft.Win32.Primitives.dll -\Microsoft.Win32.Primitives.dll -\Microsoft.Win32.Primitives.dll -\Microsoft.Win32.Primitives.dll -\Microsoft.Win32.Primitives.dll -\Microsoft.Win32.Registry.dll -\Microsoft.Win32.Registry.dll -\Microsoft.Win32.Registry.dll -\Microsoft.Win32.Registry.dll -\Microsoft.Win32.Registry.dll -\Microsoft.Win32.Registry.dll -\Microsoft.WindowsAzure.Common.dll -\Microsoft.WindowsAzure.Common.NetFramework.dll -\Microsoft.WindowsAzure.Configuration.dll -\Microsoft.WindowsAzure.Management.Compute.dll -\Microsoft.WindowsAzure.Management.Storage.dll -\Microsoft.WindowsAzure.Management.WebSites.dll -\Microsoft.WindowsAzure.Packaging.dll -\Microsoft.WindowsAzure.ServiceModel.Common.dll -\Microsoft.WindowsAzure.Storage.dll -\mscordaccore_amd64_amd64_.dll -\mscordaccore_amd64_amd64_.dll -\mscordaccore.dll -\mscordaccore.dll -\mscordbi.dll -\mscordbi.dll -\mscorlib.dll -\mscorlib.dll -\mscorlib.dll -\mscorlib.dll -\mscorlib.dll -\mscorlib.dll -\mscorrc.debug.dll -\mscorrc.debug.dll -\mscorrc.dll -\mscorrc.dll -\netstandard.dll -\netstandard.dll -\netstandard.dll -\netstandard.dll -\netstandard.dll -\netstandard.dll -\Newtonsoft.Json.dll -\Newtonsoft.Json.dll -\Newtonsoft.Json.dll -\Newtonsoft.Json.dll -\Newtonsoft.Json.dll -\NuGet.Client.dll -\NuGet.Commands.dll -\NuGet.Common.dll -\NuGet.Configuration.dll -\NuGet.ContentModel.dll -\NuGet.Core.dll -\NuGet.DependencyResolver.Core.dll -\NuGet.DependencyResolver.dll -\NuGet.Frameworks.dll -\NuGet.LibraryModel.dll -\NuGet.Packaging.Core.dll -\NuGet.Packaging.Core.Types.dll -\NuGet.Packaging.dll -\NuGet.ProjectModel.dll -\NuGet.Protocol.Core.Types.dll -\NuGet.Protocol.Core.v3.dll -\NuGet.Repositories.dll -\NuGet.RuntimeModel.dll -\NuGet.Versioning.dll -\Octodiff.dll -\Octodiff.dll -\Octodiff.dll -\Octodiff.exe -\Octodiff.exe -\Octopus.CoreUtilities.dll -\Octopus.CoreUtilities.dll -\Octopus.CoreUtilities.dll -\Octopus.CoreUtilities.dll -\Octopus.CoreUtilities.dll -\Octopus.System.Xml.ReaderWriter.dll -\Octopus.System.Xml.ReaderWriter.dll -\Octopus.System.Xml.ReaderWriter.dll -\Octopus.Versioning.dll -\Octopus.Versioning.dll -\Octopus.Versioning.dll -\Octopus.Versioning.dll -\Octopus.Versioning.dll -\Octopus.Web.Xdt.dll -\Octopus.Web.Xdt.dll -\Octopus.Web.Xdt.dll -\Octostache.dll -\Octostache.dll -\Octostache.dll -\Octostache.dll -\Octostache.dll -\Polly.dll -\Polly.dll -\ru/Microsoft.Data.Edm.resources.dll -\ru/Microsoft.Data.OData.resources.dll -\ru/Microsoft.Data.Services.Client.resources.dll -\ru/System.Spatial.resources.dll -\ScriptCS/Autofac.dll -\ScriptCS/Autofac.Integration.Mef.dll -\ScriptCS/chocolateyInstall.ps1 -\ScriptCS/Common.Logging.dll -\ScriptCS/ICSharpCode.NRefactory.CSharp.dll -\ScriptCS/ICSharpCode.NRefactory.dll -\ScriptCS/Microsoft.CodeAnalysis.CSharp.dll -\ScriptCS/Microsoft.CodeAnalysis.Desktop.dll -\ScriptCS/Microsoft.CodeAnalysis.dll -\ScriptCS/Microsoft.CodeAnalysis.Scripting.CSharp.dll -\ScriptCS/Microsoft.CodeAnalysis.Scripting.dll -\ScriptCS/Microsoft.Web.XmlTransform.dll -\ScriptCS/Mono.Cecil.dll -\ScriptCS/Mono.CSharp.dll -\ScriptCS/Newtonsoft.Json.dll -\ScriptCS/NuGet.Core.dll -\ScriptCS/PowerArgs.dll -\ScriptCS/ScriptCs.Contracts.dll -\ScriptCS/ScriptCs.Core.dll -\ScriptCS/ScriptCs.Engine.Mono.dll -\ScriptCS/ScriptCs.Engine.Roslyn.dll -\ScriptCS/scriptcs.exe -\ScriptCS/scriptcs.exe.config -\ScriptCS/ScriptCs.Hosting.dll -\ScriptCS/System.Collections.Immutable.dll -\ScriptCS/System.Reflection.Metadata.dll -\SharpCompress.dll -\SharpCompress.dll -\SharpCompress.dll -\sos_amd64_amd64_.dll -\SOS_README.md -\SOS_README.md -\sos.dll -\SOS.NETCore.dll -\SOS.NETCore.dll -\SOS.NETCore.dll -\sosdocsunix.txt -\Sprache.dll -\Sprache.dll -\System.AppContext.dll -\System.AppContext.dll -\System.AppContext.dll -\System.AppContext.dll -\System.AppContext.dll -\System.AppContext.dll -\System.Buffers.dll -\System.Buffers.dll -\System.Buffers.dll -\System.Buffers.dll -\System.Buffers.dll -\System.Buffers.dll -\System.Collections.Concurrent.dll -\System.Collections.Concurrent.dll -\System.Collections.Concurrent.dll -\System.Collections.Concurrent.dll -\System.Collections.Concurrent.dll -\System.Collections.Concurrent.dll -\System.Collections.dll -\System.Collections.dll -\System.Collections.dll -\System.Collections.dll -\System.Collections.dll -\System.Collections.dll -\System.Collections.Immutable.dll -\System.Collections.Immutable.dll -\System.Collections.Immutable.dll -\System.Collections.Immutable.dll -\System.Collections.Immutable.dll -\System.Collections.Immutable.dll -\System.Collections.NonGeneric.dll -\System.Collections.NonGeneric.dll -\System.Collections.NonGeneric.dll -\System.Collections.NonGeneric.dll -\System.Collections.NonGeneric.dll -\System.Collections.NonGeneric.dll -\System.Collections.Specialized.dll -\System.Collections.Specialized.dll -\System.Collections.Specialized.dll -\System.Collections.Specialized.dll -\System.Collections.Specialized.dll -\System.Collections.Specialized.dll -\System.ComponentModel.Annotations.dll -\System.ComponentModel.Annotations.dll -\System.ComponentModel.Annotations.dll -\System.ComponentModel.Annotations.dll -\System.ComponentModel.Annotations.dll -\System.ComponentModel.Annotations.dll -\System.ComponentModel.DataAnnotations.dll -\System.ComponentModel.DataAnnotations.dll -\System.ComponentModel.DataAnnotations.dll -\System.ComponentModel.DataAnnotations.dll -\System.ComponentModel.DataAnnotations.dll -\System.ComponentModel.DataAnnotations.dll -\System.ComponentModel.dll -\System.ComponentModel.dll -\System.ComponentModel.dll -\System.ComponentModel.dll -\System.ComponentModel.dll -\System.ComponentModel.dll -\System.ComponentModel.EventBasedAsync.dll -\System.ComponentModel.EventBasedAsync.dll -\System.ComponentModel.EventBasedAsync.dll -\System.ComponentModel.EventBasedAsync.dll -\System.ComponentModel.EventBasedAsync.dll -\System.ComponentModel.EventBasedAsync.dll -\System.ComponentModel.Primitives.dll -\System.ComponentModel.Primitives.dll -\System.ComponentModel.Primitives.dll -\System.ComponentModel.Primitives.dll -\System.ComponentModel.Primitives.dll -\System.ComponentModel.Primitives.dll -\System.ComponentModel.Primitives.dll -\System.ComponentModel.TypeConverter.dll -\System.ComponentModel.TypeConverter.dll -\System.ComponentModel.TypeConverter.dll -\System.ComponentModel.TypeConverter.dll -\System.ComponentModel.TypeConverter.dll -\System.ComponentModel.TypeConverter.dll -\System.ComponentModel.TypeConverter.dll -\System.Configuration.dll -\System.Configuration.dll -\System.Configuration.dll -\System.Configuration.dll -\System.Configuration.dll -\System.Configuration.dll -\System.Console.dll -\System.Console.dll -\System.Console.dll -\System.Console.dll -\System.Console.dll -\System.Console.dll -\System.Core.dll -\System.Core.dll -\System.Core.dll -\System.Core.dll -\System.Core.dll -\System.Core.dll -\System.Data.Common.dll -\System.Data.Common.dll -\System.Data.Common.dll -\System.Data.Common.dll -\System.Data.Common.dll -\System.Data.Common.dll -\System.Data.DataSetExtensions.dll -\System.Data.DataSetExtensions.dll -\System.Data.DataSetExtensions.dll -\System.Data.dll -\System.Data.dll -\System.Data.dll -\System.Data.dll -\System.Data.dll -\System.Data.dll -\System.Diagnostics.Contracts.dll -\System.Diagnostics.Contracts.dll -\System.Diagnostics.Contracts.dll -\System.Diagnostics.Contracts.dll -\System.Diagnostics.Contracts.dll -\System.Diagnostics.Contracts.dll -\System.Diagnostics.Debug.dll -\System.Diagnostics.Debug.dll -\System.Diagnostics.Debug.dll -\System.Diagnostics.Debug.dll -\System.Diagnostics.Debug.dll -\System.Diagnostics.Debug.dll -\System.Diagnostics.DiagnosticSource.dll -\System.Diagnostics.DiagnosticSource.dll -\System.Diagnostics.DiagnosticSource.dll -\System.Diagnostics.DiagnosticSource.dll -\System.Diagnostics.DiagnosticSource.dll -\System.Diagnostics.DiagnosticSource.dll -\System.Diagnostics.FileVersionInfo.dll -\System.Diagnostics.FileVersionInfo.dll -\System.Diagnostics.FileVersionInfo.dll -\System.Diagnostics.FileVersionInfo.dll -\System.Diagnostics.FileVersionInfo.dll -\System.Diagnostics.FileVersionInfo.dll -\System.Diagnostics.Process.dll -\System.Diagnostics.Process.dll -\System.Diagnostics.Process.dll -\System.Diagnostics.Process.dll -\System.Diagnostics.Process.dll -\System.Diagnostics.Process.dll -\System.Diagnostics.StackTrace.dll -\System.Diagnostics.StackTrace.dll -\System.Diagnostics.StackTrace.dll -\System.Diagnostics.StackTrace.dll -\System.Diagnostics.StackTrace.dll -\System.Diagnostics.StackTrace.dll -\System.Diagnostics.TextWriterTraceListener.dll -\System.Diagnostics.TextWriterTraceListener.dll -\System.Diagnostics.TextWriterTraceListener.dll -\System.Diagnostics.TextWriterTraceListener.dll -\System.Diagnostics.TextWriterTraceListener.dll -\System.Diagnostics.TextWriterTraceListener.dll -\System.Diagnostics.Tools.dll -\System.Diagnostics.Tools.dll -\System.Diagnostics.Tools.dll -\System.Diagnostics.Tools.dll -\System.Diagnostics.Tools.dll -\System.Diagnostics.Tools.dll -\System.Diagnostics.TraceSource.dll -\System.Diagnostics.TraceSource.dll -\System.Diagnostics.TraceSource.dll -\System.Diagnostics.TraceSource.dll -\System.Diagnostics.TraceSource.dll -\System.Diagnostics.TraceSource.dll -\System.Diagnostics.Tracing.dll -\System.Diagnostics.Tracing.dll -\System.Diagnostics.Tracing.dll -\System.Diagnostics.Tracing.dll -\System.Diagnostics.Tracing.dll -\System.Diagnostics.Tracing.dll -\System.dll -\System.dll -\System.dll -\System.dll -\System.dll -\System.dll -\System.Drawing.dll -\System.Drawing.dll -\System.Drawing.dll -\System.Drawing.dll -\System.Drawing.dll -\System.Drawing.dll -\System.Drawing.Primitives.dll -\System.Drawing.Primitives.dll -\System.Drawing.Primitives.dll -\System.Drawing.Primitives.dll -\System.Drawing.Primitives.dll -\System.Drawing.Primitives.dll -\System.Dynamic.Runtime.dll -\System.Dynamic.Runtime.dll -\System.Dynamic.Runtime.dll -\System.Dynamic.Runtime.dll -\System.Dynamic.Runtime.dll -\System.Dynamic.Runtime.dll -\System.Fabric.dll -\System.Fabric.Strings.dll -\System.Globalization.Calendars.dll -\System.Globalization.Calendars.dll -\System.Globalization.Calendars.dll -\System.Globalization.Calendars.dll -\System.Globalization.Calendars.dll -\System.Globalization.Calendars.dll -\System.Globalization.dll -\System.Globalization.dll -\System.Globalization.dll -\System.Globalization.dll -\System.Globalization.dll -\System.Globalization.dll -\System.Globalization.Extensions.dll -\System.Globalization.Extensions.dll -\System.Globalization.Extensions.dll -\System.Globalization.Extensions.dll -\System.Globalization.Extensions.dll -\System.Globalization.Extensions.dll -\System.Globalization.Native.dylib -\System.Globalization.Native.dylib -\System.Globalization.Native.so -\System.Globalization.Native.so -\System.IO.Compression.Brotli.dll -\System.IO.Compression.Brotli.dll -\System.IO.Compression.Brotli.dll -\System.IO.Compression.Brotli.dll -\System.IO.Compression.Brotli.dll -\System.IO.Compression.Brotli.dll -\System.IO.Compression.dll -\System.IO.Compression.dll -\System.IO.Compression.dll -\System.IO.Compression.dll -\System.IO.Compression.dll -\System.IO.Compression.dll -\System.IO.Compression.FileSystem.dll -\System.IO.Compression.FileSystem.dll -\System.IO.Compression.FileSystem.dll -\System.IO.Compression.FileSystem.dll -\System.IO.Compression.FileSystem.dll -\System.IO.Compression.FileSystem.dll -\System.IO.Compression.Native.a -\System.IO.Compression.Native.a -\System.IO.Compression.Native.a -\System.IO.Compression.Native.a -\System.IO.Compression.Native.dylib -\System.IO.Compression.Native.dylib -\System.IO.Compression.Native.so -\System.IO.Compression.Native.so -\System.IO.Compression.ZipFile.dll -\System.IO.Compression.ZipFile.dll -\System.IO.Compression.ZipFile.dll -\System.IO.Compression.ZipFile.dll -\System.IO.Compression.ZipFile.dll -\System.IO.Compression.ZipFile.dll -\System.IO.dll -\System.IO.dll -\System.IO.dll -\System.IO.dll -\System.IO.dll -\System.IO.dll -\System.IO.dll -\System.IO.FileSystem.AccessControl.dll -\System.IO.FileSystem.AccessControl.dll -\System.IO.FileSystem.AccessControl.dll -\System.IO.FileSystem.AccessControl.dll -\System.IO.FileSystem.AccessControl.dll -\System.IO.FileSystem.AccessControl.dll -\System.IO.FileSystem.dll -\System.IO.FileSystem.dll -\System.IO.FileSystem.dll -\System.IO.FileSystem.dll -\System.IO.FileSystem.dll -\System.IO.FileSystem.dll -\System.IO.FileSystem.DriveInfo.dll -\System.IO.FileSystem.DriveInfo.dll -\System.IO.FileSystem.DriveInfo.dll -\System.IO.FileSystem.DriveInfo.dll -\System.IO.FileSystem.DriveInfo.dll -\System.IO.FileSystem.DriveInfo.dll -\System.IO.FileSystem.Primitives.dll -\System.IO.FileSystem.Primitives.dll -\System.IO.FileSystem.Primitives.dll -\System.IO.FileSystem.Primitives.dll -\System.IO.FileSystem.Primitives.dll -\System.IO.FileSystem.Primitives.dll -\System.IO.FileSystem.Watcher.dll -\System.IO.FileSystem.Watcher.dll -\System.IO.FileSystem.Watcher.dll -\System.IO.FileSystem.Watcher.dll -\System.IO.FileSystem.Watcher.dll -\System.IO.FileSystem.Watcher.dll -\System.IO.IsolatedStorage.dll -\System.IO.IsolatedStorage.dll -\System.IO.IsolatedStorage.dll -\System.IO.IsolatedStorage.dll -\System.IO.IsolatedStorage.dll -\System.IO.IsolatedStorage.dll -\System.IO.MemoryMappedFiles.dll -\System.IO.MemoryMappedFiles.dll -\System.IO.MemoryMappedFiles.dll -\System.IO.MemoryMappedFiles.dll -\System.IO.MemoryMappedFiles.dll -\System.IO.MemoryMappedFiles.dll -\System.IO.Packaging.dll -\System.IO.Pipes.AccessControl.dll -\System.IO.Pipes.AccessControl.dll -\System.IO.Pipes.AccessControl.dll -\System.IO.Pipes.AccessControl.dll -\System.IO.Pipes.AccessControl.dll -\System.IO.Pipes.AccessControl.dll -\System.IO.Pipes.dll -\System.IO.Pipes.dll -\System.IO.Pipes.dll -\System.IO.Pipes.dll -\System.IO.Pipes.dll -\System.IO.Pipes.dll -\System.IO.UnmanagedMemoryStream.dll -\System.IO.UnmanagedMemoryStream.dll -\System.IO.UnmanagedMemoryStream.dll -\System.IO.UnmanagedMemoryStream.dll -\System.IO.UnmanagedMemoryStream.dll -\System.IO.UnmanagedMemoryStream.dll -\System.Linq.dll -\System.Linq.dll -\System.Linq.dll -\System.Linq.dll -\System.Linq.dll -\System.Linq.dll -\System.Linq.Expressions.dll -\System.Linq.Expressions.dll -\System.Linq.Expressions.dll -\System.Linq.Expressions.dll -\System.Linq.Expressions.dll -\System.Linq.Expressions.dll -\System.Linq.Parallel.dll -\System.Linq.Parallel.dll -\System.Linq.Parallel.dll -\System.Linq.Parallel.dll -\System.Linq.Parallel.dll -\System.Linq.Parallel.dll -\System.Linq.Queryable.dll -\System.Linq.Queryable.dll -\System.Linq.Queryable.dll -\System.Linq.Queryable.dll -\System.Linq.Queryable.dll -\System.Linq.Queryable.dll -\System.Memory.dll -\System.Memory.dll -\System.Memory.dll -\System.Memory.dll -\System.Memory.dll -\System.Memory.dll -\System.Native.a -\System.Native.a -\System.Native.a -\System.Native.a -\System.Native.dylib -\System.Native.dylib -\System.Native.so -\System.Native.so -\System.Net.dll -\System.Net.dll -\System.Net.dll -\System.Net.dll -\System.Net.dll -\System.Net.dll -\System.Net.Http.dll -\System.Net.Http.dll -\System.Net.Http.dll -\System.Net.Http.dll -\System.Net.Http.dll -\System.Net.Http.dll -\System.Net.Http.dll -\System.Net.Http.Extensions.dll -\System.Net.Http.Native.a -\System.Net.Http.Native.a -\System.Net.Http.Native.a -\System.Net.Http.Native.a -\System.Net.Http.Native.dylib -\System.Net.Http.Native.dylib -\System.Net.Http.Native.so -\System.Net.Http.Native.so -\System.Net.Http.Primitives.dll -\System.Net.Http.Primitives.dll -\System.Net.Http.WebRequest.dll -\System.Net.HttpListener.dll -\System.Net.HttpListener.dll -\System.Net.HttpListener.dll -\System.Net.HttpListener.dll -\System.Net.HttpListener.dll -\System.Net.HttpListener.dll -\System.Net.Mail.dll -\System.Net.Mail.dll -\System.Net.Mail.dll -\System.Net.Mail.dll -\System.Net.Mail.dll -\System.Net.Mail.dll -\System.Net.NameResolution.dll -\System.Net.NameResolution.dll -\System.Net.NameResolution.dll -\System.Net.NameResolution.dll -\System.Net.NameResolution.dll -\System.Net.NameResolution.dll -\System.Net.NetworkInformation.dll -\System.Net.NetworkInformation.dll -\System.Net.NetworkInformation.dll -\System.Net.NetworkInformation.dll -\System.Net.NetworkInformation.dll -\System.Net.NetworkInformation.dll -\System.Net.Ping.dll -\System.Net.Ping.dll -\System.Net.Ping.dll -\System.Net.Ping.dll -\System.Net.Ping.dll -\System.Net.Ping.dll -\System.Net.Primitives.dll -\System.Net.Primitives.dll -\System.Net.Primitives.dll -\System.Net.Primitives.dll -\System.Net.Primitives.dll -\System.Net.Primitives.dll -\System.Net.Requests.dll -\System.Net.Requests.dll -\System.Net.Requests.dll -\System.Net.Requests.dll -\System.Net.Requests.dll -\System.Net.Requests.dll -\System.Net.Security.dll -\System.Net.Security.dll -\System.Net.Security.dll -\System.Net.Security.dll -\System.Net.Security.dll -\System.Net.Security.dll -\System.Net.Security.Native.a -\System.Net.Security.Native.a -\System.Net.Security.Native.a -\System.Net.Security.Native.a -\System.Net.Security.Native.dylib -\System.Net.Security.Native.dylib -\System.Net.Security.Native.so -\System.Net.Security.Native.so -\System.Net.ServicePoint.dll -\System.Net.ServicePoint.dll -\System.Net.ServicePoint.dll -\System.Net.ServicePoint.dll -\System.Net.ServicePoint.dll -\System.Net.ServicePoint.dll -\System.Net.Sockets.dll -\System.Net.Sockets.dll -\System.Net.Sockets.dll -\System.Net.Sockets.dll -\System.Net.Sockets.dll -\System.Net.Sockets.dll -\System.Net.WebClient.dll -\System.Net.WebClient.dll -\System.Net.WebClient.dll -\System.Net.WebClient.dll -\System.Net.WebClient.dll -\System.Net.WebClient.dll -\System.Net.WebHeaderCollection.dll -\System.Net.WebHeaderCollection.dll -\System.Net.WebHeaderCollection.dll -\System.Net.WebHeaderCollection.dll -\System.Net.WebHeaderCollection.dll -\System.Net.WebHeaderCollection.dll -\System.Net.WebProxy.dll -\System.Net.WebProxy.dll -\System.Net.WebProxy.dll -\System.Net.WebProxy.dll -\System.Net.WebProxy.dll -\System.Net.WebProxy.dll -\System.Net.WebSockets.Client.dll -\System.Net.WebSockets.Client.dll -\System.Net.WebSockets.Client.dll -\System.Net.WebSockets.Client.dll -\System.Net.WebSockets.Client.dll -\System.Net.WebSockets.Client.dll -\System.Net.WebSockets.dll -\System.Net.WebSockets.dll -\System.Net.WebSockets.dll -\System.Net.WebSockets.dll -\System.Net.WebSockets.dll -\System.Net.WebSockets.dll -\System.Numerics.dll -\System.Numerics.dll -\System.Numerics.dll -\System.Numerics.dll -\System.Numerics.dll -\System.Numerics.dll -\System.Numerics.Vectors.dll -\System.Numerics.Vectors.dll -\System.Numerics.Vectors.dll -\System.Numerics.Vectors.dll -\System.Numerics.Vectors.dll -\System.Numerics.Vectors.dll -\System.ObjectModel.dll -\System.ObjectModel.dll -\System.ObjectModel.dll -\System.ObjectModel.dll -\System.ObjectModel.dll -\System.ObjectModel.dll -\System.Private.CoreLib.dll -\System.Private.CoreLib.dll -\System.Private.CoreLib.dll -\System.Private.CoreLib.dll -\System.Private.CoreLib.dll -\System.Private.CoreLib.dll -\System.Private.DataContractSerialization.dll -\System.Private.DataContractSerialization.dll -\System.Private.DataContractSerialization.dll -\System.Private.DataContractSerialization.dll -\System.Private.DataContractSerialization.dll -\System.Private.DataContractSerialization.dll -\System.Private.Uri.dll -\System.Private.Uri.dll -\System.Private.Uri.dll -\System.Private.Uri.dll -\System.Private.Uri.dll -\System.Private.Uri.dll -\System.Private.Xml.dll -\System.Private.Xml.dll -\System.Private.Xml.dll -\System.Private.Xml.dll -\System.Private.Xml.dll -\System.Private.Xml.dll -\System.Private.Xml.Linq.dll -\System.Private.Xml.Linq.dll -\System.Private.Xml.Linq.dll -\System.Private.Xml.Linq.dll -\System.Private.Xml.Linq.dll -\System.Private.Xml.Linq.dll -\System.Reflection.DispatchProxy.dll -\System.Reflection.DispatchProxy.dll -\System.Reflection.DispatchProxy.dll -\System.Reflection.DispatchProxy.dll -\System.Reflection.DispatchProxy.dll -\System.Reflection.DispatchProxy.dll -\System.Reflection.dll -\System.Reflection.dll -\System.Reflection.dll -\System.Reflection.dll -\System.Reflection.dll -\System.Reflection.dll -\System.Reflection.Emit.dll -\System.Reflection.Emit.dll -\System.Reflection.Emit.dll -\System.Reflection.Emit.dll -\System.Reflection.Emit.dll -\System.Reflection.Emit.dll -\System.Reflection.Emit.ILGeneration.dll -\System.Reflection.Emit.ILGeneration.dll -\System.Reflection.Emit.ILGeneration.dll -\System.Reflection.Emit.ILGeneration.dll -\System.Reflection.Emit.ILGeneration.dll -\System.Reflection.Emit.ILGeneration.dll -\System.Reflection.Emit.Lightweight.dll -\System.Reflection.Emit.Lightweight.dll -\System.Reflection.Emit.Lightweight.dll -\System.Reflection.Emit.Lightweight.dll -\System.Reflection.Emit.Lightweight.dll -\System.Reflection.Emit.Lightweight.dll -\System.Reflection.Extensions.dll -\System.Reflection.Extensions.dll -\System.Reflection.Extensions.dll -\System.Reflection.Extensions.dll -\System.Reflection.Extensions.dll -\System.Reflection.Extensions.dll -\System.Reflection.Metadata.dll -\System.Reflection.Metadata.dll -\System.Reflection.Metadata.dll -\System.Reflection.Metadata.dll -\System.Reflection.Metadata.dll -\System.Reflection.Metadata.dll -\System.Reflection.Primitives.dll -\System.Reflection.Primitives.dll -\System.Reflection.Primitives.dll -\System.Reflection.Primitives.dll -\System.Reflection.Primitives.dll -\System.Reflection.Primitives.dll -\System.Reflection.TypeExtensions.dll -\System.Reflection.TypeExtensions.dll -\System.Reflection.TypeExtensions.dll -\System.Reflection.TypeExtensions.dll -\System.Reflection.TypeExtensions.dll -\System.Reflection.TypeExtensions.dll -\System.Resources.Reader.dll -\System.Resources.Reader.dll -\System.Resources.Reader.dll -\System.Resources.Reader.dll -\System.Resources.Reader.dll -\System.Resources.Reader.dll -\System.Resources.ResourceManager.dll -\System.Resources.ResourceManager.dll -\System.Resources.ResourceManager.dll -\System.Resources.ResourceManager.dll -\System.Resources.ResourceManager.dll -\System.Resources.ResourceManager.dll -\System.Resources.Writer.dll -\System.Resources.Writer.dll -\System.Resources.Writer.dll -\System.Resources.Writer.dll -\System.Resources.Writer.dll -\System.Resources.Writer.dll -\System.Runtime.CompilerServices.Unsafe.dll -\System.Runtime.CompilerServices.Unsafe.dll -\System.Runtime.CompilerServices.Unsafe.dll -\System.Runtime.CompilerServices.Unsafe.dll -\System.Runtime.CompilerServices.VisualC.dll -\System.Runtime.CompilerServices.VisualC.dll -\System.Runtime.CompilerServices.VisualC.dll -\System.Runtime.CompilerServices.VisualC.dll -\System.Runtime.CompilerServices.VisualC.dll -\System.Runtime.CompilerServices.VisualC.dll -\System.Runtime.dll -\System.Runtime.dll -\System.Runtime.dll -\System.Runtime.dll -\System.Runtime.dll -\System.Runtime.dll -\System.Runtime.dll -\System.Runtime.Extensions.dll -\System.Runtime.Extensions.dll -\System.Runtime.Extensions.dll -\System.Runtime.Extensions.dll -\System.Runtime.Extensions.dll -\System.Runtime.Extensions.dll -\System.Runtime.Handles.dll -\System.Runtime.Handles.dll -\System.Runtime.Handles.dll -\System.Runtime.Handles.dll -\System.Runtime.Handles.dll -\System.Runtime.Handles.dll -\System.Runtime.InteropServices.dll -\System.Runtime.InteropServices.dll -\System.Runtime.InteropServices.dll -\System.Runtime.InteropServices.dll -\System.Runtime.InteropServices.dll -\System.Runtime.InteropServices.dll -\System.Runtime.InteropServices.RuntimeInformation.dll -\System.Runtime.InteropServices.RuntimeInformation.dll -\System.Runtime.InteropServices.RuntimeInformation.dll -\System.Runtime.InteropServices.RuntimeInformation.dll -\System.Runtime.InteropServices.RuntimeInformation.dll -\System.Runtime.InteropServices.RuntimeInformation.dll -\System.Runtime.InteropServices.WindowsRuntime.dll -\System.Runtime.InteropServices.WindowsRuntime.dll -\System.Runtime.InteropServices.WindowsRuntime.dll -\System.Runtime.InteropServices.WindowsRuntime.dll -\System.Runtime.InteropServices.WindowsRuntime.dll -\System.Runtime.InteropServices.WindowsRuntime.dll -\System.Runtime.Intrinsics.dll -\System.Runtime.Intrinsics.dll -\System.Runtime.Intrinsics.dll -\System.Runtime.Loader.dll -\System.Runtime.Loader.dll -\System.Runtime.Loader.dll -\System.Runtime.Loader.dll -\System.Runtime.Loader.dll -\System.Runtime.Loader.dll -\System.Runtime.Numerics.dll -\System.Runtime.Numerics.dll -\System.Runtime.Numerics.dll -\System.Runtime.Numerics.dll -\System.Runtime.Numerics.dll -\System.Runtime.Numerics.dll -\System.Runtime.Serialization.dll -\System.Runtime.Serialization.dll -\System.Runtime.Serialization.dll -\System.Runtime.Serialization.dll -\System.Runtime.Serialization.dll -\System.Runtime.Serialization.dll -\System.Runtime.Serialization.Formatters.dll -\System.Runtime.Serialization.Formatters.dll -\System.Runtime.Serialization.Formatters.dll -\System.Runtime.Serialization.Formatters.dll -\System.Runtime.Serialization.Formatters.dll -\System.Runtime.Serialization.Formatters.dll -\System.Runtime.Serialization.Json.dll -\System.Runtime.Serialization.Json.dll -\System.Runtime.Serialization.Json.dll -\System.Runtime.Serialization.Json.dll -\System.Runtime.Serialization.Json.dll -\System.Runtime.Serialization.Json.dll -\System.Runtime.Serialization.Primitives.dll -\System.Runtime.Serialization.Primitives.dll -\System.Runtime.Serialization.Primitives.dll -\System.Runtime.Serialization.Primitives.dll -\System.Runtime.Serialization.Primitives.dll -\System.Runtime.Serialization.Primitives.dll -\System.Runtime.Serialization.Xml.dll -\System.Runtime.Serialization.Xml.dll -\System.Runtime.Serialization.Xml.dll -\System.Runtime.Serialization.Xml.dll -\System.Runtime.Serialization.Xml.dll -\System.Runtime.Serialization.Xml.dll -\System.Runtime.WindowsRuntime.dll -\System.Runtime.WindowsRuntime.dll -\System.Runtime.WindowsRuntime.UI.Xaml.dll -\System.Runtime.WindowsRuntime.UI.Xaml.dll -\System.Runtime.WindowsRuntime.UI.Xaml.dll -\System.Security.AccessControl.dll -\System.Security.AccessControl.dll -\System.Security.AccessControl.dll -\System.Security.AccessControl.dll -\System.Security.AccessControl.dll -\System.Security.AccessControl.dll -\System.Security.Claims.dll -\System.Security.Claims.dll -\System.Security.Claims.dll -\System.Security.Claims.dll -\System.Security.Claims.dll -\System.Security.Claims.dll -\System.Security.Cryptography.Algorithms.dll -\System.Security.Cryptography.Algorithms.dll -\System.Security.Cryptography.Algorithms.dll -\System.Security.Cryptography.Algorithms.dll -\System.Security.Cryptography.Algorithms.dll -\System.Security.Cryptography.Algorithms.dll -\System.Security.Cryptography.Cng.dll -\System.Security.Cryptography.Cng.dll -\System.Security.Cryptography.Cng.dll -\System.Security.Cryptography.Cng.dll -\System.Security.Cryptography.Cng.dll -\System.Security.Cryptography.Cng.dll -\System.Security.Cryptography.Csp.dll -\System.Security.Cryptography.Csp.dll -\System.Security.Cryptography.Csp.dll -\System.Security.Cryptography.Csp.dll -\System.Security.Cryptography.Csp.dll -\System.Security.Cryptography.Csp.dll -\System.Security.Cryptography.Encoding.dll -\System.Security.Cryptography.Encoding.dll -\System.Security.Cryptography.Encoding.dll -\System.Security.Cryptography.Encoding.dll -\System.Security.Cryptography.Encoding.dll -\System.Security.Cryptography.Encoding.dll -\System.Security.Cryptography.Native.Apple.a -\System.Security.Cryptography.Native.Apple.a -\System.Security.Cryptography.Native.Apple.dylib -\System.Security.Cryptography.Native.Apple.dylib -\System.Security.Cryptography.Native.OpenSsl.a -\System.Security.Cryptography.Native.OpenSsl.a -\System.Security.Cryptography.Native.OpenSsl.a -\System.Security.Cryptography.Native.OpenSsl.a -\System.Security.Cryptography.Native.OpenSsl.dylib -\System.Security.Cryptography.Native.OpenSsl.dylib -\System.Security.Cryptography.Native.OpenSsl.so -\System.Security.Cryptography.Native.OpenSsl.so -\System.Security.Cryptography.OpenSsl.dll -\System.Security.Cryptography.OpenSsl.dll -\System.Security.Cryptography.OpenSsl.dll -\System.Security.Cryptography.OpenSsl.dll -\System.Security.Cryptography.OpenSsl.dll -\System.Security.Cryptography.OpenSsl.dll -\System.Security.Cryptography.Primitives.dll -\System.Security.Cryptography.Primitives.dll -\System.Security.Cryptography.Primitives.dll -\System.Security.Cryptography.Primitives.dll -\System.Security.Cryptography.Primitives.dll -\System.Security.Cryptography.Primitives.dll -\System.Security.Cryptography.ProtectedData.dll -\System.Security.Cryptography.ProtectedData.dll -\System.Security.Cryptography.X509Certificates.dll -\System.Security.Cryptography.X509Certificates.dll -\System.Security.Cryptography.X509Certificates.dll -\System.Security.Cryptography.X509Certificates.dll -\System.Security.Cryptography.X509Certificates.dll -\System.Security.Cryptography.X509Certificates.dll -\System.Security.dll -\System.Security.dll -\System.Security.dll -\System.Security.dll -\System.Security.dll -\System.Security.dll -\System.Security.Principal.dll -\System.Security.Principal.dll -\System.Security.Principal.dll -\System.Security.Principal.dll -\System.Security.Principal.dll -\System.Security.Principal.dll -\System.Security.Principal.Windows.dll -\System.Security.Principal.Windows.dll -\System.Security.Principal.Windows.dll -\System.Security.Principal.Windows.dll -\System.Security.Principal.Windows.dll -\System.Security.Principal.Windows.dll -\System.Security.SecureString.dll -\System.Security.SecureString.dll -\System.Security.SecureString.dll -\System.Security.SecureString.dll -\System.Security.SecureString.dll -\System.Security.SecureString.dll -\System.ServiceModel.Web.dll -\System.ServiceModel.Web.dll -\System.ServiceModel.Web.dll -\System.ServiceModel.Web.dll -\System.ServiceModel.Web.dll -\System.ServiceModel.Web.dll -\System.ServiceProcess.dll -\System.ServiceProcess.dll -\System.ServiceProcess.dll -\System.ServiceProcess.dll -\System.ServiceProcess.dll -\System.ServiceProcess.dll -\System.Spatial.dll -\System.Text.Encoding.CodePages.dll -\System.Text.Encoding.CodePages.dll -\System.Text.Encoding.CodePages.dll -\System.Text.Encoding.CodePages.dll -\System.Text.Encoding.CodePages.dll -\System.Text.Encoding.dll -\System.Text.Encoding.dll -\System.Text.Encoding.dll -\System.Text.Encoding.dll -\System.Text.Encoding.dll -\System.Text.Encoding.dll -\System.Text.Encoding.Extensions.dll -\System.Text.Encoding.Extensions.dll -\System.Text.Encoding.Extensions.dll -\System.Text.Encoding.Extensions.dll -\System.Text.Encoding.Extensions.dll -\System.Text.Encoding.Extensions.dll -\System.Text.Encodings.Web.dll -\System.Text.Encodings.Web.dll -\System.Text.Encodings.Web.dll -\System.Text.Json.dll -\System.Text.Json.dll -\System.Text.Json.dll -\System.Text.RegularExpressions.dll -\System.Text.RegularExpressions.dll -\System.Text.RegularExpressions.dll -\System.Text.RegularExpressions.dll -\System.Text.RegularExpressions.dll -\System.Text.RegularExpressions.dll -\System.Threading.AccessControl.dll -\System.Threading.AccessControl.dll -\System.Threading.Channels.dll -\System.Threading.Channels.dll -\System.Threading.Channels.dll -\System.Threading.dll -\System.Threading.dll -\System.Threading.dll -\System.Threading.dll -\System.Threading.dll -\System.Threading.dll -\System.Threading.Overlapped.dll -\System.Threading.Overlapped.dll -\System.Threading.Overlapped.dll -\System.Threading.Overlapped.dll -\System.Threading.Overlapped.dll -\System.Threading.Overlapped.dll -\System.Threading.Tasks.Dataflow.dll -\System.Threading.Tasks.Dataflow.dll -\System.Threading.Tasks.Dataflow.dll -\System.Threading.Tasks.Dataflow.dll -\System.Threading.Tasks.Dataflow.dll -\System.Threading.Tasks.Dataflow.dll -\System.Threading.Tasks.dll -\System.Threading.Tasks.dll -\System.Threading.Tasks.dll -\System.Threading.Tasks.dll -\System.Threading.Tasks.dll -\System.Threading.Tasks.dll -\System.Threading.Tasks.dll -\System.Threading.Tasks.Extensions.dll -\System.Threading.Tasks.Extensions.dll -\System.Threading.Tasks.Extensions.dll -\System.Threading.Tasks.Extensions.dll -\System.Threading.Tasks.Extensions.dll -\System.Threading.Tasks.Extensions.dll -\System.Threading.Tasks.Parallel.dll -\System.Threading.Tasks.Parallel.dll -\System.Threading.Tasks.Parallel.dll -\System.Threading.Tasks.Parallel.dll -\System.Threading.Tasks.Parallel.dll -\System.Threading.Tasks.Parallel.dll -\System.Threading.Thread.dll -\System.Threading.Thread.dll -\System.Threading.Thread.dll -\System.Threading.Thread.dll -\System.Threading.Thread.dll -\System.Threading.Thread.dll -\System.Threading.ThreadPool.dll -\System.Threading.ThreadPool.dll -\System.Threading.ThreadPool.dll -\System.Threading.ThreadPool.dll -\System.Threading.ThreadPool.dll -\System.Threading.ThreadPool.dll -\System.Threading.Timer.dll -\System.Threading.Timer.dll -\System.Threading.Timer.dll -\System.Threading.Timer.dll -\System.Threading.Timer.dll -\System.Threading.Timer.dll -\System.Transactions.dll -\System.Transactions.dll -\System.Transactions.dll -\System.Transactions.dll -\System.Transactions.dll -\System.Transactions.dll -\System.Transactions.Local.dll -\System.Transactions.Local.dll -\System.Transactions.Local.dll -\System.Transactions.Local.dll -\System.Transactions.Local.dll -\System.Transactions.Local.dll -\System.ValueTuple.dll -\System.ValueTuple.dll -\System.ValueTuple.dll -\System.ValueTuple.dll -\System.ValueTuple.dll -\System.ValueTuple.dll -\System.ValueTuple.dll -\System.ValueTuple.dll -\System.Web.dll -\System.Web.dll -\System.Web.dll -\System.Web.dll -\System.Web.dll -\System.Web.dll -\System.Web.HttpUtility.dll -\System.Web.HttpUtility.dll -\System.Web.HttpUtility.dll -\System.Web.HttpUtility.dll -\System.Web.HttpUtility.dll -\System.Web.HttpUtility.dll -\System.Windows.dll -\System.Windows.dll -\System.Windows.dll -\System.Windows.dll -\System.Windows.dll -\System.Windows.dll -\System.Xml.dll -\System.Xml.dll -\System.Xml.dll -\System.Xml.dll -\System.Xml.dll -\System.Xml.dll -\System.Xml.Linq.dll -\System.Xml.Linq.dll -\System.Xml.Linq.dll -\System.Xml.Linq.dll -\System.Xml.Linq.dll -\System.Xml.Linq.dll -\System.Xml.ReaderWriter.dll -\System.Xml.ReaderWriter.dll -\System.Xml.ReaderWriter.dll -\System.Xml.ReaderWriter.dll -\System.Xml.ReaderWriter.dll -\System.Xml.ReaderWriter.dll -\System.Xml.Serialization.dll -\System.Xml.Serialization.dll -\System.Xml.Serialization.dll -\System.Xml.Serialization.dll -\System.Xml.Serialization.dll -\System.Xml.Serialization.dll -\System.Xml.XDocument.dll -\System.Xml.XDocument.dll -\System.Xml.XDocument.dll -\System.Xml.XDocument.dll -\System.Xml.XDocument.dll -\System.Xml.XDocument.dll -\System.Xml.XmlDocument.dll -\System.Xml.XmlDocument.dll -\System.Xml.XmlDocument.dll -\System.Xml.XmlDocument.dll -\System.Xml.XmlDocument.dll -\System.Xml.XmlDocument.dll -\System.Xml.XmlSerializer.dll -\System.Xml.XmlSerializer.dll -\System.Xml.XmlSerializer.dll -\System.Xml.XmlSerializer.dll -\System.Xml.XmlSerializer.dll -\System.Xml.XmlSerializer.dll -\System.Xml.XPath.dll -\System.Xml.XPath.dll -\System.Xml.XPath.dll -\System.Xml.XPath.dll -\System.Xml.XPath.dll -\System.Xml.XPath.dll -\System.Xml.XPath.XDocument.dll -\System.Xml.XPath.XDocument.dll -\System.Xml.XPath.XDocument.dll -\System.Xml.XPath.XDocument.dll -\System.Xml.XPath.XDocument.dll -\System.Xml.XPath.XDocument.dll -\System.Xml.XPath.XmlDocument.dll -\ucrtbase.dll -\WindowsBase.dll -\WindowsBase.dll -\WindowsBase.dll -\WindowsBase.dll -\WindowsBase.dll -\WindowsBase.dll -\YamlDotNet.dll -\YamlDotNet.dll -\YamlDotNet.dll -\zh-Hans/Microsoft.Data.Edm.resources.dll -\zh-Hans/Microsoft.Data.OData.resources.dll -\zh-Hans/Microsoft.Data.Services.Client.resources.dll -\zh-Hans/System.Spatial.resources.dll -\zh-Hant/Microsoft.Data.Edm.resources.dll -\zh-Hant/Microsoft.Data.OData.resources.dll -\zh-Hant/Microsoft.Data.Services.Client.resources.dll -\zh-Hant/System.Spatial.resources.dll +/AlphaFS.dll +/AlphaFS.dll +/api-ms-win-core-console-l1-1-0.dll +/api-ms-win-core-datetime-l1-1-0.dll +/api-ms-win-core-debug-l1-1-0.dll +/api-ms-win-core-errorhandling-l1-1-0.dll +/api-ms-win-core-file-l1-1-0.dll +/api-ms-win-core-file-l1-2-0.dll +/api-ms-win-core-file-l2-1-0.dll +/api-ms-win-core-handle-l1-1-0.dll +/api-ms-win-core-heap-l1-1-0.dll +/api-ms-win-core-interlocked-l1-1-0.dll +/api-ms-win-core-libraryloader-l1-1-0.dll +/api-ms-win-core-localization-l1-2-0.dll +/api-ms-win-core-memory-l1-1-0.dll +/api-ms-win-core-namedpipe-l1-1-0.dll +/api-ms-win-core-processenvironment-l1-1-0.dll +/api-ms-win-core-processthreads-l1-1-0.dll +/api-ms-win-core-processthreads-l1-1-1.dll +/api-ms-win-core-profile-l1-1-0.dll +/api-ms-win-core-rtlsupport-l1-1-0.dll +/api-ms-win-core-string-l1-1-0.dll +/api-ms-win-core-synch-l1-1-0.dll +/api-ms-win-core-synch-l1-2-0.dll +/api-ms-win-core-sysinfo-l1-1-0.dll +/api-ms-win-core-timezone-l1-1-0.dll +/api-ms-win-core-util-l1-1-0.dll +/api-ms-win-crt-conio-l1-1-0.dll +/api-ms-win-crt-convert-l1-1-0.dll +/api-ms-win-crt-environment-l1-1-0.dll +/api-ms-win-crt-filesystem-l1-1-0.dll +/api-ms-win-crt-heap-l1-1-0.dll +/api-ms-win-crt-locale-l1-1-0.dll +/api-ms-win-crt-math-l1-1-0.dll +/api-ms-win-crt-multibyte-l1-1-0.dll +/api-ms-win-crt-private-l1-1-0.dll +/api-ms-win-crt-process-l1-1-0.dll +/api-ms-win-crt-runtime-l1-1-0.dll +/api-ms-win-crt-stdio-l1-1-0.dll +/api-ms-win-crt-string-l1-1-0.dll +/api-ms-win-crt-time-l1-1-0.dll +/api-ms-win-crt-utility-l1-1-0.dll +/Autofac.dll +/Autofac.dll +/Autofac.dll +/AWSSDK.CloudFormation.dll +/AWSSDK.CloudFormation.dll +/AWSSDK.Core.dll +/AWSSDK.Core.dll +/AWSSDK.IdentityManagement.dll +/AWSSDK.IdentityManagement.dll +/AWSSDK.S3.dll +/AWSSDK.S3.dll +/AWSSDK.SecurityToken.dll +/AWSSDK.SecurityToken.dll +/BouncyCastle.Crypto.dll +/Calamari +/Calamari +/Calamari.Aws.dll +/Calamari.Aws.dll +/Calamari.Aws.dll +/Calamari.Aws.dll +/Calamari.Aws.dll.config +/Calamari.Aws.pdb +/Calamari.Aws.pdb +/Calamari.Azure.Accounts.dll +/Calamari.Azure.Accounts.dll +/Calamari.Azure.Accounts.dll +/Calamari.Azure.Accounts.dll +/Calamari.Azure.Accounts.pdb +/Calamari.Azure.CloudServices.dll +/Calamari.Azure.CloudServices.dll.config +/Calamari.Azure.CloudServices.pdb +/Calamari.Azure.dll +/Calamari.Azure.dll +/Calamari.Azure.dll +/Calamari.Azure.dll +/Calamari.Azure.dll.config +/Calamari.Azure.exe.manifest +/Calamari.Azure.pdb +/Calamari.Azure.pdb +/Calamari.Azure.ServiceFabric.dll +/Calamari.Azure.ServiceFabric.dll.config +/Calamari.Azure.ServiceFabric.pdb +/Calamari.Azure.WebApps.dll +/Calamari.Azure.WebApps.dll.config +/Calamari.Azure.WebApps.pdb +/Calamari.Cloud.nuspec +/Calamari.deps.json +/Calamari.deps.json +/Calamari.deps.json +/Calamari.dll +/Calamari.dll +/Calamari.dll +/Calamari.dll.config +/Calamari.exe +/Calamari.exe +/Calamari.exe +/Calamari.exe.config +/Calamari.exe.config +/Calamari.exe.manifest +/Calamari.linux-x64.nuspec +/Calamari.nuspec +/Calamari.osx-x64.nuspec +/Calamari.pdb +/Calamari.pdb +/Calamari.pdb +/Calamari.runtimeconfig.json +/Calamari.Shared.dll +/Calamari.Shared.dll +/Calamari.Shared.dll +/Calamari.Shared.dll +/Calamari.Shared.dll +/Calamari.Shared.pdb +/Calamari.Shared.pdb +/Calamari.Shared.pdb +/Calamari.Terraform +/Calamari.Terraform +/Calamari.Terraform.deps.json +/Calamari.Terraform.deps.json +/Calamari.Terraform.deps.json +/Calamari.Terraform.dll +/Calamari.Terraform.dll +/Calamari.Terraform.dll +/Calamari.Terraform.dll +/Calamari.Terraform.dll +/Calamari.Terraform.dll +/Calamari.Terraform.dll +/Calamari.Terraform.exe +/Calamari.Terraform.exe +/Calamari.Terraform.exe.config +/Calamari.Terraform.pdb +/Calamari.Terraform.pdb +/Calamari.Terraform.pdb +/Calamari.Terraform.pdb +/Calamari.Terraform.runtimeconfig.json +/Calamari.win-x64.nuspec +/clrcompression.dll +/clrcompression.dll +/clretwrc.dll +/clretwrc.dll +/clrjit.dll +/clrjit.dll +/coreclr.dll +/coreclr.dll +/createdump +/createdump +/dbgshim.dll +/dbgshim.dll +/de/Microsoft.Data.Edm.resources.dll +/de/Microsoft.Data.OData.resources.dll +/de/Microsoft.Data.Services.Client.resources.dll +/de/System.Spatial.resources.dll +/es/Microsoft.Data.Edm.resources.dll +/es/Microsoft.Data.OData.resources.dll +/es/Microsoft.Data.Services.Client.resources.dll +/es/System.Spatial.resources.dll +/fr/Microsoft.Data.Edm.resources.dll +/fr/Microsoft.Data.OData.resources.dll +/fr/Microsoft.Data.Services.Client.resources.dll +/fr/System.Spatial.resources.dll +/FSharp/fsc.exe +/FSharp/fsc.exe.config +/FSharp/fsc.xml +/FSharp/FSharp.Build.dll +/FSharp/FSharp.Build.xml +/FSharp/FSharp.Compiler.dll +/FSharp/FSharp.Compiler.Interactive.Settings.dll +/FSharp/FSharp.Compiler.Interactive.Settings.xml +/FSharp/FSharp.Compiler.Server.Shared.dll +/FSharp/FSharp.Compiler.Server.Shared.xml +/FSharp/FSharp.Compiler.xml +/FSharp/FSharp.Core.dll +/FSharp/FSharp.Core.optdata +/FSharp/FSharp.Core.sigdata +/FSharp/FSharp.Core.xml +/FSharp/fsi.exe +/FSharp/fsi.exe.config +/FSharp/fsi.xml +/FSharp/fsiAnyCpu.exe +/FSharp/fsiAnyCpu.exe.config +/FSharp/fsiAnyCpu.xml +/FSharp/Microsoft.Build.dll +/FSharp/Microsoft.Build.Engine.dll +/FSharp/Microsoft.Build.Framework.dll +/FSharp/Microsoft.Build.Tasks.v12.0.dll +/FSharp/Microsoft.Build.Utilities.v12.0.dll +/FSharp/Microsoft.FSharp.Targets +/hostfxr.dll +/hostfxr.dll +/hostpolicy.dll +/hostpolicy.dll +/Hyak.Common.dll +/it/Microsoft.Data.Edm.resources.dll +/it/Microsoft.Data.OData.resources.dll +/it/Microsoft.Data.Services.Client.resources.dll +/it/System.Spatial.resources.dll +/ja/Microsoft.Data.Edm.resources.dll +/ja/Microsoft.Data.OData.resources.dll +/ja/Microsoft.Data.Services.Client.resources.dll +/ja/System.Spatial.resources.dll +/javatest.jar +/ko/Microsoft.Data.Edm.resources.dll +/ko/Microsoft.Data.OData.resources.dll +/ko/Microsoft.Data.Services.Client.resources.dll +/ko/System.Spatial.resources.dll +/libclrjit.dylib +/libclrjit.dylib +/libclrjit.so +/libclrjit.so +/libcoreclr.dylib +/libcoreclr.dylib +/libcoreclr.so +/libcoreclr.so +/libcoreclrtraceptprovider.so +/libcoreclrtraceptprovider.so +/libdbgshim.dylib +/libdbgshim.dylib +/libdbgshim.so +/libdbgshim.so +/libhostfxr.dylib +/libhostfxr.dylib +/libhostfxr.so +/libhostfxr.so +/libhostpolicy.dylib +/libhostpolicy.dylib +/libhostpolicy.so +/libhostpolicy.so +/libmscordaccore.dylib +/libmscordaccore.dylib +/libmscordaccore.so +/libmscordaccore.so +/libmscordbi.dylib +/libmscordbi.dylib +/libmscordbi.so +/libmscordbi.so +/libsos.dylib +/libsos.so +/libsosplugin.so +/Markdig.dll +/Markdig.dll +/Markdown.dll +/MarkdownSharp.dll +/Microsoft.Azure.Common.dll +/Microsoft.Azure.Management.ResourceManager.dll +/Microsoft.Azure.Management.ResourceManager.dll +/Microsoft.Azure.Management.Websites.dll +/Microsoft.CSharp.dll +/Microsoft.CSharp.dll +/Microsoft.CSharp.dll +/Microsoft.CSharp.dll +/Microsoft.CSharp.dll +/Microsoft.CSharp.dll +/Microsoft.Data.Edm.dll +/Microsoft.Data.OData.dll +/Microsoft.Data.Services.Client.dll +/Microsoft.DiaSymReader.Native.amd64.dll +/Microsoft.Extensions.Caching.Abstractions.dll +/Microsoft.Extensions.Caching.Memory.dll +/Microsoft.Extensions.CommandLineUtils.dll +/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/Microsoft.Extensions.Options.dll +/Microsoft.Extensions.Primitives.dll +/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +/Microsoft.IdentityModel.Clients.ActiveDirectory.dll +/Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll +/Microsoft.Rest.ClientRuntime.Azure.dll +/Microsoft.Rest.ClientRuntime.Azure.dll +/Microsoft.Rest.ClientRuntime.dll +/Microsoft.Rest.ClientRuntime.dll +/Microsoft.ServiceFabric.Internal.dll +/Microsoft.ServiceFabric.Internal.Strings.dll +/Microsoft.Threading.Tasks.dll +/Microsoft.Threading.Tasks.Extensions.Desktop.dll +/Microsoft.Threading.Tasks.Extensions.dll +/Microsoft.VisualBasic.Core.dll +/Microsoft.VisualBasic.Core.dll +/Microsoft.VisualBasic.Core.dll +/Microsoft.VisualBasic.dll +/Microsoft.VisualBasic.dll +/Microsoft.VisualBasic.dll +/Microsoft.VisualBasic.dll +/Microsoft.VisualBasic.dll +/Microsoft.VisualBasic.dll +/Microsoft.Web.Administration.dll +/Microsoft.Web.Delegation.dll +/Microsoft.Web.Deployment.dll +/Microsoft.Web.Deployment.Tracing.dll +/Microsoft.Web.XmlTransform.dll +/Microsoft.Win32.Primitives.dll +/Microsoft.Win32.Primitives.dll +/Microsoft.Win32.Primitives.dll +/Microsoft.Win32.Primitives.dll +/Microsoft.Win32.Primitives.dll +/Microsoft.Win32.Primitives.dll +/Microsoft.Win32.Registry.dll +/Microsoft.Win32.Registry.dll +/Microsoft.Win32.Registry.dll +/Microsoft.Win32.Registry.dll +/Microsoft.Win32.Registry.dll +/Microsoft.Win32.Registry.dll +/Microsoft.WindowsAzure.Common.dll +/Microsoft.WindowsAzure.Common.NetFramework.dll +/Microsoft.WindowsAzure.Configuration.dll +/Microsoft.WindowsAzure.Management.Compute.dll +/Microsoft.WindowsAzure.Management.Storage.dll +/Microsoft.WindowsAzure.Management.WebSites.dll +/Microsoft.WindowsAzure.Packaging.dll +/Microsoft.WindowsAzure.ServiceModel.Common.dll +/Microsoft.WindowsAzure.Storage.dll +/mscordaccore_amd64_amd64_.dll +/mscordaccore_amd64_amd64_.dll +/mscordaccore.dll +/mscordaccore.dll +/mscordbi.dll +/mscordbi.dll +/mscorlib.dll +/mscorlib.dll +/mscorlib.dll +/mscorlib.dll +/mscorlib.dll +/mscorlib.dll +/mscorrc.debug.dll +/mscorrc.debug.dll +/mscorrc.dll +/mscorrc.dll +/netstandard.dll +/netstandard.dll +/netstandard.dll +/netstandard.dll +/netstandard.dll +/netstandard.dll +/Newtonsoft.Json.dll +/Newtonsoft.Json.dll +/Newtonsoft.Json.dll +/Newtonsoft.Json.dll +/Newtonsoft.Json.dll +/NuGet.Client.dll +/NuGet.Commands.dll +/NuGet.Common.dll +/NuGet.Configuration.dll +/NuGet.ContentModel.dll +/NuGet.Core.dll +/NuGet.DependencyResolver.Core.dll +/NuGet.DependencyResolver.dll +/NuGet.Frameworks.dll +/NuGet.LibraryModel.dll +/NuGet.Packaging.Core.dll +/NuGet.Packaging.Core.Types.dll +/NuGet.Packaging.dll +/NuGet.ProjectModel.dll +/NuGet.Protocol.Core.Types.dll +/NuGet.Protocol.Core.v3.dll +/NuGet.Repositories.dll +/NuGet.RuntimeModel.dll +/NuGet.Versioning.dll +/Octodiff.dll +/Octodiff.dll +/Octodiff.dll +/Octodiff.exe +/Octodiff.exe +/Octopus.CoreUtilities.dll +/Octopus.CoreUtilities.dll +/Octopus.CoreUtilities.dll +/Octopus.CoreUtilities.dll +/Octopus.CoreUtilities.dll +/Octopus.System.Xml.ReaderWriter.dll +/Octopus.System.Xml.ReaderWriter.dll +/Octopus.System.Xml.ReaderWriter.dll +/Octopus.Versioning.dll +/Octopus.Versioning.dll +/Octopus.Versioning.dll +/Octopus.Versioning.dll +/Octopus.Versioning.dll +/Octopus.Web.Xdt.dll +/Octopus.Web.Xdt.dll +/Octopus.Web.Xdt.dll +/Octostache.dll +/Octostache.dll +/Octostache.dll +/Octostache.dll +/Octostache.dll +/Polly.dll +/Polly.dll +/ru/Microsoft.Data.Edm.resources.dll +/ru/Microsoft.Data.OData.resources.dll +/ru/Microsoft.Data.Services.Client.resources.dll +/ru/System.Spatial.resources.dll +/ScriptCS/Autofac.dll +/ScriptCS/Autofac.Integration.Mef.dll +/ScriptCS/chocolateyInstall.ps1 +/ScriptCS/Common.Logging.dll +/ScriptCS/ICSharpCode.NRefactory.CSharp.dll +/ScriptCS/ICSharpCode.NRefactory.dll +/ScriptCS/Microsoft.CodeAnalysis.CSharp.dll +/ScriptCS/Microsoft.CodeAnalysis.Desktop.dll +/ScriptCS/Microsoft.CodeAnalysis.dll +/ScriptCS/Microsoft.CodeAnalysis.Scripting.CSharp.dll +/ScriptCS/Microsoft.CodeAnalysis.Scripting.dll +/ScriptCS/Microsoft.Web.XmlTransform.dll +/ScriptCS/Mono.Cecil.dll +/ScriptCS/Mono.CSharp.dll +/ScriptCS/Newtonsoft.Json.dll +/ScriptCS/NuGet.Core.dll +/ScriptCS/PowerArgs.dll +/ScriptCS/ScriptCs.Contracts.dll +/ScriptCS/ScriptCs.Core.dll +/ScriptCS/ScriptCs.Engine.Mono.dll +/ScriptCS/ScriptCs.Engine.Roslyn.dll +/ScriptCS/scriptcs.exe +/ScriptCS/scriptcs.exe.config +/ScriptCS/ScriptCs.Hosting.dll +/ScriptCS/System.Collections.Immutable.dll +/ScriptCS/System.Reflection.Metadata.dll +/SharpCompress.dll +/SharpCompress.dll +/SharpCompress.dll +/sos_amd64_amd64_.dll +/SOS_README.md +/SOS_README.md +/sos.dll +/SOS.NETCore.dll +/SOS.NETCore.dll +/SOS.NETCore.dll +/sosdocsunix.txt +/Sprache.dll +/Sprache.dll +/System.AppContext.dll +/System.AppContext.dll +/System.AppContext.dll +/System.AppContext.dll +/System.AppContext.dll +/System.AppContext.dll +/System.Buffers.dll +/System.Buffers.dll +/System.Buffers.dll +/System.Buffers.dll +/System.Buffers.dll +/System.Buffers.dll +/System.Collections.Concurrent.dll +/System.Collections.Concurrent.dll +/System.Collections.Concurrent.dll +/System.Collections.Concurrent.dll +/System.Collections.Concurrent.dll +/System.Collections.Concurrent.dll +/System.Collections.dll +/System.Collections.dll +/System.Collections.dll +/System.Collections.dll +/System.Collections.dll +/System.Collections.dll +/System.Collections.Immutable.dll +/System.Collections.Immutable.dll +/System.Collections.Immutable.dll +/System.Collections.Immutable.dll +/System.Collections.Immutable.dll +/System.Collections.Immutable.dll +/System.Collections.NonGeneric.dll +/System.Collections.NonGeneric.dll +/System.Collections.NonGeneric.dll +/System.Collections.NonGeneric.dll +/System.Collections.NonGeneric.dll +/System.Collections.NonGeneric.dll +/System.Collections.Specialized.dll +/System.Collections.Specialized.dll +/System.Collections.Specialized.dll +/System.Collections.Specialized.dll +/System.Collections.Specialized.dll +/System.Collections.Specialized.dll +/System.ComponentModel.Annotations.dll +/System.ComponentModel.Annotations.dll +/System.ComponentModel.Annotations.dll +/System.ComponentModel.Annotations.dll +/System.ComponentModel.Annotations.dll +/System.ComponentModel.Annotations.dll +/System.ComponentModel.DataAnnotations.dll +/System.ComponentModel.DataAnnotations.dll +/System.ComponentModel.DataAnnotations.dll +/System.ComponentModel.DataAnnotations.dll +/System.ComponentModel.DataAnnotations.dll +/System.ComponentModel.DataAnnotations.dll +/System.ComponentModel.dll +/System.ComponentModel.dll +/System.ComponentModel.dll +/System.ComponentModel.dll +/System.ComponentModel.dll +/System.ComponentModel.dll +/System.ComponentModel.EventBasedAsync.dll +/System.ComponentModel.EventBasedAsync.dll +/System.ComponentModel.EventBasedAsync.dll +/System.ComponentModel.EventBasedAsync.dll +/System.ComponentModel.EventBasedAsync.dll +/System.ComponentModel.EventBasedAsync.dll +/System.ComponentModel.Primitives.dll +/System.ComponentModel.Primitives.dll +/System.ComponentModel.Primitives.dll +/System.ComponentModel.Primitives.dll +/System.ComponentModel.Primitives.dll +/System.ComponentModel.Primitives.dll +/System.ComponentModel.Primitives.dll +/System.ComponentModel.TypeConverter.dll +/System.ComponentModel.TypeConverter.dll +/System.ComponentModel.TypeConverter.dll +/System.ComponentModel.TypeConverter.dll +/System.ComponentModel.TypeConverter.dll +/System.ComponentModel.TypeConverter.dll +/System.ComponentModel.TypeConverter.dll +/System.Configuration.dll +/System.Configuration.dll +/System.Configuration.dll +/System.Configuration.dll +/System.Configuration.dll +/System.Configuration.dll +/System.Console.dll +/System.Console.dll +/System.Console.dll +/System.Console.dll +/System.Console.dll +/System.Console.dll +/System.Core.dll +/System.Core.dll +/System.Core.dll +/System.Core.dll +/System.Core.dll +/System.Core.dll +/System.Data.Common.dll +/System.Data.Common.dll +/System.Data.Common.dll +/System.Data.Common.dll +/System.Data.Common.dll +/System.Data.Common.dll +/System.Data.DataSetExtensions.dll +/System.Data.DataSetExtensions.dll +/System.Data.DataSetExtensions.dll +/System.Data.dll +/System.Data.dll +/System.Data.dll +/System.Data.dll +/System.Data.dll +/System.Data.dll +/System.Diagnostics.Contracts.dll +/System.Diagnostics.Contracts.dll +/System.Diagnostics.Contracts.dll +/System.Diagnostics.Contracts.dll +/System.Diagnostics.Contracts.dll +/System.Diagnostics.Contracts.dll +/System.Diagnostics.Debug.dll +/System.Diagnostics.Debug.dll +/System.Diagnostics.Debug.dll +/System.Diagnostics.Debug.dll +/System.Diagnostics.Debug.dll +/System.Diagnostics.Debug.dll +/System.Diagnostics.DiagnosticSource.dll +/System.Diagnostics.DiagnosticSource.dll +/System.Diagnostics.DiagnosticSource.dll +/System.Diagnostics.DiagnosticSource.dll +/System.Diagnostics.DiagnosticSource.dll +/System.Diagnostics.DiagnosticSource.dll +/System.Diagnostics.FileVersionInfo.dll +/System.Diagnostics.FileVersionInfo.dll +/System.Diagnostics.FileVersionInfo.dll +/System.Diagnostics.FileVersionInfo.dll +/System.Diagnostics.FileVersionInfo.dll +/System.Diagnostics.FileVersionInfo.dll +/System.Diagnostics.Process.dll +/System.Diagnostics.Process.dll +/System.Diagnostics.Process.dll +/System.Diagnostics.Process.dll +/System.Diagnostics.Process.dll +/System.Diagnostics.Process.dll +/System.Diagnostics.StackTrace.dll +/System.Diagnostics.StackTrace.dll +/System.Diagnostics.StackTrace.dll +/System.Diagnostics.StackTrace.dll +/System.Diagnostics.StackTrace.dll +/System.Diagnostics.StackTrace.dll +/System.Diagnostics.TextWriterTraceListener.dll +/System.Diagnostics.TextWriterTraceListener.dll +/System.Diagnostics.TextWriterTraceListener.dll +/System.Diagnostics.TextWriterTraceListener.dll +/System.Diagnostics.TextWriterTraceListener.dll +/System.Diagnostics.TextWriterTraceListener.dll +/System.Diagnostics.Tools.dll +/System.Diagnostics.Tools.dll +/System.Diagnostics.Tools.dll +/System.Diagnostics.Tools.dll +/System.Diagnostics.Tools.dll +/System.Diagnostics.Tools.dll +/System.Diagnostics.TraceSource.dll +/System.Diagnostics.TraceSource.dll +/System.Diagnostics.TraceSource.dll +/System.Diagnostics.TraceSource.dll +/System.Diagnostics.TraceSource.dll +/System.Diagnostics.TraceSource.dll +/System.Diagnostics.Tracing.dll +/System.Diagnostics.Tracing.dll +/System.Diagnostics.Tracing.dll +/System.Diagnostics.Tracing.dll +/System.Diagnostics.Tracing.dll +/System.Diagnostics.Tracing.dll +/System.dll +/System.dll +/System.dll +/System.dll +/System.dll +/System.dll +/System.Drawing.dll +/System.Drawing.dll +/System.Drawing.dll +/System.Drawing.dll +/System.Drawing.dll +/System.Drawing.dll +/System.Drawing.Primitives.dll +/System.Drawing.Primitives.dll +/System.Drawing.Primitives.dll +/System.Drawing.Primitives.dll +/System.Drawing.Primitives.dll +/System.Drawing.Primitives.dll +/System.Dynamic.Runtime.dll +/System.Dynamic.Runtime.dll +/System.Dynamic.Runtime.dll +/System.Dynamic.Runtime.dll +/System.Dynamic.Runtime.dll +/System.Dynamic.Runtime.dll +/System.Fabric.dll +/System.Fabric.Strings.dll +/System.Globalization.Calendars.dll +/System.Globalization.Calendars.dll +/System.Globalization.Calendars.dll +/System.Globalization.Calendars.dll +/System.Globalization.Calendars.dll +/System.Globalization.Calendars.dll +/System.Globalization.dll +/System.Globalization.dll +/System.Globalization.dll +/System.Globalization.dll +/System.Globalization.dll +/System.Globalization.dll +/System.Globalization.Extensions.dll +/System.Globalization.Extensions.dll +/System.Globalization.Extensions.dll +/System.Globalization.Extensions.dll +/System.Globalization.Extensions.dll +/System.Globalization.Extensions.dll +/System.Globalization.Native.dylib +/System.Globalization.Native.dylib +/System.Globalization.Native.so +/System.Globalization.Native.so +/System.IO.Compression.Brotli.dll +/System.IO.Compression.Brotli.dll +/System.IO.Compression.Brotli.dll +/System.IO.Compression.Brotli.dll +/System.IO.Compression.Brotli.dll +/System.IO.Compression.Brotli.dll +/System.IO.Compression.dll +/System.IO.Compression.dll +/System.IO.Compression.dll +/System.IO.Compression.dll +/System.IO.Compression.dll +/System.IO.Compression.dll +/System.IO.Compression.FileSystem.dll +/System.IO.Compression.FileSystem.dll +/System.IO.Compression.FileSystem.dll +/System.IO.Compression.FileSystem.dll +/System.IO.Compression.FileSystem.dll +/System.IO.Compression.FileSystem.dll +/System.IO.Compression.Native.a +/System.IO.Compression.Native.a +/System.IO.Compression.Native.a +/System.IO.Compression.Native.a +/System.IO.Compression.Native.dylib +/System.IO.Compression.Native.dylib +/System.IO.Compression.Native.so +/System.IO.Compression.Native.so +/System.IO.Compression.ZipFile.dll +/System.IO.Compression.ZipFile.dll +/System.IO.Compression.ZipFile.dll +/System.IO.Compression.ZipFile.dll +/System.IO.Compression.ZipFile.dll +/System.IO.Compression.ZipFile.dll +/System.IO.dll +/System.IO.dll +/System.IO.dll +/System.IO.dll +/System.IO.dll +/System.IO.dll +/System.IO.dll +/System.IO.FileSystem.AccessControl.dll +/System.IO.FileSystem.AccessControl.dll +/System.IO.FileSystem.AccessControl.dll +/System.IO.FileSystem.AccessControl.dll +/System.IO.FileSystem.AccessControl.dll +/System.IO.FileSystem.AccessControl.dll +/System.IO.FileSystem.dll +/System.IO.FileSystem.dll +/System.IO.FileSystem.dll +/System.IO.FileSystem.dll +/System.IO.FileSystem.dll +/System.IO.FileSystem.dll +/System.IO.FileSystem.DriveInfo.dll +/System.IO.FileSystem.DriveInfo.dll +/System.IO.FileSystem.DriveInfo.dll +/System.IO.FileSystem.DriveInfo.dll +/System.IO.FileSystem.DriveInfo.dll +/System.IO.FileSystem.DriveInfo.dll +/System.IO.FileSystem.Primitives.dll +/System.IO.FileSystem.Primitives.dll +/System.IO.FileSystem.Primitives.dll +/System.IO.FileSystem.Primitives.dll +/System.IO.FileSystem.Primitives.dll +/System.IO.FileSystem.Primitives.dll +/System.IO.FileSystem.Watcher.dll +/System.IO.FileSystem.Watcher.dll +/System.IO.FileSystem.Watcher.dll +/System.IO.FileSystem.Watcher.dll +/System.IO.FileSystem.Watcher.dll +/System.IO.FileSystem.Watcher.dll +/System.IO.IsolatedStorage.dll +/System.IO.IsolatedStorage.dll +/System.IO.IsolatedStorage.dll +/System.IO.IsolatedStorage.dll +/System.IO.IsolatedStorage.dll +/System.IO.IsolatedStorage.dll +/System.IO.MemoryMappedFiles.dll +/System.IO.MemoryMappedFiles.dll +/System.IO.MemoryMappedFiles.dll +/System.IO.MemoryMappedFiles.dll +/System.IO.MemoryMappedFiles.dll +/System.IO.MemoryMappedFiles.dll +/System.IO.Packaging.dll +/System.IO.Pipes.AccessControl.dll +/System.IO.Pipes.AccessControl.dll +/System.IO.Pipes.AccessControl.dll +/System.IO.Pipes.AccessControl.dll +/System.IO.Pipes.AccessControl.dll +/System.IO.Pipes.AccessControl.dll +/System.IO.Pipes.dll +/System.IO.Pipes.dll +/System.IO.Pipes.dll +/System.IO.Pipes.dll +/System.IO.Pipes.dll +/System.IO.Pipes.dll +/System.IO.UnmanagedMemoryStream.dll +/System.IO.UnmanagedMemoryStream.dll +/System.IO.UnmanagedMemoryStream.dll +/System.IO.UnmanagedMemoryStream.dll +/System.IO.UnmanagedMemoryStream.dll +/System.IO.UnmanagedMemoryStream.dll +/System.Linq.dll +/System.Linq.dll +/System.Linq.dll +/System.Linq.dll +/System.Linq.dll +/System.Linq.dll +/System.Linq.Expressions.dll +/System.Linq.Expressions.dll +/System.Linq.Expressions.dll +/System.Linq.Expressions.dll +/System.Linq.Expressions.dll +/System.Linq.Expressions.dll +/System.Linq.Parallel.dll +/System.Linq.Parallel.dll +/System.Linq.Parallel.dll +/System.Linq.Parallel.dll +/System.Linq.Parallel.dll +/System.Linq.Parallel.dll +/System.Linq.Queryable.dll +/System.Linq.Queryable.dll +/System.Linq.Queryable.dll +/System.Linq.Queryable.dll +/System.Linq.Queryable.dll +/System.Linq.Queryable.dll +/System.Memory.dll +/System.Memory.dll +/System.Memory.dll +/System.Memory.dll +/System.Memory.dll +/System.Memory.dll +/System.Native.a +/System.Native.a +/System.Native.a +/System.Native.a +/System.Native.dylib +/System.Native.dylib +/System.Native.so +/System.Native.so +/System.Net.dll +/System.Net.dll +/System.Net.dll +/System.Net.dll +/System.Net.dll +/System.Net.dll +/System.Net.Http.dll +/System.Net.Http.dll +/System.Net.Http.dll +/System.Net.Http.dll +/System.Net.Http.dll +/System.Net.Http.dll +/System.Net.Http.dll +/System.Net.Http.Extensions.dll +/System.Net.Http.Native.a +/System.Net.Http.Native.a +/System.Net.Http.Native.a +/System.Net.Http.Native.a +/System.Net.Http.Native.dylib +/System.Net.Http.Native.dylib +/System.Net.Http.Native.so +/System.Net.Http.Native.so +/System.Net.Http.Primitives.dll +/System.Net.Http.Primitives.dll +/System.Net.Http.WebRequest.dll +/System.Net.HttpListener.dll +/System.Net.HttpListener.dll +/System.Net.HttpListener.dll +/System.Net.HttpListener.dll +/System.Net.HttpListener.dll +/System.Net.HttpListener.dll +/System.Net.Mail.dll +/System.Net.Mail.dll +/System.Net.Mail.dll +/System.Net.Mail.dll +/System.Net.Mail.dll +/System.Net.Mail.dll +/System.Net.NameResolution.dll +/System.Net.NameResolution.dll +/System.Net.NameResolution.dll +/System.Net.NameResolution.dll +/System.Net.NameResolution.dll +/System.Net.NameResolution.dll +/System.Net.NetworkInformation.dll +/System.Net.NetworkInformation.dll +/System.Net.NetworkInformation.dll +/System.Net.NetworkInformation.dll +/System.Net.NetworkInformation.dll +/System.Net.NetworkInformation.dll +/System.Net.Ping.dll +/System.Net.Ping.dll +/System.Net.Ping.dll +/System.Net.Ping.dll +/System.Net.Ping.dll +/System.Net.Ping.dll +/System.Net.Primitives.dll +/System.Net.Primitives.dll +/System.Net.Primitives.dll +/System.Net.Primitives.dll +/System.Net.Primitives.dll +/System.Net.Primitives.dll +/System.Net.Requests.dll +/System.Net.Requests.dll +/System.Net.Requests.dll +/System.Net.Requests.dll +/System.Net.Requests.dll +/System.Net.Requests.dll +/System.Net.Security.dll +/System.Net.Security.dll +/System.Net.Security.dll +/System.Net.Security.dll +/System.Net.Security.dll +/System.Net.Security.dll +/System.Net.Security.Native.a +/System.Net.Security.Native.a +/System.Net.Security.Native.a +/System.Net.Security.Native.a +/System.Net.Security.Native.dylib +/System.Net.Security.Native.dylib +/System.Net.Security.Native.so +/System.Net.Security.Native.so +/System.Net.ServicePoint.dll +/System.Net.ServicePoint.dll +/System.Net.ServicePoint.dll +/System.Net.ServicePoint.dll +/System.Net.ServicePoint.dll +/System.Net.ServicePoint.dll +/System.Net.Sockets.dll +/System.Net.Sockets.dll +/System.Net.Sockets.dll +/System.Net.Sockets.dll +/System.Net.Sockets.dll +/System.Net.Sockets.dll +/System.Net.WebClient.dll +/System.Net.WebClient.dll +/System.Net.WebClient.dll +/System.Net.WebClient.dll +/System.Net.WebClient.dll +/System.Net.WebClient.dll +/System.Net.WebHeaderCollection.dll +/System.Net.WebHeaderCollection.dll +/System.Net.WebHeaderCollection.dll +/System.Net.WebHeaderCollection.dll +/System.Net.WebHeaderCollection.dll +/System.Net.WebHeaderCollection.dll +/System.Net.WebProxy.dll +/System.Net.WebProxy.dll +/System.Net.WebProxy.dll +/System.Net.WebProxy.dll +/System.Net.WebProxy.dll +/System.Net.WebProxy.dll +/System.Net.WebSockets.Client.dll +/System.Net.WebSockets.Client.dll +/System.Net.WebSockets.Client.dll +/System.Net.WebSockets.Client.dll +/System.Net.WebSockets.Client.dll +/System.Net.WebSockets.Client.dll +/System.Net.WebSockets.dll +/System.Net.WebSockets.dll +/System.Net.WebSockets.dll +/System.Net.WebSockets.dll +/System.Net.WebSockets.dll +/System.Net.WebSockets.dll +/System.Numerics.dll +/System.Numerics.dll +/System.Numerics.dll +/System.Numerics.dll +/System.Numerics.dll +/System.Numerics.dll +/System.Numerics.Vectors.dll +/System.Numerics.Vectors.dll +/System.Numerics.Vectors.dll +/System.Numerics.Vectors.dll +/System.Numerics.Vectors.dll +/System.Numerics.Vectors.dll +/System.ObjectModel.dll +/System.ObjectModel.dll +/System.ObjectModel.dll +/System.ObjectModel.dll +/System.ObjectModel.dll +/System.ObjectModel.dll +/System.Private.CoreLib.dll +/System.Private.CoreLib.dll +/System.Private.CoreLib.dll +/System.Private.CoreLib.dll +/System.Private.CoreLib.dll +/System.Private.CoreLib.dll +/System.Private.DataContractSerialization.dll +/System.Private.DataContractSerialization.dll +/System.Private.DataContractSerialization.dll +/System.Private.DataContractSerialization.dll +/System.Private.DataContractSerialization.dll +/System.Private.DataContractSerialization.dll +/System.Private.Uri.dll +/System.Private.Uri.dll +/System.Private.Uri.dll +/System.Private.Uri.dll +/System.Private.Uri.dll +/System.Private.Uri.dll +/System.Private.Xml.dll +/System.Private.Xml.dll +/System.Private.Xml.dll +/System.Private.Xml.dll +/System.Private.Xml.dll +/System.Private.Xml.dll +/System.Private.Xml.Linq.dll +/System.Private.Xml.Linq.dll +/System.Private.Xml.Linq.dll +/System.Private.Xml.Linq.dll +/System.Private.Xml.Linq.dll +/System.Private.Xml.Linq.dll +/System.Reflection.DispatchProxy.dll +/System.Reflection.DispatchProxy.dll +/System.Reflection.DispatchProxy.dll +/System.Reflection.DispatchProxy.dll +/System.Reflection.DispatchProxy.dll +/System.Reflection.DispatchProxy.dll +/System.Reflection.dll +/System.Reflection.dll +/System.Reflection.dll +/System.Reflection.dll +/System.Reflection.dll +/System.Reflection.dll +/System.Reflection.Emit.dll +/System.Reflection.Emit.dll +/System.Reflection.Emit.dll +/System.Reflection.Emit.dll +/System.Reflection.Emit.dll +/System.Reflection.Emit.dll +/System.Reflection.Emit.ILGeneration.dll +/System.Reflection.Emit.ILGeneration.dll +/System.Reflection.Emit.ILGeneration.dll +/System.Reflection.Emit.ILGeneration.dll +/System.Reflection.Emit.ILGeneration.dll +/System.Reflection.Emit.ILGeneration.dll +/System.Reflection.Emit.Lightweight.dll +/System.Reflection.Emit.Lightweight.dll +/System.Reflection.Emit.Lightweight.dll +/System.Reflection.Emit.Lightweight.dll +/System.Reflection.Emit.Lightweight.dll +/System.Reflection.Emit.Lightweight.dll +/System.Reflection.Extensions.dll +/System.Reflection.Extensions.dll +/System.Reflection.Extensions.dll +/System.Reflection.Extensions.dll +/System.Reflection.Extensions.dll +/System.Reflection.Extensions.dll +/System.Reflection.Metadata.dll +/System.Reflection.Metadata.dll +/System.Reflection.Metadata.dll +/System.Reflection.Metadata.dll +/System.Reflection.Metadata.dll +/System.Reflection.Metadata.dll +/System.Reflection.Primitives.dll +/System.Reflection.Primitives.dll +/System.Reflection.Primitives.dll +/System.Reflection.Primitives.dll +/System.Reflection.Primitives.dll +/System.Reflection.Primitives.dll +/System.Reflection.TypeExtensions.dll +/System.Reflection.TypeExtensions.dll +/System.Reflection.TypeExtensions.dll +/System.Reflection.TypeExtensions.dll +/System.Reflection.TypeExtensions.dll +/System.Reflection.TypeExtensions.dll +/System.Resources.Reader.dll +/System.Resources.Reader.dll +/System.Resources.Reader.dll +/System.Resources.Reader.dll +/System.Resources.Reader.dll +/System.Resources.Reader.dll +/System.Resources.ResourceManager.dll +/System.Resources.ResourceManager.dll +/System.Resources.ResourceManager.dll +/System.Resources.ResourceManager.dll +/System.Resources.ResourceManager.dll +/System.Resources.ResourceManager.dll +/System.Resources.Writer.dll +/System.Resources.Writer.dll +/System.Resources.Writer.dll +/System.Resources.Writer.dll +/System.Resources.Writer.dll +/System.Resources.Writer.dll +/System.Runtime.CompilerServices.Unsafe.dll +/System.Runtime.CompilerServices.Unsafe.dll +/System.Runtime.CompilerServices.Unsafe.dll +/System.Runtime.CompilerServices.Unsafe.dll +/System.Runtime.CompilerServices.VisualC.dll +/System.Runtime.CompilerServices.VisualC.dll +/System.Runtime.CompilerServices.VisualC.dll +/System.Runtime.CompilerServices.VisualC.dll +/System.Runtime.CompilerServices.VisualC.dll +/System.Runtime.CompilerServices.VisualC.dll +/System.Runtime.dll +/System.Runtime.dll +/System.Runtime.dll +/System.Runtime.dll +/System.Runtime.dll +/System.Runtime.dll +/System.Runtime.dll +/System.Runtime.Extensions.dll +/System.Runtime.Extensions.dll +/System.Runtime.Extensions.dll +/System.Runtime.Extensions.dll +/System.Runtime.Extensions.dll +/System.Runtime.Extensions.dll +/System.Runtime.Handles.dll +/System.Runtime.Handles.dll +/System.Runtime.Handles.dll +/System.Runtime.Handles.dll +/System.Runtime.Handles.dll +/System.Runtime.Handles.dll +/System.Runtime.InteropServices.dll +/System.Runtime.InteropServices.dll +/System.Runtime.InteropServices.dll +/System.Runtime.InteropServices.dll +/System.Runtime.InteropServices.dll +/System.Runtime.InteropServices.dll +/System.Runtime.InteropServices.RuntimeInformation.dll +/System.Runtime.InteropServices.RuntimeInformation.dll +/System.Runtime.InteropServices.RuntimeInformation.dll +/System.Runtime.InteropServices.RuntimeInformation.dll +/System.Runtime.InteropServices.RuntimeInformation.dll +/System.Runtime.InteropServices.RuntimeInformation.dll +/System.Runtime.InteropServices.WindowsRuntime.dll +/System.Runtime.InteropServices.WindowsRuntime.dll +/System.Runtime.InteropServices.WindowsRuntime.dll +/System.Runtime.InteropServices.WindowsRuntime.dll +/System.Runtime.InteropServices.WindowsRuntime.dll +/System.Runtime.InteropServices.WindowsRuntime.dll +/System.Runtime.Intrinsics.dll +/System.Runtime.Intrinsics.dll +/System.Runtime.Intrinsics.dll +/System.Runtime.Loader.dll +/System.Runtime.Loader.dll +/System.Runtime.Loader.dll +/System.Runtime.Loader.dll +/System.Runtime.Loader.dll +/System.Runtime.Loader.dll +/System.Runtime.Numerics.dll +/System.Runtime.Numerics.dll +/System.Runtime.Numerics.dll +/System.Runtime.Numerics.dll +/System.Runtime.Numerics.dll +/System.Runtime.Numerics.dll +/System.Runtime.Serialization.dll +/System.Runtime.Serialization.dll +/System.Runtime.Serialization.dll +/System.Runtime.Serialization.dll +/System.Runtime.Serialization.dll +/System.Runtime.Serialization.dll +/System.Runtime.Serialization.Formatters.dll +/System.Runtime.Serialization.Formatters.dll +/System.Runtime.Serialization.Formatters.dll +/System.Runtime.Serialization.Formatters.dll +/System.Runtime.Serialization.Formatters.dll +/System.Runtime.Serialization.Formatters.dll +/System.Runtime.Serialization.Json.dll +/System.Runtime.Serialization.Json.dll +/System.Runtime.Serialization.Json.dll +/System.Runtime.Serialization.Json.dll +/System.Runtime.Serialization.Json.dll +/System.Runtime.Serialization.Json.dll +/System.Runtime.Serialization.Primitives.dll +/System.Runtime.Serialization.Primitives.dll +/System.Runtime.Serialization.Primitives.dll +/System.Runtime.Serialization.Primitives.dll +/System.Runtime.Serialization.Primitives.dll +/System.Runtime.Serialization.Primitives.dll +/System.Runtime.Serialization.Xml.dll +/System.Runtime.Serialization.Xml.dll +/System.Runtime.Serialization.Xml.dll +/System.Runtime.Serialization.Xml.dll +/System.Runtime.Serialization.Xml.dll +/System.Runtime.Serialization.Xml.dll +/System.Runtime.WindowsRuntime.dll +/System.Runtime.WindowsRuntime.dll +/System.Runtime.WindowsRuntime.UI.Xaml.dll +/System.Runtime.WindowsRuntime.UI.Xaml.dll +/System.Runtime.WindowsRuntime.UI.Xaml.dll +/System.Security.AccessControl.dll +/System.Security.AccessControl.dll +/System.Security.AccessControl.dll +/System.Security.AccessControl.dll +/System.Security.AccessControl.dll +/System.Security.AccessControl.dll +/System.Security.Claims.dll +/System.Security.Claims.dll +/System.Security.Claims.dll +/System.Security.Claims.dll +/System.Security.Claims.dll +/System.Security.Claims.dll +/System.Security.Cryptography.Algorithms.dll +/System.Security.Cryptography.Algorithms.dll +/System.Security.Cryptography.Algorithms.dll +/System.Security.Cryptography.Algorithms.dll +/System.Security.Cryptography.Algorithms.dll +/System.Security.Cryptography.Algorithms.dll +/System.Security.Cryptography.Cng.dll +/System.Security.Cryptography.Cng.dll +/System.Security.Cryptography.Cng.dll +/System.Security.Cryptography.Cng.dll +/System.Security.Cryptography.Cng.dll +/System.Security.Cryptography.Cng.dll +/System.Security.Cryptography.Csp.dll +/System.Security.Cryptography.Csp.dll +/System.Security.Cryptography.Csp.dll +/System.Security.Cryptography.Csp.dll +/System.Security.Cryptography.Csp.dll +/System.Security.Cryptography.Csp.dll +/System.Security.Cryptography.Encoding.dll +/System.Security.Cryptography.Encoding.dll +/System.Security.Cryptography.Encoding.dll +/System.Security.Cryptography.Encoding.dll +/System.Security.Cryptography.Encoding.dll +/System.Security.Cryptography.Encoding.dll +/System.Security.Cryptography.Native.Apple.a +/System.Security.Cryptography.Native.Apple.a +/System.Security.Cryptography.Native.Apple.dylib +/System.Security.Cryptography.Native.Apple.dylib +/System.Security.Cryptography.Native.OpenSsl.a +/System.Security.Cryptography.Native.OpenSsl.a +/System.Security.Cryptography.Native.OpenSsl.a +/System.Security.Cryptography.Native.OpenSsl.a +/System.Security.Cryptography.Native.OpenSsl.dylib +/System.Security.Cryptography.Native.OpenSsl.dylib +/System.Security.Cryptography.Native.OpenSsl.so +/System.Security.Cryptography.Native.OpenSsl.so +/System.Security.Cryptography.OpenSsl.dll +/System.Security.Cryptography.OpenSsl.dll +/System.Security.Cryptography.OpenSsl.dll +/System.Security.Cryptography.OpenSsl.dll +/System.Security.Cryptography.OpenSsl.dll +/System.Security.Cryptography.OpenSsl.dll +/System.Security.Cryptography.Primitives.dll +/System.Security.Cryptography.Primitives.dll +/System.Security.Cryptography.Primitives.dll +/System.Security.Cryptography.Primitives.dll +/System.Security.Cryptography.Primitives.dll +/System.Security.Cryptography.Primitives.dll +/System.Security.Cryptography.ProtectedData.dll +/System.Security.Cryptography.ProtectedData.dll +/System.Security.Cryptography.X509Certificates.dll +/System.Security.Cryptography.X509Certificates.dll +/System.Security.Cryptography.X509Certificates.dll +/System.Security.Cryptography.X509Certificates.dll +/System.Security.Cryptography.X509Certificates.dll +/System.Security.Cryptography.X509Certificates.dll +/System.Security.dll +/System.Security.dll +/System.Security.dll +/System.Security.dll +/System.Security.dll +/System.Security.dll +/System.Security.Principal.dll +/System.Security.Principal.dll +/System.Security.Principal.dll +/System.Security.Principal.dll +/System.Security.Principal.dll +/System.Security.Principal.dll +/System.Security.Principal.Windows.dll +/System.Security.Principal.Windows.dll +/System.Security.Principal.Windows.dll +/System.Security.Principal.Windows.dll +/System.Security.Principal.Windows.dll +/System.Security.Principal.Windows.dll +/System.Security.SecureString.dll +/System.Security.SecureString.dll +/System.Security.SecureString.dll +/System.Security.SecureString.dll +/System.Security.SecureString.dll +/System.Security.SecureString.dll +/System.ServiceModel.Web.dll +/System.ServiceModel.Web.dll +/System.ServiceModel.Web.dll +/System.ServiceModel.Web.dll +/System.ServiceModel.Web.dll +/System.ServiceModel.Web.dll +/System.ServiceProcess.dll +/System.ServiceProcess.dll +/System.ServiceProcess.dll +/System.ServiceProcess.dll +/System.ServiceProcess.dll +/System.ServiceProcess.dll +/System.Spatial.dll +/System.Text.Encoding.CodePages.dll +/System.Text.Encoding.CodePages.dll +/System.Text.Encoding.CodePages.dll +/System.Text.Encoding.CodePages.dll +/System.Text.Encoding.CodePages.dll +/System.Text.Encoding.dll +/System.Text.Encoding.dll +/System.Text.Encoding.dll +/System.Text.Encoding.dll +/System.Text.Encoding.dll +/System.Text.Encoding.dll +/System.Text.Encoding.Extensions.dll +/System.Text.Encoding.Extensions.dll +/System.Text.Encoding.Extensions.dll +/System.Text.Encoding.Extensions.dll +/System.Text.Encoding.Extensions.dll +/System.Text.Encoding.Extensions.dll +/System.Text.Encodings.Web.dll +/System.Text.Encodings.Web.dll +/System.Text.Encodings.Web.dll +/System.Text.Json.dll +/System.Text.Json.dll +/System.Text.Json.dll +/System.Text.RegularExpressions.dll +/System.Text.RegularExpressions.dll +/System.Text.RegularExpressions.dll +/System.Text.RegularExpressions.dll +/System.Text.RegularExpressions.dll +/System.Text.RegularExpressions.dll +/System.Threading.AccessControl.dll +/System.Threading.AccessControl.dll +/System.Threading.Channels.dll +/System.Threading.Channels.dll +/System.Threading.Channels.dll +/System.Threading.dll +/System.Threading.dll +/System.Threading.dll +/System.Threading.dll +/System.Threading.dll +/System.Threading.dll +/System.Threading.Overlapped.dll +/System.Threading.Overlapped.dll +/System.Threading.Overlapped.dll +/System.Threading.Overlapped.dll +/System.Threading.Overlapped.dll +/System.Threading.Overlapped.dll +/System.Threading.Tasks.Dataflow.dll +/System.Threading.Tasks.Dataflow.dll +/System.Threading.Tasks.Dataflow.dll +/System.Threading.Tasks.Dataflow.dll +/System.Threading.Tasks.Dataflow.dll +/System.Threading.Tasks.Dataflow.dll +/System.Threading.Tasks.dll +/System.Threading.Tasks.dll +/System.Threading.Tasks.dll +/System.Threading.Tasks.dll +/System.Threading.Tasks.dll +/System.Threading.Tasks.dll +/System.Threading.Tasks.dll +/System.Threading.Tasks.Extensions.dll +/System.Threading.Tasks.Extensions.dll +/System.Threading.Tasks.Extensions.dll +/System.Threading.Tasks.Extensions.dll +/System.Threading.Tasks.Extensions.dll +/System.Threading.Tasks.Extensions.dll +/System.Threading.Tasks.Parallel.dll +/System.Threading.Tasks.Parallel.dll +/System.Threading.Tasks.Parallel.dll +/System.Threading.Tasks.Parallel.dll +/System.Threading.Tasks.Parallel.dll +/System.Threading.Tasks.Parallel.dll +/System.Threading.Thread.dll +/System.Threading.Thread.dll +/System.Threading.Thread.dll +/System.Threading.Thread.dll +/System.Threading.Thread.dll +/System.Threading.Thread.dll +/System.Threading.ThreadPool.dll +/System.Threading.ThreadPool.dll +/System.Threading.ThreadPool.dll +/System.Threading.ThreadPool.dll +/System.Threading.ThreadPool.dll +/System.Threading.ThreadPool.dll +/System.Threading.Timer.dll +/System.Threading.Timer.dll +/System.Threading.Timer.dll +/System.Threading.Timer.dll +/System.Threading.Timer.dll +/System.Threading.Timer.dll +/System.Transactions.dll +/System.Transactions.dll +/System.Transactions.dll +/System.Transactions.dll +/System.Transactions.dll +/System.Transactions.dll +/System.Transactions.Local.dll +/System.Transactions.Local.dll +/System.Transactions.Local.dll +/System.Transactions.Local.dll +/System.Transactions.Local.dll +/System.Transactions.Local.dll +/System.ValueTuple.dll +/System.ValueTuple.dll +/System.ValueTuple.dll +/System.ValueTuple.dll +/System.ValueTuple.dll +/System.ValueTuple.dll +/System.ValueTuple.dll +/System.ValueTuple.dll +/System.Web.dll +/System.Web.dll +/System.Web.dll +/System.Web.dll +/System.Web.dll +/System.Web.dll +/System.Web.HttpUtility.dll +/System.Web.HttpUtility.dll +/System.Web.HttpUtility.dll +/System.Web.HttpUtility.dll +/System.Web.HttpUtility.dll +/System.Web.HttpUtility.dll +/System.Windows.dll +/System.Windows.dll +/System.Windows.dll +/System.Windows.dll +/System.Windows.dll +/System.Windows.dll +/System.Xml.dll +/System.Xml.dll +/System.Xml.dll +/System.Xml.dll +/System.Xml.dll +/System.Xml.dll +/System.Xml.Linq.dll +/System.Xml.Linq.dll +/System.Xml.Linq.dll +/System.Xml.Linq.dll +/System.Xml.Linq.dll +/System.Xml.Linq.dll +/System.Xml.ReaderWriter.dll +/System.Xml.ReaderWriter.dll +/System.Xml.ReaderWriter.dll +/System.Xml.ReaderWriter.dll +/System.Xml.ReaderWriter.dll +/System.Xml.ReaderWriter.dll +/System.Xml.Serialization.dll +/System.Xml.Serialization.dll +/System.Xml.Serialization.dll +/System.Xml.Serialization.dll +/System.Xml.Serialization.dll +/System.Xml.Serialization.dll +/System.Xml.XDocument.dll +/System.Xml.XDocument.dll +/System.Xml.XDocument.dll +/System.Xml.XDocument.dll +/System.Xml.XDocument.dll +/System.Xml.XDocument.dll +/System.Xml.XmlDocument.dll +/System.Xml.XmlDocument.dll +/System.Xml.XmlDocument.dll +/System.Xml.XmlDocument.dll +/System.Xml.XmlDocument.dll +/System.Xml.XmlDocument.dll +/System.Xml.XmlSerializer.dll +/System.Xml.XmlSerializer.dll +/System.Xml.XmlSerializer.dll +/System.Xml.XmlSerializer.dll +/System.Xml.XmlSerializer.dll +/System.Xml.XmlSerializer.dll +/System.Xml.XPath.dll +/System.Xml.XPath.dll +/System.Xml.XPath.dll +/System.Xml.XPath.dll +/System.Xml.XPath.dll +/System.Xml.XPath.dll +/System.Xml.XPath.XDocument.dll +/System.Xml.XPath.XDocument.dll +/System.Xml.XPath.XDocument.dll +/System.Xml.XPath.XDocument.dll +/System.Xml.XPath.XDocument.dll +/System.Xml.XPath.XDocument.dll +/System.Xml.XPath.XmlDocument.dll +/ucrtbase.dll +/WindowsBase.dll +/WindowsBase.dll +/WindowsBase.dll +/WindowsBase.dll +/WindowsBase.dll +/WindowsBase.dll +/YamlDotNet.dll +/YamlDotNet.dll +/YamlDotNet.dll +/zh-Hans/Microsoft.Data.Edm.resources.dll +/zh-Hans/Microsoft.Data.OData.resources.dll +/zh-Hans/Microsoft.Data.Services.Client.resources.dll +/zh-Hans/System.Spatial.resources.dll +/zh-Hant/Microsoft.Data.Edm.resources.dll +/zh-Hant/Microsoft.Data.OData.resources.dll +/zh-Hant/Microsoft.Data.Services.Client.resources.dll +/zh-Hant/System.Spatial.resources.dll index.json \ No newline at end of file diff --git a/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.cs b/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.cs index 220db4331..6a71d23ac 100644 --- a/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.cs +++ b/source/Calamari.ConsolidateCalamariPackages.Tests/IntegrationTests.cs @@ -97,7 +97,7 @@ public void AndThenTheIndexShouldBe() } private static string SanitiseFilenamesInIndex(string s) - => Regex.Replace(s, "[a-z0-9]{32}\\\\[^\"]*", ""); + => Regex.Replace(s, "[a-z0-9]{32}/[^\"]*", ""); private static string SanitiseHashesInPackageList(string s) => Regex.Replace(s, "[a-z0-9]{32}", "");