diff --git a/build/nuke/Build.Steps.cs b/build/nuke/Build.Steps.cs index 957219269e..5cad767526 100644 --- a/build/nuke/Build.Steps.cs +++ b/build/nuke/Build.Steps.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; +using System.Text.Json; using System.Text.RegularExpressions; using Extensions; using Nuke.Common; @@ -350,41 +351,123 @@ partial class Build } }); - Target CopyAdditionalDeps => _ => _ - .Unlisted() - .Description("Creates AutoInstrumentation.AdditionalDeps and shared store in tracer-home") - .After(CompileManagedSrc) - .Executes(() => - { - AdditionalDepsDirectory.GlobFiles("**/*deps.json").ForEach(DeleteFile); + Target CopyAdditionalDeps => _ => + { + return _ + .Unlisted() + .Description("Creates AutoInstrumentation.AdditionalDeps and shared store in tracer-home") + .After(CompileManagedSrc) + .Executes(() => + { + AdditionalDepsDirectory.GlobFiles("**/*deps.json").ForEach(DeleteFile); - DotNetPublish(s => s - .SetProject(Solution.GetProject(Projects.AutoInstrumentationAdditionalDeps)) - .SetConfiguration(BuildConfiguration) - .SetTargetPlatformAnyCPU() - .SetProperty("TracerHomePath", TracerHomeDirectory) - .EnableNoBuild() - .EnableNoRestore() - .CombineWith(TestFrameworks.ExceptNetFramework(), (p, framework) => p - .SetFramework(framework) - // Additional-deps probes the directory using SemVer format. - // Example: For netcoreapp3.1 framework, additional-deps uses 3.1.0 or 3.1.1 and so on. - // Major and Minor version are extracted from framework and default value of 0 is appended for patch. - .SetOutput(AdditionalDepsDirectory / "shared" / "Microsoft.NETCore.App" / framework.ToString().Substring(framework.ToString().Length - 3) + ".0"))); - - AdditionalDepsDirectory.GlobFiles("**/*.dll", "**/*.pdb", "**/*.xml", "**/*.dylib", "**/*.so").ForEach(DeleteFile); - AdditionalDepsDirectory.GlobDirectories("**/runtimes").ForEach(DeleteDirectory); - AdditionalDepsDirectory.GlobFiles("**/*deps.json") - .ForEach(file => - { - string depsJsonContent = File.ReadAllText(file); - // Remove OpenTelemetry.Instrumentation.AutoInstrumentationAdditionalDeps entry from target section. - depsJsonContent = Regex.Replace(depsJsonContent, "\"OpenTelemetry(.+)AutoInstrumentation.AdditionalDeps.dll(.+?)}," + Environment.NewLine + "(.+?)\"", "\"", RegexOptions.IgnoreCase | RegexOptions.Singleline); - // Remove OpenTelemetry.Instrumentation.AutoInstrumentationAdditionalDeps entry from library section and write to file. - depsJsonContent = Regex.Replace(depsJsonContent, "\"OpenTelemetry(.+?)}," + Environment.NewLine + "(.+?)\"", "\"", RegexOptions.IgnoreCase | RegexOptions.Singleline); - File.WriteAllText(file, depsJsonContent); - }); - }); + DotNetPublish(s => s + .SetProject(Solution.GetProject(Projects.AutoInstrumentationAdditionalDeps)) + .SetConfiguration(BuildConfiguration) + .SetTargetPlatformAnyCPU() + .SetProperty("TracerHomePath", TracerHomeDirectory) + .EnableNoBuild() + .EnableNoRestore() + .CombineWith(TestFrameworks.ExceptNetFramework(), (p, framework) => p + .SetFramework(framework) + // Additional-deps probes the directory using SemVer format. + // Example: For netcoreapp3.1 framework, additional-deps uses 3.1.0 or 3.1.1 and so on. + // Major and Minor version are extracted from framework and default value of 0 is appended for patch. + .SetOutput(AdditionalDepsDirectory / "shared" / "Microsoft.NETCore.App" / framework.ToString().Substring(framework.ToString().Length - 3) + ".0"))); + + + AdditionalDepsDirectory.GlobFiles("**/*deps.json") + .ForEach(file => + { + var depsJsonContent = File.ReadAllText(file); + CopyNativeDependenciesToStore(file, depsJsonContent); + + RemoveOpenTelemetryAutoInstrumentationAdditionalDepsFromDepsFile(depsJsonContent, file); + }); + RemoveFilesFromAdditionalDepsDirectory(); + + void CopyNativeDependenciesToStore(AbsolutePath file, string depsJsonContent) + { + var depsDirectory = file.Parent; + var targetDirectory = Path.Combine(depsDirectory.Parent.Parent.Parent.Parent, "store"); + using var jsonDocument = JsonDocument.Parse(depsJsonContent); + + var runtimeName = jsonDocument.RootElement.GetProperty("runtimeTarget").GetProperty("name").GetString(); + var folderRuntimeName = MapToFolderName(runtimeName); + + string MapToFolderName(string runtimeName) + { + switch (runtimeName) + { + case ".NETCoreApp,Version=v3.1": + return "netcoreapp3.1"; + case ".NETCoreApp,Version=v6.0": + return "net6.0"; + } + + throw new ArgumentOutOfRangeException(nameof(runtimeName), runtimeName, + "This value is not supported. You have probably introduced new .NET version to AutoInstrumentation"); + } + + foreach (var targetProperty in jsonDocument.RootElement.GetProperty("targets").EnumerateObject()) + { + var target = targetProperty.Value; + + foreach (var packages in target.EnumerateObject()) + { + if (packages.Value.TryGetProperty("runtimeTargets", out var runtimeTargets)) + { + foreach (var runtimeDependency in runtimeTargets.EnumerateObject()) + { + var sourceFileName = Path.Combine(depsDirectory, runtimeDependency.Name); + + + var targetFileNameX64 = Path.Combine(targetDirectory, "x64", folderRuntimeName, + packages.Name.ToLowerInvariant(), runtimeDependency.Name); + var targetFileNameX86 = Path.Combine(targetDirectory, "x86", folderRuntimeName, + packages.Name.ToLowerInvariant(), runtimeDependency.Name); + + var targetDirectoryX64 = Path.GetDirectoryName(targetFileNameX64); + var targetDirectoryX86 = Path.GetDirectoryName(targetFileNameX86); + + if (!Directory.Exists(targetDirectoryX64)) + { + Directory.CreateDirectory(targetDirectoryX64); + } + + File.Copy(sourceFileName, targetFileNameX64); + + if (!Directory.Exists(targetDirectoryX86)) + { + Directory.CreateDirectory(targetDirectoryX86); + } + + File.Copy(sourceFileName, targetFileNameX86); + } + } + } + } + } + + void RemoveOpenTelemetryAutoInstrumentationAdditionalDepsFromDepsFile(string depsJsonContent, AbsolutePath file) + { + // Remove OpenTelemetry.Instrumentation.AutoInstrumentationAdditionalDeps entry from target section. + depsJsonContent = Regex.Replace(depsJsonContent, + "\"OpenTelemetry(.+)AutoInstrumentation.AdditionalDeps.dll(.+?)}," + Environment.NewLine + "(.+?)\"", "\"", + RegexOptions.IgnoreCase | RegexOptions.Singleline); + // Remove OpenTelemetry.Instrumentation.AutoInstrumentationAdditionalDeps entry from library section and write to file. + depsJsonContent = Regex.Replace(depsJsonContent, "\"OpenTelemetry(.+?)}," + Environment.NewLine + "(.+?)\"", "\"", + RegexOptions.IgnoreCase | RegexOptions.Singleline); + File.WriteAllText(file, depsJsonContent); + } + + void RemoveFilesFromAdditionalDepsDirectory() + { + AdditionalDepsDirectory.GlobFiles("**/*.dll", "**/*.pdb", "**/*.xml", "**/*.dylib", "**/*.so").ForEach(DeleteFile); + AdditionalDepsDirectory.GlobDirectories("**/runtimes").ForEach(DeleteDirectory); + } + }); + }; Target InstallDocumentationTools => _ => _ .Description("Installs markdownlint-cli and cspell locally. npm is required") diff --git a/test/IntegrationTests/BuildTests.DistributionStructure_linux.verified.txt b/test/IntegrationTests/BuildTests.DistributionStructure_linux.verified.txt index 83c10c58eb..9d7097b9ee 100644 --- a/test/IntegrationTests/BuildTests.DistributionStructure_linux.verified.txt +++ b/test/IntegrationTests/BuildTests.DistributionStructure_linux.verified.txt @@ -73,7 +73,13 @@ /store/x64/net6.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll, /store/x64/net6.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, /store/x64/net6.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll, + /store/x64/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll, + /store/x64/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll, + /store/x64/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll, /store/x64/net6.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll, + /store/x64/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so, + /store/x64/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib, + /store/x64/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll, /store/x64/net6.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll, /store/x64/netcoreapp3.1/artifact.xml, /store/x64/netcoreapp3.1/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll, @@ -91,7 +97,13 @@ /store/x64/netcoreapp3.1/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll, /store/x64/netcoreapp3.1/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, /store/x64/netcoreapp3.1/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll, + /store/x64/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll, + /store/x64/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll, + /store/x64/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll, /store/x64/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll, + /store/x64/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so, + /store/x64/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib, + /store/x64/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll, /store/x64/netcoreapp3.1/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll, /store/x64/netcoreapp3.1/system.diagnostics.diagnosticsource/6.0.0/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll, /store/x64/netcoreapp3.1/system.runtime.compilerservices.unsafe/6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll, @@ -111,7 +123,13 @@ /store/x86/net6.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll, /store/x86/net6.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, /store/x86/net6.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll, + /store/x86/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll, + /store/x86/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll, + /store/x86/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll, /store/x86/net6.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll, + /store/x86/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so, + /store/x86/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib, + /store/x86/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll, /store/x86/net6.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll, /store/x86/netcoreapp3.1/artifact.xml, /store/x86/netcoreapp3.1/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll, @@ -129,7 +147,13 @@ /store/x86/netcoreapp3.1/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll, /store/x86/netcoreapp3.1/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, /store/x86/netcoreapp3.1/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll, + /store/x86/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll, + /store/x86/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll, + /store/x86/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll, /store/x86/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll, + /store/x86/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so, + /store/x86/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib, + /store/x86/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll, /store/x86/netcoreapp3.1/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll, /store/x86/netcoreapp3.1/system.diagnostics.diagnosticsource/6.0.0/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll, /store/x86/netcoreapp3.1/system.runtime.compilerservices.unsafe/6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll diff --git a/test/IntegrationTests/BuildTests.DistributionStructure_osx.verified.txt b/test/IntegrationTests/BuildTests.DistributionStructure_osx.verified.txt index 942b3fa3ac..ec1ed1d7be 100644 --- a/test/IntegrationTests/BuildTests.DistributionStructure_osx.verified.txt +++ b/test/IntegrationTests/BuildTests.DistributionStructure_osx.verified.txt @@ -73,7 +73,13 @@ /store/x64/net6.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll, /store/x64/net6.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, /store/x64/net6.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll, + /store/x64/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll, + /store/x64/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll, + /store/x64/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll, /store/x64/net6.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll, + /store/x64/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so, + /store/x64/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib, + /store/x64/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll, /store/x64/net6.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll, /store/x64/netcoreapp3.1/artifact.xml, /store/x64/netcoreapp3.1/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll, @@ -91,7 +97,13 @@ /store/x64/netcoreapp3.1/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll, /store/x64/netcoreapp3.1/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, /store/x64/netcoreapp3.1/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll, + /store/x64/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll, + /store/x64/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll, + /store/x64/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll, /store/x64/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll, + /store/x64/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so, + /store/x64/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib, + /store/x64/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll, /store/x64/netcoreapp3.1/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll, /store/x64/netcoreapp3.1/system.diagnostics.diagnosticsource/6.0.0/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll, /store/x64/netcoreapp3.1/system.runtime.compilerservices.unsafe/6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll, @@ -111,7 +123,13 @@ /store/x86/net6.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll, /store/x86/net6.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, /store/x86/net6.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll, + /store/x86/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll, + /store/x86/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll, + /store/x86/net6.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll, /store/x86/net6.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll, + /store/x86/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so, + /store/x86/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib, + /store/x86/net6.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll, /store/x86/net6.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll, /store/x86/netcoreapp3.1/artifact.xml, /store/x86/netcoreapp3.1/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll, @@ -129,7 +147,13 @@ /store/x86/netcoreapp3.1/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll, /store/x86/netcoreapp3.1/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, /store/x86/netcoreapp3.1/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll, + /store/x86/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll, + /store/x86/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll, + /store/x86/netcoreapp3.1/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll, /store/x86/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll, + /store/x86/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so, + /store/x86/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib, + /store/x86/netcoreapp3.1/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll, /store/x86/netcoreapp3.1/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll, /store/x86/netcoreapp3.1/system.diagnostics.diagnosticsource/6.0.0/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll, /store/x86/netcoreapp3.1/system.runtime.compilerservices.unsafe/6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll diff --git a/test/IntegrationTests/BuildTests.DistributionStructure_windows.verified.txt b/test/IntegrationTests/BuildTests.DistributionStructure_windows.verified.txt index 69012ccc78..948dfa971e 100644 --- a/test/IntegrationTests/BuildTests.DistributionStructure_windows.verified.txt +++ b/test/IntegrationTests/BuildTests.DistributionStructure_windows.verified.txt @@ -217,7 +217,13 @@ \store\x64\net6.0\mongodb.bson\2.13.3\lib\netstandard2.1\MongoDB.Bson.dll, \store\x64\net6.0\mongodb.driver.core.extensions.diagnosticsources\1.2.0\lib\netstandard2.0\MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, \store\x64\net6.0\mongodb.driver.core\2.13.3\lib\netstandard2.1\MongoDB.Driver.Core.dll, + \store\x64\net6.0\mongodb.driver.core\2.13.3\runtimes\win\native\libzstd.dll, + \store\x64\net6.0\mongodb.driver.core\2.13.3\runtimes\win\native\snappy32.dll, + \store\x64\net6.0\mongodb.driver.core\2.13.3\runtimes\win\native\snappy64.dll, \store\x64\net6.0\mongodb.libmongocrypt\1.2.2\lib\netstandard2.1\MongoDB.Libmongocrypt.dll, + \store\x64\net6.0\mongodb.libmongocrypt\1.2.2\runtimes\linux\native\libmongocrypt.so, + \store\x64\net6.0\mongodb.libmongocrypt\1.2.2\runtimes\osx\native\libmongocrypt.dylib, + \store\x64\net6.0\mongodb.libmongocrypt\1.2.2\runtimes\win\native\mongocrypt.dll, \store\x64\net6.0\sharpcompress\0.23.0\lib\netstandard2.0\SharpCompress.dll, \store\x64\netcoreapp3.1\artifact.xml, \store\x64\netcoreapp3.1\dnsclient\1.4.0\lib\netstandard2.1\DnsClient.dll, @@ -235,7 +241,13 @@ \store\x64\netcoreapp3.1\mongodb.bson\2.13.3\lib\netstandard2.1\MongoDB.Bson.dll, \store\x64\netcoreapp3.1\mongodb.driver.core.extensions.diagnosticsources\1.2.0\lib\netstandard2.0\MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, \store\x64\netcoreapp3.1\mongodb.driver.core\2.13.3\lib\netstandard2.1\MongoDB.Driver.Core.dll, + \store\x64\netcoreapp3.1\mongodb.driver.core\2.13.3\runtimes\win\native\libzstd.dll, + \store\x64\netcoreapp3.1\mongodb.driver.core\2.13.3\runtimes\win\native\snappy32.dll, + \store\x64\netcoreapp3.1\mongodb.driver.core\2.13.3\runtimes\win\native\snappy64.dll, \store\x64\netcoreapp3.1\mongodb.libmongocrypt\1.2.2\lib\netstandard2.1\MongoDB.Libmongocrypt.dll, + \store\x64\netcoreapp3.1\mongodb.libmongocrypt\1.2.2\runtimes\linux\native\libmongocrypt.so, + \store\x64\netcoreapp3.1\mongodb.libmongocrypt\1.2.2\runtimes\osx\native\libmongocrypt.dylib, + \store\x64\netcoreapp3.1\mongodb.libmongocrypt\1.2.2\runtimes\win\native\mongocrypt.dll, \store\x64\netcoreapp3.1\sharpcompress\0.23.0\lib\netstandard2.0\SharpCompress.dll, \store\x64\netcoreapp3.1\system.diagnostics.diagnosticsource\6.0.0\lib\netstandard2.0\System.Diagnostics.DiagnosticSource.dll, \store\x64\netcoreapp3.1\system.runtime.compilerservices.unsafe\6.0.0\lib\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll, @@ -255,7 +267,13 @@ \store\x86\net6.0\mongodb.bson\2.13.3\lib\netstandard2.1\MongoDB.Bson.dll, \store\x86\net6.0\mongodb.driver.core.extensions.diagnosticsources\1.2.0\lib\netstandard2.0\MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, \store\x86\net6.0\mongodb.driver.core\2.13.3\lib\netstandard2.1\MongoDB.Driver.Core.dll, + \store\x86\net6.0\mongodb.driver.core\2.13.3\runtimes\win\native\libzstd.dll, + \store\x86\net6.0\mongodb.driver.core\2.13.3\runtimes\win\native\snappy32.dll, + \store\x86\net6.0\mongodb.driver.core\2.13.3\runtimes\win\native\snappy64.dll, \store\x86\net6.0\mongodb.libmongocrypt\1.2.2\lib\netstandard2.1\MongoDB.Libmongocrypt.dll, + \store\x86\net6.0\mongodb.libmongocrypt\1.2.2\runtimes\linux\native\libmongocrypt.so, + \store\x86\net6.0\mongodb.libmongocrypt\1.2.2\runtimes\osx\native\libmongocrypt.dylib, + \store\x86\net6.0\mongodb.libmongocrypt\1.2.2\runtimes\win\native\mongocrypt.dll, \store\x86\net6.0\sharpcompress\0.23.0\lib\netstandard2.0\SharpCompress.dll, \store\x86\netcoreapp3.1\artifact.xml, \store\x86\netcoreapp3.1\dnsclient\1.4.0\lib\netstandard2.1\DnsClient.dll, @@ -273,7 +291,13 @@ \store\x86\netcoreapp3.1\mongodb.bson\2.13.3\lib\netstandard2.1\MongoDB.Bson.dll, \store\x86\netcoreapp3.1\mongodb.driver.core.extensions.diagnosticsources\1.2.0\lib\netstandard2.0\MongoDB.Driver.Core.Extensions.DiagnosticSources.dll, \store\x86\netcoreapp3.1\mongodb.driver.core\2.13.3\lib\netstandard2.1\MongoDB.Driver.Core.dll, + \store\x86\netcoreapp3.1\mongodb.driver.core\2.13.3\runtimes\win\native\libzstd.dll, + \store\x86\netcoreapp3.1\mongodb.driver.core\2.13.3\runtimes\win\native\snappy32.dll, + \store\x86\netcoreapp3.1\mongodb.driver.core\2.13.3\runtimes\win\native\snappy64.dll, \store\x86\netcoreapp3.1\mongodb.libmongocrypt\1.2.2\lib\netstandard2.1\MongoDB.Libmongocrypt.dll, + \store\x86\netcoreapp3.1\mongodb.libmongocrypt\1.2.2\runtimes\linux\native\libmongocrypt.so, + \store\x86\netcoreapp3.1\mongodb.libmongocrypt\1.2.2\runtimes\osx\native\libmongocrypt.dylib, + \store\x86\netcoreapp3.1\mongodb.libmongocrypt\1.2.2\runtimes\win\native\mongocrypt.dll, \store\x86\netcoreapp3.1\sharpcompress\0.23.0\lib\netstandard2.0\SharpCompress.dll, \store\x86\netcoreapp3.1\system.diagnostics.diagnosticsource\6.0.0\lib\netstandard2.0\System.Diagnostics.DiagnosticSource.dll, \store\x86\netcoreapp3.1\system.runtime.compilerservices.unsafe\6.0.0\lib\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll,