Support for .NET 7 (#1617)
This commit is contained in:
parent
8e757191ad
commit
1ceac49732
|
@ -25,6 +25,7 @@ jobs:
|
|||
with:
|
||||
dotnet-version: |
|
||||
6.0.x
|
||||
7.0.x
|
||||
- run: ./build.cmd Workflow --containers ${{ matrix.containers }}
|
||||
- name: Upload logs
|
||||
uses: actions/upload-artifact@v3.1.1
|
||||
|
|
|
@ -20,10 +20,10 @@ jobs:
|
|||
- name: check out code
|
||||
uses: actions/checkout@v3.1.0
|
||||
|
||||
- name: Setup .NET 6.0
|
||||
- name: Setup .NET 7.0
|
||||
uses: actions/setup-dotnet@v3.0.3
|
||||
with:
|
||||
dotnet-version: 6.0.x
|
||||
dotnet-version: 7.0.x
|
||||
|
||||
- name: Install format tool
|
||||
run: dotnet tool install -g dotnet-format
|
||||
|
|
|
@ -18,6 +18,7 @@ jobs:
|
|||
with:
|
||||
dotnet-version: |
|
||||
6.0.x
|
||||
7.0.x
|
||||
- run: ./build.cmd
|
||||
- name: Upload binaries
|
||||
uses: actions/upload-artifact@v3.1.1
|
||||
|
|
|
@ -31,6 +31,7 @@ jobs:
|
|||
with:
|
||||
dotnet-version: |
|
||||
6.0.x
|
||||
7.0.x
|
||||
- run: ./build.cmd BuildTracer ManagedTests --containers ${{ matrix.containers }} --test-project "${{ github.event.inputs.testProject }}" --test-name '"${{ github.event.inputs.testName }}"' --test-count ${{ github.event.inputs.count }}
|
||||
- name: Upload logs
|
||||
uses: actions/upload-artifact@v3.1.1
|
||||
|
|
|
@ -30,6 +30,7 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h
|
|||
|
||||
### Added
|
||||
|
||||
- Add support for .NET 7.
|
||||
- Error message on the native log if bytecode instrumentation type is missing all
|
||||
instrumentation methods [#1499](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/1499).
|
||||
- Plugins can overwrite OpenTelemetry dotnet SDK instrumentation and exporter options.
|
||||
|
|
|
@ -14,7 +14,6 @@ using Nuke.Common.Tools.MSBuild;
|
|||
using Nuke.Common.Tools.Npm;
|
||||
using Nuke.Common.Tools.NuGet;
|
||||
using Nuke.Common.Utilities.Collections;
|
||||
using static DotNetMSBuildTasks;
|
||||
using static Nuke.Common.EnvironmentInfo;
|
||||
using static Nuke.Common.IO.FileSystemTasks;
|
||||
using static Nuke.Common.Tools.DotNet.DotNetTasks;
|
||||
|
@ -52,7 +51,10 @@ partial class Build
|
|||
TargetFramework.NET6_0
|
||||
};
|
||||
|
||||
private static readonly IEnumerable<TargetFramework> TestFrameworks = TargetFrameworks;
|
||||
private static readonly IEnumerable<TargetFramework> TestFrameworks = TargetFrameworks
|
||||
.Concat(new[] {
|
||||
TargetFramework.NET7_0
|
||||
});
|
||||
|
||||
Target CreateRequiredDirectories => _ => _
|
||||
.Unlisted()
|
||||
|
@ -129,7 +131,7 @@ partial class Build
|
|||
|
||||
DotNetMSBuild(x => x
|
||||
.SetTargetPath(MsBuildProject)
|
||||
.SetTargetPlatform(Platform)
|
||||
.SetPlatform(Platform)
|
||||
.SetConfiguration(BuildConfiguration)
|
||||
.DisableRestore()
|
||||
.SetTargets("BuildCsharpTest"));
|
||||
|
@ -333,22 +335,20 @@ partial class Build
|
|||
return;
|
||||
}
|
||||
|
||||
IEnumerable<TargetFramework> frameworks = IsWin ? TestFrameworks : TestFrameworks.ExceptNetFramework();
|
||||
var frameworks = IsWin ? TestFrameworks : TestFrameworks.ExceptNetFramework();
|
||||
|
||||
for (int i = 0; i < TestCount; i++)
|
||||
{
|
||||
DotNetTest(config => config
|
||||
DotNetMSBuild(config => config
|
||||
.SetConfiguration(BuildConfiguration)
|
||||
.SetTargetPlatform(Platform)
|
||||
.SetPlatform(Platform)
|
||||
.SetFilter(AndFilter(TestNameFilter(), ContainersFilter()))
|
||||
.SetBlameHangTimeout("5m")
|
||||
.EnableTrxLogOutput(GetResultsDirectory(project))
|
||||
.SetProjectFile(project)
|
||||
.EnableNoRestore()
|
||||
.EnableNoBuild()
|
||||
.CombineWith(frameworks, (s, fx) => s
|
||||
.SetFramework(fx)
|
||||
));
|
||||
.SetTargetPath(project)
|
||||
.DisableRestore()
|
||||
.RunTests()
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -488,6 +488,7 @@ partial class Build
|
|||
var folderRuntimeName = runtimeName switch
|
||||
{
|
||||
".NETCoreApp,Version=v6.0" => "net6.0",
|
||||
".NETCoreApp,Version=v7.0" => "net7.0",
|
||||
_ => throw new ArgumentOutOfRangeException(nameof(runtimeName), runtimeName,
|
||||
"This value is not supported. You have probably introduced new .NET version to AutoInstrumentation")
|
||||
};
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
using System;
|
||||
using Microsoft.Build.Tasks;
|
||||
using Nuke.Common.Tooling;
|
||||
using Nuke.Common.Tools.DotNet;
|
||||
using Nuke.Common.Tools.MSBuild;
|
||||
|
||||
[Serializable]
|
||||
public class DotNetMSBuildSettings : MSBuildSettings
|
||||
{
|
||||
/// <summary>
|
||||
/// Path to the DotNet executable.
|
||||
/// </summary>
|
||||
public override string ProcessToolPath => DotNetTasks.DotNetPath;
|
||||
public override Action<OutputType, string> ProcessCustomLogger => DotNetTasks.DotNetLogger;
|
||||
protected override Arguments ConfigureProcessArguments(Arguments arguments)
|
||||
{
|
||||
arguments
|
||||
.Add("msbuild");
|
||||
return base.ConfigureProcessArguments(arguments);
|
||||
}
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
using System.Collections.Generic;
|
||||
using Nuke.Common.Tooling;
|
||||
|
||||
public static class DotNetMSBuildTasks
|
||||
{
|
||||
/// <summary>
|
||||
/// <p>The <c>dotnet msbuild</c> command allows access to a fully functional MSBuild.</p><p>The command has the exact same capabilities as the existing MSBuild command-line client for SDK-style projects only. The options are all the same. For more information about the available options, see the [MSBuild command-line reference](/visualstudio/msbuild/msbuild-command-line-reference).</p><p>The [dotnet build](dotnet-build.md) command is equivalent to <c>dotnet msbuild -restore</c>. When you don't want to build the project and you have a specific target you want to run, use <c>dotnet build</c> or <c>>dotnet msbuild</c> and specify the target.</p>
|
||||
/// <p>For more details, visit the <a href="https://docs.microsoft.com/en-us/dotnet/core/tools/">official website</a>.</p>
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// <p>This is a <a href="http://www.nuke.build/docs/authoring-builds/cli-tools.html#fluent-apis">CLI wrapper with fluent API</a> that allows to modify the following arguments:</p>
|
||||
/// </remarks>
|
||||
public static IReadOnlyCollection<Output> DotNetMSBuild(DotNetMSBuildSettings toolSettings = null)
|
||||
{
|
||||
toolSettings = toolSettings ?? new DotNetMSBuildSettings();
|
||||
using var process = ProcessTasks.StartProcess(toolSettings);
|
||||
process.AssertZeroExitCode();
|
||||
return process.Output;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// <p>The <c>dotnet msbuild</c> command allows access to a fully functional MSBuild.</p><p>The command has the exact same capabilities as the existing MSBuild command-line client for SDK-style projects only. The options are all the same. For more information about the available options, see the [MSBuild command-line reference](/visualstudio/msbuild/msbuild-command-line-reference).</p><p>The [dotnet build](dotnet-build.md) command is equivalent to <c>dotnet msbuild -restore</c>. When you don't want to build the project and you have a specific target you want to run, use <c>dotnet build</c> or <c>>dotnet msbuild</c> and specify the target.</p>
|
||||
/// <p>For more details, visit the <a href="https://docs.microsoft.com/en-us/dotnet/core/tools/">official website</a>.</p>
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// <p>This is a <a href="http://www.nuke.build/docs/authoring-builds/cli-tools.html#fluent-apis">CLI wrapper with fluent API</a> that allows to modify the following arguments:</p>
|
||||
/// </remarks>
|
||||
public static IReadOnlyCollection<Output> DotNetMSBuild(Configure<DotNetMSBuildSettings> configurator)
|
||||
{
|
||||
return DotNetMSBuild(configurator(new DotNetMSBuildSettings()));
|
||||
}
|
||||
}
|
|
@ -11,8 +11,7 @@ internal static class DotNetSettingsExtensions
|
|||
public static DotNetTestSettings SetTargetPlatformAnyCPU(this DotNetTestSettings settings)
|
||||
=> settings.SetTargetPlatform(MSBuildTargetPlatform.MSIL);
|
||||
|
||||
public static T SetTargetPlatformAnyCPU<T>(this T settings)
|
||||
where T : MSBuildSettings
|
||||
public static DotNetMSBuildSettings SetTargetPlatformAnyCPU(this DotNetMSBuildSettings settings)
|
||||
=> settings.SetTargetPlatform(MSBuildTargetPlatform.MSIL);
|
||||
|
||||
public static DotNetPublishSettings SetTargetPlatform(this DotNetPublishSettings settings, MSBuildTargetPlatform platform)
|
||||
|
@ -29,6 +28,13 @@ internal static class DotNetSettingsExtensions
|
|||
: settings.SetProperty("Platform", GetTargetPlatform(platform));
|
||||
}
|
||||
|
||||
public static DotNetMSBuildSettings SetTargetPlatform(this DotNetMSBuildSettings settings, MSBuildTargetPlatform platform)
|
||||
{
|
||||
return platform is null
|
||||
? settings
|
||||
: settings.SetProperty("Platform", GetTargetPlatform(platform));
|
||||
}
|
||||
|
||||
public static DotNetTestSettings EnableTrxLogOutput(this DotNetTestSettings settings, string resultsDirectory)
|
||||
{
|
||||
return settings
|
||||
|
@ -36,6 +42,33 @@ internal static class DotNetSettingsExtensions
|
|||
.SetResultsDirectory(resultsDirectory);
|
||||
}
|
||||
|
||||
public static DotNetMSBuildSettings EnableTrxLogOutput(this DotNetMSBuildSettings settings, string resultsDirectory)
|
||||
{
|
||||
return settings
|
||||
.SetProperty("VSTestLogger", "trx")
|
||||
.SetProperty("VSTestResultsDirectory", resultsDirectory);
|
||||
}
|
||||
|
||||
public static DotNetMSBuildSettings SetBlameHangTimeout(this DotNetMSBuildSettings settings, string timeout)
|
||||
{
|
||||
return settings
|
||||
.SetProperty("VSTestBlameHang", true)
|
||||
.SetProperty("VSTestBlameHangTimeout", timeout);
|
||||
}
|
||||
|
||||
public static DotNetMSBuildSettings RunTests(this DotNetMSBuildSettings settings)
|
||||
{
|
||||
return settings
|
||||
.SetTargets("VSTest")
|
||||
.SetProperty("VSTestNoBuild", true);
|
||||
}
|
||||
|
||||
public static DotNetMSBuildSettings SetFilter(this DotNetMSBuildSettings settings, string filter)
|
||||
{
|
||||
return settings
|
||||
.SetProperty("VSTestTestCaseFilter", filter);
|
||||
}
|
||||
|
||||
private static string GetTargetPlatform(MSBuildTargetPlatform platform) =>
|
||||
platform == MSBuildTargetPlatform.MSIL ? "AnyCPU" : platform.ToString();
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@ public class TargetFramework : Enumeration
|
|||
{
|
||||
public static readonly TargetFramework NET462 = new() { Value = "net462" };
|
||||
public static readonly TargetFramework NET6_0 = new() { Value = "net6.0" };
|
||||
public static readonly TargetFramework NET7_0 = new() { Value = "net7.0" };
|
||||
|
||||
public static readonly TargetFramework[] NetFramework = {
|
||||
NET462
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<RootNamespace></RootNamespace>
|
||||
<NoWarn>CS0649;CS0169</NoWarn>
|
||||
<NukeRootDirectory>..\..</NukeRootDirectory>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine3.16
|
||||
FROM mcr.microsoft.com/dotnet/sdk:7.0-alpine3.16
|
||||
|
||||
RUN apk update \
|
||||
&& apk upgrade \
|
||||
|
@ -16,11 +16,9 @@ ENV IsAlpine=true
|
|||
ENV PROTOBUF_PROTOC=/usr/bin/protoc
|
||||
ENV gRPC_PluginFullPath=/usr/bin/grpc_csharp_plugin
|
||||
|
||||
# Install older .NET SDKs using the install script
|
||||
# will be needed when we switch to 7.0
|
||||
# RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \
|
||||
# && chmod +x ./dotnet-install.sh \
|
||||
# && ./dotnet-install.sh -c 3.1 --install-dir /usr/share/dotnet --no-path \
|
||||
# && rm dotnet-install.sh
|
||||
RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \
|
||||
&& chmod +x ./dotnet-install.sh \
|
||||
&& ./dotnet-install.sh -c 6.0 --install-dir /usr/share/dotnet --no-path \
|
||||
&& rm dotnet-install.sh
|
||||
|
||||
WORKDIR /project
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
|
||||
<RootNamespace>Examples.AspNetCoreMvc</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFrameworks>net462;net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0;net462</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFrameworks>net462;net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0;net462</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))">
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net462;netstandard2.0;net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0;netstandard2.0;net462</TargetFrameworks>
|
||||
<Version>0.0.1</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
"minimum_major": 3,
|
||||
"minimum_minor": 1,
|
||||
"minimum_patch": 0,
|
||||
"maximum_major": 6,
|
||||
"maximum_major": 7,
|
||||
"maximum_minor": 65535,
|
||||
"maximum_patch": 65535
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<Target Name="CallComposeStore" AfterTargets="Publish">
|
||||
|
|
|
@ -29,7 +29,7 @@ namespace OpenTelemetry.AutoInstrumentation.Instrumentations.Logger;
|
|||
ReturnTypeName = ClrNames.Void,
|
||||
ParameterTypeNames = new[] { "Microsoft.Extensions.DependencyInjection.IServiceCollection" },
|
||||
MinimumVersion = "3.1.0",
|
||||
MaximumVersion = "6.*.*",
|
||||
MaximumVersion = "7.*.*",
|
||||
IntegrationName = "ILogger",
|
||||
Type = InstrumentationType.Log)]
|
||||
public class LoggingBuilderIntegration
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<!-- only run .NET Framework tests on Windows -->
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
|
||||
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks>
|
||||
|
||||
<!-- Hide warnings for EOL .NET Core targets (e.g. netcoreapp3.0) -->
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[
|
||||
/AdditionalDeps/shared/Microsoft.NETCore.App/6.0.0/OpenTelemetry.AutoInstrumentation.AdditionalDeps.deps.json,
|
||||
/AdditionalDeps/shared/Microsoft.NETCore.App/7.0.0/OpenTelemetry.AutoInstrumentation.AdditionalDeps.deps.json,
|
||||
/OpenTelemetry.AutoInstrumentation.Native.so,
|
||||
/instrument.sh,
|
||||
/integrations.json,
|
||||
|
@ -84,6 +85,30 @@
|
|||
/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/net7.0/artifact.xml,
|
||||
/store/x64/net7.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration.binder/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.dependencyinjection.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.dependencyinjection/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging.abstractions/6.0.2/lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Logging.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.options.configurationextensions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.options/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Options.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.primitives/6.0.0/lib/net6.0/Microsoft.Extensions.Primitives.dll,
|
||||
/store/x64/net7.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll,
|
||||
/store/x64/net7.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll,
|
||||
/store/x86/net6.0/artifact.xml,
|
||||
/store/x86/net6.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x86/net6.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
|
@ -107,5 +132,29 @@
|
|||
/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/net6.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll,
|
||||
/store/x86/net7.0/artifact.xml,
|
||||
/store/x86/net7.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration.binder/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.dependencyinjection.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.dependencyinjection/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging.abstractions/6.0.2/lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Logging.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.options.configurationextensions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.options/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Options.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.primitives/6.0.0/lib/net6.0/Microsoft.Extensions.Primitives.dll,
|
||||
/store/x86/net7.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll,
|
||||
/store/x86/net7.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll
|
||||
]
|
|
@ -1,5 +1,6 @@
|
|||
[
|
||||
/AdditionalDeps/shared/Microsoft.NETCore.App/6.0.0/OpenTelemetry.AutoInstrumentation.AdditionalDeps.deps.json,
|
||||
/AdditionalDeps/shared/Microsoft.NETCore.App/7.0.0/OpenTelemetry.AutoInstrumentation.AdditionalDeps.deps.json,
|
||||
/OpenTelemetry.AutoInstrumentation.Native.so,
|
||||
/instrument.sh,
|
||||
/integrations.json,
|
||||
|
@ -84,6 +85,30 @@
|
|||
/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/net7.0/artifact.xml,
|
||||
/store/x64/net7.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration.binder/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.dependencyinjection.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.dependencyinjection/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging.abstractions/6.0.2/lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Logging.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.options.configurationextensions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.options/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Options.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.primitives/6.0.0/lib/net6.0/Microsoft.Extensions.Primitives.dll,
|
||||
/store/x64/net7.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll,
|
||||
/store/x64/net7.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll,
|
||||
/store/x86/net6.0/artifact.xml,
|
||||
/store/x86/net6.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x86/net6.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
|
@ -107,5 +132,29 @@
|
|||
/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/net6.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll,
|
||||
/store/x86/net7.0/artifact.xml,
|
||||
/store/x86/net7.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration.binder/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.dependencyinjection.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.dependencyinjection/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging.abstractions/6.0.2/lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Logging.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.options.configurationextensions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.options/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Options.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.primitives/6.0.0/lib/net6.0/Microsoft.Extensions.Primitives.dll,
|
||||
/store/x86/net7.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll,
|
||||
/store/x86/net7.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll
|
||||
]
|
|
@ -1,5 +1,6 @@
|
|||
[
|
||||
/AdditionalDeps/shared/Microsoft.NETCore.App/6.0.0/OpenTelemetry.AutoInstrumentation.AdditionalDeps.deps.json,
|
||||
/AdditionalDeps/shared/Microsoft.NETCore.App/7.0.0/OpenTelemetry.AutoInstrumentation.AdditionalDeps.deps.json,
|
||||
/OpenTelemetry.AutoInstrumentation.Native.dylib,
|
||||
/instrument.sh,
|
||||
/integrations.json,
|
||||
|
@ -84,6 +85,30 @@
|
|||
/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/net7.0/artifact.xml,
|
||||
/store/x64/net7.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration.binder/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.dependencyinjection.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.dependencyinjection/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging.abstractions/6.0.2/lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.logging/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Logging.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.options.configurationextensions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.options/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Options.dll,
|
||||
/store/x64/net7.0/microsoft.extensions.primitives/6.0.0/lib/net6.0/Microsoft.Extensions.Primitives.dll,
|
||||
/store/x64/net7.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll,
|
||||
/store/x64/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib,
|
||||
/store/x64/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll,
|
||||
/store/x64/net7.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll,
|
||||
/store/x86/net6.0/artifact.xml,
|
||||
/store/x86/net6.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x86/net6.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
|
@ -107,5 +132,29 @@
|
|||
/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/net6.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll,
|
||||
/store/x86/net7.0/artifact.xml,
|
||||
/store/x86/net7.0/dnsclient/1.4.0/lib/netstandard2.1/DnsClient.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration.abstractions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration.binder/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Configuration.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.dependencyinjection.abstractions/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.dependencyinjection/6.0.0/lib/net6.0/Microsoft.Extensions.DependencyInjection.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging.abstractions/6.0.2/lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging.configuration/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.logging/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Logging.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.options.configurationextensions/6.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.options/6.0.0/lib/netstandard2.1/Microsoft.Extensions.Options.dll,
|
||||
/store/x86/net7.0/microsoft.extensions.primitives/6.0.0/lib/net6.0/Microsoft.Extensions.Primitives.dll,
|
||||
/store/x86/net7.0/mongodb.bson/2.13.3/lib/netstandard2.1/MongoDB.Bson.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core.extensions.diagnosticsources/1.2.0/lib/netstandard2.0/MongoDB.Driver.Core.Extensions.DiagnosticSources.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/lib/netstandard2.1/MongoDB.Driver.Core.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/libzstd.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy32.dll,
|
||||
/store/x86/net7.0/mongodb.driver.core/2.13.3/runtimes/win/native/snappy64.dll,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/lib/netstandard2.1/MongoDB.Libmongocrypt.dll,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/linux/native/libmongocrypt.so,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/osx/native/libmongocrypt.dylib,
|
||||
/store/x86/net7.0/mongodb.libmongocrypt/1.2.2/runtimes/win/native/mongocrypt.dll,
|
||||
/store/x86/net7.0/sharpcompress/0.23.0/lib/netstandard2.0/SharpCompress.dll
|
||||
]
|
|
@ -1,5 +1,6 @@
|
|||
[
|
||||
\AdditionalDeps\shared\Microsoft.NETCore.App\6.0.0\OpenTelemetry.AutoInstrumentation.AdditionalDeps.deps.json,
|
||||
\AdditionalDeps\shared\Microsoft.NETCore.App\7.0.0\OpenTelemetry.AutoInstrumentation.AdditionalDeps.deps.json,
|
||||
\instrument.sh,
|
||||
\integrations.json,
|
||||
\net462\Google.Protobuf.dll,
|
||||
|
@ -229,6 +230,30 @@
|
|||
\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\net7.0\artifact.xml,
|
||||
\store\x64\net7.0\dnsclient\1.4.0\lib\netstandard2.1\DnsClient.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.configuration.abstractions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.configuration.binder\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.configuration\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.dependencyinjection.abstractions\6.0.0\lib\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.dependencyinjection\6.0.0\lib\net6.0\Microsoft.Extensions.DependencyInjection.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.logging.abstractions\6.0.2\lib\net6.0\Microsoft.Extensions.Logging.Abstractions.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.logging.configuration\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Configuration.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.logging\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Logging.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.options.configurationextensions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.options\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Options.dll,
|
||||
\store\x64\net7.0\microsoft.extensions.primitives\6.0.0\lib\net6.0\Microsoft.Extensions.Primitives.dll,
|
||||
\store\x64\net7.0\mongodb.bson\2.13.3\lib\netstandard2.1\MongoDB.Bson.dll,
|
||||
\store\x64\net7.0\mongodb.driver.core.extensions.diagnosticsources\1.2.0\lib\netstandard2.0\MongoDB.Driver.Core.Extensions.DiagnosticSources.dll,
|
||||
\store\x64\net7.0\mongodb.driver.core\2.13.3\lib\netstandard2.1\MongoDB.Driver.Core.dll,
|
||||
\store\x64\net7.0\mongodb.driver.core\2.13.3\runtimes\win\native\libzstd.dll,
|
||||
\store\x64\net7.0\mongodb.driver.core\2.13.3\runtimes\win\native\snappy32.dll,
|
||||
\store\x64\net7.0\mongodb.driver.core\2.13.3\runtimes\win\native\snappy64.dll,
|
||||
\store\x64\net7.0\mongodb.libmongocrypt\1.2.2\lib\netstandard2.1\MongoDB.Libmongocrypt.dll,
|
||||
\store\x64\net7.0\mongodb.libmongocrypt\1.2.2\runtimes\linux\native\libmongocrypt.so,
|
||||
\store\x64\net7.0\mongodb.libmongocrypt\1.2.2\runtimes\osx\native\libmongocrypt.dylib,
|
||||
\store\x64\net7.0\mongodb.libmongocrypt\1.2.2\runtimes\win\native\mongocrypt.dll,
|
||||
\store\x64\net7.0\sharpcompress\0.23.0\lib\netstandard2.0\SharpCompress.dll,
|
||||
\store\x86\net6.0\artifact.xml,
|
||||
\store\x86\net6.0\dnsclient\1.4.0\lib\netstandard2.1\DnsClient.dll,
|
||||
\store\x86\net6.0\microsoft.extensions.configuration.abstractions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
|
@ -253,6 +278,30 @@
|
|||
\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\net7.0\artifact.xml,
|
||||
\store\x86\net7.0\dnsclient\1.4.0\lib\netstandard2.1\DnsClient.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.configuration.abstractions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.configuration.binder\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.configuration\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.dependencyinjection.abstractions\6.0.0\lib\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.dependencyinjection\6.0.0\lib\net6.0\Microsoft.Extensions.DependencyInjection.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.logging.abstractions\6.0.2\lib\net6.0\Microsoft.Extensions.Logging.Abstractions.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.logging.configuration\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Configuration.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.logging\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Logging.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.options.configurationextensions\6.0.0\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.options\6.0.0\lib\netstandard2.1\Microsoft.Extensions.Options.dll,
|
||||
\store\x86\net7.0\microsoft.extensions.primitives\6.0.0\lib\net6.0\Microsoft.Extensions.Primitives.dll,
|
||||
\store\x86\net7.0\mongodb.bson\2.13.3\lib\netstandard2.1\MongoDB.Bson.dll,
|
||||
\store\x86\net7.0\mongodb.driver.core.extensions.diagnosticsources\1.2.0\lib\netstandard2.0\MongoDB.Driver.Core.Extensions.DiagnosticSources.dll,
|
||||
\store\x86\net7.0\mongodb.driver.core\2.13.3\lib\netstandard2.1\MongoDB.Driver.Core.dll,
|
||||
\store\x86\net7.0\mongodb.driver.core\2.13.3\runtimes\win\native\libzstd.dll,
|
||||
\store\x86\net7.0\mongodb.driver.core\2.13.3\runtimes\win\native\snappy32.dll,
|
||||
\store\x86\net7.0\mongodb.driver.core\2.13.3\runtimes\win\native\snappy64.dll,
|
||||
\store\x86\net7.0\mongodb.libmongocrypt\1.2.2\lib\netstandard2.1\MongoDB.Libmongocrypt.dll,
|
||||
\store\x86\net7.0\mongodb.libmongocrypt\1.2.2\runtimes\linux\native\libmongocrypt.so,
|
||||
\store\x86\net7.0\mongodb.libmongocrypt\1.2.2\runtimes\osx\native\libmongocrypt.dylib,
|
||||
\store\x86\net7.0\mongodb.libmongocrypt\1.2.2\runtimes\win\native\mongocrypt.dll,
|
||||
\store\x86\net7.0\sharpcompress\0.23.0\lib\netstandard2.0\SharpCompress.dll,
|
||||
\win-x64\OpenTelemetry.AutoInstrumentation.Native.dll,
|
||||
\win-x86\OpenTelemetry.AutoInstrumentation.Native.dll
|
||||
]
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<AddTestStrongNameAssemblyKeyOnNetFramework>true</AddTestStrongNameAssemblyKeyOnNetFramework>
|
||||
<!-- No warn is needed for autogenerated code by protobuf: CS8981 - The type name only contains lower-cased ascii characters. -->
|
||||
<NoWarn Condition="'$(TargetFramework)' == 'net7.0'">CS8981</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
|
||||
|
@ -26,7 +28,7 @@
|
|||
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' OR '$(TargetFramework)' == 'net6.0' ">
|
||||
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<!-- only run .NET Framework tests on Windows -->
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
|
||||
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks>
|
||||
|
||||
<OutputType>Exe</OutputType>
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<!-- No warn is needed for autogenerated code by protobuf: CS8981 - The type name only contains lower-cased ascii characters. -->
|
||||
<NoWarn Condition="'$(TargetFramework)' == 'net7.0'">CS8981</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
||||
<TargetFrameworks>net7.0</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
|
Loading…
Reference in New Issue