diff --git a/.github/workflows/build-solutions.yml b/.github/workflows/build-solutions.yml index 54b27340164..821312f1ce8 100644 --- a/.github/workflows/build-solutions.yml +++ b/.github/workflows/build-solutions.yml @@ -8,14 +8,14 @@ env: jobs: build-solutions: name: Build samples & snippets - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup .NET 5 SDK + - name: Setup .NET SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Add MSBuild to PATH uses: microsoft/setup-msbuild@v1 - name: Build affected samples & snippets diff --git a/.github/workflows/validate-pull-requests.yml b/.github/workflows/validate-pull-requests.yml index 7fa9d37378d..909abbfb63a 100644 --- a/.github/workflows/validate-pull-requests.yml +++ b/.github/workflows/validate-pull-requests.yml @@ -6,40 +6,40 @@ env: jobs: content-verification: name: Content verification - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup .NET 5 SDK + - name: Setup .NET SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Install docstool run: dotnet tool install -g Particular.DocsTool --add-source=https://www.myget.org/F/particular/api/v3/index.json - name: Run docstool run: docstool test integrity-tests: name: Integrity tests - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup .NET 5 SDK + - name: Setup .NET SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Run integrity tests run: dotnet test tests/IntegrityTests/IntegrityTests.csproj --configuration Release build-projects: name: Build samples & snippets - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup .NET 5 SDK + - name: Setup .NET SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Add MSBuild to PATH uses: microsoft/setup-msbuild@v1.0.2 - name: Build affected samples & snippets diff --git a/.github/workflows/verify-master.yml b/.github/workflows/verify-master.yml index e0ef44484aa..d98a63a0142 100644 --- a/.github/workflows/verify-master.yml +++ b/.github/workflows/verify-master.yml @@ -9,14 +9,14 @@ env: jobs: content-verification: name: Content verification - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup .NET Core SDK + - name: Setup .NET SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Install docstool run: dotnet tool install -g Particular.DocsTool --add-source=https://www.myget.org/F/particular/api/v3/index.json - name: Run docstool @@ -36,14 +36,14 @@ jobs: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DOCS_CHANNEL_WEBHOOK }} integrity-tests: name: Integrity tests - runs-on: windows-latest + runs-on: windows-2022 steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup .NET 5 SDK + - name: Setup .NET SDK uses: actions/setup-dotnet@v1.8.1 with: - dotnet-version: 5.0.x + dotnet-version: 6.0.x - name: Run integrity tests run: dotnet test tests/IntegrityTests/IntegrityTests.csproj --configuration Release - name: Notify Slack on failure diff --git a/Snippets/ASBFunctions/ASBFunctions_2.0/MessageConsistency.cs b/Snippets/ASBFunctions/ASBFunctions_2.0/MessageConsistency.cs index c6dad88a2a5..5319e017f07 100644 --- a/Snippets/ASBFunctions/ASBFunctions_2.0/MessageConsistency.cs +++ b/Snippets/ASBFunctions/ASBFunctions_2.0/MessageConsistency.cs @@ -3,12 +3,12 @@ #pragma warning disable 162 namespace ASBFunctions_2_0 { - using System.Threading.Tasks; using Microsoft.Azure.ServiceBus; using Microsoft.Azure.ServiceBus.Core; using Microsoft.Azure.WebJobs; using Microsoft.Extensions.Logging; using NServiceBus; + using System.Threading.Tasks; class MessageConsistency { @@ -53,10 +53,9 @@ class MyFunctions { const bool EnableTransactions = true; - // NOTE: Use concrete class instead of interface - readonly FunctionEndpoint endpoint; + readonly IFunctionEndpoint endpoint; - public MyFunctions(FunctionEndpoint endpoint) + public MyFunctions(IFunctionEndpoint endpoint) { this.endpoint = endpoint; } @@ -69,14 +68,7 @@ public async Task Run( MessageReceiver messageReceiver, ExecutionContext executionContext) { - if(EnableTransactions) - { - await endpoint.ProcessTransactional(message, executionContext, messageReceiver, logger); - } - else - { - await endpoint.ProcessNonTransactional(message, executionContext, messageReceiver, logger); - } + await endpoint.Process(message, executionContext, messageReceiver, EnableTransactions, logger); } } #endregion diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker.sln b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker.sln index ae5ef742d24..c09296974cd 100644 --- a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker.sln +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.29728.190 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31919.166 MinimumVisualStudioVersion = 15.0.26730.12 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ASBFunctionsWorker_1", "ASBFunctionsWorker_1\ASBFunctionsWorker_1.csproj", "{A491A83E-174A-4639-B55E-72ED39DD955C}" EndProject @@ -8,6 +8,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ASBFunctionsWorker_2", "ASB EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ASBFunctionsWorker_3", "ASBFunctionsWorker_3\ASBFunctionsWorker_3.csproj", "{AC3485A9-A489-4509-9481-E88371F31E44}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ASBFunctionsWorker_4", "ASBFunctionsWorker_4\ASBFunctionsWorker_4.csproj", "{A70F0B0D-D2A1-4064-AE9A-D98925CC2D74}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -26,6 +28,10 @@ Global {AC3485A9-A489-4509-9481-E88371F31E44}.Debug|Any CPU.Build.0 = Debug|Any CPU {AC3485A9-A489-4509-9481-E88371F31E44}.Release|Any CPU.ActiveCfg = Release|Any CPU {AC3485A9-A489-4509-9481-E88371F31E44}.Release|Any CPU.Build.0 = Release|Any CPU + {A70F0B0D-D2A1-4064-AE9A-D98925CC2D74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A70F0B0D-D2A1-4064-AE9A-D98925CC2D74}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A70F0B0D-D2A1-4064-AE9A-D98925CC2D74}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A70F0B0D-D2A1-4064-AE9A-D98925CC2D74}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_1/ASBFunctionsWorker_1.csproj b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_1/ASBFunctionsWorker_1.csproj index b6e1cd88e01..82409031d89 100644 --- a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_1/ASBFunctionsWorker_1.csproj +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_1/ASBFunctionsWorker_1.csproj @@ -1,6 +1,6 @@  - net5.0 + net6.0 7.3 diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_2/ASBFunctionsWorker_2.csproj b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_2/ASBFunctionsWorker_2.csproj index 9884507ed90..af767e186f5 100644 --- a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_2/ASBFunctionsWorker_2.csproj +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_2/ASBFunctionsWorker_2.csproj @@ -1,6 +1,6 @@  - net5.0 + net6.0 7.3 diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_2/Sending.cs b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_2/Sending.cs index 3fc400b3d72..f9f37a68f59 100644 --- a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_2/Sending.cs +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_2/Sending.cs @@ -1,4 +1,4 @@ -namespace ASBFunctionsWorker_1 +namespace ASBFunctionsWorker_2 { using System.Net; using System.Threading.Tasks; diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/ASBFunctionsWorker_3.csproj b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/ASBFunctionsWorker_3.csproj index 597185c392a..2bf5b197961 100644 --- a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/ASBFunctionsWorker_3.csproj +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/ASBFunctionsWorker_3.csproj @@ -1,10 +1,10 @@  - net5.0 + net6.0 7.3 - + \ No newline at end of file diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/Sending.cs b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/Sending.cs index 3fc400b3d72..a185137fe3f 100644 --- a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/Sending.cs +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/Sending.cs @@ -1,4 +1,4 @@ -namespace ASBFunctionsWorker_1 +namespace ASBFunctionsWorker_3 { using System.Net; using System.Threading.Tasks; diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/ASBFunctionsWorker_4.csproj b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/ASBFunctionsWorker_4.csproj new file mode 100644 index 00000000000..2df77beea22 --- /dev/null +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/ASBFunctionsWorker_4.csproj @@ -0,0 +1,10 @@ + + + net6.0 + 7.3 + + + + + + \ No newline at end of file diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/Configuration.cs b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/Configuration.cs new file mode 100644 index 00000000000..3fc5a8d91b1 --- /dev/null +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/Configuration.cs @@ -0,0 +1,59 @@ +using Microsoft.Extensions.Hosting; +using NServiceBus; + +#region asb-function-isolated-configuration +[assembly: NServiceBusTriggerFunction("WorkerDemoEndpoint")] + +public class Program +{ + public static void Main() + { + var host = new HostBuilder() + .ConfigureFunctionsWorkerDefaults() + .UseNServiceBus() + .Build(); + + host.Run(); + } +} +#endregion asb-function-isolated-configuration + +class EnableDiagnostics +{ + #region asb-function-isolated-enable-diagnostics + public static void Main() + { + var host = new HostBuilder() + .ConfigureFunctionsWorkerDefaults() + .UseNServiceBus(configuration => + { + configuration.LogDiagnostics(); + }) + .Build(); + + host.Run(); + } + #endregion +} + +class ConfigureErrorQueue +{ + #region asb-function-isolated-configure-error-queue + public static void Main() + { + var host = new HostBuilder() + .ConfigureFunctionsWorkerDefaults() + .UseNServiceBus(configuration => + { + // Change the error queue name: + configuration.AdvancedConfiguration.SendFailedMessagesTo("my-custom-error-queue"); + + // Or disable the error queue to let ASB native dead-lettering handle repeated failures: + configuration.DoNotSendMessagesToErrorQueue(); + }) + .Build(); + + host.Run(); + } + #endregion +} \ No newline at end of file diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/Sending.cs b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/Sending.cs new file mode 100644 index 00000000000..5b717eed8e5 --- /dev/null +++ b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/Sending.cs @@ -0,0 +1,34 @@ +namespace ASBFunctionsWorker_4 +{ + using Microsoft.Azure.Functions.Worker; + using Microsoft.Azure.Functions.Worker.Http; + using NServiceBus; + using System.Net; + using System.Threading.Tasks; + + #region asb-function-isolated-dispatching-outside-message-handler + public class HttpTrigger + { + readonly IFunctionEndpoint functionEndpoint; + + public HttpTrigger(IFunctionEndpoint functionEndpoint) + { + this.functionEndpoint = functionEndpoint; + } + + [Function("HttpSender")] + public async Task Run( + [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequestData req, + FunctionContext executionContext) + { + await functionEndpoint.Send(new TriggerMessage(), executionContext); + + return req.CreateResponse(HttpStatusCode.OK); + } + } + #endregion + + class TriggerMessage + { + } +} \ No newline at end of file diff --git a/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/prerelease.txt b/Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/prerelease.txt similarity index 100% rename from Snippets/ASBFunctionsWorker/ASBFunctionsWorker_3/prerelease.txt rename to Snippets/ASBFunctionsWorker/ASBFunctionsWorker_4/prerelease.txt diff --git a/Snippets/SqlTransport/SqlTransport_7/SqlTransport_7.csproj b/Snippets/SqlTransport/SqlTransport_7/SqlTransport_7.csproj index b02881076d6..844c9a6a4cc 100644 --- a/Snippets/SqlTransport/SqlTransport_7/SqlTransport_7.csproj +++ b/Snippets/SqlTransport/SqlTransport_7/SqlTransport_7.csproj @@ -4,7 +4,7 @@ 7.3 - + diff --git a/nservicebus/upgrades/azure-functions-service-bus-2to3.md b/nservicebus/upgrades/azure-functions-service-bus-2to3.md index a4b4cd55911..996cc98a59c 100644 --- a/nservicebus/upgrades/azure-functions-service-bus-2to3.md +++ b/nservicebus/upgrades/azure-functions-service-bus-2to3.md @@ -9,20 +9,6 @@ upgradeGuideCoreVersions: - 8 --- -## Code first API to set connection string +## .NET 6 -Setting the connection string can now be done as part of calling `UseNServiceBus()` - -Instead of - -```csharp -functionsHostBuilder.UseNServiceBus(() => new ServiceBusTriggeredEndpointConfiguration(endpointName){ - ConnectionString = "CONNECTIONSTRING" -}); -``` - -use: - -```csharp -functionsHostBuilder.UseNServiceBus(endpointName, "CONNECTIONSTRING"); -``` +The target framework have been updated to .NET 6 [which in turn causes Azure Function Host v3 to no longer be supported](https://docs.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide#supported-versions). diff --git a/nservicebus/upgrades/azure-functions-service-bus-3to4.md b/nservicebus/upgrades/azure-functions-service-bus-3to4.md new file mode 100644 index 00000000000..a4b4cd55911 --- /dev/null +++ b/nservicebus/upgrades/azure-functions-service-bus-3to4.md @@ -0,0 +1,28 @@ +--- +title: Azure Functions with Azure Service Bus Upgrade Version 2 to 3 +summary: How to upgrade Azure Functions with Azure Service Bus from version 2 to 3 +component: ASBFunctions +reviewed: 2021-10-09 +related: +isUpgradeGuide: true +upgradeGuideCoreVersions: + - 8 +--- + +## Code first API to set connection string + +Setting the connection string can now be done as part of calling `UseNServiceBus()` + +Instead of + +```csharp +functionsHostBuilder.UseNServiceBus(() => new ServiceBusTriggeredEndpointConfiguration(endpointName){ + ConnectionString = "CONNECTIONSTRING" +}); +``` + +use: + +```csharp +functionsHostBuilder.UseNServiceBus(endpointName, "CONNECTIONSTRING"); +``` diff --git a/nservicebus/upgrades/supported-platforms.md b/nservicebus/upgrades/supported-platforms.md index 702e05e0827..22e98347056 100644 --- a/nservicebus/upgrades/supported-platforms.md +++ b/nservicebus/upgrades/supported-platforms.md @@ -14,7 +14,7 @@ related: | .NET Core | 2.1 (LTS) | [Windows / Linux](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1-supported-os.md) | Supported | macOS is supported only for development purposes. | | .NET Core | 3.1 (LTS) | [Windows / Linux](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1-supported-os.md) | Supported | macOS is supported only for development purposes. | | .NET | 5.0 | [Windows / Linux](https://github.com/dotnet/core/blob/main/release-notes/5.0/5.0-supported-os.md) | Supported | macOS is supported only for development purposes. | -| .NET | 6.0 Release Candidate 2 | [Windows / Linux](https://github.com/dotnet/core/blob/main/release-notes/6.0/supported-os.md) | [Current Status](https://discuss.particular.net/t/nservicebus-support-for-net-6/2525) | | +| .NET | 6.0 | [Windows / Linux](https://github.com/dotnet/core/blob/main/release-notes/6.0/supported-os.md) | [Current Status](https://discuss.particular.net/t/nservicebus-support-for-net-6/2525) | | Supported frameworks can be used for production workloads with technical support available from Particular Software. diff --git a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_1/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_1/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj index 2edd1c9144d..199ac743f04 100644 --- a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_1/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj +++ b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_1/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj @@ -1,7 +1,7 @@  - net5.0 - v3 + net6.0 + v4 Exe 7.3 diff --git a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_1/AzureFunctions.Messages/AzureFunctions.Messages.csproj b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_1/AzureFunctions.Messages/AzureFunctions.Messages.csproj index 2ac33c69e5c..5fd582a9d32 100644 --- a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_1/AzureFunctions.Messages/AzureFunctions.Messages.csproj +++ b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_1/AzureFunctions.Messages/AzureFunctions.Messages.csproj @@ -1,6 +1,6 @@ - + - netstandard2.0 + net6.0 7.3 diff --git a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_2/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_2/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj index 6a5d8b93d22..b631cbe1ead 100644 --- a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_2/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj +++ b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_2/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj @@ -1,7 +1,7 @@  - net5.0 - v3 + net6.0 + v4 Exe 7.3 diff --git a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_2/AzureFunctions.Messages/AzureFunctions.Messages.csproj b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_2/AzureFunctions.Messages/AzureFunctions.Messages.csproj index 2ac33c69e5c..ed8aa27d80f 100644 --- a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_2/AzureFunctions.Messages/AzureFunctions.Messages.csproj +++ b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_2/AzureFunctions.Messages/AzureFunctions.Messages.csproj @@ -1,6 +1,6 @@ - netstandard2.0 + net6.0 7.3 diff --git a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_3/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_3/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj index 447f09d2f0e..459a3eef3b8 100644 --- a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_3/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj +++ b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_3/AzureFunctions.ASBTrigger.Worker/AzureFunctions.ASBTrigger.Worker.csproj @@ -1,7 +1,7 @@  - net5.0 - v3 + net6.0 + v4 Exe 7.3 diff --git a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_3/AzureFunctions.Messages/AzureFunctions.Messages.csproj b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_3/AzureFunctions.Messages/AzureFunctions.Messages.csproj index b41c3c97d6a..e6e61fba926 100644 --- a/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_3/AzureFunctions.Messages/AzureFunctions.Messages.csproj +++ b/samples/azure-functions/service-bus-worker/ASBFunctionsWorker_3/AzureFunctions.Messages/AzureFunctions.Messages.csproj @@ -1,6 +1,6 @@ - net5.0 + net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/lock-renewal/ASBS_1/LockRenewal/LockRenewal.csproj b/samples/azure-service-bus-netstandard/lock-renewal/ASBS_1/LockRenewal/LockRenewal.csproj index 8821fde013b..641de191f4b 100644 --- a/samples/azure-service-bus-netstandard/lock-renewal/ASBS_1/LockRenewal/LockRenewal.csproj +++ b/samples/azure-service-bus-netstandard/lock-renewal/ASBS_1/LockRenewal/LockRenewal.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 Endpoint diff --git a/samples/azure-service-bus-netstandard/lock-renewal/ASBS_2/LockRenewal/LockRenewal.csproj b/samples/azure-service-bus-netstandard/lock-renewal/ASBS_2/LockRenewal/LockRenewal.csproj index b047c32697a..d7c27792fd7 100644 --- a/samples/azure-service-bus-netstandard/lock-renewal/ASBS_2/LockRenewal/LockRenewal.csproj +++ b/samples/azure-service-bus-netstandard/lock-renewal/ASBS_2/LockRenewal/LockRenewal.csproj @@ -1,7 +1,7 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/lock-renewal/ASBS_3/LockRenewal/LockRenewal.csproj b/samples/azure-service-bus-netstandard/lock-renewal/ASBS_3/LockRenewal/LockRenewal.csproj index 34f0e61522e..cfb09266cc1 100644 --- a/samples/azure-service-bus-netstandard/lock-renewal/ASBS_3/LockRenewal/LockRenewal.csproj +++ b/samples/azure-service-bus-netstandard/lock-renewal/ASBS_3/LockRenewal/LockRenewal.csproj @@ -1,7 +1,7 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/NativeSubscriberA/NativeSubscriberA.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/NativeSubscriberA/NativeSubscriberA.csproj index 008031823bb..61d79daac2e 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/NativeSubscriberA/NativeSubscriberA.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/NativeSubscriberA/NativeSubscriberA.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/NativeSubscriberB/NativeSubscriberB.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/NativeSubscriberB/NativeSubscriberB.csproj index 008031823bb..61d79daac2e 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/NativeSubscriberB/NativeSubscriberB.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/NativeSubscriberB/NativeSubscriberB.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/Publisher/Publisher.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/Publisher/Publisher.csproj index aa9d5cf76b2..9046786b191 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/Publisher/Publisher.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_1/Publisher/Publisher.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/NativeSubscriberA/NativeSubscriberA.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/NativeSubscriberA/NativeSubscriberA.csproj index c2daa1acb31..d9ce43ccd7e 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/NativeSubscriberA/NativeSubscriberA.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/NativeSubscriberA/NativeSubscriberA.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/NativeSubscriberB/NativeSubscriberB.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/NativeSubscriberB/NativeSubscriberB.csproj index c2daa1acb31..d9ce43ccd7e 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/NativeSubscriberB/NativeSubscriberB.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/NativeSubscriberB/NativeSubscriberB.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/Publisher/Publisher.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/Publisher/Publisher.csproj index 4976cdbf7d7..18dc10739e7 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/Publisher/Publisher.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/Publisher/Publisher.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/Shared/Shared.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/Shared/Shared.csproj index ff81ac44dfd..1d748ba14f1 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/Shared/Shared.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_2/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/NativeSubscriberA/NativeSubscriberA.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/NativeSubscriberA/NativeSubscriberA.csproj index c2daa1acb31..d9ce43ccd7e 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/NativeSubscriberA/NativeSubscriberA.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/NativeSubscriberA/NativeSubscriberA.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/NativeSubscriberB/NativeSubscriberB.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/NativeSubscriberB/NativeSubscriberB.csproj index c2daa1acb31..d9ce43ccd7e 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/NativeSubscriberB/NativeSubscriberB.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/NativeSubscriberB/NativeSubscriberB.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/Publisher/Publisher.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/Publisher/Publisher.csproj index 4bd6282d7f5..6c4ceb6d2a0 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/Publisher/Publisher.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/Publisher/Publisher.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/Shared/Shared.csproj b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/Shared/Shared.csproj index ff81ac44dfd..1d748ba14f1 100644 --- a/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/Shared/Shared.csproj +++ b/samples/azure-service-bus-netstandard/native-integration-pub-sub/ASBS_3/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration/ASBS_1/NativeSender/NativeSender.csproj b/samples/azure-service-bus-netstandard/native-integration/ASBS_1/NativeSender/NativeSender.csproj index 38c14dd6314..497324bbc37 100644 --- a/samples/azure-service-bus-netstandard/native-integration/ASBS_1/NativeSender/NativeSender.csproj +++ b/samples/azure-service-bus-netstandard/native-integration/ASBS_1/NativeSender/NativeSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration/ASBS_1/Receiver/Receiver.csproj b/samples/azure-service-bus-netstandard/native-integration/ASBS_1/Receiver/Receiver.csproj index aa9d5cf76b2..9046786b191 100644 --- a/samples/azure-service-bus-netstandard/native-integration/ASBS_1/Receiver/Receiver.csproj +++ b/samples/azure-service-bus-netstandard/native-integration/ASBS_1/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration/ASBS_2/NativeSender/NativeSender.csproj b/samples/azure-service-bus-netstandard/native-integration/ASBS_2/NativeSender/NativeSender.csproj index d950ec60f74..5a8d271e7ba 100644 --- a/samples/azure-service-bus-netstandard/native-integration/ASBS_2/NativeSender/NativeSender.csproj +++ b/samples/azure-service-bus-netstandard/native-integration/ASBS_2/NativeSender/NativeSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration/ASBS_2/Receiver/Receiver.csproj b/samples/azure-service-bus-netstandard/native-integration/ASBS_2/Receiver/Receiver.csproj index 3ad43286437..16c8d2d7f0c 100644 --- a/samples/azure-service-bus-netstandard/native-integration/ASBS_2/Receiver/Receiver.csproj +++ b/samples/azure-service-bus-netstandard/native-integration/ASBS_2/Receiver/Receiver.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration/ASBS_2/Shared/Shared.csproj b/samples/azure-service-bus-netstandard/native-integration/ASBS_2/Shared/Shared.csproj index fc3c8f4ba31..53bfa79bc1d 100644 --- a/samples/azure-service-bus-netstandard/native-integration/ASBS_2/Shared/Shared.csproj +++ b/samples/azure-service-bus-netstandard/native-integration/ASBS_2/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration/ASBS_3/NativeSender/NativeSender.csproj b/samples/azure-service-bus-netstandard/native-integration/ASBS_3/NativeSender/NativeSender.csproj index d950ec60f74..5a8d271e7ba 100644 --- a/samples/azure-service-bus-netstandard/native-integration/ASBS_3/NativeSender/NativeSender.csproj +++ b/samples/azure-service-bus-netstandard/native-integration/ASBS_3/NativeSender/NativeSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration/ASBS_3/Receiver/Receiver.csproj b/samples/azure-service-bus-netstandard/native-integration/ASBS_3/Receiver/Receiver.csproj index 8801c398163..104543d4d7c 100644 --- a/samples/azure-service-bus-netstandard/native-integration/ASBS_3/Receiver/Receiver.csproj +++ b/samples/azure-service-bus-netstandard/native-integration/ASBS_3/Receiver/Receiver.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/native-integration/ASBS_3/Shared/Shared.csproj b/samples/azure-service-bus-netstandard/native-integration/ASBS_3/Shared/Shared.csproj index a76a90434db..2b666bcdc95 100644 --- a/samples/azure-service-bus-netstandard/native-integration/ASBS_3/Shared/Shared.csproj +++ b/samples/azure-service-bus-netstandard/native-integration/ASBS_3/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 \ No newline at end of file diff --git a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_1/Receiver/Receiver.csproj b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_1/Receiver/Receiver.csproj index a2ea6a80d07..424007a82e3 100644 --- a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_1/Receiver/Receiver.csproj +++ b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_1/Receiver/Receiver.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_1/Sender/Sender.csproj b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_1/Sender/Sender.csproj index aea764c4e9d..3c702b57b16 100644 --- a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_1/Sender/Sender.csproj +++ b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_1/Sender/Sender.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Receiver/Receiver.csproj b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Receiver/Receiver.csproj index bb11b5d751d..5a5fa4471cc 100644 --- a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Receiver/Receiver.csproj +++ b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Receiver/Receiver.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Sender/Sender.csproj b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Sender/Sender.csproj index d7802ed7785..35e2b832049 100644 --- a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Sender/Sender.csproj +++ b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Sender/Sender.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Shared/Shared.csproj b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Shared/Shared.csproj index 5482ff40432..582eeb2dce8 100644 --- a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Shared/Shared.csproj +++ b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_2/Shared/Shared.csproj @@ -1,7 +1,7 @@ - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Receiver/Receiver.csproj b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Receiver/Receiver.csproj index 1ae3c0b050a..70cc9c74fa5 100644 --- a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Receiver/Receiver.csproj +++ b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Receiver/Receiver.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Sender/Sender.csproj b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Sender/Sender.csproj index 04edabe49ec..d9eae4936ac 100644 --- a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Sender/Sender.csproj +++ b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Sender/Sender.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Shared/Shared.csproj b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Shared/Shared.csproj index a61a36ef109..c50bbcbd54d 100644 --- a/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Shared/Shared.csproj +++ b/samples/azure-service-bus-netstandard/send-receive-with-nservicebus/ASBS_3/Shared/Shared.csproj @@ -1,7 +1,7 @@ - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 diff --git a/samples/azure-service-bus-netstandard/send-reply/ASBS_1/Endpoint1/Endpoint1.csproj b/samples/azure-service-bus-netstandard/send-reply/ASBS_1/Endpoint1/Endpoint1.csproj index 45da835aa85..5b253caa10d 100644 --- a/samples/azure-service-bus-netstandard/send-reply/ASBS_1/Endpoint1/Endpoint1.csproj +++ b/samples/azure-service-bus-netstandard/send-reply/ASBS_1/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/send-reply/ASBS_1/Endpoint2/Endpoint2.csproj b/samples/azure-service-bus-netstandard/send-reply/ASBS_1/Endpoint2/Endpoint2.csproj index 45da835aa85..5b253caa10d 100644 --- a/samples/azure-service-bus-netstandard/send-reply/ASBS_1/Endpoint2/Endpoint2.csproj +++ b/samples/azure-service-bus-netstandard/send-reply/ASBS_1/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/send-reply/ASBS_2/Endpoint1/Endpoint1.csproj b/samples/azure-service-bus-netstandard/send-reply/ASBS_2/Endpoint1/Endpoint1.csproj index 525e2b221cf..6062cd35fa4 100644 --- a/samples/azure-service-bus-netstandard/send-reply/ASBS_2/Endpoint1/Endpoint1.csproj +++ b/samples/azure-service-bus-netstandard/send-reply/ASBS_2/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/send-reply/ASBS_2/Endpoint2/Endpoint2.csproj b/samples/azure-service-bus-netstandard/send-reply/ASBS_2/Endpoint2/Endpoint2.csproj index 525e2b221cf..6062cd35fa4 100644 --- a/samples/azure-service-bus-netstandard/send-reply/ASBS_2/Endpoint2/Endpoint2.csproj +++ b/samples/azure-service-bus-netstandard/send-reply/ASBS_2/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Endpoint1/Endpoint1.csproj b/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Endpoint1/Endpoint1.csproj index 1ebcd6ab986..491849b984f 100644 --- a/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Endpoint1/Endpoint1.csproj +++ b/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Endpoint2/Endpoint2.csproj b/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Endpoint2/Endpoint2.csproj index b44ace70e94..57f37768134 100644 --- a/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Endpoint2/Endpoint2.csproj +++ b/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Shared/Shared.csproj b/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Shared/Shared.csproj index d32f6c37a46..a30e4b32564 100644 --- a/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Shared/Shared.csproj +++ b/samples/azure-service-bus-netstandard/send-reply/ASBS_3/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/saga-transactions/ASTP_3/Client/Client.csproj b/samples/azure/azure-table/saga-transactions/ASTP_3/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/saga-transactions/ASTP_3/Client/Client.csproj +++ b/samples/azure/azure-table/saga-transactions/ASTP_3/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/saga-transactions/ASTP_3/Server/Server.csproj b/samples/azure/azure-table/saga-transactions/ASTP_3/Server/Server.csproj index 439797cd264..b4a6c9bf8b8 100644 --- a/samples/azure/azure-table/saga-transactions/ASTP_3/Server/Server.csproj +++ b/samples/azure/azure-table/saga-transactions/ASTP_3/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/saga-transactions/ASTP_3/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/saga-transactions/ASTP_3/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/azure-table/saga-transactions/ASTP_3/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/saga-transactions/ASTP_3/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/saga-transactions/ASTP_4/Client/Client.csproj b/samples/azure/azure-table/saga-transactions/ASTP_4/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/saga-transactions/ASTP_4/Client/Client.csproj +++ b/samples/azure/azure-table/saga-transactions/ASTP_4/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/saga-transactions/ASTP_4/Server/Server.csproj b/samples/azure/azure-table/saga-transactions/ASTP_4/Server/Server.csproj index 8c79c89c67f..29be3745030 100644 --- a/samples/azure/azure-table/saga-transactions/ASTP_4/Server/Server.csproj +++ b/samples/azure/azure-table/saga-transactions/ASTP_4/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/saga-transactions/ASTP_4/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/saga-transactions/ASTP_4/SharedMessages/SharedMessages.csproj index 609feb83193..83e4dd551ff 100644 --- a/samples/azure/azure-table/saga-transactions/ASTP_4/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/saga-transactions/ASTP_4/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/simple/ASP_2/Client/Client.csproj b/samples/azure/azure-table/simple/ASP_2/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/simple/ASP_2/Client/Client.csproj +++ b/samples/azure/azure-table/simple/ASP_2/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/simple/ASP_2/Server/Server.csproj b/samples/azure/azure-table/simple/ASP_2/Server/Server.csproj index 4c177273e26..10ac28fe624 100644 --- a/samples/azure/azure-table/simple/ASP_2/Server/Server.csproj +++ b/samples/azure/azure-table/simple/ASP_2/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/simple/ASP_2/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/simple/ASP_2/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/azure-table/simple/ASP_2/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/simple/ASP_2/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/simple/ASTP_3/Client/Client.csproj b/samples/azure/azure-table/simple/ASTP_3/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/simple/ASTP_3/Client/Client.csproj +++ b/samples/azure/azure-table/simple/ASTP_3/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/simple/ASTP_3/Server/Server.csproj b/samples/azure/azure-table/simple/ASTP_3/Server/Server.csproj index 439797cd264..b4a6c9bf8b8 100644 --- a/samples/azure/azure-table/simple/ASTP_3/Server/Server.csproj +++ b/samples/azure/azure-table/simple/ASTP_3/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/simple/ASTP_3/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/simple/ASTP_3/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/azure-table/simple/ASTP_3/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/simple/ASTP_3/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/simple/ASTP_4/Client/Client.csproj b/samples/azure/azure-table/simple/ASTP_4/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/simple/ASTP_4/Client/Client.csproj +++ b/samples/azure/azure-table/simple/ASTP_4/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/simple/ASTP_4/Server/Server.csproj b/samples/azure/azure-table/simple/ASTP_4/Server/Server.csproj index 1f5bb3adb40..32fa6937044 100644 --- a/samples/azure/azure-table/simple/ASTP_4/Server/Server.csproj +++ b/samples/azure/azure-table/simple/ASTP_4/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/simple/ASTP_4/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/simple/ASTP_4/SharedMessages/SharedMessages.csproj index 609feb83193..83e4dd551ff 100644 --- a/samples/azure/azure-table/simple/ASTP_4/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/simple/ASTP_4/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/table/ASTP_3/Client/Client.csproj b/samples/azure/azure-table/table/ASTP_3/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/table/ASTP_3/Client/Client.csproj +++ b/samples/azure/azure-table/table/ASTP_3/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/table/ASTP_3/Server/Server.csproj b/samples/azure/azure-table/table/ASTP_3/Server/Server.csproj index 439797cd264..b4a6c9bf8b8 100644 --- a/samples/azure/azure-table/table/ASTP_3/Server/Server.csproj +++ b/samples/azure/azure-table/table/ASTP_3/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/table/ASTP_3/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/table/ASTP_3/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/azure-table/table/ASTP_3/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/table/ASTP_3/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/table/ASTP_4/Client/Client.csproj b/samples/azure/azure-table/table/ASTP_4/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/table/ASTP_4/Client/Client.csproj +++ b/samples/azure/azure-table/table/ASTP_4/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/table/ASTP_4/Server/Server.csproj b/samples/azure/azure-table/table/ASTP_4/Server/Server.csproj index 1f5bb3adb40..32fa6937044 100644 --- a/samples/azure/azure-table/table/ASTP_4/Server/Server.csproj +++ b/samples/azure/azure-table/table/ASTP_4/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/table/ASTP_4/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/table/ASTP_4/SharedMessages/SharedMessages.csproj index 609feb83193..83e4dd551ff 100644 --- a/samples/azure/azure-table/table/ASTP_4/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/table/ASTP_4/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/transactions/ASTP_3/Client/Client.csproj b/samples/azure/azure-table/transactions/ASTP_3/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/transactions/ASTP_3/Client/Client.csproj +++ b/samples/azure/azure-table/transactions/ASTP_3/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/transactions/ASTP_3/Server/Server.csproj b/samples/azure/azure-table/transactions/ASTP_3/Server/Server.csproj index 439797cd264..b4a6c9bf8b8 100644 --- a/samples/azure/azure-table/transactions/ASTP_3/Server/Server.csproj +++ b/samples/azure/azure-table/transactions/ASTP_3/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/transactions/ASTP_3/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/transactions/ASTP_3/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/azure-table/transactions/ASTP_3/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/transactions/ASTP_3/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/azure-table/transactions/ASTP_4/Client/Client.csproj b/samples/azure/azure-table/transactions/ASTP_4/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/azure/azure-table/transactions/ASTP_4/Client/Client.csproj +++ b/samples/azure/azure-table/transactions/ASTP_4/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/transactions/ASTP_4/Server/Server.csproj b/samples/azure/azure-table/transactions/ASTP_4/Server/Server.csproj index d0ad7f46a51..70bfa9ffa75 100644 --- a/samples/azure/azure-table/transactions/ASTP_4/Server/Server.csproj +++ b/samples/azure/azure-table/transactions/ASTP_4/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/azure-table/transactions/ASTP_4/SharedMessages/SharedMessages.csproj b/samples/azure/azure-table/transactions/ASTP_4/SharedMessages/SharedMessages.csproj index 37bfade0f5c..62b21b01e6c 100644 --- a/samples/azure/azure-table/transactions/ASTP_4/SharedMessages/SharedMessages.csproj +++ b/samples/azure/azure-table/transactions/ASTP_4/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_2/SenderAndReceiver/SenderAndReceiver.csproj b/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_2/SenderAndReceiver/SenderAndReceiver.csproj index 07e1a1617e3..41899980ad8 100644 --- a/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_2/SenderAndReceiver/SenderAndReceiver.csproj +++ b/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_2/SenderAndReceiver/SenderAndReceiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_2/msbuild b/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_2/msbuild deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_4/SenderAndReceiver/SenderAndReceiver.csproj b/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_4/SenderAndReceiver/SenderAndReceiver.csproj index db5327b9226..9e7f02aa276 100644 --- a/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_4/SenderAndReceiver/SenderAndReceiver.csproj +++ b/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_4/SenderAndReceiver/SenderAndReceiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_5/SenderAndReceiver/SenderAndReceiver.csproj b/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_5/SenderAndReceiver/SenderAndReceiver.csproj index abfff760da3..ed4225ed264 100644 --- a/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_5/SenderAndReceiver/SenderAndReceiver.csproj +++ b/samples/azure/blob-storage-databus-cleanup-function/ABSDataBus_5/SenderAndReceiver/SenderAndReceiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_3/Receiver/Receiver.csproj b/samples/azure/blob-storage-databus/ABSDataBus_3/Receiver/Receiver.csproj index 19467844dcf..6c66d533afe 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_3/Receiver/Receiver.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_3/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_3/Sender/Sender.csproj b/samples/azure/blob-storage-databus/ABSDataBus_3/Sender/Sender.csproj index 19467844dcf..6c66d533afe 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_3/Sender/Sender.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_3/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_3/Shared/Shared.csproj b/samples/azure/blob-storage-databus/ABSDataBus_3/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_3/Shared/Shared.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_3/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_4/Receiver/Receiver.csproj b/samples/azure/blob-storage-databus/ABSDataBus_4/Receiver/Receiver.csproj index 9c222ed3476..98aaed23b13 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_4/Receiver/Receiver.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_4/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_4/Sender/Sender.csproj b/samples/azure/blob-storage-databus/ABSDataBus_4/Sender/Sender.csproj index 9c222ed3476..98aaed23b13 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_4/Sender/Sender.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_4/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_4/Shared/Shared.csproj b/samples/azure/blob-storage-databus/ABSDataBus_4/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_4/Shared/Shared.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_4/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_5/Receiver/Receiver.csproj b/samples/azure/blob-storage-databus/ABSDataBus_5/Receiver/Receiver.csproj index 7b98c6e1123..9f358c6b830 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_5/Receiver/Receiver.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_5/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_5/Sender/Sender.csproj b/samples/azure/blob-storage-databus/ABSDataBus_5/Sender/Sender.csproj index 446600382da..26fd2ebbac9 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_5/Sender/Sender.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_5/Sender/Sender.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/blob-storage-databus/ABSDataBus_5/Shared/Shared.csproj b/samples/azure/blob-storage-databus/ABSDataBus_5/Shared/Shared.csproj index 609feb83193..83e4dd551ff 100644 --- a/samples/azure/blob-storage-databus/ABSDataBus_5/Shared/Shared.csproj +++ b/samples/azure/blob-storage-databus/ABSDataBus_5/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_10/NativeSender/NativeSender.csproj b/samples/azure/native-integration-asq/ASQN_10/NativeSender/NativeSender.csproj index 9ab76a60992..31798ceebcb 100644 --- a/samples/azure/native-integration-asq/ASQN_10/NativeSender/NativeSender.csproj +++ b/samples/azure/native-integration-asq/ASQN_10/NativeSender/NativeSender.csproj @@ -1,7 +1,7 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_10/Receiver/Receiver.csproj b/samples/azure/native-integration-asq/ASQN_10/Receiver/Receiver.csproj index b345e1429b6..4ffd003416d 100644 --- a/samples/azure/native-integration-asq/ASQN_10/Receiver/Receiver.csproj +++ b/samples/azure/native-integration-asq/ASQN_10/Receiver/Receiver.csproj @@ -1,7 +1,7 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_10/Shared/Shared.csproj b/samples/azure/native-integration-asq/ASQN_10/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/native-integration-asq/ASQN_10/Shared/Shared.csproj +++ b/samples/azure/native-integration-asq/ASQN_10/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_11/NativeSender/NativeSender.csproj b/samples/azure/native-integration-asq/ASQN_11/NativeSender/NativeSender.csproj index 9ab76a60992..31798ceebcb 100644 --- a/samples/azure/native-integration-asq/ASQN_11/NativeSender/NativeSender.csproj +++ b/samples/azure/native-integration-asq/ASQN_11/NativeSender/NativeSender.csproj @@ -1,7 +1,7 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_11/Receiver/Receiver.csproj b/samples/azure/native-integration-asq/ASQN_11/Receiver/Receiver.csproj index ea5298df69d..3d3136f6733 100644 --- a/samples/azure/native-integration-asq/ASQN_11/Receiver/Receiver.csproj +++ b/samples/azure/native-integration-asq/ASQN_11/Receiver/Receiver.csproj @@ -1,7 +1,7 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_11/Shared/Shared.csproj b/samples/azure/native-integration-asq/ASQN_11/Shared/Shared.csproj index 3e3fbe591b1..a550e17625e 100644 --- a/samples/azure/native-integration-asq/ASQN_11/Shared/Shared.csproj +++ b/samples/azure/native-integration-asq/ASQN_11/Shared/Shared.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_9/NativeSender/NativeSender.csproj b/samples/azure/native-integration-asq/ASQN_9/NativeSender/NativeSender.csproj index 9ab76a60992..31798ceebcb 100644 --- a/samples/azure/native-integration-asq/ASQN_9/NativeSender/NativeSender.csproj +++ b/samples/azure/native-integration-asq/ASQN_9/NativeSender/NativeSender.csproj @@ -1,7 +1,7 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_9/Receiver/Receiver.csproj b/samples/azure/native-integration-asq/ASQN_9/Receiver/Receiver.csproj index 34506cfff5c..549ca6ffcfb 100644 --- a/samples/azure/native-integration-asq/ASQN_9/Receiver/Receiver.csproj +++ b/samples/azure/native-integration-asq/ASQN_9/Receiver/Receiver.csproj @@ -1,7 +1,7 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/native-integration-asq/ASQN_9/Shared/Shared.csproj b/samples/azure/native-integration-asq/ASQN_9/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/native-integration-asq/ASQN_9/Shared/Shared.csproj +++ b/samples/azure/native-integration-asq/ASQN_9/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/storage-queues/ASQN_10/Endpoint1/Endpoint1.csproj b/samples/azure/storage-queues/ASQN_10/Endpoint1/Endpoint1.csproj index e1018eeb45b..a3f8f0567a0 100644 --- a/samples/azure/storage-queues/ASQN_10/Endpoint1/Endpoint1.csproj +++ b/samples/azure/storage-queues/ASQN_10/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/storage-queues/ASQN_10/Endpoint2/Endpoint2.csproj b/samples/azure/storage-queues/ASQN_10/Endpoint2/Endpoint2.csproj index e1018eeb45b..a3f8f0567a0 100644 --- a/samples/azure/storage-queues/ASQN_10/Endpoint2/Endpoint2.csproj +++ b/samples/azure/storage-queues/ASQN_10/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/storage-queues/ASQN_10/Shared/Shared.csproj b/samples/azure/storage-queues/ASQN_10/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/storage-queues/ASQN_10/Shared/Shared.csproj +++ b/samples/azure/storage-queues/ASQN_10/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/storage-queues/ASQN_10/StorageReader/StorageReader.csproj b/samples/azure/storage-queues/ASQN_10/StorageReader/StorageReader.csproj index e70d0f697f2..938ec2d62d8 100644 --- a/samples/azure/storage-queues/ASQN_10/StorageReader/StorageReader.csproj +++ b/samples/azure/storage-queues/ASQN_10/StorageReader/StorageReader.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/storage-queues/ASQN_11/Endpoint1/Endpoint1.csproj b/samples/azure/storage-queues/ASQN_11/Endpoint1/Endpoint1.csproj index 988bc467692..11482bfde77 100644 --- a/samples/azure/storage-queues/ASQN_11/Endpoint1/Endpoint1.csproj +++ b/samples/azure/storage-queues/ASQN_11/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/storage-queues/ASQN_11/Endpoint2/Endpoint2.csproj b/samples/azure/storage-queues/ASQN_11/Endpoint2/Endpoint2.csproj index 988bc467692..11482bfde77 100644 --- a/samples/azure/storage-queues/ASQN_11/Endpoint2/Endpoint2.csproj +++ b/samples/azure/storage-queues/ASQN_11/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/storage-queues/ASQN_11/Shared/Shared.csproj b/samples/azure/storage-queues/ASQN_11/Shared/Shared.csproj index d32f6c37a46..a30e4b32564 100644 --- a/samples/azure/storage-queues/ASQN_11/Shared/Shared.csproj +++ b/samples/azure/storage-queues/ASQN_11/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/storage-queues/ASQN_11/StorageReader/StorageReader.csproj b/samples/azure/storage-queues/ASQN_11/StorageReader/StorageReader.csproj index e70d0f697f2..938ec2d62d8 100644 --- a/samples/azure/storage-queues/ASQN_11/StorageReader/StorageReader.csproj +++ b/samples/azure/storage-queues/ASQN_11/StorageReader/StorageReader.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/storage-queues/ASQN_9/Endpoint1/Endpoint1.csproj b/samples/azure/storage-queues/ASQN_9/Endpoint1/Endpoint1.csproj index e51604e0cab..bc13e6671f9 100644 --- a/samples/azure/storage-queues/ASQN_9/Endpoint1/Endpoint1.csproj +++ b/samples/azure/storage-queues/ASQN_9/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/storage-queues/ASQN_9/Endpoint2/Endpoint2.csproj b/samples/azure/storage-queues/ASQN_9/Endpoint2/Endpoint2.csproj index e51604e0cab..bc13e6671f9 100644 --- a/samples/azure/storage-queues/ASQN_9/Endpoint2/Endpoint2.csproj +++ b/samples/azure/storage-queues/ASQN_9/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/storage-queues/ASQN_9/Shared/Shared.csproj b/samples/azure/storage-queues/ASQN_9/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/storage-queues/ASQN_9/Shared/Shared.csproj +++ b/samples/azure/storage-queues/ASQN_9/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/storage-queues/ASQN_9/StorageReader/StorageReader.csproj b/samples/azure/storage-queues/ASQN_9/StorageReader/StorageReader.csproj index e70d0f697f2..938ec2d62d8 100644 --- a/samples/azure/storage-queues/ASQN_9/StorageReader/StorageReader.csproj +++ b/samples/azure/storage-queues/ASQN_9/StorageReader/StorageReader.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/storage-queues/ASQ_8/Endpoint1/Endpoint1.csproj b/samples/azure/storage-queues/ASQ_8/Endpoint1/Endpoint1.csproj index f1e308ff682..192268aeb53 100644 --- a/samples/azure/storage-queues/ASQ_8/Endpoint1/Endpoint1.csproj +++ b/samples/azure/storage-queues/ASQ_8/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/storage-queues/ASQ_8/Endpoint2/Endpoint2.csproj b/samples/azure/storage-queues/ASQ_8/Endpoint2/Endpoint2.csproj index f1e308ff682..192268aeb53 100644 --- a/samples/azure/storage-queues/ASQ_8/Endpoint2/Endpoint2.csproj +++ b/samples/azure/storage-queues/ASQ_8/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/azure/storage-queues/ASQ_8/Shared/Shared.csproj b/samples/azure/storage-queues/ASQ_8/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/azure/storage-queues/ASQ_8/Shared/Shared.csproj +++ b/samples/azure/storage-queues/ASQ_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/azure/storage-queues/ASQ_8/StorageReader/StorageReader.csproj b/samples/azure/storage-queues/ASQ_8/StorageReader/StorageReader.csproj index 8f16bd6a86e..c5e9961fe39 100644 --- a/samples/azure/storage-queues/ASQ_8/StorageReader/StorageReader.csproj +++ b/samples/azure/storage-queues/ASQ_8/StorageReader/StorageReader.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/callbacks/Callbacks_3/Receiver/Receiver.csproj b/samples/callbacks/Callbacks_3/Receiver/Receiver.csproj index 079af706cc6..52f500ffec0 100644 --- a/samples/callbacks/Callbacks_3/Receiver/Receiver.csproj +++ b/samples/callbacks/Callbacks_3/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/callbacks/Callbacks_3/Sender/Sender.csproj b/samples/callbacks/Callbacks_3/Sender/Sender.csproj index 079af706cc6..52f500ffec0 100644 --- a/samples/callbacks/Callbacks_3/Sender/Sender.csproj +++ b/samples/callbacks/Callbacks_3/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/callbacks/Callbacks_3/WebSender/Web.config b/samples/callbacks/Callbacks_3/WebSender/Web.config index fe16cf18145..761cf310f87 100644 --- a/samples/callbacks/Callbacks_3/WebSender/Web.config +++ b/samples/callbacks/Callbacks_3/WebSender/Web.config @@ -1,4 +1,4 @@ - + @@ -6,9 +6,17 @@ + - - + + @@ -231,4 +239,4 @@ - + \ No newline at end of file diff --git a/samples/callbacks/Callbacks_3/WebSender/WebSender.csproj b/samples/callbacks/Callbacks_3/WebSender/WebSender.csproj index 55643eddaad..7ea3ac61689 100644 --- a/samples/callbacks/Callbacks_3/WebSender/WebSender.csproj +++ b/samples/callbacks/Callbacks_3/WebSender/WebSender.csproj @@ -1,4 +1,4 @@ - + Debug @@ -11,7 +11,7 @@ Properties WebSender WebSender - v4.6.1 + v4.8 true @@ -19,6 +19,7 @@ + true @@ -58,6 +59,8 @@ + + @@ -78,7 +81,8 @@ http://localhost:54711/ False False - + + False diff --git a/samples/callbacks/Callbacks_4/Receiver/Receiver.csproj b/samples/callbacks/Callbacks_4/Receiver/Receiver.csproj index bce9859fc7f..c2e31ae47ce 100644 --- a/samples/callbacks/Callbacks_4/Receiver/Receiver.csproj +++ b/samples/callbacks/Callbacks_4/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/callbacks/Callbacks_4/Sender/Sender.csproj b/samples/callbacks/Callbacks_4/Sender/Sender.csproj index bce9859fc7f..c2e31ae47ce 100644 --- a/samples/callbacks/Callbacks_4/Sender/Sender.csproj +++ b/samples/callbacks/Callbacks_4/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/callbacks/Callbacks_4/Shared/Shared.csproj b/samples/callbacks/Callbacks_4/Shared/Shared.csproj index 5ebfb6645d5..1ce4f00e72a 100644 --- a/samples/callbacks/Callbacks_4/Shared/Shared.csproj +++ b/samples/callbacks/Callbacks_4/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/consumer-driven-contracts/Core_7/Consumer1/Consumer1.csproj b/samples/consumer-driven-contracts/Core_7/Consumer1/Consumer1.csproj index a4d119dbfff..7217500e435 100644 --- a/samples/consumer-driven-contracts/Core_7/Consumer1/Consumer1.csproj +++ b/samples/consumer-driven-contracts/Core_7/Consumer1/Consumer1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/consumer-driven-contracts/Core_7/Consumer2/Consumer2.csproj b/samples/consumer-driven-contracts/Core_7/Consumer2/Consumer2.csproj index a4d119dbfff..7217500e435 100644 --- a/samples/consumer-driven-contracts/Core_7/Consumer2/Consumer2.csproj +++ b/samples/consumer-driven-contracts/Core_7/Consumer2/Consumer2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/consumer-driven-contracts/Core_7/Producer/Producer.csproj b/samples/consumer-driven-contracts/Core_7/Producer/Producer.csproj index c2163b74ecd..5dcdb8ef340 100644 --- a/samples/consumer-driven-contracts/Core_7/Producer/Producer.csproj +++ b/samples/consumer-driven-contracts/Core_7/Producer/Producer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/consumer-driven-contracts/Core_8/Consumer1/Consumer1.csproj b/samples/consumer-driven-contracts/Core_8/Consumer1/Consumer1.csproj index d9aefcc82e6..0ef4330d40b 100644 --- a/samples/consumer-driven-contracts/Core_8/Consumer1/Consumer1.csproj +++ b/samples/consumer-driven-contracts/Core_8/Consumer1/Consumer1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/consumer-driven-contracts/Core_8/Consumer2/Consumer2.csproj b/samples/consumer-driven-contracts/Core_8/Consumer2/Consumer2.csproj index d9aefcc82e6..0ef4330d40b 100644 --- a/samples/consumer-driven-contracts/Core_8/Consumer2/Consumer2.csproj +++ b/samples/consumer-driven-contracts/Core_8/Consumer2/Consumer2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/consumer-driven-contracts/Core_8/Producer/Producer.csproj b/samples/consumer-driven-contracts/Core_8/Producer/Producer.csproj index a9adf1a5d1f..2983aec22d3 100644 --- a/samples/consumer-driven-contracts/Core_8/Producer/Producer.csproj +++ b/samples/consumer-driven-contracts/Core_8/Producer/Producer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cooperative-cancellation/Core_8/Server/Server.csproj b/samples/cooperative-cancellation/Core_8/Server/Server.csproj index 7cb6c24d5ba..713c67449da 100644 --- a/samples/cooperative-cancellation/Core_8/Server/Server.csproj +++ b/samples/cooperative-cancellation/Core_8/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/container/CosmosDB_1/Client/Client.csproj b/samples/cosmosdb/container/CosmosDB_1/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/cosmosdb/container/CosmosDB_1/Client/Client.csproj +++ b/samples/cosmosdb/container/CosmosDB_1/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/container/CosmosDB_1/Server/Server.csproj b/samples/cosmosdb/container/CosmosDB_1/Server/Server.csproj index a5eff34db0a..5b5e0909d52 100644 --- a/samples/cosmosdb/container/CosmosDB_1/Server/Server.csproj +++ b/samples/cosmosdb/container/CosmosDB_1/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/container/CosmosDB_1/SharedMessages/SharedMessages.csproj b/samples/cosmosdb/container/CosmosDB_1/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/cosmosdb/container/CosmosDB_1/SharedMessages/SharedMessages.csproj +++ b/samples/cosmosdb/container/CosmosDB_1/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/cosmosdb/container/CosmosDB_2/Client/Client.csproj b/samples/cosmosdb/container/CosmosDB_2/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/cosmosdb/container/CosmosDB_2/Client/Client.csproj +++ b/samples/cosmosdb/container/CosmosDB_2/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/container/CosmosDB_2/Server/Server.csproj b/samples/cosmosdb/container/CosmosDB_2/Server/Server.csproj index 861180108e1..ed6bb073de5 100644 --- a/samples/cosmosdb/container/CosmosDB_2/Server/Server.csproj +++ b/samples/cosmosdb/container/CosmosDB_2/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/container/CosmosDB_2/SharedMessages/SharedMessages.csproj b/samples/cosmosdb/container/CosmosDB_2/SharedMessages/SharedMessages.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/cosmosdb/container/CosmosDB_2/SharedMessages/SharedMessages.csproj +++ b/samples/cosmosdb/container/CosmosDB_2/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/cosmosdb/simple/CosmosDB_1/Client/Client.csproj b/samples/cosmosdb/simple/CosmosDB_1/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/cosmosdb/simple/CosmosDB_1/Client/Client.csproj +++ b/samples/cosmosdb/simple/CosmosDB_1/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/simple/CosmosDB_1/Server/Server.csproj b/samples/cosmosdb/simple/CosmosDB_1/Server/Server.csproj index a5eff34db0a..5b5e0909d52 100644 --- a/samples/cosmosdb/simple/CosmosDB_1/Server/Server.csproj +++ b/samples/cosmosdb/simple/CosmosDB_1/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/simple/CosmosDB_1/SharedMessages/SharedMessages.csproj b/samples/cosmosdb/simple/CosmosDB_1/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/cosmosdb/simple/CosmosDB_1/SharedMessages/SharedMessages.csproj +++ b/samples/cosmosdb/simple/CosmosDB_1/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/cosmosdb/simple/CosmosDB_2/Client/Client.csproj b/samples/cosmosdb/simple/CosmosDB_2/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/cosmosdb/simple/CosmosDB_2/Client/Client.csproj +++ b/samples/cosmosdb/simple/CosmosDB_2/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/simple/CosmosDB_2/Server/Server.csproj b/samples/cosmosdb/simple/CosmosDB_2/Server/Server.csproj index 861180108e1..ed6bb073de5 100644 --- a/samples/cosmosdb/simple/CosmosDB_2/Server/Server.csproj +++ b/samples/cosmosdb/simple/CosmosDB_2/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/simple/CosmosDB_2/SharedMessages/SharedMessages.csproj b/samples/cosmosdb/simple/CosmosDB_2/SharedMessages/SharedMessages.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/cosmosdb/simple/CosmosDB_2/SharedMessages/SharedMessages.csproj +++ b/samples/cosmosdb/simple/CosmosDB_2/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/cosmosdb/transactions/CosmosDB_1/Client/Client.csproj b/samples/cosmosdb/transactions/CosmosDB_1/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/cosmosdb/transactions/CosmosDB_1/Client/Client.csproj +++ b/samples/cosmosdb/transactions/CosmosDB_1/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/transactions/CosmosDB_1/Server/Server.csproj b/samples/cosmosdb/transactions/CosmosDB_1/Server/Server.csproj index a5eff34db0a..5b5e0909d52 100644 --- a/samples/cosmosdb/transactions/CosmosDB_1/Server/Server.csproj +++ b/samples/cosmosdb/transactions/CosmosDB_1/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/transactions/CosmosDB_1/SharedMessages/SharedMessages.csproj b/samples/cosmosdb/transactions/CosmosDB_1/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/cosmosdb/transactions/CosmosDB_1/SharedMessages/SharedMessages.csproj +++ b/samples/cosmosdb/transactions/CosmosDB_1/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/cosmosdb/transactions/CosmosDB_2/Client/Client.csproj b/samples/cosmosdb/transactions/CosmosDB_2/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/cosmosdb/transactions/CosmosDB_2/Client/Client.csproj +++ b/samples/cosmosdb/transactions/CosmosDB_2/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/transactions/CosmosDB_2/Server/Server.csproj b/samples/cosmosdb/transactions/CosmosDB_2/Server/Server.csproj index 861180108e1..ed6bb073de5 100644 --- a/samples/cosmosdb/transactions/CosmosDB_2/Server/Server.csproj +++ b/samples/cosmosdb/transactions/CosmosDB_2/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/cosmosdb/transactions/CosmosDB_2/SharedMessages/SharedMessages.csproj b/samples/cosmosdb/transactions/CosmosDB_2/SharedMessages/SharedMessages.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/cosmosdb/transactions/CosmosDB_2/SharedMessages/SharedMessages.csproj +++ b/samples/cosmosdb/transactions/CosmosDB_2/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/databus/custom-serializer/Core_7/Receiver/Receiver.csproj b/samples/databus/custom-serializer/Core_7/Receiver/Receiver.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/databus/custom-serializer/Core_7/Receiver/Receiver.csproj +++ b/samples/databus/custom-serializer/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/databus/custom-serializer/Core_7/Sender/Sender.csproj b/samples/databus/custom-serializer/Core_7/Sender/Sender.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/databus/custom-serializer/Core_7/Sender/Sender.csproj +++ b/samples/databus/custom-serializer/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/databus/custom-serializer/Core_7/Shared/Shared.csproj b/samples/databus/custom-serializer/Core_7/Shared/Shared.csproj index eeb086f64e2..c2f5efabc9e 100644 --- a/samples/databus/custom-serializer/Core_7/Shared/Shared.csproj +++ b/samples/databus/custom-serializer/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/databus/custom-serializer/Core_8/Receiver/Receiver.csproj b/samples/databus/custom-serializer/Core_8/Receiver/Receiver.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/databus/custom-serializer/Core_8/Receiver/Receiver.csproj +++ b/samples/databus/custom-serializer/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/databus/custom-serializer/Core_8/Sender/Sender.csproj b/samples/databus/custom-serializer/Core_8/Sender/Sender.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/databus/custom-serializer/Core_8/Sender/Sender.csproj +++ b/samples/databus/custom-serializer/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/databus/custom-serializer/Core_8/Shared/Shared.csproj b/samples/databus/custom-serializer/Core_8/Shared/Shared.csproj index 8942ca449c9..319b57214bd 100644 --- a/samples/databus/custom-serializer/Core_8/Shared/Shared.csproj +++ b/samples/databus/custom-serializer/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/delayed-delivery/Core_7/Client/Client.csproj b/samples/delayed-delivery/Core_7/Client/Client.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/delayed-delivery/Core_7/Client/Client.csproj +++ b/samples/delayed-delivery/Core_7/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/delayed-delivery/Core_7/Server/Server.csproj b/samples/delayed-delivery/Core_7/Server/Server.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/delayed-delivery/Core_7/Server/Server.csproj +++ b/samples/delayed-delivery/Core_7/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/delayed-delivery/Core_7/Shared/Shared.csproj b/samples/delayed-delivery/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/delayed-delivery/Core_7/Shared/Shared.csproj +++ b/samples/delayed-delivery/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/delayed-delivery/Core_8/Client/Client.csproj b/samples/delayed-delivery/Core_8/Client/Client.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/delayed-delivery/Core_8/Client/Client.csproj +++ b/samples/delayed-delivery/Core_8/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/delayed-delivery/Core_8/Server/Server.csproj b/samples/delayed-delivery/Core_8/Server/Server.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/delayed-delivery/Core_8/Server/Server.csproj +++ b/samples/delayed-delivery/Core_8/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/delayed-delivery/Core_8/Shared/Shared.csproj b/samples/delayed-delivery/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/delayed-delivery/Core_8/Shared/Shared.csproj +++ b/samples/delayed-delivery/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/dependency-injection/autofac/Extensions.DependencyInjection_1/Sample/Sample.csproj b/samples/dependency-injection/autofac/Extensions.DependencyInjection_1/Sample/Sample.csproj index cb54a1694e6..965e9728113 100644 --- a/samples/dependency-injection/autofac/Extensions.DependencyInjection_1/Sample/Sample.csproj +++ b/samples/dependency-injection/autofac/Extensions.DependencyInjection_1/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/dependency-injection/castle/Extensions.DependencyInjection_1/Sample/Sample.csproj b/samples/dependency-injection/castle/Extensions.DependencyInjection_1/Sample/Sample.csproj index 4f7cd691391..f42076626e0 100644 --- a/samples/dependency-injection/castle/Extensions.DependencyInjection_1/Sample/Sample.csproj +++ b/samples/dependency-injection/castle/Extensions.DependencyInjection_1/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/dependency-injection/extensions-dependency-injection/Extensions.DependencyInjection_1/Sample/Sample.csproj b/samples/dependency-injection/extensions-dependency-injection/Extensions.DependencyInjection_1/Sample/Sample.csproj index fc6b55e514a..1460cb30975 100644 --- a/samples/dependency-injection/extensions-dependency-injection/Extensions.DependencyInjection_1/Sample/Sample.csproj +++ b/samples/dependency-injection/extensions-dependency-injection/Extensions.DependencyInjection_1/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/dependency-injection/externally-managed-mode/Core_8/Sample/Sample.csproj b/samples/dependency-injection/externally-managed-mode/Core_8/Sample/Sample.csproj index 3178342a647..3e9127cda31 100644 --- a/samples/dependency-injection/externally-managed-mode/Core_8/Sample/Sample.csproj +++ b/samples/dependency-injection/externally-managed-mode/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/dependency-injection/ninject/Ninject_7/Sample/Sample.csproj b/samples/dependency-injection/ninject/Ninject_7/Sample/Sample.csproj index aa1e9a87997..d250c266fec 100644 --- a/samples/dependency-injection/ninject/Ninject_7/Sample/Sample.csproj +++ b/samples/dependency-injection/ninject/Ninject_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/dependency-injection/structuremap/Extensions.DependencyInjection_1/Sample/Sample.csproj b/samples/dependency-injection/structuremap/Extensions.DependencyInjection_1/Sample/Sample.csproj index 4f1db3ac8cd..7ac56ca7e28 100644 --- a/samples/dependency-injection/structuremap/Extensions.DependencyInjection_1/Sample/Sample.csproj +++ b/samples/dependency-injection/structuremap/Extensions.DependencyInjection_1/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/dependency-injection/unity/Extensions.DependencyInjection_1/Sample/Sample.csproj b/samples/dependency-injection/unity/Extensions.DependencyInjection_1/Sample/Sample.csproj index 5df21da6169..1c3e7513880 100644 --- a/samples/dependency-injection/unity/Extensions.DependencyInjection_1/Sample/Sample.csproj +++ b/samples/dependency-injection/unity/Extensions.DependencyInjection_1/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/basic-encryption/PropertyEncryption_2/Endpoint1/Endpoint1.csproj b/samples/encryption/basic-encryption/PropertyEncryption_2/Endpoint1/Endpoint1.csproj index 5372daa835a..acb9343f268 100644 --- a/samples/encryption/basic-encryption/PropertyEncryption_2/Endpoint1/Endpoint1.csproj +++ b/samples/encryption/basic-encryption/PropertyEncryption_2/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/basic-encryption/PropertyEncryption_2/Endpoint2/Endpoint2.csproj b/samples/encryption/basic-encryption/PropertyEncryption_2/Endpoint2/Endpoint2.csproj index 5372daa835a..acb9343f268 100644 --- a/samples/encryption/basic-encryption/PropertyEncryption_2/Endpoint2/Endpoint2.csproj +++ b/samples/encryption/basic-encryption/PropertyEncryption_2/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/basic-encryption/PropertyEncryption_2/Shared/Shared.csproj b/samples/encryption/basic-encryption/PropertyEncryption_2/Shared/Shared.csproj index 568ade003fc..913e36c2700 100644 --- a/samples/encryption/basic-encryption/PropertyEncryption_2/Shared/Shared.csproj +++ b/samples/encryption/basic-encryption/PropertyEncryption_2/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/encryption/basic-encryption/PropertyEncryption_3/Endpoint1/Endpoint1.csproj b/samples/encryption/basic-encryption/PropertyEncryption_3/Endpoint1/Endpoint1.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/encryption/basic-encryption/PropertyEncryption_3/Endpoint1/Endpoint1.csproj +++ b/samples/encryption/basic-encryption/PropertyEncryption_3/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/basic-encryption/PropertyEncryption_3/Endpoint2/Endpoint2.csproj b/samples/encryption/basic-encryption/PropertyEncryption_3/Endpoint2/Endpoint2.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/encryption/basic-encryption/PropertyEncryption_3/Endpoint2/Endpoint2.csproj +++ b/samples/encryption/basic-encryption/PropertyEncryption_3/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/basic-encryption/PropertyEncryption_3/Shared/Shared.csproj b/samples/encryption/basic-encryption/PropertyEncryption_3/Shared/Shared.csproj index 2c694c822e2..bbd81b974d9 100644 --- a/samples/encryption/basic-encryption/PropertyEncryption_3/Shared/Shared.csproj +++ b/samples/encryption/basic-encryption/PropertyEncryption_3/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/encryption/encryption-conventions/PropertyEncryption_2/Endpoint1/Endpoint1.csproj b/samples/encryption/encryption-conventions/PropertyEncryption_2/Endpoint1/Endpoint1.csproj index 5372daa835a..acb9343f268 100644 --- a/samples/encryption/encryption-conventions/PropertyEncryption_2/Endpoint1/Endpoint1.csproj +++ b/samples/encryption/encryption-conventions/PropertyEncryption_2/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/encryption-conventions/PropertyEncryption_2/Endpoint2/Endpoint2.csproj b/samples/encryption/encryption-conventions/PropertyEncryption_2/Endpoint2/Endpoint2.csproj index 5372daa835a..acb9343f268 100644 --- a/samples/encryption/encryption-conventions/PropertyEncryption_2/Endpoint2/Endpoint2.csproj +++ b/samples/encryption/encryption-conventions/PropertyEncryption_2/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/encryption-conventions/PropertyEncryption_2/Shared/Shared.csproj b/samples/encryption/encryption-conventions/PropertyEncryption_2/Shared/Shared.csproj index 568ade003fc..913e36c2700 100644 --- a/samples/encryption/encryption-conventions/PropertyEncryption_2/Shared/Shared.csproj +++ b/samples/encryption/encryption-conventions/PropertyEncryption_2/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/encryption/encryption-conventions/PropertyEncryption_3/Endpoint1/Endpoint1.csproj b/samples/encryption/encryption-conventions/PropertyEncryption_3/Endpoint1/Endpoint1.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/encryption/encryption-conventions/PropertyEncryption_3/Endpoint1/Endpoint1.csproj +++ b/samples/encryption/encryption-conventions/PropertyEncryption_3/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/encryption-conventions/PropertyEncryption_3/Endpoint2/Endpoint2.csproj b/samples/encryption/encryption-conventions/PropertyEncryption_3/Endpoint2/Endpoint2.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/encryption/encryption-conventions/PropertyEncryption_3/Endpoint2/Endpoint2.csproj +++ b/samples/encryption/encryption-conventions/PropertyEncryption_3/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/encryption-conventions/PropertyEncryption_3/Shared/Shared.csproj b/samples/encryption/encryption-conventions/PropertyEncryption_3/Shared/Shared.csproj index 2c694c822e2..bbd81b974d9 100644 --- a/samples/encryption/encryption-conventions/PropertyEncryption_3/Shared/Shared.csproj +++ b/samples/encryption/encryption-conventions/PropertyEncryption_3/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/encryption/message-body-encryption/Core_7/Endpoint1/Endpoint1.csproj b/samples/encryption/message-body-encryption/Core_7/Endpoint1/Endpoint1.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/encryption/message-body-encryption/Core_7/Endpoint1/Endpoint1.csproj +++ b/samples/encryption/message-body-encryption/Core_7/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/message-body-encryption/Core_7/Endpoint2/Endpoint2.csproj b/samples/encryption/message-body-encryption/Core_7/Endpoint2/Endpoint2.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/encryption/message-body-encryption/Core_7/Endpoint2/Endpoint2.csproj +++ b/samples/encryption/message-body-encryption/Core_7/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/message-body-encryption/Core_7/Shared/Shared.csproj b/samples/encryption/message-body-encryption/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/encryption/message-body-encryption/Core_7/Shared/Shared.csproj +++ b/samples/encryption/message-body-encryption/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/encryption/message-body-encryption/Core_8/Endpoint1/Endpoint1.csproj b/samples/encryption/message-body-encryption/Core_8/Endpoint1/Endpoint1.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/encryption/message-body-encryption/Core_8/Endpoint1/Endpoint1.csproj +++ b/samples/encryption/message-body-encryption/Core_8/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/message-body-encryption/Core_8/Endpoint2/Endpoint2.csproj b/samples/encryption/message-body-encryption/Core_8/Endpoint2/Endpoint2.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/encryption/message-body-encryption/Core_8/Endpoint2/Endpoint2.csproj +++ b/samples/encryption/message-body-encryption/Core_8/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/encryption/message-body-encryption/Core_8/Shared/Shared.csproj b/samples/encryption/message-body-encryption/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/encryption/message-body-encryption/Core_8/Shared/Shared.csproj +++ b/samples/encryption/message-body-encryption/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/endpoint-configuration/Core_7/Sample/Sample.csproj b/samples/endpoint-configuration/Core_7/Sample/Sample.csproj index 14577549201..dd895263c02 100644 --- a/samples/endpoint-configuration/Core_7/Sample/Sample.csproj +++ b/samples/endpoint-configuration/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 $(NoWarn);NU1605 diff --git a/samples/endpoint-configuration/Core_8/Sample/Sample.csproj b/samples/endpoint-configuration/Core_8/Sample/Sample.csproj index 14577549201..dd895263c02 100644 --- a/samples/endpoint-configuration/Core_8/Sample/Sample.csproj +++ b/samples/endpoint-configuration/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 $(NoWarn);NU1605 diff --git a/samples/entity-framework-core/SqlPersistence_5/Endpoint.SqlPersistence/Endpoint.SqlPersistence.csproj b/samples/entity-framework-core/SqlPersistence_5/Endpoint.SqlPersistence/Endpoint.SqlPersistence.csproj index af3455fddab..045b1bd80b9 100644 --- a/samples/entity-framework-core/SqlPersistence_5/Endpoint.SqlPersistence/Endpoint.SqlPersistence.csproj +++ b/samples/entity-framework-core/SqlPersistence_5/Endpoint.SqlPersistence/Endpoint.SqlPersistence.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/errorhandling/Core_7/PlatformLauncher/PlatformLauncher.csproj b/samples/errorhandling/Core_7/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/errorhandling/Core_7/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/errorhandling/Core_7/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/errorhandling/Core_7/Shared/Shared.csproj b/samples/errorhandling/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/errorhandling/Core_7/Shared/Shared.csproj +++ b/samples/errorhandling/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/errorhandling/Core_7/WithDelayedRetries/WithDelayedRetries.csproj b/samples/errorhandling/Core_7/WithDelayedRetries/WithDelayedRetries.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/errorhandling/Core_7/WithDelayedRetries/WithDelayedRetries.csproj +++ b/samples/errorhandling/Core_7/WithDelayedRetries/WithDelayedRetries.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/errorhandling/Core_7/WithoutDelayedRetries/WithoutDelayedRetries.csproj b/samples/errorhandling/Core_7/WithoutDelayedRetries/WithoutDelayedRetries.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/errorhandling/Core_7/WithoutDelayedRetries/WithoutDelayedRetries.csproj +++ b/samples/errorhandling/Core_7/WithoutDelayedRetries/WithoutDelayedRetries.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/errorhandling/Core_8/PlatformLauncher/PlatformLauncher.csproj b/samples/errorhandling/Core_8/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/errorhandling/Core_8/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/errorhandling/Core_8/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/errorhandling/Core_8/Shared/Shared.csproj b/samples/errorhandling/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/errorhandling/Core_8/Shared/Shared.csproj +++ b/samples/errorhandling/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/errorhandling/Core_8/WithDelayedRetries/WithDelayedRetries.csproj b/samples/errorhandling/Core_8/WithDelayedRetries/WithDelayedRetries.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/errorhandling/Core_8/WithDelayedRetries/WithDelayedRetries.csproj +++ b/samples/errorhandling/Core_8/WithDelayedRetries/WithDelayedRetries.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/errorhandling/Core_8/WithoutDelayedRetries/WithoutDelayedRetries.csproj b/samples/errorhandling/Core_8/WithoutDelayedRetries/WithoutDelayedRetries.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/errorhandling/Core_8/WithoutDelayedRetries/WithoutDelayedRetries.csproj +++ b/samples/errorhandling/Core_8/WithoutDelayedRetries/WithoutDelayedRetries.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/faulttolerance/Core_7/Client/Client.csproj b/samples/faulttolerance/Core_7/Client/Client.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/faulttolerance/Core_7/Client/Client.csproj +++ b/samples/faulttolerance/Core_7/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/faulttolerance/Core_7/Server/Server.csproj b/samples/faulttolerance/Core_7/Server/Server.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/faulttolerance/Core_7/Server/Server.csproj +++ b/samples/faulttolerance/Core_7/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/faulttolerance/Core_7/Shared/Shared.csproj b/samples/faulttolerance/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/faulttolerance/Core_7/Shared/Shared.csproj +++ b/samples/faulttolerance/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/faulttolerance/Core_8/Client/Client.csproj b/samples/faulttolerance/Core_8/Client/Client.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/faulttolerance/Core_8/Client/Client.csproj +++ b/samples/faulttolerance/Core_8/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/faulttolerance/Core_8/Server/Server.csproj b/samples/faulttolerance/Core_8/Server/Server.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/faulttolerance/Core_8/Server/Server.csproj +++ b/samples/faulttolerance/Core_8/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/faulttolerance/Core_8/Shared/Shared.csproj b/samples/faulttolerance/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/faulttolerance/Core_8/Shared/Shared.csproj +++ b/samples/faulttolerance/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/feature/Core_7/Sample/Sample.csproj b/samples/feature/Core_7/Sample/Sample.csproj index 466687dcf53..881a5b3cab2 100644 --- a/samples/feature/Core_7/Sample/Sample.csproj +++ b/samples/feature/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/feature/Core_8/Sample/Sample.csproj b/samples/feature/Core_8/Sample/Sample.csproj index 426453d311a..d4192959ed3 100644 --- a/samples/feature/Core_8/Sample/Sample.csproj +++ b/samples/feature/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/file-share-databus/Core_7/Receiver/Receiver.csproj b/samples/file-share-databus/Core_7/Receiver/Receiver.csproj index 422fb2f6345..2d82ea890d1 100644 --- a/samples/file-share-databus/Core_7/Receiver/Receiver.csproj +++ b/samples/file-share-databus/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/file-share-databus/Core_7/Sender/Sender.csproj b/samples/file-share-databus/Core_7/Sender/Sender.csproj index 422fb2f6345..2d82ea890d1 100644 --- a/samples/file-share-databus/Core_7/Sender/Sender.csproj +++ b/samples/file-share-databus/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/file-share-databus/Core_7/Shared/Shared.csproj b/samples/file-share-databus/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/file-share-databus/Core_7/Shared/Shared.csproj +++ b/samples/file-share-databus/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/file-share-databus/Core_8/Receiver/Receiver.csproj b/samples/file-share-databus/Core_8/Receiver/Receiver.csproj index 4e64d177f7c..e5c120719c0 100644 --- a/samples/file-share-databus/Core_8/Receiver/Receiver.csproj +++ b/samples/file-share-databus/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/file-share-databus/Core_8/Sender/Sender.csproj b/samples/file-share-databus/Core_8/Sender/Sender.csproj index 4e64d177f7c..e5c120719c0 100644 --- a/samples/file-share-databus/Core_8/Sender/Sender.csproj +++ b/samples/file-share-databus/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/file-share-databus/Core_8/Shared/Shared.csproj b/samples/file-share-databus/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/file-share-databus/Core_8/Shared/Shared.csproj +++ b/samples/file-share-databus/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/fullduplex/Core_7/Client/Client.csproj b/samples/fullduplex/Core_7/Client/Client.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/fullduplex/Core_7/Client/Client.csproj +++ b/samples/fullduplex/Core_7/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/fullduplex/Core_7/Server/Server.csproj b/samples/fullduplex/Core_7/Server/Server.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/fullduplex/Core_7/Server/Server.csproj +++ b/samples/fullduplex/Core_7/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/fullduplex/Core_7/Shared/Shared.csproj b/samples/fullduplex/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/fullduplex/Core_7/Shared/Shared.csproj +++ b/samples/fullduplex/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/fullduplex/Core_8/Client/Client.csproj b/samples/fullduplex/Core_8/Client/Client.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/fullduplex/Core_8/Client/Client.csproj +++ b/samples/fullduplex/Core_8/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/fullduplex/Core_8/Server/Server.csproj b/samples/fullduplex/Core_8/Server/Server.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/fullduplex/Core_8/Server/Server.csproj +++ b/samples/fullduplex/Core_8/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/fullduplex/Core_8/Shared/Shared.csproj b/samples/fullduplex/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/fullduplex/Core_8/Shared/Shared.csproj +++ b/samples/fullduplex/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/gateway/Gateway_3/Headquarters/Headquarters.csproj b/samples/gateway/Gateway_3/Headquarters/Headquarters.csproj index ecfdaade00d..13bc6cd9964 100644 --- a/samples/gateway/Gateway_3/Headquarters/Headquarters.csproj +++ b/samples/gateway/Gateway_3/Headquarters/Headquarters.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/gateway/Gateway_3/RemoteSite/RemoteSite.csproj b/samples/gateway/Gateway_3/RemoteSite/RemoteSite.csproj index ecfdaade00d..13bc6cd9964 100644 --- a/samples/gateway/Gateway_3/RemoteSite/RemoteSite.csproj +++ b/samples/gateway/Gateway_3/RemoteSite/RemoteSite.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/gateway/Gateway_3/Shared/Shared.csproj b/samples/gateway/Gateway_3/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/gateway/Gateway_3/Shared/Shared.csproj +++ b/samples/gateway/Gateway_3/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/gateway/Gateway_3/WebClient/Web.config b/samples/gateway/Gateway_3/WebClient/Web.config index 8313930cc8d..d3fa3ce9012 100644 --- a/samples/gateway/Gateway_3/WebClient/Web.config +++ b/samples/gateway/Gateway_3/WebClient/Web.config @@ -1,7 +1,15 @@  + - - + + \ No newline at end of file diff --git a/samples/gateway/Gateway_3/WebClient/WebClient.csproj b/samples/gateway/Gateway_3/WebClient/WebClient.csproj index 7432e2ab174..18bd8c33fba 100644 --- a/samples/gateway/Gateway_3/WebClient/WebClient.csproj +++ b/samples/gateway/Gateway_3/WebClient/WebClient.csproj @@ -1,4 +1,4 @@ - + Debug @@ -9,9 +9,9 @@ {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} Library Properties - WebApplication1 - WebApplication1 - v4.6.1 + WebClient + WebClient + v4.8 true @@ -19,6 +19,7 @@ + true @@ -38,6 +39,14 @@ + + + + + + + + 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) @@ -56,7 +65,8 @@ http://localhost:31639/ False False - + + False diff --git a/samples/gateway/Gateway_4/Headquarters/Headquarters.csproj b/samples/gateway/Gateway_4/Headquarters/Headquarters.csproj index d8c38596c3f..628f904f034 100644 --- a/samples/gateway/Gateway_4/Headquarters/Headquarters.csproj +++ b/samples/gateway/Gateway_4/Headquarters/Headquarters.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/gateway/Gateway_4/RemoteSite/RemoteSite.csproj b/samples/gateway/Gateway_4/RemoteSite/RemoteSite.csproj index d8c38596c3f..628f904f034 100644 --- a/samples/gateway/Gateway_4/RemoteSite/RemoteSite.csproj +++ b/samples/gateway/Gateway_4/RemoteSite/RemoteSite.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/gateway/Gateway_4/Shared/Shared.csproj b/samples/gateway/Gateway_4/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/gateway/Gateway_4/Shared/Shared.csproj +++ b/samples/gateway/Gateway_4/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/gateway/Gateway_4/WebClient/Web.config b/samples/gateway/Gateway_4/WebClient/Web.config index 8313930cc8d..d3fa3ce9012 100644 --- a/samples/gateway/Gateway_4/WebClient/Web.config +++ b/samples/gateway/Gateway_4/WebClient/Web.config @@ -1,7 +1,15 @@  + - - + + \ No newline at end of file diff --git a/samples/gateway/Gateway_4/WebClient/WebClient.csproj b/samples/gateway/Gateway_4/WebClient/WebClient.csproj index 7432e2ab174..18bd8c33fba 100644 --- a/samples/gateway/Gateway_4/WebClient/WebClient.csproj +++ b/samples/gateway/Gateway_4/WebClient/WebClient.csproj @@ -1,4 +1,4 @@ - + Debug @@ -9,9 +9,9 @@ {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} Library Properties - WebApplication1 - WebApplication1 - v4.6.1 + WebClient + WebClient + v4.8 true @@ -19,6 +19,7 @@ + true @@ -38,6 +39,14 @@ + + + + + + + + 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) @@ -56,7 +65,8 @@ http://localhost:31639/ False False - + + False diff --git a/samples/header-manipulation/Core_7/Sample/Sample.csproj b/samples/header-manipulation/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/header-manipulation/Core_7/Sample/Sample.csproj +++ b/samples/header-manipulation/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/header-manipulation/Core_8/Sample/Sample.csproj b/samples/header-manipulation/Core_8/Sample/Sample.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/header-manipulation/Core_8/Sample/Sample.csproj +++ b/samples/header-manipulation/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/hosting/generic-multi-hosting/Core_7/Shared/Shared.csproj b/samples/hosting/generic-multi-hosting/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/hosting/generic-multi-hosting/Core_7/Shared/Shared.csproj +++ b/samples/hosting/generic-multi-hosting/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/hosting/generic-multi-hosting/Core_8/Shared/Shared.csproj b/samples/hosting/generic-multi-hosting/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/hosting/generic-multi-hosting/Core_8/Shared/Shared.csproj +++ b/samples/hosting/generic-multi-hosting/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/immutable-messages/Core_7/Receiver/Receiver.csproj b/samples/immutable-messages/Core_7/Receiver/Receiver.csproj index 7f06db3d9dd..4d493a5391e 100644 --- a/samples/immutable-messages/Core_7/Receiver/Receiver.csproj +++ b/samples/immutable-messages/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/immutable-messages/Core_7/Sender/Sender.csproj b/samples/immutable-messages/Core_7/Sender/Sender.csproj index 7f06db3d9dd..4d493a5391e 100644 --- a/samples/immutable-messages/Core_7/Sender/Sender.csproj +++ b/samples/immutable-messages/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/immutable-messages/Core_7/Shared/Shared.csproj b/samples/immutable-messages/Core_7/Shared/Shared.csproj index a76a90434db..2b666bcdc95 100644 --- a/samples/immutable-messages/Core_7/Shared/Shared.csproj +++ b/samples/immutable-messages/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 \ No newline at end of file diff --git a/samples/immutable-messages/Core_8/Receiver/Receiver.csproj b/samples/immutable-messages/Core_8/Receiver/Receiver.csproj index 065f63f08c6..c252273aa14 100644 --- a/samples/immutable-messages/Core_8/Receiver/Receiver.csproj +++ b/samples/immutable-messages/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/immutable-messages/Core_8/Sender/Sender.csproj b/samples/immutable-messages/Core_8/Sender/Sender.csproj index 065f63f08c6..c252273aa14 100644 --- a/samples/immutable-messages/Core_8/Sender/Sender.csproj +++ b/samples/immutable-messages/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/immutable-messages/Core_8/Shared/Shared.csproj b/samples/immutable-messages/Core_8/Shared/Shared.csproj index a76a90434db..2b666bcdc95 100644 --- a/samples/immutable-messages/Core_8/Shared/Shared.csproj +++ b/samples/immutable-messages/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 \ No newline at end of file diff --git a/samples/logging/application-insights/Metrics_3/Endpoint/Endpoint.csproj b/samples/logging/application-insights/Metrics_3/Endpoint/Endpoint.csproj index 3f2ec7fd0e7..495729a1226 100644 --- a/samples/logging/application-insights/Metrics_3/Endpoint/Endpoint.csproj +++ b/samples/logging/application-insights/Metrics_3/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/application-insights/Metrics_4/Endpoint/Endpoint.csproj b/samples/logging/application-insights/Metrics_4/Endpoint/Endpoint.csproj index 0759e679dad..a1d33017d89 100644 --- a/samples/logging/application-insights/Metrics_4/Endpoint/Endpoint.csproj +++ b/samples/logging/application-insights/Metrics_4/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/commonlogging/CommonLogging_5/Sample/Sample.csproj b/samples/logging/commonlogging/CommonLogging_5/Sample/Sample.csproj index 5398acb2890..1eb05901ec6 100644 --- a/samples/logging/commonlogging/CommonLogging_5/Sample/Sample.csproj +++ b/samples/logging/commonlogging/CommonLogging_5/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/custom-factory/Core_7/Sample/Sample.csproj b/samples/logging/custom-factory/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/logging/custom-factory/Core_7/Sample/Sample.csproj +++ b/samples/logging/custom-factory/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/default/Core_7/Sample/Sample.csproj b/samples/logging/default/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/logging/default/Core_7/Sample/Sample.csproj +++ b/samples/logging/default/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/extensions-logging/Extensions.Logging_1/Sample/Sample.csproj b/samples/logging/extensions-logging/Extensions.Logging_1/Sample/Sample.csproj index 4cde465da8d..4d546a28ab3 100644 --- a/samples/logging/extensions-logging/Extensions.Logging_1/Sample/Sample.csproj +++ b/samples/logging/extensions-logging/Extensions.Logging_1/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/log4net-custom/Log4Net_3/Sample/Sample.csproj b/samples/logging/log4net-custom/Log4Net_3/Sample/Sample.csproj index 1061cafdd6c..3bf79acd1fd 100644 --- a/samples/logging/log4net-custom/Log4Net_3/Sample/Sample.csproj +++ b/samples/logging/log4net-custom/Log4Net_3/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 NU1605 diff --git a/samples/logging/nlog-custom/NLog_3/Sample/Sample.csproj b/samples/logging/nlog-custom/NLog_3/Sample/Sample.csproj index 90755d702c7..5c49bd5e9af 100644 --- a/samples/logging/nlog-custom/NLog_3/Sample/Sample.csproj +++ b/samples/logging/nlog-custom/NLog_3/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/notifications/Core_7/Sample/Sample.csproj b/samples/logging/notifications/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/logging/notifications/Core_7/Sample/Sample.csproj +++ b/samples/logging/notifications/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/notifications/Core_8/Sample/Sample.csproj b/samples/logging/notifications/Core_8/Sample/Sample.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/logging/notifications/Core_8/Sample/Sample.csproj +++ b/samples/logging/notifications/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/stack-trace-cleaning/Core_7/SampleWithClean/SampleWithClean.csproj b/samples/logging/stack-trace-cleaning/Core_7/SampleWithClean/SampleWithClean.csproj index 39f39cc3969..d469612597f 100644 --- a/samples/logging/stack-trace-cleaning/Core_7/SampleWithClean/SampleWithClean.csproj +++ b/samples/logging/stack-trace-cleaning/Core_7/SampleWithClean/SampleWithClean.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/stack-trace-cleaning/Core_7/SampleWithoutClean/SampleWithoutClean.csproj b/samples/logging/stack-trace-cleaning/Core_7/SampleWithoutClean/SampleWithoutClean.csproj index 90755d702c7..5c49bd5e9af 100644 --- a/samples/logging/stack-trace-cleaning/Core_7/SampleWithoutClean/SampleWithoutClean.csproj +++ b/samples/logging/stack-trace-cleaning/Core_7/SampleWithoutClean/SampleWithoutClean.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/stack-trace-cleaning/Core_8/SampleWithClean/SampleWithClean.csproj b/samples/logging/stack-trace-cleaning/Core_8/SampleWithClean/SampleWithClean.csproj index 55f9698a5c0..7784f324bf7 100644 --- a/samples/logging/stack-trace-cleaning/Core_8/SampleWithClean/SampleWithClean.csproj +++ b/samples/logging/stack-trace-cleaning/Core_8/SampleWithClean/SampleWithClean.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/logging/stack-trace-cleaning/Core_8/SampleWithoutClean/SampleWithoutClean.csproj b/samples/logging/stack-trace-cleaning/Core_8/SampleWithoutClean/SampleWithoutClean.csproj index 5f7c1170947..f0936b501fe 100644 --- a/samples/logging/stack-trace-cleaning/Core_8/SampleWithoutClean/SampleWithoutClean.csproj +++ b/samples/logging/stack-trace-cleaning/Core_8/SampleWithoutClean/SampleWithoutClean.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/message-error-handling/Core_7/CustomErrorHandling/CustomErrorHandling.csproj b/samples/message-error-handling/Core_7/CustomErrorHandling/CustomErrorHandling.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/message-error-handling/Core_7/CustomErrorHandling/CustomErrorHandling.csproj +++ b/samples/message-error-handling/Core_7/CustomErrorHandling/CustomErrorHandling.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/message-error-handling/Core_7/PlatformLauncher/PlatformLauncher.csproj b/samples/message-error-handling/Core_7/PlatformLauncher/PlatformLauncher.csproj index 33fef8b44d1..155ad1a819b 100644 --- a/samples/message-error-handling/Core_7/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/message-error-handling/Core_7/PlatformLauncher/PlatformLauncher.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/message-error-handling/Core_8/CustomErrorHandling/CustomErrorHandling.csproj b/samples/message-error-handling/Core_8/CustomErrorHandling/CustomErrorHandling.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/message-error-handling/Core_8/CustomErrorHandling/CustomErrorHandling.csproj +++ b/samples/message-error-handling/Core_8/CustomErrorHandling/CustomErrorHandling.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/message-error-handling/Core_8/PlatformLauncher/PlatformLauncher.csproj b/samples/message-error-handling/Core_8/PlatformLauncher/PlatformLauncher.csproj index 33fef8b44d1..155ad1a819b 100644 --- a/samples/message-error-handling/Core_8/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/message-error-handling/Core_8/PlatformLauncher/PlatformLauncher.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/messagemutators/Core_7/Sample/Sample.csproj b/samples/messagemutators/Core_7/Sample/Sample.csproj index 592ea31e32e..bea97efbe65 100644 --- a/samples/messagemutators/Core_7/Sample/Sample.csproj +++ b/samples/messagemutators/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/messagemutators/Core_8/Sample/Sample.csproj b/samples/messagemutators/Core_8/Sample/Sample.csproj index 5c31d176ac3..82ad343244b 100644 --- a/samples/messagemutators/Core_8/Sample/Sample.csproj +++ b/samples/messagemutators/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/mongodb/simple/MongoDB_2/Client/Client.csproj b/samples/mongodb/simple/MongoDB_2/Client/Client.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/mongodb/simple/MongoDB_2/Client/Client.csproj +++ b/samples/mongodb/simple/MongoDB_2/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/mongodb/simple/MongoDB_2/Server/Server.csproj b/samples/mongodb/simple/MongoDB_2/Server/Server.csproj index f857903d5a0..b002a702f48 100644 --- a/samples/mongodb/simple/MongoDB_2/Server/Server.csproj +++ b/samples/mongodb/simple/MongoDB_2/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/mongodb/simple/MongoDB_2/Shared/Shared.csproj b/samples/mongodb/simple/MongoDB_2/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/mongodb/simple/MongoDB_2/Shared/Shared.csproj +++ b/samples/mongodb/simple/MongoDB_2/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/mongodb/simple/MongoDB_3/Client/Client.csproj b/samples/mongodb/simple/MongoDB_3/Client/Client.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/mongodb/simple/MongoDB_3/Client/Client.csproj +++ b/samples/mongodb/simple/MongoDB_3/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/mongodb/simple/MongoDB_3/Server/Server.csproj b/samples/mongodb/simple/MongoDB_3/Server/Server.csproj index 8ea4ba28c4d..b133029ca75 100644 --- a/samples/mongodb/simple/MongoDB_3/Server/Server.csproj +++ b/samples/mongodb/simple/MongoDB_3/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/mongodb/simple/MongoDB_3/Shared/Shared.csproj b/samples/mongodb/simple/MongoDB_3/Shared/Shared.csproj index 609feb83193..83e4dd551ff 100644 --- a/samples/mongodb/simple/MongoDB_3/Shared/Shared.csproj +++ b/samples/mongodb/simple/MongoDB_3/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/multi-tenant/di/Core_7/Endpoint/Endpoint.csproj b/samples/multi-tenant/di/Core_7/Endpoint/Endpoint.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/multi-tenant/di/Core_7/Endpoint/Endpoint.csproj +++ b/samples/multi-tenant/di/Core_7/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/di/Core_8/Endpoint/Endpoint.csproj b/samples/multi-tenant/di/Core_8/Endpoint/Endpoint.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/multi-tenant/di/Core_8/Endpoint/Endpoint.csproj +++ b/samples/multi-tenant/di/Core_8/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/nhibernate/NHibernate_8/Receiver/Receiver.csproj b/samples/multi-tenant/nhibernate/NHibernate_8/Receiver/Receiver.csproj index 1cedad71f28..456765f39d6 100644 --- a/samples/multi-tenant/nhibernate/NHibernate_8/Receiver/Receiver.csproj +++ b/samples/multi-tenant/nhibernate/NHibernate_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/nhibernate/NHibernate_8/Sender/Sender.csproj b/samples/multi-tenant/nhibernate/NHibernate_8/Sender/Sender.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/multi-tenant/nhibernate/NHibernate_8/Sender/Sender.csproj +++ b/samples/multi-tenant/nhibernate/NHibernate_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/nhibernate/NHibernate_8/Shared/Shared.csproj b/samples/multi-tenant/nhibernate/NHibernate_8/Shared/Shared.csproj index 080ee0a66f0..cef1dd146b1 100644 --- a/samples/multi-tenant/nhibernate/NHibernate_8/Shared/Shared.csproj +++ b/samples/multi-tenant/nhibernate/NHibernate_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/multi-tenant/nhibernate/NHibernate_9/Receiver/Receiver.csproj b/samples/multi-tenant/nhibernate/NHibernate_9/Receiver/Receiver.csproj index 5de078f0635..2546c0dac2d 100644 --- a/samples/multi-tenant/nhibernate/NHibernate_9/Receiver/Receiver.csproj +++ b/samples/multi-tenant/nhibernate/NHibernate_9/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/nhibernate/NHibernate_9/Sender/Sender.csproj b/samples/multi-tenant/nhibernate/NHibernate_9/Sender/Sender.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/multi-tenant/nhibernate/NHibernate_9/Sender/Sender.csproj +++ b/samples/multi-tenant/nhibernate/NHibernate_9/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/nhibernate/NHibernate_9/Shared/Shared.csproj b/samples/multi-tenant/nhibernate/NHibernate_9/Shared/Shared.csproj index 0ca185fc702..492721c3b85 100644 --- a/samples/multi-tenant/nhibernate/NHibernate_9/Shared/Shared.csproj +++ b/samples/multi-tenant/nhibernate/NHibernate_9/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/multi-tenant/propagation/Core_7/Billing/Billing.csproj b/samples/multi-tenant/propagation/Core_7/Billing/Billing.csproj index e473c61be04..d623068c118 100644 --- a/samples/multi-tenant/propagation/Core_7/Billing/Billing.csproj +++ b/samples/multi-tenant/propagation/Core_7/Billing/Billing.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/propagation/Core_7/Client/Client.csproj b/samples/multi-tenant/propagation/Core_7/Client/Client.csproj index e473c61be04..d623068c118 100644 --- a/samples/multi-tenant/propagation/Core_7/Client/Client.csproj +++ b/samples/multi-tenant/propagation/Core_7/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/propagation/Core_7/Sales/Sales.csproj b/samples/multi-tenant/propagation/Core_7/Sales/Sales.csproj index e473c61be04..d623068c118 100644 --- a/samples/multi-tenant/propagation/Core_7/Sales/Sales.csproj +++ b/samples/multi-tenant/propagation/Core_7/Sales/Sales.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/propagation/Core_7/Shared/Shared.csproj b/samples/multi-tenant/propagation/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/multi-tenant/propagation/Core_7/Shared/Shared.csproj +++ b/samples/multi-tenant/propagation/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/multi-tenant/propagation/Core_8/Billing/Billing.csproj b/samples/multi-tenant/propagation/Core_8/Billing/Billing.csproj index c2da1407c3f..ce7debb9e20 100644 --- a/samples/multi-tenant/propagation/Core_8/Billing/Billing.csproj +++ b/samples/multi-tenant/propagation/Core_8/Billing/Billing.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/propagation/Core_8/Client/Client.csproj b/samples/multi-tenant/propagation/Core_8/Client/Client.csproj index c2da1407c3f..ce7debb9e20 100644 --- a/samples/multi-tenant/propagation/Core_8/Client/Client.csproj +++ b/samples/multi-tenant/propagation/Core_8/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/propagation/Core_8/Sales/Sales.csproj b/samples/multi-tenant/propagation/Core_8/Sales/Sales.csproj index c2da1407c3f..ce7debb9e20 100644 --- a/samples/multi-tenant/propagation/Core_8/Sales/Sales.csproj +++ b/samples/multi-tenant/propagation/Core_8/Sales/Sales.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/propagation/Core_8/Shared/Shared.csproj b/samples/multi-tenant/propagation/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/multi-tenant/propagation/Core_8/Shared/Shared.csproj +++ b/samples/multi-tenant/propagation/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/multi-tenant/sqlp/SqlPersistence_5/Receiver/Receiver.csproj b/samples/multi-tenant/sqlp/SqlPersistence_5/Receiver/Receiver.csproj index a912df57693..e2c8b92b22a 100644 --- a/samples/multi-tenant/sqlp/SqlPersistence_5/Receiver/Receiver.csproj +++ b/samples/multi-tenant/sqlp/SqlPersistence_5/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/sqlp/SqlPersistence_5/Sender/Sender.csproj b/samples/multi-tenant/sqlp/SqlPersistence_5/Sender/Sender.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/multi-tenant/sqlp/SqlPersistence_5/Sender/Sender.csproj +++ b/samples/multi-tenant/sqlp/SqlPersistence_5/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/sqlp/SqlPersistence_5/Shared/Shared.csproj b/samples/multi-tenant/sqlp/SqlPersistence_5/Shared/Shared.csproj index 9d3376a6093..b3094f1f2fc 100644 --- a/samples/multi-tenant/sqlp/SqlPersistence_5/Shared/Shared.csproj +++ b/samples/multi-tenant/sqlp/SqlPersistence_5/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/multi-tenant/sqlp/SqlPersistence_6/Receiver/Receiver.csproj b/samples/multi-tenant/sqlp/SqlPersistence_6/Receiver/Receiver.csproj index 56235e7b40f..e615c62a37b 100644 --- a/samples/multi-tenant/sqlp/SqlPersistence_6/Receiver/Receiver.csproj +++ b/samples/multi-tenant/sqlp/SqlPersistence_6/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/sqlp/SqlPersistence_6/Sender/Sender.csproj b/samples/multi-tenant/sqlp/SqlPersistence_6/Sender/Sender.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/multi-tenant/sqlp/SqlPersistence_6/Sender/Sender.csproj +++ b/samples/multi-tenant/sqlp/SqlPersistence_6/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/multi-tenant/sqlp/SqlPersistence_6/Shared/Shared.csproj b/samples/multi-tenant/sqlp/SqlPersistence_6/Shared/Shared.csproj index d7321234741..3adfe40abd2 100644 --- a/samples/multi-tenant/sqlp/SqlPersistence_6/Shared/Shared.csproj +++ b/samples/multi-tenant/sqlp/SqlPersistence_6/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Attributes/Sample.Attributes.csproj b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Attributes/Sample.Attributes.csproj index a4468ec124b..c70fb4add5c 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Attributes/Sample.Attributes.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Attributes/Sample.Attributes.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Default/Sample.Default.csproj b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Default/Sample.Default.csproj index 19750676a73..938f45d3b67 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Default/Sample.Default.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Default/Sample.Default.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Fluent/Sample.Fluent.csproj b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Fluent/Sample.Fluent.csproj index 02425502031..d5d86ae35f2 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Fluent/Sample.Fluent.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Fluent/Sample.Fluent.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Loquacious/Sample.Loquacious.csproj b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Loquacious/Sample.Loquacious.csproj index 19750676a73..938f45d3b67 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Loquacious/Sample.Loquacious.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.Loquacious/Sample.Loquacious.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.XmlMapping/Sample.XmlMapping.csproj b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.XmlMapping/Sample.XmlMapping.csproj index 9996fa84450..54f82e20010 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_8/Sample.XmlMapping/Sample.XmlMapping.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_8/Sample.XmlMapping/Sample.XmlMapping.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Attributes/Sample.Attributes.csproj b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Attributes/Sample.Attributes.csproj index aeaaa0d5d20..57ae9419e9c 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Attributes/Sample.Attributes.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Attributes/Sample.Attributes.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Default/Sample.Default.csproj b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Default/Sample.Default.csproj index d1ef1d81c19..ab1cdb8e568 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Default/Sample.Default.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Default/Sample.Default.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Fluent/Sample.Fluent.csproj b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Fluent/Sample.Fluent.csproj index 1d910202601..38040a446c3 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Fluent/Sample.Fluent.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Fluent/Sample.Fluent.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Loquacious/Sample.Loquacious.csproj b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Loquacious/Sample.Loquacious.csproj index d1ef1d81c19..ab1cdb8e568 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Loquacious/Sample.Loquacious.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.Loquacious/Sample.Loquacious.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.XmlMapping/Sample.XmlMapping.csproj b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.XmlMapping/Sample.XmlMapping.csproj index e153421a3f2..fe82465168f 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_9/Sample.XmlMapping/Sample.XmlMapping.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_9/Sample.XmlMapping/Sample.XmlMapping.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/custom-mappings/NHibernate_9/Shared/Shared.csproj b/samples/nhibernate/custom-mappings/NHibernate_9/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/nhibernate/custom-mappings/NHibernate_9/Shared/Shared.csproj +++ b/samples/nhibernate/custom-mappings/NHibernate_9/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/nhibernate/simple/NHibernate_8/Client/Client.csproj b/samples/nhibernate/simple/NHibernate_8/Client/Client.csproj index 8d2520ffe7a..ecfa00f498c 100644 --- a/samples/nhibernate/simple/NHibernate_8/Client/Client.csproj +++ b/samples/nhibernate/simple/NHibernate_8/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/simple/NHibernate_8/Server/Server.csproj b/samples/nhibernate/simple/NHibernate_8/Server/Server.csproj index 3271ab7d471..10b1999cfbb 100644 --- a/samples/nhibernate/simple/NHibernate_8/Server/Server.csproj +++ b/samples/nhibernate/simple/NHibernate_8/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/simple/NHibernate_8/Shared/Shared.csproj b/samples/nhibernate/simple/NHibernate_8/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/nhibernate/simple/NHibernate_8/Shared/Shared.csproj +++ b/samples/nhibernate/simple/NHibernate_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/nhibernate/simple/NHibernate_9/Client/Client.csproj b/samples/nhibernate/simple/NHibernate_9/Client/Client.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/nhibernate/simple/NHibernate_9/Client/Client.csproj +++ b/samples/nhibernate/simple/NHibernate_9/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/simple/NHibernate_9/Server/Server.csproj b/samples/nhibernate/simple/NHibernate_9/Server/Server.csproj index 2ebd14ead4b..6eac202d185 100644 --- a/samples/nhibernate/simple/NHibernate_9/Server/Server.csproj +++ b/samples/nhibernate/simple/NHibernate_9/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/nhibernate/simple/NHibernate_9/Shared/Shared.csproj b/samples/nhibernate/simple/NHibernate_9/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/nhibernate/simple/NHibernate_9/Shared/Shared.csproj +++ b/samples/nhibernate/simple/NHibernate_9/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/outbox/rabbit/Core_7/Sample/Sample.csproj b/samples/outbox/rabbit/Core_7/Sample/Sample.csproj index c1c817fc9aa..a8255c7102d 100644 --- a/samples/outbox/rabbit/Core_7/Sample/Sample.csproj +++ b/samples/outbox/rabbit/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/outbox/rabbit/Core_8/Sample/Sample.csproj b/samples/outbox/rabbit/Core_8/Sample/Sample.csproj index a52c5b2301d..272e32cfdc8 100644 --- a/samples/outbox/rabbit/Core_8/Sample/Sample.csproj +++ b/samples/outbox/rabbit/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/outbox/sql/Core_7/Receiver/Receiver.csproj b/samples/outbox/sql/Core_7/Receiver/Receiver.csproj index f277f413018..5c195740b97 100644 --- a/samples/outbox/sql/Core_7/Receiver/Receiver.csproj +++ b/samples/outbox/sql/Core_7/Receiver/Receiver.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/outbox/sql/Core_7/Sender/Sender.csproj b/samples/outbox/sql/Core_7/Sender/Sender.csproj index 41f3b985338..2863acca092 100644 --- a/samples/outbox/sql/Core_7/Sender/Sender.csproj +++ b/samples/outbox/sql/Core_7/Sender/Sender.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/outbox/sql/Core_7/Shared/Shared.csproj b/samples/outbox/sql/Core_7/Shared/Shared.csproj index 080ee0a66f0..cef1dd146b1 100644 --- a/samples/outbox/sql/Core_7/Shared/Shared.csproj +++ b/samples/outbox/sql/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/outbox/sql/Core_8/Receiver/Receiver.csproj b/samples/outbox/sql/Core_8/Receiver/Receiver.csproj index 1d9307ae830..887dbdd6f57 100644 --- a/samples/outbox/sql/Core_8/Receiver/Receiver.csproj +++ b/samples/outbox/sql/Core_8/Receiver/Receiver.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/outbox/sql/Core_8/Sender/Sender.csproj b/samples/outbox/sql/Core_8/Sender/Sender.csproj index d1779d1cf1b..4889f88a0ad 100644 --- a/samples/outbox/sql/Core_8/Sender/Sender.csproj +++ b/samples/outbox/sql/Core_8/Sender/Sender.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/outbox/sql/Core_8/Shared/Shared.csproj b/samples/outbox/sql/Core_8/Shared/Shared.csproj index 24ef6ae836b..113ccb12c8e 100644 --- a/samples/outbox/sql/Core_8/Shared/Shared.csproj +++ b/samples/outbox/sql/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/performance-counters/PerfCounters_4/Sample/Sample.csproj b/samples/performance-counters/PerfCounters_4/Sample/Sample.csproj index 178bc198d7c..907ae9724dd 100644 --- a/samples/performance-counters/PerfCounters_4/Sample/Sample.csproj +++ b/samples/performance-counters/PerfCounters_4/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe app.manifest 7.3 diff --git a/samples/pipeline/audit-filtering/Core_7/AuditFilter/AuditFilter.csproj b/samples/pipeline/audit-filtering/Core_7/AuditFilter/AuditFilter.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/pipeline/audit-filtering/Core_7/AuditFilter/AuditFilter.csproj +++ b/samples/pipeline/audit-filtering/Core_7/AuditFilter/AuditFilter.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/audit-filtering/Core_8/AuditFilter/AuditFilter.csproj b/samples/pipeline/audit-filtering/Core_8/AuditFilter/AuditFilter.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/pipeline/audit-filtering/Core_8/AuditFilter/AuditFilter.csproj +++ b/samples/pipeline/audit-filtering/Core_8/AuditFilter/AuditFilter.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/dispatch-notifications/Core_7/SampleApp/SampleApp.csproj b/samples/pipeline/dispatch-notifications/Core_7/SampleApp/SampleApp.csproj index 195fd67de08..3e0199472cd 100644 --- a/samples/pipeline/dispatch-notifications/Core_7/SampleApp/SampleApp.csproj +++ b/samples/pipeline/dispatch-notifications/Core_7/SampleApp/SampleApp.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/dispatch-notifications/Core_8/SampleApp/SampleApp.csproj b/samples/pipeline/dispatch-notifications/Core_8/SampleApp/SampleApp.csproj index e0cd9e43a16..8fc51ea8249 100644 --- a/samples/pipeline/dispatch-notifications/Core_8/SampleApp/SampleApp.csproj +++ b/samples/pipeline/dispatch-notifications/Core_8/SampleApp/SampleApp.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/feature-toggle/Core_7/Sample/Sample.csproj b/samples/pipeline/feature-toggle/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/pipeline/feature-toggle/Core_7/Sample/Sample.csproj +++ b/samples/pipeline/feature-toggle/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/feature-toggle/Core_8/Sample/Sample.csproj b/samples/pipeline/feature-toggle/Core_8/Sample/Sample.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/pipeline/feature-toggle/Core_8/Sample/Sample.csproj +++ b/samples/pipeline/feature-toggle/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/fix-messages-using-behavior/Core_7/PlatformLauncher/PlatformLauncher.csproj b/samples/pipeline/fix-messages-using-behavior/Core_7/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/pipeline/fix-messages-using-behavior/Core_7/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/pipeline/fix-messages-using-behavior/Core_7/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/fix-messages-using-behavior/Core_7/Receiver/Receiver.csproj b/samples/pipeline/fix-messages-using-behavior/Core_7/Receiver/Receiver.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/pipeline/fix-messages-using-behavior/Core_7/Receiver/Receiver.csproj +++ b/samples/pipeline/fix-messages-using-behavior/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/fix-messages-using-behavior/Core_7/Sender/Sender.csproj b/samples/pipeline/fix-messages-using-behavior/Core_7/Sender/Sender.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/pipeline/fix-messages-using-behavior/Core_7/Sender/Sender.csproj +++ b/samples/pipeline/fix-messages-using-behavior/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/fix-messages-using-behavior/Core_7/Shared/Shared.csproj b/samples/pipeline/fix-messages-using-behavior/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/pipeline/fix-messages-using-behavior/Core_7/Shared/Shared.csproj +++ b/samples/pipeline/fix-messages-using-behavior/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/fix-messages-using-behavior/Core_8/PlatformLauncher/PlatformLauncher.csproj b/samples/pipeline/fix-messages-using-behavior/Core_8/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/pipeline/fix-messages-using-behavior/Core_8/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/pipeline/fix-messages-using-behavior/Core_8/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/fix-messages-using-behavior/Core_8/Receiver/Receiver.csproj b/samples/pipeline/fix-messages-using-behavior/Core_8/Receiver/Receiver.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/pipeline/fix-messages-using-behavior/Core_8/Receiver/Receiver.csproj +++ b/samples/pipeline/fix-messages-using-behavior/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/fix-messages-using-behavior/Core_8/Sender/Sender.csproj b/samples/pipeline/fix-messages-using-behavior/Core_8/Sender/Sender.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/pipeline/fix-messages-using-behavior/Core_8/Sender/Sender.csproj +++ b/samples/pipeline/fix-messages-using-behavior/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/fix-messages-using-behavior/Core_8/Shared/Shared.csproj b/samples/pipeline/fix-messages-using-behavior/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/pipeline/fix-messages-using-behavior/Core_8/Shared/Shared.csproj +++ b/samples/pipeline/fix-messages-using-behavior/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/handler-timer/Core_7/Sample/Sample.csproj b/samples/pipeline/handler-timer/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/pipeline/handler-timer/Core_7/Sample/Sample.csproj +++ b/samples/pipeline/handler-timer/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/handler-timer/Core_8/Sample/Sample.csproj b/samples/pipeline/handler-timer/Core_8/Sample/Sample.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/pipeline/handler-timer/Core_8/Sample/Sample.csproj +++ b/samples/pipeline/handler-timer/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/masstransit-messages/Core_7/MTEndpoint/MTEndpoint.csproj b/samples/pipeline/masstransit-messages/Core_7/MTEndpoint/MTEndpoint.csproj index c567d0de92d..3b2582aa47c 100644 --- a/samples/pipeline/masstransit-messages/Core_7/MTEndpoint/MTEndpoint.csproj +++ b/samples/pipeline/masstransit-messages/Core_7/MTEndpoint/MTEndpoint.csproj @@ -1,6 +1,6 @@ - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 dotnet-MTEndpoint-0796FBA1-1278-479A-94F8-C8918B42B338 7.3 diff --git a/samples/pipeline/masstransit-messages/Core_7/Messages/Messages.csproj b/samples/pipeline/masstransit-messages/Core_7/Messages/Messages.csproj index 3511ed8ff1f..1af713cde03 100644 --- a/samples/pipeline/masstransit-messages/Core_7/Messages/Messages.csproj +++ b/samples/pipeline/masstransit-messages/Core_7/Messages/Messages.csproj @@ -1,6 +1,6 @@ - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 7.3 \ No newline at end of file diff --git a/samples/pipeline/masstransit-messages/Core_7/NServiceBusSubscriber/NServiceBusSubscriber.csproj b/samples/pipeline/masstransit-messages/Core_7/NServiceBusSubscriber/NServiceBusSubscriber.csproj index ab5ae6ba9ac..c1d72e7a1ca 100644 --- a/samples/pipeline/masstransit-messages/Core_7/NServiceBusSubscriber/NServiceBusSubscriber.csproj +++ b/samples/pipeline/masstransit-messages/Core_7/NServiceBusSubscriber/NServiceBusSubscriber.csproj @@ -1,6 +1,6 @@ - netcoreapp3.1;net5.0 + netcoreapp3.1;net6.0 dotnet-NServiceBusSubscriber-573F9BD8-FB1A-4A4C-BC88-E4A997A00BE2 7.3 diff --git a/samples/pipeline/message-signing/Core_7/ReceivingEndpoint/ReceivingEndpoint.csproj b/samples/pipeline/message-signing/Core_7/ReceivingEndpoint/ReceivingEndpoint.csproj index e473c61be04..d623068c118 100644 --- a/samples/pipeline/message-signing/Core_7/ReceivingEndpoint/ReceivingEndpoint.csproj +++ b/samples/pipeline/message-signing/Core_7/ReceivingEndpoint/ReceivingEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/message-signing/Core_7/Shared/Shared.csproj b/samples/pipeline/message-signing/Core_7/Shared/Shared.csproj index e3475e2a948..e80e64d83de 100644 --- a/samples/pipeline/message-signing/Core_7/Shared/Shared.csproj +++ b/samples/pipeline/message-signing/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Library 7.3 diff --git a/samples/pipeline/message-signing/Core_7/SignedSender/SignedSender.csproj b/samples/pipeline/message-signing/Core_7/SignedSender/SignedSender.csproj index e473c61be04..d623068c118 100644 --- a/samples/pipeline/message-signing/Core_7/SignedSender/SignedSender.csproj +++ b/samples/pipeline/message-signing/Core_7/SignedSender/SignedSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/message-signing/Core_7/UnsignedSender/UnsignedSender.csproj b/samples/pipeline/message-signing/Core_7/UnsignedSender/UnsignedSender.csproj index e473c61be04..d623068c118 100644 --- a/samples/pipeline/message-signing/Core_7/UnsignedSender/UnsignedSender.csproj +++ b/samples/pipeline/message-signing/Core_7/UnsignedSender/UnsignedSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/message-signing/Core_8/ReceivingEndpoint/ReceivingEndpoint.csproj b/samples/pipeline/message-signing/Core_8/ReceivingEndpoint/ReceivingEndpoint.csproj index c2da1407c3f..ce7debb9e20 100644 --- a/samples/pipeline/message-signing/Core_8/ReceivingEndpoint/ReceivingEndpoint.csproj +++ b/samples/pipeline/message-signing/Core_8/ReceivingEndpoint/ReceivingEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/message-signing/Core_8/Shared/Shared.csproj b/samples/pipeline/message-signing/Core_8/Shared/Shared.csproj index 0f4f4e679bd..dbf1cef8eef 100644 --- a/samples/pipeline/message-signing/Core_8/Shared/Shared.csproj +++ b/samples/pipeline/message-signing/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Library 7.3 diff --git a/samples/pipeline/message-signing/Core_8/SignedSender/SignedSender.csproj b/samples/pipeline/message-signing/Core_8/SignedSender/SignedSender.csproj index c2da1407c3f..ce7debb9e20 100644 --- a/samples/pipeline/message-signing/Core_8/SignedSender/SignedSender.csproj +++ b/samples/pipeline/message-signing/Core_8/SignedSender/SignedSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/message-signing/Core_8/UnsignedSender/UnsignedSender.csproj b/samples/pipeline/message-signing/Core_8/UnsignedSender/UnsignedSender.csproj index c2da1407c3f..ce7debb9e20 100644 --- a/samples/pipeline/message-signing/Core_8/UnsignedSender/UnsignedSender.csproj +++ b/samples/pipeline/message-signing/Core_8/UnsignedSender/UnsignedSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/multi-serializer/Core_7/Receiver/Receiver.csproj b/samples/pipeline/multi-serializer/Core_7/Receiver/Receiver.csproj index 2a8b993b69e..f8261b25a9b 100644 --- a/samples/pipeline/multi-serializer/Core_7/Receiver/Receiver.csproj +++ b/samples/pipeline/multi-serializer/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/multi-serializer/Core_7/Sender/Sender.csproj b/samples/pipeline/multi-serializer/Core_7/Sender/Sender.csproj index 2a8b993b69e..f8261b25a9b 100644 --- a/samples/pipeline/multi-serializer/Core_7/Sender/Sender.csproj +++ b/samples/pipeline/multi-serializer/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/multi-serializer/Core_7/Shared/Shared.csproj b/samples/pipeline/multi-serializer/Core_7/Shared/Shared.csproj index 89602209914..30a0383d01b 100644 --- a/samples/pipeline/multi-serializer/Core_7/Shared/Shared.csproj +++ b/samples/pipeline/multi-serializer/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/multi-serializer/Core_8/Receiver/Receiver.csproj b/samples/pipeline/multi-serializer/Core_8/Receiver/Receiver.csproj index d32a4ee799e..be478ee638f 100644 --- a/samples/pipeline/multi-serializer/Core_8/Receiver/Receiver.csproj +++ b/samples/pipeline/multi-serializer/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/multi-serializer/Core_8/Sender/Sender.csproj b/samples/pipeline/multi-serializer/Core_8/Sender/Sender.csproj index d32a4ee799e..be478ee638f 100644 --- a/samples/pipeline/multi-serializer/Core_8/Sender/Sender.csproj +++ b/samples/pipeline/multi-serializer/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/multi-serializer/Core_8/Shared/Shared.csproj b/samples/pipeline/multi-serializer/Core_8/Shared/Shared.csproj index 353f9add44d..1148cc75ce6 100644 --- a/samples/pipeline/multi-serializer/Core_8/Shared/Shared.csproj +++ b/samples/pipeline/multi-serializer/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/session-filtering/Core_7/Receiver/Receiver.csproj b/samples/pipeline/session-filtering/Core_7/Receiver/Receiver.csproj index 5c21924f00f..1b9bbbbb678 100644 --- a/samples/pipeline/session-filtering/Core_7/Receiver/Receiver.csproj +++ b/samples/pipeline/session-filtering/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/session-filtering/Core_7/Sender/Sender.csproj b/samples/pipeline/session-filtering/Core_7/Sender/Sender.csproj index 5c21924f00f..1b9bbbbb678 100644 --- a/samples/pipeline/session-filtering/Core_7/Sender/Sender.csproj +++ b/samples/pipeline/session-filtering/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/session-filtering/Core_7/SessionFilter/Shared.csproj b/samples/pipeline/session-filtering/Core_7/SessionFilter/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/pipeline/session-filtering/Core_7/SessionFilter/Shared.csproj +++ b/samples/pipeline/session-filtering/Core_7/SessionFilter/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/session-filtering/Core_8/Receiver/Receiver.csproj b/samples/pipeline/session-filtering/Core_8/Receiver/Receiver.csproj index f5614eef7c0..982da270fe3 100644 --- a/samples/pipeline/session-filtering/Core_8/Receiver/Receiver.csproj +++ b/samples/pipeline/session-filtering/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/session-filtering/Core_8/Sender/Sender.csproj b/samples/pipeline/session-filtering/Core_8/Sender/Sender.csproj index f5614eef7c0..982da270fe3 100644 --- a/samples/pipeline/session-filtering/Core_8/Sender/Sender.csproj +++ b/samples/pipeline/session-filtering/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/session-filtering/Core_8/SessionFilter/Shared.csproj b/samples/pipeline/session-filtering/Core_8/SessionFilter/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/pipeline/session-filtering/Core_8/SessionFilter/Shared.csproj +++ b/samples/pipeline/session-filtering/Core_8/SessionFilter/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/stream-properties/Core_7/Receiver/Receiver.csproj b/samples/pipeline/stream-properties/Core_7/Receiver/Receiver.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/pipeline/stream-properties/Core_7/Receiver/Receiver.csproj +++ b/samples/pipeline/stream-properties/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/stream-properties/Core_7/Sender/Sender.csproj b/samples/pipeline/stream-properties/Core_7/Sender/Sender.csproj index cde0753665e..78ad62d1b94 100644 --- a/samples/pipeline/stream-properties/Core_7/Sender/Sender.csproj +++ b/samples/pipeline/stream-properties/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/stream-properties/Core_7/Shared/Shared.csproj b/samples/pipeline/stream-properties/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/pipeline/stream-properties/Core_7/Shared/Shared.csproj +++ b/samples/pipeline/stream-properties/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/stream-properties/Core_8/Receiver/Receiver.csproj b/samples/pipeline/stream-properties/Core_8/Receiver/Receiver.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/pipeline/stream-properties/Core_8/Receiver/Receiver.csproj +++ b/samples/pipeline/stream-properties/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/stream-properties/Core_8/Sender/Sender.csproj b/samples/pipeline/stream-properties/Core_8/Sender/Sender.csproj index 7034972a41c..c84c1bda3fd 100644 --- a/samples/pipeline/stream-properties/Core_8/Sender/Sender.csproj +++ b/samples/pipeline/stream-properties/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/stream-properties/Core_8/Shared/Shared.csproj b/samples/pipeline/stream-properties/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/pipeline/stream-properties/Core_8/Shared/Shared.csproj +++ b/samples/pipeline/stream-properties/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pipeline/unit-of-work/Core_7/Endpoint/Endpoint.csproj b/samples/pipeline/unit-of-work/Core_7/Endpoint/Endpoint.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/pipeline/unit-of-work/Core_7/Endpoint/Endpoint.csproj +++ b/samples/pipeline/unit-of-work/Core_7/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pipeline/unit-of-work/Core_8/Endpoint/Endpoint.csproj b/samples/pipeline/unit-of-work/Core_8/Endpoint/Endpoint.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/pipeline/unit-of-work/Core_8/Endpoint/Endpoint.csproj +++ b/samples/pipeline/unit-of-work/Core_8/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/platform-connector/code-first/PlatformConnector_1/Endpoint/Endpoint.csproj b/samples/platform-connector/code-first/PlatformConnector_1/Endpoint/Endpoint.csproj index 682071a29f8..49300e73e90 100644 --- a/samples/platform-connector/code-first/PlatformConnector_1/Endpoint/Endpoint.csproj +++ b/samples/platform-connector/code-first/PlatformConnector_1/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/platform-connector/code-first/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj b/samples/platform-connector/code-first/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/platform-connector/code-first/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/platform-connector/code-first/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/platform-connector/json/PlatformConnector_1/Endpoint/Endpoint.csproj b/samples/platform-connector/json/PlatformConnector_1/Endpoint/Endpoint.csproj index fa6fae60f98..c332e4aebc1 100644 --- a/samples/platform-connector/json/PlatformConnector_1/Endpoint/Endpoint.csproj +++ b/samples/platform-connector/json/PlatformConnector_1/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/platform-connector/json/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj b/samples/platform-connector/json/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/platform-connector/json/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/platform-connector/json/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/platform-connector/ms-config/PlatformConnector_1/Endpoint/Endpoint.csproj b/samples/platform-connector/ms-config/PlatformConnector_1/Endpoint/Endpoint.csproj index 6fb56c8482f..8f0f773efa1 100644 --- a/samples/platform-connector/ms-config/PlatformConnector_1/Endpoint/Endpoint.csproj +++ b/samples/platform-connector/ms-config/PlatformConnector_1/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/platform-connector/ms-config/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj b/samples/platform-connector/ms-config/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/platform-connector/ms-config/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/platform-connector/ms-config/PlatformConnector_1/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/plugin-based-config/Core_7/CustomExtensionEndpoint/CustomExtensionEndpoint.csproj b/samples/plugin-based-config/Core_7/CustomExtensionEndpoint/CustomExtensionEndpoint.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/plugin-based-config/Core_7/CustomExtensionEndpoint/CustomExtensionEndpoint.csproj +++ b/samples/plugin-based-config/Core_7/CustomExtensionEndpoint/CustomExtensionEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/plugin-based-config/Core_7/CustomExtensions/CustomExtensions.csproj b/samples/plugin-based-config/Core_7/CustomExtensions/CustomExtensions.csproj index 3e38c086e79..4539f451daa 100644 --- a/samples/plugin-based-config/Core_7/CustomExtensions/CustomExtensions.csproj +++ b/samples/plugin-based-config/Core_7/CustomExtensions/CustomExtensions.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 ..\CustomExtensionEndpoint\bin\Debug\ 7.3 diff --git a/samples/plugin-based-config/Core_7/MefExtensionEndpoint/MefExtensionEndpoint.csproj b/samples/plugin-based-config/Core_7/MefExtensionEndpoint/MefExtensionEndpoint.csproj index 10d562e5e11..8ad1a06e5d8 100644 --- a/samples/plugin-based-config/Core_7/MefExtensionEndpoint/MefExtensionEndpoint.csproj +++ b/samples/plugin-based-config/Core_7/MefExtensionEndpoint/MefExtensionEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/plugin-based-config/Core_7/MefExtensions/MefExtensions.csproj b/samples/plugin-based-config/Core_7/MefExtensions/MefExtensions.csproj index ed4f04eda86..48a596c387c 100644 --- a/samples/plugin-based-config/Core_7/MefExtensions/MefExtensions.csproj +++ b/samples/plugin-based-config/Core_7/MefExtensions/MefExtensions.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 ..\MefExtensionEndpoint\bin\Debug\ 7.3 diff --git a/samples/plugin-based-config/Core_7/Shared/Shared.csproj b/samples/plugin-based-config/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/plugin-based-config/Core_7/Shared/Shared.csproj +++ b/samples/plugin-based-config/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/plugin-based-config/Core_8/CustomExtensionEndpoint/CustomExtensionEndpoint.csproj b/samples/plugin-based-config/Core_8/CustomExtensionEndpoint/CustomExtensionEndpoint.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/plugin-based-config/Core_8/CustomExtensionEndpoint/CustomExtensionEndpoint.csproj +++ b/samples/plugin-based-config/Core_8/CustomExtensionEndpoint/CustomExtensionEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/plugin-based-config/Core_8/CustomExtensions/CustomExtensions.csproj b/samples/plugin-based-config/Core_8/CustomExtensions/CustomExtensions.csproj index 5c5bf68d383..3246bf7f4e3 100644 --- a/samples/plugin-based-config/Core_8/CustomExtensions/CustomExtensions.csproj +++ b/samples/plugin-based-config/Core_8/CustomExtensions/CustomExtensions.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 ..\CustomExtensionEndpoint\bin\Debug\ 7.3 diff --git a/samples/plugin-based-config/Core_8/MefExtensionEndpoint/MefExtensionEndpoint.csproj b/samples/plugin-based-config/Core_8/MefExtensionEndpoint/MefExtensionEndpoint.csproj index 2fa2f0baece..dee006ebc33 100644 --- a/samples/plugin-based-config/Core_8/MefExtensionEndpoint/MefExtensionEndpoint.csproj +++ b/samples/plugin-based-config/Core_8/MefExtensionEndpoint/MefExtensionEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/plugin-based-config/Core_8/MefExtensions/MefExtensions.csproj b/samples/plugin-based-config/Core_8/MefExtensions/MefExtensions.csproj index 95b40a7fa31..4f8a2bfbcff 100644 --- a/samples/plugin-based-config/Core_8/MefExtensions/MefExtensions.csproj +++ b/samples/plugin-based-config/Core_8/MefExtensions/MefExtensions.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 ..\MefExtensionEndpoint\bin\Debug\ 7.3 diff --git a/samples/plugin-based-config/Core_8/Shared/Shared.csproj b/samples/plugin-based-config/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/plugin-based-config/Core_8/Shared/Shared.csproj +++ b/samples/plugin-based-config/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pubsub/native/Core_7/Publisher/Publisher.csproj b/samples/pubsub/native/Core_7/Publisher/Publisher.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/pubsub/native/Core_7/Publisher/Publisher.csproj +++ b/samples/pubsub/native/Core_7/Publisher/Publisher.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pubsub/native/Core_7/Shared/Shared.csproj b/samples/pubsub/native/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/pubsub/native/Core_7/Shared/Shared.csproj +++ b/samples/pubsub/native/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pubsub/native/Core_7/Subscriber/Subscriber.csproj b/samples/pubsub/native/Core_7/Subscriber/Subscriber.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/pubsub/native/Core_7/Subscriber/Subscriber.csproj +++ b/samples/pubsub/native/Core_7/Subscriber/Subscriber.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pubsub/native/Core_8/Publisher/Publisher.csproj b/samples/pubsub/native/Core_8/Publisher/Publisher.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/pubsub/native/Core_8/Publisher/Publisher.csproj +++ b/samples/pubsub/native/Core_8/Publisher/Publisher.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/pubsub/native/Core_8/Shared/Shared.csproj b/samples/pubsub/native/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/pubsub/native/Core_8/Shared/Shared.csproj +++ b/samples/pubsub/native/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/pubsub/native/Core_8/Subscriber/Subscriber.csproj b/samples/pubsub/native/Core_8/Subscriber/Subscriber.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/pubsub/native/Core_8/Subscriber/Subscriber.csproj +++ b/samples/pubsub/native/Core_8/Subscriber/Subscriber.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/cluster/Rabbit_8/MyEndpoint/MyEndpoint.csproj b/samples/rabbitmq/cluster/Rabbit_8/MyEndpoint/MyEndpoint.csproj index c829903c855..bd82c986aea 100644 --- a/samples/rabbitmq/cluster/Rabbit_8/MyEndpoint/MyEndpoint.csproj +++ b/samples/rabbitmq/cluster/Rabbit_8/MyEndpoint/MyEndpoint.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/native-integration/Rabbit_5/NativeSender/NativeSender.csproj b/samples/rabbitmq/native-integration/Rabbit_5/NativeSender/NativeSender.csproj index 46338c17613..410620682e4 100644 --- a/samples/rabbitmq/native-integration/Rabbit_5/NativeSender/NativeSender.csproj +++ b/samples/rabbitmq/native-integration/Rabbit_5/NativeSender/NativeSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/native-integration/Rabbit_5/Receiver/Receiver.csproj b/samples/rabbitmq/native-integration/Rabbit_5/Receiver/Receiver.csproj index 762cae5e511..699f2af9303 100644 --- a/samples/rabbitmq/native-integration/Rabbit_5/Receiver/Receiver.csproj +++ b/samples/rabbitmq/native-integration/Rabbit_5/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/native-integration/Rabbit_7/NativeSender/NativeSender.csproj b/samples/rabbitmq/native-integration/Rabbit_7/NativeSender/NativeSender.csproj index 46338c17613..410620682e4 100644 --- a/samples/rabbitmq/native-integration/Rabbit_7/NativeSender/NativeSender.csproj +++ b/samples/rabbitmq/native-integration/Rabbit_7/NativeSender/NativeSender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/native-integration/Rabbit_7/Receiver/Receiver.csproj b/samples/rabbitmq/native-integration/Rabbit_7/Receiver/Receiver.csproj index ad24f02e33d..3721f08b9c7 100644 --- a/samples/rabbitmq/native-integration/Rabbit_7/Receiver/Receiver.csproj +++ b/samples/rabbitmq/native-integration/Rabbit_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/simple/Rabbit_5/Receiver/Receiver.csproj b/samples/rabbitmq/simple/Rabbit_5/Receiver/Receiver.csproj index 8b06e3981a9..473dc2f3595 100644 --- a/samples/rabbitmq/simple/Rabbit_5/Receiver/Receiver.csproj +++ b/samples/rabbitmq/simple/Rabbit_5/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/simple/Rabbit_5/Sender/Sender.csproj b/samples/rabbitmq/simple/Rabbit_5/Sender/Sender.csproj index 8b06e3981a9..473dc2f3595 100644 --- a/samples/rabbitmq/simple/Rabbit_5/Sender/Sender.csproj +++ b/samples/rabbitmq/simple/Rabbit_5/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/simple/Rabbit_7/Receiver/Receiver.csproj b/samples/rabbitmq/simple/Rabbit_7/Receiver/Receiver.csproj index c7084f97825..3e13c3c8a2d 100644 --- a/samples/rabbitmq/simple/Rabbit_7/Receiver/Receiver.csproj +++ b/samples/rabbitmq/simple/Rabbit_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/simple/Rabbit_7/Sender/Sender.csproj b/samples/rabbitmq/simple/Rabbit_7/Sender/Sender.csproj index c7084f97825..3e13c3c8a2d 100644 --- a/samples/rabbitmq/simple/Rabbit_7/Sender/Sender.csproj +++ b/samples/rabbitmq/simple/Rabbit_7/Sender/Sender.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/rabbitmq/simple/Rabbit_7/Shared/Shared.csproj b/samples/rabbitmq/simple/Rabbit_7/Shared/Shared.csproj index 609feb83193..83e4dd551ff 100644 --- a/samples/rabbitmq/simple/Rabbit_7/Shared/Shared.csproj +++ b/samples/rabbitmq/simple/Rabbit_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/ravendb/simple/Raven_6/Client/Client.csproj b/samples/ravendb/simple/Raven_6/Client/Client.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/ravendb/simple/Raven_6/Client/Client.csproj +++ b/samples/ravendb/simple/Raven_6/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/ravendb/simple/Raven_6/Server/Server.csproj b/samples/ravendb/simple/Raven_6/Server/Server.csproj index 3cd070c2eb5..03219c2e102 100644 --- a/samples/ravendb/simple/Raven_6/Server/Server.csproj +++ b/samples/ravendb/simple/Raven_6/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/ravendb/simple/Raven_6/Shared/Shared.csproj b/samples/ravendb/simple/Raven_6/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/ravendb/simple/Raven_6/Shared/Shared.csproj +++ b/samples/ravendb/simple/Raven_6/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/ravendb/simple/Raven_7/Client/Client.csproj b/samples/ravendb/simple/Raven_7/Client/Client.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/ravendb/simple/Raven_7/Client/Client.csproj +++ b/samples/ravendb/simple/Raven_7/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/ravendb/simple/Raven_7/Server/Server.csproj b/samples/ravendb/simple/Raven_7/Server/Server.csproj index 8eb6244a939..51012c6b2b3 100644 --- a/samples/ravendb/simple/Raven_7/Server/Server.csproj +++ b/samples/ravendb/simple/Raven_7/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/ravendb/simple/Raven_7/Shared/Shared.csproj b/samples/ravendb/simple/Raven_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/ravendb/simple/Raven_7/Shared/Shared.csproj +++ b/samples/ravendb/simple/Raven_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/ravendb/simple/Raven_8/Client/Client.csproj b/samples/ravendb/simple/Raven_8/Client/Client.csproj index 883007613ac..27fb2825183 100644 --- a/samples/ravendb/simple/Raven_8/Client/Client.csproj +++ b/samples/ravendb/simple/Raven_8/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/ravendb/simple/Raven_8/Server/Server.csproj b/samples/ravendb/simple/Raven_8/Server/Server.csproj index 2f95696160c..a9b6deae771 100644 --- a/samples/ravendb/simple/Raven_8/Server/Server.csproj +++ b/samples/ravendb/simple/Raven_8/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/ravendb/simple/Raven_8/Shared/Shared.csproj b/samples/ravendb/simple/Raven_8/Shared/Shared.csproj index 85a96b566dc..6ef32212ed2 100644 --- a/samples/ravendb/simple/Raven_8/Shared/Shared.csproj +++ b/samples/ravendb/simple/Raven_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing-slips/MessageRouting_3/Messages/Messages.csproj b/samples/routing-slips/MessageRouting_3/Messages/Messages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/routing-slips/MessageRouting_3/Messages/Messages.csproj +++ b/samples/routing-slips/MessageRouting_3/Messages/Messages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing-slips/MessageRouting_3/ResultHost/ResultHost.csproj b/samples/routing-slips/MessageRouting_3/ResultHost/ResultHost.csproj index 2c11f011ddd..7b52735faeb 100644 --- a/samples/routing-slips/MessageRouting_3/ResultHost/ResultHost.csproj +++ b/samples/routing-slips/MessageRouting_3/ResultHost/ResultHost.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing-slips/MessageRouting_3/Sender/Sender.csproj b/samples/routing-slips/MessageRouting_3/Sender/Sender.csproj index 2c11f011ddd..7b52735faeb 100644 --- a/samples/routing-slips/MessageRouting_3/Sender/Sender.csproj +++ b/samples/routing-slips/MessageRouting_3/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing-slips/MessageRouting_3/StepA/StepA.csproj b/samples/routing-slips/MessageRouting_3/StepA/StepA.csproj index ef6ed989fdf..50ea1c60bbc 100644 --- a/samples/routing-slips/MessageRouting_3/StepA/StepA.csproj +++ b/samples/routing-slips/MessageRouting_3/StepA/StepA.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing-slips/MessageRouting_3/StepB/StepB.csproj b/samples/routing-slips/MessageRouting_3/StepB/StepB.csproj index ef6ed989fdf..50ea1c60bbc 100644 --- a/samples/routing-slips/MessageRouting_3/StepB/StepB.csproj +++ b/samples/routing-slips/MessageRouting_3/StepB/StepB.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing-slips/MessageRouting_3/StepC/StepC.csproj b/samples/routing-slips/MessageRouting_3/StepC/StepC.csproj index ef6ed989fdf..50ea1c60bbc 100644 --- a/samples/routing-slips/MessageRouting_3/StepC/StepC.csproj +++ b/samples/routing-slips/MessageRouting_3/StepC/StepC.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing/command-routing/Core_7/Receiver/Receiver.csproj b/samples/routing/command-routing/Core_7/Receiver/Receiver.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/routing/command-routing/Core_7/Receiver/Receiver.csproj +++ b/samples/routing/command-routing/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing/command-routing/Core_7/Sender/Sender.csproj b/samples/routing/command-routing/Core_7/Sender/Sender.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/routing/command-routing/Core_7/Sender/Sender.csproj +++ b/samples/routing/command-routing/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing/command-routing/Core_7/Shared/Shared.csproj b/samples/routing/command-routing/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/routing/command-routing/Core_7/Shared/Shared.csproj +++ b/samples/routing/command-routing/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing/command-routing/Core_8/Receiver/Receiver.csproj b/samples/routing/command-routing/Core_8/Receiver/Receiver.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/routing/command-routing/Core_8/Receiver/Receiver.csproj +++ b/samples/routing/command-routing/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing/command-routing/Core_8/Sender/Sender.csproj b/samples/routing/command-routing/Core_8/Sender/Sender.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/routing/command-routing/Core_8/Sender/Sender.csproj +++ b/samples/routing/command-routing/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/routing/command-routing/Core_8/Shared/Shared.csproj b/samples/routing/command-routing/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/routing/command-routing/Core_8/Shared/Shared.csproj +++ b/samples/routing/command-routing/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing/fowarding-address/Core_7/Messages/Messages.csproj b/samples/routing/fowarding-address/Core_7/Messages/Messages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/routing/fowarding-address/Core_7/Messages/Messages.csproj +++ b/samples/routing/fowarding-address/Core_7/Messages/Messages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing/fowarding-address/Core_7/NServiceBus.ForwardingAddress/NServiceBus.ForwardingAddress.csproj b/samples/routing/fowarding-address/Core_7/NServiceBus.ForwardingAddress/NServiceBus.ForwardingAddress.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/routing/fowarding-address/Core_7/NServiceBus.ForwardingAddress/NServiceBus.ForwardingAddress.csproj +++ b/samples/routing/fowarding-address/Core_7/NServiceBus.ForwardingAddress/NServiceBus.ForwardingAddress.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing/fowarding-address/Core_7/NewDestination/NewDestination.csproj b/samples/routing/fowarding-address/Core_7/NewDestination/NewDestination.csproj index 48dae511f96..8b2d148787d 100644 --- a/samples/routing/fowarding-address/Core_7/NewDestination/NewDestination.csproj +++ b/samples/routing/fowarding-address/Core_7/NewDestination/NewDestination.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/routing/fowarding-address/Core_7/OriginalDestination/OriginalDestination.csproj b/samples/routing/fowarding-address/Core_7/OriginalDestination/OriginalDestination.csproj index 7577997dd7b..cbbc88cb232 100644 --- a/samples/routing/fowarding-address/Core_7/OriginalDestination/OriginalDestination.csproj +++ b/samples/routing/fowarding-address/Core_7/OriginalDestination/OriginalDestination.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/routing/fowarding-address/Core_7/Sender/Sender.csproj b/samples/routing/fowarding-address/Core_7/Sender/Sender.csproj index 48dae511f96..8b2d148787d 100644 --- a/samples/routing/fowarding-address/Core_7/Sender/Sender.csproj +++ b/samples/routing/fowarding-address/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/routing/message-forwarding/Core_7/Messages/Messages.csproj b/samples/routing/message-forwarding/Core_7/Messages/Messages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/routing/message-forwarding/Core_7/Messages/Messages.csproj +++ b/samples/routing/message-forwarding/Core_7/Messages/Messages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing/message-forwarding/Core_7/NServiceBus.MessageForwarding/NServiceBus.MessageForwarding.csproj b/samples/routing/message-forwarding/Core_7/NServiceBus.MessageForwarding/NServiceBus.MessageForwarding.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/routing/message-forwarding/Core_7/NServiceBus.MessageForwarding/NServiceBus.MessageForwarding.csproj +++ b/samples/routing/message-forwarding/Core_7/NServiceBus.MessageForwarding/NServiceBus.MessageForwarding.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing/message-forwarding/Core_7/OriginalDestination/OriginalDestination.csproj b/samples/routing/message-forwarding/Core_7/OriginalDestination/OriginalDestination.csproj index 0064b5b69d8..5b3dbab4172 100644 --- a/samples/routing/message-forwarding/Core_7/OriginalDestination/OriginalDestination.csproj +++ b/samples/routing/message-forwarding/Core_7/OriginalDestination/OriginalDestination.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/routing/message-forwarding/Core_7/Sender/Sender.csproj b/samples/routing/message-forwarding/Core_7/Sender/Sender.csproj index b56d9d8c1c7..3de4b10a5ca 100644 --- a/samples/routing/message-forwarding/Core_7/Sender/Sender.csproj +++ b/samples/routing/message-forwarding/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/routing/message-forwarding/Core_7/UpgradedDestination/UpgradedDestination.csproj b/samples/routing/message-forwarding/Core_7/UpgradedDestination/UpgradedDestination.csproj index b56d9d8c1c7..3de4b10a5ca 100644 --- a/samples/routing/message-forwarding/Core_7/UpgradedDestination/UpgradedDestination.csproj +++ b/samples/routing/message-forwarding/Core_7/UpgradedDestination/UpgradedDestination.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/routing/message-forwarding/Core_8/Messages/Messages.csproj b/samples/routing/message-forwarding/Core_8/Messages/Messages.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/routing/message-forwarding/Core_8/Messages/Messages.csproj +++ b/samples/routing/message-forwarding/Core_8/Messages/Messages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing/message-forwarding/Core_8/NServiceBus.MessageForwarding/NServiceBus.MessageForwarding.csproj b/samples/routing/message-forwarding/Core_8/NServiceBus.MessageForwarding/NServiceBus.MessageForwarding.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/routing/message-forwarding/Core_8/NServiceBus.MessageForwarding/NServiceBus.MessageForwarding.csproj +++ b/samples/routing/message-forwarding/Core_8/NServiceBus.MessageForwarding/NServiceBus.MessageForwarding.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/routing/message-forwarding/Core_8/OriginalDestination/OriginalDestination.csproj b/samples/routing/message-forwarding/Core_8/OriginalDestination/OriginalDestination.csproj index 19c85a7e180..83b7912ac33 100644 --- a/samples/routing/message-forwarding/Core_8/OriginalDestination/OriginalDestination.csproj +++ b/samples/routing/message-forwarding/Core_8/OriginalDestination/OriginalDestination.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/routing/message-forwarding/Core_8/Sender/Sender.csproj b/samples/routing/message-forwarding/Core_8/Sender/Sender.csproj index 601d73bc0d1..e6bded239a4 100644 --- a/samples/routing/message-forwarding/Core_8/Sender/Sender.csproj +++ b/samples/routing/message-forwarding/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/routing/message-forwarding/Core_8/UpgradedDestination/UpgradedDestination.csproj b/samples/routing/message-forwarding/Core_8/UpgradedDestination/UpgradedDestination.csproj index 601d73bc0d1..e6bded239a4 100644 --- a/samples/routing/message-forwarding/Core_8/UpgradedDestination/UpgradedDestination.csproj +++ b/samples/routing/message-forwarding/Core_8/UpgradedDestination/UpgradedDestination.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 Exe diff --git a/samples/saga/simple/Core_7/Sample/Sample.csproj b/samples/saga/simple/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/saga/simple/Core_7/Sample/Sample.csproj +++ b/samples/saga/simple/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/simple/Core_8/Sample/Sample.csproj b/samples/saga/simple/Core_8/Sample/Sample.csproj index 3178342a647..3e9127cda31 100644 --- a/samples/saga/simple/Core_8/Sample/Sample.csproj +++ b/samples/saga/simple/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointMySql/EndpointMySql.csproj b/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointMySql/EndpointMySql.csproj index cfda31eb5dc..b2ef41075b6 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointMySql/EndpointMySql.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointMySql/EndpointMySql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointPostgreSql/EndpointPostgreSql.csproj b/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointPostgreSql/EndpointPostgreSql.csproj index 4e0ca579edf..f552b270ab7 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointPostgreSql/EndpointPostgreSql.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointPostgreSql/EndpointPostgreSql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointSqlServer/EndpointSqlServer.csproj b/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointSqlServer/EndpointSqlServer.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointSqlServer/EndpointSqlServer.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_4/EndpointSqlServer/EndpointSqlServer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_4/Shared/Shared.csproj b/samples/saga/sql-sagafinder/SqlPersistence_4/Shared/Shared.csproj index 48b58c07523..7698a3e81bd 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_4/Shared/Shared.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_4/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointMySql/EndpointMySql.csproj b/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointMySql/EndpointMySql.csproj index cfda31eb5dc..b2ef41075b6 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointMySql/EndpointMySql.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointMySql/EndpointMySql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointPostgreSql/EndpointPostgreSql.csproj b/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointPostgreSql/EndpointPostgreSql.csproj index 4e0ca579edf..f552b270ab7 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointPostgreSql/EndpointPostgreSql.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointPostgreSql/EndpointPostgreSql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointSqlServer/EndpointSqlServer.csproj b/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointSqlServer/EndpointSqlServer.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointSqlServer/EndpointSqlServer.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_5/EndpointSqlServer/EndpointSqlServer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_5/Shared/Shared.csproj b/samples/saga/sql-sagafinder/SqlPersistence_5/Shared/Shared.csproj index d0c93e693e0..f71d2743baf 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_5/Shared/Shared.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_5/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointMySql/EndpointMySql.csproj b/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointMySql/EndpointMySql.csproj index cfda31eb5dc..b2ef41075b6 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointMySql/EndpointMySql.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointMySql/EndpointMySql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointPostgreSql/EndpointPostgreSql.csproj b/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointPostgreSql/EndpointPostgreSql.csproj index 4e0ca579edf..f552b270ab7 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointPostgreSql/EndpointPostgreSql.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointPostgreSql/EndpointPostgreSql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointSqlServer/EndpointSqlServer.csproj b/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointSqlServer/EndpointSqlServer.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointSqlServer/EndpointSqlServer.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_6/EndpointSqlServer/EndpointSqlServer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/saga/sql-sagafinder/SqlPersistence_6/Shared/Shared.csproj b/samples/saga/sql-sagafinder/SqlPersistence_6/Shared/Shared.csproj index 52d2d4293a4..a46f18b41b4 100644 --- a/samples/saga/sql-sagafinder/SqlPersistence_6/Shared/Shared.csproj +++ b/samples/saga/sql-sagafinder/SqlPersistence_6/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/scheduling/fluentscheduler/Core_7/Receiver/Receiver.csproj b/samples/scheduling/fluentscheduler/Core_7/Receiver/Receiver.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/scheduling/fluentscheduler/Core_7/Receiver/Receiver.csproj +++ b/samples/scheduling/fluentscheduler/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/fluentscheduler/Core_7/Scheduler/Scheduler.csproj b/samples/scheduling/fluentscheduler/Core_7/Scheduler/Scheduler.csproj index d75c687e6ee..4f8559fb4a0 100644 --- a/samples/scheduling/fluentscheduler/Core_7/Scheduler/Scheduler.csproj +++ b/samples/scheduling/fluentscheduler/Core_7/Scheduler/Scheduler.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/fluentscheduler/Core_7/Shared/Shared.csproj b/samples/scheduling/fluentscheduler/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/scheduling/fluentscheduler/Core_7/Shared/Shared.csproj +++ b/samples/scheduling/fluentscheduler/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/scheduling/fluentscheduler/Core_8/Receiver/Receiver.csproj b/samples/scheduling/fluentscheduler/Core_8/Receiver/Receiver.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/scheduling/fluentscheduler/Core_8/Receiver/Receiver.csproj +++ b/samples/scheduling/fluentscheduler/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/fluentscheduler/Core_8/Scheduler/Scheduler.csproj b/samples/scheduling/fluentscheduler/Core_8/Scheduler/Scheduler.csproj index d75c687e6ee..4f8559fb4a0 100644 --- a/samples/scheduling/fluentscheduler/Core_8/Scheduler/Scheduler.csproj +++ b/samples/scheduling/fluentscheduler/Core_8/Scheduler/Scheduler.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/fluentscheduler/Core_8/Shared/Shared.csproj b/samples/scheduling/fluentscheduler/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/scheduling/fluentscheduler/Core_8/Shared/Shared.csproj +++ b/samples/scheduling/fluentscheduler/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/scheduling/hangfire/Core_7/Receiver/Receiver.csproj b/samples/scheduling/hangfire/Core_7/Receiver/Receiver.csproj index 6827f822345..694400951e9 100644 --- a/samples/scheduling/hangfire/Core_7/Receiver/Receiver.csproj +++ b/samples/scheduling/hangfire/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/hangfire/Core_7/Scheduler/Scheduler.csproj b/samples/scheduling/hangfire/Core_7/Scheduler/Scheduler.csproj index be779642640..26dcf94f861 100644 --- a/samples/scheduling/hangfire/Core_7/Scheduler/Scheduler.csproj +++ b/samples/scheduling/hangfire/Core_7/Scheduler/Scheduler.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/hangfire/Core_7/Shared/Shared.csproj b/samples/scheduling/hangfire/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/scheduling/hangfire/Core_7/Shared/Shared.csproj +++ b/samples/scheduling/hangfire/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/scheduling/hangfire/Core_8/Receiver/Receiver.csproj b/samples/scheduling/hangfire/Core_8/Receiver/Receiver.csproj index 6827f822345..694400951e9 100644 --- a/samples/scheduling/hangfire/Core_8/Receiver/Receiver.csproj +++ b/samples/scheduling/hangfire/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/hangfire/Core_8/Scheduler/Scheduler.csproj b/samples/scheduling/hangfire/Core_8/Scheduler/Scheduler.csproj index be779642640..26dcf94f861 100644 --- a/samples/scheduling/hangfire/Core_8/Scheduler/Scheduler.csproj +++ b/samples/scheduling/hangfire/Core_8/Scheduler/Scheduler.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/hangfire/Core_8/Shared/Shared.csproj b/samples/scheduling/hangfire/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/scheduling/hangfire/Core_8/Shared/Shared.csproj +++ b/samples/scheduling/hangfire/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/scheduling/quartz/Core_7/Receiver/Receiver.csproj b/samples/scheduling/quartz/Core_7/Receiver/Receiver.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/scheduling/quartz/Core_7/Receiver/Receiver.csproj +++ b/samples/scheduling/quartz/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/quartz/Core_7/Scheduler/Scheduler.csproj b/samples/scheduling/quartz/Core_7/Scheduler/Scheduler.csproj index 9f50895e964..1869e4ee327 100644 --- a/samples/scheduling/quartz/Core_7/Scheduler/Scheduler.csproj +++ b/samples/scheduling/quartz/Core_7/Scheduler/Scheduler.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/quartz/Core_7/Shared/Shared.csproj b/samples/scheduling/quartz/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/scheduling/quartz/Core_7/Shared/Shared.csproj +++ b/samples/scheduling/quartz/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/scheduling/quartz/Core_8/Receiver/Receiver.csproj b/samples/scheduling/quartz/Core_8/Receiver/Receiver.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/scheduling/quartz/Core_8/Receiver/Receiver.csproj +++ b/samples/scheduling/quartz/Core_8/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/quartz/Core_8/Scheduler/Scheduler.csproj b/samples/scheduling/quartz/Core_8/Scheduler/Scheduler.csproj index 9f50895e964..1869e4ee327 100644 --- a/samples/scheduling/quartz/Core_8/Scheduler/Scheduler.csproj +++ b/samples/scheduling/quartz/Core_8/Scheduler/Scheduler.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/quartz/Core_8/Shared/Shared.csproj b/samples/scheduling/quartz/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/scheduling/quartz/Core_8/Shared/Shared.csproj +++ b/samples/scheduling/quartz/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/scheduling/scheduler/Core_7/Sample/Sample.csproj b/samples/scheduling/scheduler/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/scheduling/scheduler/Core_7/Sample/Sample.csproj +++ b/samples/scheduling/scheduler/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/scheduling/timer/Core_8/Sample/Sample.csproj b/samples/scheduling/timer/Core_8/Sample/Sample.csproj index 3178342a647..3e9127cda31 100644 --- a/samples/scheduling/timer/Core_8/Sample/Sample.csproj +++ b/samples/scheduling/timer/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/change-message-type/Core_7/SamplePhase1/SamplePhase1.csproj b/samples/serializers/change-message-type/Core_7/SamplePhase1/SamplePhase1.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/serializers/change-message-type/Core_7/SamplePhase1/SamplePhase1.csproj +++ b/samples/serializers/change-message-type/Core_7/SamplePhase1/SamplePhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/change-message-type/Core_7/SamplePhase2/SamplePhase2.csproj b/samples/serializers/change-message-type/Core_7/SamplePhase2/SamplePhase2.csproj index a3ad729ada6..c2b80171390 100644 --- a/samples/serializers/change-message-type/Core_7/SamplePhase2/SamplePhase2.csproj +++ b/samples/serializers/change-message-type/Core_7/SamplePhase2/SamplePhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 true diff --git a/samples/serializers/change-message-type/Core_8/SamplePhase1/SamplePhase1.csproj b/samples/serializers/change-message-type/Core_8/SamplePhase1/SamplePhase1.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/serializers/change-message-type/Core_8/SamplePhase1/SamplePhase1.csproj +++ b/samples/serializers/change-message-type/Core_8/SamplePhase1/SamplePhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/change-message-type/Core_8/SamplePhase2/SamplePhase2.csproj b/samples/serializers/change-message-type/Core_8/SamplePhase2/SamplePhase2.csproj index 9106304a9e8..be3a589b77d 100644 --- a/samples/serializers/change-message-type/Core_8/SamplePhase2/SamplePhase2.csproj +++ b/samples/serializers/change-message-type/Core_8/SamplePhase2/SamplePhase2.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 true diff --git a/samples/serializers/multiple-deserializers/Core_7/ExternalNewtonsoftBsonEndpoint/ExternalNewtonsoftBsonEndpoint.csproj b/samples/serializers/multiple-deserializers/Core_7/ExternalNewtonsoftBsonEndpoint/ExternalNewtonsoftBsonEndpoint.csproj index 8ebd7b7912b..5026b9af6ce 100644 --- a/samples/serializers/multiple-deserializers/Core_7/ExternalNewtonsoftBsonEndpoint/ExternalNewtonsoftBsonEndpoint.csproj +++ b/samples/serializers/multiple-deserializers/Core_7/ExternalNewtonsoftBsonEndpoint/ExternalNewtonsoftBsonEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_7/ExternalNewtonsoftJsonEndpoint/ExternalNewtonsoftJsonEndpoint.csproj b/samples/serializers/multiple-deserializers/Core_7/ExternalNewtonsoftJsonEndpoint/ExternalNewtonsoftJsonEndpoint.csproj index 8f03964adb1..320487b3a2a 100644 --- a/samples/serializers/multiple-deserializers/Core_7/ExternalNewtonsoftJsonEndpoint/ExternalNewtonsoftJsonEndpoint.csproj +++ b/samples/serializers/multiple-deserializers/Core_7/ExternalNewtonsoftJsonEndpoint/ExternalNewtonsoftJsonEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_7/ReceivingEndpoint/ReceivingEndpoint.csproj b/samples/serializers/multiple-deserializers/Core_7/ReceivingEndpoint/ReceivingEndpoint.csproj index 8ebd7b7912b..5026b9af6ce 100644 --- a/samples/serializers/multiple-deserializers/Core_7/ReceivingEndpoint/ReceivingEndpoint.csproj +++ b/samples/serializers/multiple-deserializers/Core_7/ReceivingEndpoint/ReceivingEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_7/Shared/Shared.csproj b/samples/serializers/multiple-deserializers/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/serializers/multiple-deserializers/Core_7/Shared/Shared.csproj +++ b/samples/serializers/multiple-deserializers/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_7/XmlEndpoint/XmlEndpoint.csproj b/samples/serializers/multiple-deserializers/Core_7/XmlEndpoint/XmlEndpoint.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/serializers/multiple-deserializers/Core_7/XmlEndpoint/XmlEndpoint.csproj +++ b/samples/serializers/multiple-deserializers/Core_7/XmlEndpoint/XmlEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_8/ExternalNewtonsoftBsonEndpoint/ExternalNewtonsoftBsonEndpoint.csproj b/samples/serializers/multiple-deserializers/Core_8/ExternalNewtonsoftBsonEndpoint/ExternalNewtonsoftBsonEndpoint.csproj index 0bbc4212f80..2db4773c620 100644 --- a/samples/serializers/multiple-deserializers/Core_8/ExternalNewtonsoftBsonEndpoint/ExternalNewtonsoftBsonEndpoint.csproj +++ b/samples/serializers/multiple-deserializers/Core_8/ExternalNewtonsoftBsonEndpoint/ExternalNewtonsoftBsonEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_8/ExternalNewtonsoftJsonEndpoint/ExternalNewtonsoftJsonEndpoint.csproj b/samples/serializers/multiple-deserializers/Core_8/ExternalNewtonsoftJsonEndpoint/ExternalNewtonsoftJsonEndpoint.csproj index 82652b95b30..a23b1c8aeb5 100644 --- a/samples/serializers/multiple-deserializers/Core_8/ExternalNewtonsoftJsonEndpoint/ExternalNewtonsoftJsonEndpoint.csproj +++ b/samples/serializers/multiple-deserializers/Core_8/ExternalNewtonsoftJsonEndpoint/ExternalNewtonsoftJsonEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_8/ReceivingEndpoint/ReceivingEndpoint.csproj b/samples/serializers/multiple-deserializers/Core_8/ReceivingEndpoint/ReceivingEndpoint.csproj index 0bbc4212f80..2db4773c620 100644 --- a/samples/serializers/multiple-deserializers/Core_8/ReceivingEndpoint/ReceivingEndpoint.csproj +++ b/samples/serializers/multiple-deserializers/Core_8/ReceivingEndpoint/ReceivingEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_8/Shared/Shared.csproj b/samples/serializers/multiple-deserializers/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/serializers/multiple-deserializers/Core_8/Shared/Shared.csproj +++ b/samples/serializers/multiple-deserializers/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/serializers/multiple-deserializers/Core_8/XmlEndpoint/XmlEndpoint.csproj b/samples/serializers/multiple-deserializers/Core_8/XmlEndpoint/XmlEndpoint.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/serializers/multiple-deserializers/Core_8/XmlEndpoint/XmlEndpoint.csproj +++ b/samples/serializers/multiple-deserializers/Core_8/XmlEndpoint/XmlEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/newtonsoft-bson/Newtonsoft_2/Sample/Sample.csproj b/samples/serializers/newtonsoft-bson/Newtonsoft_2/Sample/Sample.csproj index 86511130b58..b80c8b0bb56 100644 --- a/samples/serializers/newtonsoft-bson/Newtonsoft_2/Sample/Sample.csproj +++ b/samples/serializers/newtonsoft-bson/Newtonsoft_2/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/newtonsoft-bson/Newtonsoft_3/Sample/Sample.csproj b/samples/serializers/newtonsoft-bson/Newtonsoft_3/Sample/Sample.csproj index 66df0b15ee5..8ec9f4b37cb 100644 --- a/samples/serializers/newtonsoft-bson/Newtonsoft_3/Sample/Sample.csproj +++ b/samples/serializers/newtonsoft-bson/Newtonsoft_3/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/newtonsoft/Newtonsoft_2/Sample/Sample.csproj b/samples/serializers/newtonsoft/Newtonsoft_2/Sample/Sample.csproj index 0110c53d33d..f9112cee372 100644 --- a/samples/serializers/newtonsoft/Newtonsoft_2/Sample/Sample.csproj +++ b/samples/serializers/newtonsoft/Newtonsoft_2/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/newtonsoft/Newtonsoft_3/Sample/Sample.csproj b/samples/serializers/newtonsoft/Newtonsoft_3/Sample/Sample.csproj index b6ad943f8bd..e3f55777e73 100644 --- a/samples/serializers/newtonsoft/Newtonsoft_3/Sample/Sample.csproj +++ b/samples/serializers/newtonsoft/Newtonsoft_3/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_7/SamplePhase1/SamplePhase1.csproj b/samples/serializers/transitioning-formats/Core_7/SamplePhase1/SamplePhase1.csproj index 0e1779a9352..811e4a4ca98 100644 --- a/samples/serializers/transitioning-formats/Core_7/SamplePhase1/SamplePhase1.csproj +++ b/samples/serializers/transitioning-formats/Core_7/SamplePhase1/SamplePhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_7/SamplePhase2/SamplePhase2.csproj b/samples/serializers/transitioning-formats/Core_7/SamplePhase2/SamplePhase2.csproj index 0e1779a9352..811e4a4ca98 100644 --- a/samples/serializers/transitioning-formats/Core_7/SamplePhase2/SamplePhase2.csproj +++ b/samples/serializers/transitioning-formats/Core_7/SamplePhase2/SamplePhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_7/SamplePhase3/SamplePhase3.csproj b/samples/serializers/transitioning-formats/Core_7/SamplePhase3/SamplePhase3.csproj index 0e1779a9352..811e4a4ca98 100644 --- a/samples/serializers/transitioning-formats/Core_7/SamplePhase3/SamplePhase3.csproj +++ b/samples/serializers/transitioning-formats/Core_7/SamplePhase3/SamplePhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_7/SamplePhase4/SamplePhase4.csproj b/samples/serializers/transitioning-formats/Core_7/SamplePhase4/SamplePhase4.csproj index 0e1779a9352..811e4a4ca98 100644 --- a/samples/serializers/transitioning-formats/Core_7/SamplePhase4/SamplePhase4.csproj +++ b/samples/serializers/transitioning-formats/Core_7/SamplePhase4/SamplePhase4.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_7/Shared/Shared.csproj b/samples/serializers/transitioning-formats/Core_7/Shared/Shared.csproj index 087b85e1fe1..c5b7949a352 100644 --- a/samples/serializers/transitioning-formats/Core_7/Shared/Shared.csproj +++ b/samples/serializers/transitioning-formats/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/serializers/transitioning-formats/Core_8/SamplePhase1/SamplePhase1.csproj b/samples/serializers/transitioning-formats/Core_8/SamplePhase1/SamplePhase1.csproj index 2f6bacba086..5e4671ff553 100644 --- a/samples/serializers/transitioning-formats/Core_8/SamplePhase1/SamplePhase1.csproj +++ b/samples/serializers/transitioning-formats/Core_8/SamplePhase1/SamplePhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_8/SamplePhase2/SamplePhase2.csproj b/samples/serializers/transitioning-formats/Core_8/SamplePhase2/SamplePhase2.csproj index 2f6bacba086..5e4671ff553 100644 --- a/samples/serializers/transitioning-formats/Core_8/SamplePhase2/SamplePhase2.csproj +++ b/samples/serializers/transitioning-formats/Core_8/SamplePhase2/SamplePhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_8/SamplePhase3/SamplePhase3.csproj b/samples/serializers/transitioning-formats/Core_8/SamplePhase3/SamplePhase3.csproj index 2f6bacba086..5e4671ff553 100644 --- a/samples/serializers/transitioning-formats/Core_8/SamplePhase3/SamplePhase3.csproj +++ b/samples/serializers/transitioning-formats/Core_8/SamplePhase3/SamplePhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_8/SamplePhase4/SamplePhase4.csproj b/samples/serializers/transitioning-formats/Core_8/SamplePhase4/SamplePhase4.csproj index 2f6bacba086..5e4671ff553 100644 --- a/samples/serializers/transitioning-formats/Core_8/SamplePhase4/SamplePhase4.csproj +++ b/samples/serializers/transitioning-formats/Core_8/SamplePhase4/SamplePhase4.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/transitioning-formats/Core_8/Shared/Shared.csproj b/samples/serializers/transitioning-formats/Core_8/Shared/Shared.csproj index c543cef783e..8c65caead3a 100644 --- a/samples/serializers/transitioning-formats/Core_8/Shared/Shared.csproj +++ b/samples/serializers/transitioning-formats/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/serializers/xml/Core_7/Sample/Sample.csproj b/samples/serializers/xml/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/serializers/xml/Core_7/Sample/Sample.csproj +++ b/samples/serializers/xml/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/serializers/xml/Core_8/Sample/Sample.csproj b/samples/serializers/xml/Core_8/Sample/Sample.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/serializers/xml/Core_8/Sample/Sample.csproj +++ b/samples/serializers/xml/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Adapter/Adapter.csproj b/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Adapter/Adapter.csproj index 82c0cdd0cb9..77ecf2ae31d 100644 --- a/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Adapter/Adapter.csproj +++ b/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Adapter/Adapter.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Sales/Sales.csproj b/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Sales/Sales.csproj index ae01790364f..6cd34e1dce4 100644 --- a/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Sales/Sales.csproj +++ b/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Sales/Sales.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Shared/Shared.csproj b/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Shared/Shared.csproj +++ b/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Shipping/Shipping.csproj b/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Shipping/Shipping.csproj index 63cc0ff999b..6b5a426549a 100644 --- a/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Shipping/Shipping.csproj +++ b/samples/servicecontrol/adapter-asq-multi-storage-account/SCTransportAdapter_2/Shipping/Shipping.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/EndpointsMonitor/AzureMonitorConnector.csproj b/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/EndpointsMonitor/AzureMonitorConnector.csproj index 6e66c2ffe5b..82f730b2730 100644 --- a/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/EndpointsMonitor/AzureMonitorConnector.csproj +++ b/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/EndpointsMonitor/AzureMonitorConnector.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/NServiceBusEndpoint/NServiceBusEndpoint.csproj b/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/NServiceBusEndpoint/NServiceBusEndpoint.csproj index d01a279092a..2938f64d63f 100644 --- a/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/NServiceBusEndpoint/NServiceBusEndpoint.csproj +++ b/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/NServiceBusEndpoint/NServiceBusEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/PlatformLauncher/PlatformLauncher.csproj b/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/servicecontrol/azure-monitor-events/ServiceControlContracts_3/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/servicecontrol/events-subscription/ServiceControlContracts_3/EndpointsMonitor/EndpointsMonitor.csproj b/samples/servicecontrol/events-subscription/ServiceControlContracts_3/EndpointsMonitor/EndpointsMonitor.csproj index 322fa7b6f4c..0adc4283798 100644 --- a/samples/servicecontrol/events-subscription/ServiceControlContracts_3/EndpointsMonitor/EndpointsMonitor.csproj +++ b/samples/servicecontrol/events-subscription/ServiceControlContracts_3/EndpointsMonitor/EndpointsMonitor.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/events-subscription/ServiceControlContracts_3/NServiceBusEndpoint/NServiceBusEndpoint.csproj b/samples/servicecontrol/events-subscription/ServiceControlContracts_3/NServiceBusEndpoint/NServiceBusEndpoint.csproj index d01a279092a..2938f64d63f 100644 --- a/samples/servicecontrol/events-subscription/ServiceControlContracts_3/NServiceBusEndpoint/NServiceBusEndpoint.csproj +++ b/samples/servicecontrol/events-subscription/ServiceControlContracts_3/NServiceBusEndpoint/NServiceBusEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/events-subscription/ServiceControlContracts_3/PlatformLauncher/PlatformLauncher.csproj b/samples/servicecontrol/events-subscription/ServiceControlContracts_3/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/servicecontrol/events-subscription/ServiceControlContracts_3/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/servicecontrol/events-subscription/ServiceControlContracts_3/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/servicecontrol/fix-messages/Core_7/MessageRepairingEndpoint/MessageRepairingEndpoint.csproj b/samples/servicecontrol/fix-messages/Core_7/MessageRepairingEndpoint/MessageRepairingEndpoint.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/servicecontrol/fix-messages/Core_7/MessageRepairingEndpoint/MessageRepairingEndpoint.csproj +++ b/samples/servicecontrol/fix-messages/Core_7/MessageRepairingEndpoint/MessageRepairingEndpoint.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/fix-messages/Core_7/PlatformLauncher/PlatformLauncher.csproj b/samples/servicecontrol/fix-messages/Core_7/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/servicecontrol/fix-messages/Core_7/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/servicecontrol/fix-messages/Core_7/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/servicecontrol/fix-messages/Core_7/Receiver/Receiver.csproj b/samples/servicecontrol/fix-messages/Core_7/Receiver/Receiver.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/servicecontrol/fix-messages/Core_7/Receiver/Receiver.csproj +++ b/samples/servicecontrol/fix-messages/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/fix-messages/Core_7/Sender/Sender.csproj b/samples/servicecontrol/fix-messages/Core_7/Sender/Sender.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/servicecontrol/fix-messages/Core_7/Sender/Sender.csproj +++ b/samples/servicecontrol/fix-messages/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/fix-messages/Core_7/Shared/Shared.csproj b/samples/servicecontrol/fix-messages/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/servicecontrol/fix-messages/Core_7/Shared/Shared.csproj +++ b/samples/servicecontrol/fix-messages/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/3rdPartySystem/3rdPartySystem.csproj b/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/3rdPartySystem/3rdPartySystem.csproj index 5e5bf13211b..ee31a36b251 100644 --- a/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/3rdPartySystem/3rdPartySystem.csproj +++ b/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/3rdPartySystem/3rdPartySystem.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/PlatformLauncher/PlatformLauncher.csproj b/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/PlatformLauncher/PlatformLauncher.csproj index 82ffba7797f..393364adac2 100644 --- a/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/PlatformLauncher/PlatformLauncher.csproj +++ b/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/PlatformLauncher/PlatformLauncher.csproj @@ -1,7 +1,7 @@ Exe - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/Sample/Sample.csproj b/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/Sample/Sample.csproj index c6bf08591cd..b43bbc0e3d6 100644 --- a/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/Sample/Sample.csproj +++ b/samples/servicecontrol/monitoring3rdparty/CustomChecks_3/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/showcase/on-premises/Core_7/msbuild b/samples/showcase/on-premises/Core_7/msbuild deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/samples/showcase/on-premises/Core_8/msbuild b/samples/showcase/on-premises/Core_8/msbuild deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/samples/sql-persistence/injecting-services/SqlPersistence_6/Endpoint/Endpoint.csproj b/samples/sql-persistence/injecting-services/SqlPersistence_6/Endpoint/Endpoint.csproj index 20178defc9f..d55ff407a97 100644 --- a/samples/sql-persistence/injecting-services/SqlPersistence_6/Endpoint/Endpoint.csproj +++ b/samples/sql-persistence/injecting-services/SqlPersistence_6/Endpoint/Endpoint.csproj @@ -1,6 +1,6 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_4/EndpointVersion1/EndpointVersion1.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_4/EndpointVersion1/EndpointVersion1.csproj index 32cd12bbd46..df37f5484fe 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_4/EndpointVersion1/EndpointVersion1.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_4/EndpointVersion1/EndpointVersion1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_4/EndpointVersion2/EndpointVersion2.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_4/EndpointVersion2/EndpointVersion2.csproj index 32cd12bbd46..df37f5484fe 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_4/EndpointVersion2/EndpointVersion2.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_4/EndpointVersion2/EndpointVersion2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_4/Shared/Shared.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_4/Shared/Shared.csproj index 328c5d0ac05..0f2a1c48f53 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_4/Shared/Shared.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_4/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_5/EndpointVersion1/EndpointVersion1.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_5/EndpointVersion1/EndpointVersion1.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_5/EndpointVersion1/EndpointVersion1.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_5/EndpointVersion1/EndpointVersion1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_5/EndpointVersion2/EndpointVersion2.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_5/EndpointVersion2/EndpointVersion2.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_5/EndpointVersion2/EndpointVersion2.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_5/EndpointVersion2/EndpointVersion2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_5/Shared/Shared.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_5/Shared/Shared.csproj index 1ab6ae73491..88fe8141d13 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_5/Shared/Shared.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_5/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_6/EndpointVersion1/EndpointVersion1.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_6/EndpointVersion1/EndpointVersion1.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_6/EndpointVersion1/EndpointVersion1.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_6/EndpointVersion1/EndpointVersion1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_6/EndpointVersion2/EndpointVersion2.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_6/EndpointVersion2/EndpointVersion2.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_6/EndpointVersion2/EndpointVersion2.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_6/EndpointVersion2/EndpointVersion2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_6/Shared/Shared.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_6/Shared/Shared.csproj index 4b0a07f7c7f..04d5be3c1be 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_6/Shared/Shared.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_6/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_7/EndpointVersion1/EndpointVersion1.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_7/EndpointVersion1/EndpointVersion1.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_7/EndpointVersion1/EndpointVersion1.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_7/EndpointVersion1/EndpointVersion1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_7/EndpointVersion2/EndpointVersion2.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_7/EndpointVersion2/EndpointVersion2.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_7/EndpointVersion2/EndpointVersion2.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_7/EndpointVersion2/EndpointVersion2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/saga-rename/SqlPersistence_7/Shared/Shared.csproj b/samples/sql-persistence/saga-rename/SqlPersistence_7/Shared/Shared.csproj index a04e0043957..8656057c6fd 100644 --- a/samples/sql-persistence/saga-rename/SqlPersistence_7/Shared/Shared.csproj +++ b/samples/sql-persistence/saga-rename/SqlPersistence_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_4/Client/Client.csproj b/samples/sql-persistence/simple/SqlPersistence_4/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/sql-persistence/simple/SqlPersistence_4/Client/Client.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_4/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_4/EndpointMySql/EndpointMySql.csproj b/samples/sql-persistence/simple/SqlPersistence_4/EndpointMySql/EndpointMySql.csproj index 16aef76b39a..fea96cfd2d8 100644 --- a/samples/sql-persistence/simple/SqlPersistence_4/EndpointMySql/EndpointMySql.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_4/EndpointMySql/EndpointMySql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_4/EndpointOracle/EndpointOracle.csproj b/samples/sql-persistence/simple/SqlPersistence_4/EndpointOracle/EndpointOracle.csproj index fc400a7f3d2..14882f07b7a 100644 --- a/samples/sql-persistence/simple/SqlPersistence_4/EndpointOracle/EndpointOracle.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_4/EndpointOracle/EndpointOracle.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_4/EndpointPostgreSql/EndpointPostgreSql.csproj b/samples/sql-persistence/simple/SqlPersistence_4/EndpointPostgreSql/EndpointPostgreSql.csproj index b33ab2d0c3b..c1996e98241 100644 --- a/samples/sql-persistence/simple/SqlPersistence_4/EndpointPostgreSql/EndpointPostgreSql.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_4/EndpointPostgreSql/EndpointPostgreSql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_4/EndpointSqlServer/EndpointSqlServer.csproj b/samples/sql-persistence/simple/SqlPersistence_4/EndpointSqlServer/EndpointSqlServer.csproj index 5bc3df374a1..87f8bbc7c45 100644 --- a/samples/sql-persistence/simple/SqlPersistence_4/EndpointSqlServer/EndpointSqlServer.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_4/EndpointSqlServer/EndpointSqlServer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_4/ServerShared/ServerShared.csproj b/samples/sql-persistence/simple/SqlPersistence_4/ServerShared/ServerShared.csproj index d32d0a876df..49d560c0b9d 100644 --- a/samples/sql-persistence/simple/SqlPersistence_4/ServerShared/ServerShared.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_4/ServerShared/ServerShared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_4/SharedMessages/SharedMessages.csproj b/samples/sql-persistence/simple/SqlPersistence_4/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/sql-persistence/simple/SqlPersistence_4/SharedMessages/SharedMessages.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_4/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_5/Client/Client.csproj b/samples/sql-persistence/simple/SqlPersistence_5/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/sql-persistence/simple/SqlPersistence_5/Client/Client.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_5/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_5/EndpointMySql/EndpointMySql.csproj b/samples/sql-persistence/simple/SqlPersistence_5/EndpointMySql/EndpointMySql.csproj index 16aef76b39a..fea96cfd2d8 100644 --- a/samples/sql-persistence/simple/SqlPersistence_5/EndpointMySql/EndpointMySql.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_5/EndpointMySql/EndpointMySql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_5/EndpointOracle/EndpointOracle.csproj b/samples/sql-persistence/simple/SqlPersistence_5/EndpointOracle/EndpointOracle.csproj index fc400a7f3d2..14882f07b7a 100644 --- a/samples/sql-persistence/simple/SqlPersistence_5/EndpointOracle/EndpointOracle.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_5/EndpointOracle/EndpointOracle.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_5/EndpointPostgreSql/EndpointPostgreSql.csproj b/samples/sql-persistence/simple/SqlPersistence_5/EndpointPostgreSql/EndpointPostgreSql.csproj index b33ab2d0c3b..c1996e98241 100644 --- a/samples/sql-persistence/simple/SqlPersistence_5/EndpointPostgreSql/EndpointPostgreSql.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_5/EndpointPostgreSql/EndpointPostgreSql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_5/EndpointSqlServer/EndpointSqlServer.csproj b/samples/sql-persistence/simple/SqlPersistence_5/EndpointSqlServer/EndpointSqlServer.csproj index c5991eeec04..2d64609f18d 100644 --- a/samples/sql-persistence/simple/SqlPersistence_5/EndpointSqlServer/EndpointSqlServer.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_5/EndpointSqlServer/EndpointSqlServer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_5/ServerShared/ServerShared.csproj b/samples/sql-persistence/simple/SqlPersistence_5/ServerShared/ServerShared.csproj index 607e875d5d2..f6b51c4dca8 100644 --- a/samples/sql-persistence/simple/SqlPersistence_5/ServerShared/ServerShared.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_5/ServerShared/ServerShared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_5/SharedMessages/SharedMessages.csproj b/samples/sql-persistence/simple/SqlPersistence_5/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/sql-persistence/simple/SqlPersistence_5/SharedMessages/SharedMessages.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_5/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_6/Client/Client.csproj b/samples/sql-persistence/simple/SqlPersistence_6/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/sql-persistence/simple/SqlPersistence_6/Client/Client.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_6/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_6/EndpointMySql/EndpointMySql.csproj b/samples/sql-persistence/simple/SqlPersistence_6/EndpointMySql/EndpointMySql.csproj index 16aef76b39a..fea96cfd2d8 100644 --- a/samples/sql-persistence/simple/SqlPersistence_6/EndpointMySql/EndpointMySql.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_6/EndpointMySql/EndpointMySql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_6/EndpointOracle/EndpointOracle.csproj b/samples/sql-persistence/simple/SqlPersistence_6/EndpointOracle/EndpointOracle.csproj index fc400a7f3d2..14882f07b7a 100644 --- a/samples/sql-persistence/simple/SqlPersistence_6/EndpointOracle/EndpointOracle.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_6/EndpointOracle/EndpointOracle.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_6/EndpointPostgreSql/EndpointPostgreSql.csproj b/samples/sql-persistence/simple/SqlPersistence_6/EndpointPostgreSql/EndpointPostgreSql.csproj index b33ab2d0c3b..c1996e98241 100644 --- a/samples/sql-persistence/simple/SqlPersistence_6/EndpointPostgreSql/EndpointPostgreSql.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_6/EndpointPostgreSql/EndpointPostgreSql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_6/EndpointSqlServer/EndpointSqlServer.csproj b/samples/sql-persistence/simple/SqlPersistence_6/EndpointSqlServer/EndpointSqlServer.csproj index c5991eeec04..2d64609f18d 100644 --- a/samples/sql-persistence/simple/SqlPersistence_6/EndpointSqlServer/EndpointSqlServer.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_6/EndpointSqlServer/EndpointSqlServer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_6/ServerShared/ServerShared.csproj b/samples/sql-persistence/simple/SqlPersistence_6/ServerShared/ServerShared.csproj index 323782cba19..61251bfb64a 100644 --- a/samples/sql-persistence/simple/SqlPersistence_6/ServerShared/ServerShared.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_6/ServerShared/ServerShared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_6/SharedMessages/SharedMessages.csproj b/samples/sql-persistence/simple/SqlPersistence_6/SharedMessages/SharedMessages.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/sql-persistence/simple/SqlPersistence_6/SharedMessages/SharedMessages.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_6/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_7/Client/Client.csproj b/samples/sql-persistence/simple/SqlPersistence_7/Client/Client.csproj index 171dd1a7aba..dfca8c7fc0e 100644 --- a/samples/sql-persistence/simple/SqlPersistence_7/Client/Client.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_7/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_7/EndpointMySql/EndpointMySql.csproj b/samples/sql-persistence/simple/SqlPersistence_7/EndpointMySql/EndpointMySql.csproj index 16aef76b39a..fea96cfd2d8 100644 --- a/samples/sql-persistence/simple/SqlPersistence_7/EndpointMySql/EndpointMySql.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_7/EndpointMySql/EndpointMySql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_7/EndpointOracle/EndpointOracle.csproj b/samples/sql-persistence/simple/SqlPersistence_7/EndpointOracle/EndpointOracle.csproj index fc400a7f3d2..14882f07b7a 100644 --- a/samples/sql-persistence/simple/SqlPersistence_7/EndpointOracle/EndpointOracle.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_7/EndpointOracle/EndpointOracle.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_7/EndpointPostgreSql/EndpointPostgreSql.csproj b/samples/sql-persistence/simple/SqlPersistence_7/EndpointPostgreSql/EndpointPostgreSql.csproj index b33ab2d0c3b..c1996e98241 100644 --- a/samples/sql-persistence/simple/SqlPersistence_7/EndpointPostgreSql/EndpointPostgreSql.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_7/EndpointPostgreSql/EndpointPostgreSql.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_7/EndpointSqlServer/EndpointSqlServer.csproj b/samples/sql-persistence/simple/SqlPersistence_7/EndpointSqlServer/EndpointSqlServer.csproj index c5991eeec04..2d64609f18d 100644 --- a/samples/sql-persistence/simple/SqlPersistence_7/EndpointSqlServer/EndpointSqlServer.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_7/EndpointSqlServer/EndpointSqlServer.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_7/ServerShared/ServerShared.csproj b/samples/sql-persistence/simple/SqlPersistence_7/ServerShared/ServerShared.csproj index fb2c8daed59..5abe4b2e595 100644 --- a/samples/sql-persistence/simple/SqlPersistence_7/ServerShared/ServerShared.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_7/ServerShared/ServerShared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/simple/SqlPersistence_7/SharedMessages/SharedMessages.csproj b/samples/sql-persistence/simple/SqlPersistence_7/SharedMessages/SharedMessages.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/sql-persistence/simple/SqlPersistence_7/SharedMessages/SharedMessages.csproj +++ b/samples/sql-persistence/simple/SqlPersistence_7/SharedMessages/SharedMessages.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj index 6ab273cbfc4..054e50050b0 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointOracle/EndpointOraclePhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointOracle/EndpointOraclePhase1.csproj index 4e7ad25b29b..a82375ebd86 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointOracle/EndpointOraclePhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointOracle/EndpointOraclePhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj index aa953c76088..a521e23a85d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj index 05a5005b7e5..334a5d2027d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/Shared/SharedPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/Shared/SharedPhase1.csproj index a9c0eeaac7f..59014aaa2f4 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/Shared/SharedPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase1/Shared/SharedPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj index 4f7af415183..d6cc9d0e04e 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointOracle/EndpointOraclePhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointOracle/EndpointOraclePhase2.csproj index 7ef086f20b4..043aacaa8cd 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointOracle/EndpointOraclePhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointOracle/EndpointOraclePhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj index 608cd6007b4..eb92371ada6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj index e602f80d13d..ef17c553d87 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/Shared/SharedPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/Shared/SharedPhase2.csproj index a9c0eeaac7f..59014aaa2f4 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/Shared/SharedPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase2/Shared/SharedPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj index b1feb0c26a1..43cfa0cff4d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointOracle/EndpointOraclePhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointOracle/EndpointOraclePhase3.csproj index 6f1cf3af1f7..8060b72b4a0 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointOracle/EndpointOraclePhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointOracle/EndpointOraclePhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj index 616d7b73cfd..187e3f40d36 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj index 2d7a8a45e2d..c6050db5471 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/Shared/SharedPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/Shared/SharedPhase3.csproj index a9c0eeaac7f..59014aaa2f4 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/Shared/SharedPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_4/Phase3/Shared/SharedPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj index 6ab273cbfc4..054e50050b0 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointOracle/EndpointOraclePhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointOracle/EndpointOraclePhase1.csproj index 4e7ad25b29b..a82375ebd86 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointOracle/EndpointOraclePhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointOracle/EndpointOraclePhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj index aa953c76088..a521e23a85d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj index 49e11c0ea9c..aad400c8649 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/Shared/SharedPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/Shared/SharedPhase1.csproj index b882161eb21..8edc3711ad6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/Shared/SharedPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase1/Shared/SharedPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj index 4f7af415183..d6cc9d0e04e 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointOracle/EndpointOraclePhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointOracle/EndpointOraclePhase2.csproj index 7ef086f20b4..043aacaa8cd 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointOracle/EndpointOraclePhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointOracle/EndpointOraclePhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj index 608cd6007b4..eb92371ada6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj index a739eb37f28..93df59aef8a 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/Shared/SharedPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/Shared/SharedPhase2.csproj index b882161eb21..8edc3711ad6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/Shared/SharedPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase2/Shared/SharedPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj index b1feb0c26a1..43cfa0cff4d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointOracle/EndpointOraclePhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointOracle/EndpointOraclePhase3.csproj index 6f1cf3af1f7..8060b72b4a0 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointOracle/EndpointOraclePhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointOracle/EndpointOraclePhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj index 616d7b73cfd..187e3f40d36 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj index 528922bc0e9..772b712374f 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/Shared/SharedPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/Shared/SharedPhase3.csproj index b882161eb21..8edc3711ad6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/Shared/SharedPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_5/Phase3/Shared/SharedPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj index 6ab273cbfc4..054e50050b0 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointOracle/EndpointOraclePhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointOracle/EndpointOraclePhase1.csproj index 4e7ad25b29b..a82375ebd86 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointOracle/EndpointOraclePhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointOracle/EndpointOraclePhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj index aa953c76088..a521e23a85d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj index 49e11c0ea9c..aad400c8649 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/Shared/SharedPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/Shared/SharedPhase1.csproj index d601b929a65..0f680f91fa6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/Shared/SharedPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase1/Shared/SharedPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj index 4f7af415183..d6cc9d0e04e 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointOracle/EndpointOraclePhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointOracle/EndpointOraclePhase2.csproj index 7ef086f20b4..043aacaa8cd 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointOracle/EndpointOraclePhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointOracle/EndpointOraclePhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj index 608cd6007b4..eb92371ada6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj index a739eb37f28..93df59aef8a 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/Shared/SharedPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/Shared/SharedPhase2.csproj index d601b929a65..0f680f91fa6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/Shared/SharedPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase2/Shared/SharedPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj index b1feb0c26a1..43cfa0cff4d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointOracle/EndpointOraclePhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointOracle/EndpointOraclePhase3.csproj index 6f1cf3af1f7..8060b72b4a0 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointOracle/EndpointOraclePhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointOracle/EndpointOraclePhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj index 616d7b73cfd..187e3f40d36 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj index 528922bc0e9..772b712374f 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/Shared/SharedPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/Shared/SharedPhase3.csproj index d601b929a65..0f680f91fa6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/Shared/SharedPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_6/Phase3/Shared/SharedPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj index 6ab273cbfc4..054e50050b0 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointMySql/EndpointMySqlPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointOracle/EndpointOraclePhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointOracle/EndpointOraclePhase1.csproj index 4e7ad25b29b..a82375ebd86 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointOracle/EndpointOraclePhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointOracle/EndpointOraclePhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj index aa953c76088..a521e23a85d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointPostgreSql/EndpointPostgreSqlPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj index 49e11c0ea9c..aad400c8649 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/EndpointSqlServer/EndpointSqlServerPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/Shared/SharedPhase1.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/Shared/SharedPhase1.csproj index 88e23ab817b..5d0131e7c49 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/Shared/SharedPhase1.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase1/Shared/SharedPhase1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj index 4f7af415183..d6cc9d0e04e 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointMySql/EndpointMySqlPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointOracle/EndpointOraclePhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointOracle/EndpointOraclePhase2.csproj index 7ef086f20b4..043aacaa8cd 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointOracle/EndpointOraclePhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointOracle/EndpointOraclePhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj index 608cd6007b4..eb92371ada6 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointPostgreSql/EndpointPostgreSqlPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj index a739eb37f28..93df59aef8a 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/EndpointSqlServer/EndpointSqlServerPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/Shared/SharedPhase2.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/Shared/SharedPhase2.csproj index 88e23ab817b..5d0131e7c49 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/Shared/SharedPhase2.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase2/Shared/SharedPhase2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj index b1feb0c26a1..43cfa0cff4d 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointMySql/EndpointMySqlPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointOracle/EndpointOraclePhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointOracle/EndpointOraclePhase3.csproj index 6f1cf3af1f7..8060b72b4a0 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointOracle/EndpointOraclePhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointOracle/EndpointOraclePhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj index 616d7b73cfd..187e3f40d36 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointPostgreSql/EndpointPostgreSqlPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj index 528922bc0e9..772b712374f 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/EndpointSqlServer/EndpointSqlServerPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/Shared/SharedPhase3.csproj b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/Shared/SharedPhase3.csproj index 88e23ab817b..5d0131e7c49 100644 --- a/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/Shared/SharedPhase3.csproj +++ b/samples/sql-persistence/transitioning-correlation-ids/SqlPersistence_7/Phase3/Shared/SharedPhase3.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqltransport-nhpersistence/Core_8/Receiver/Receiver.csproj b/samples/sqltransport-nhpersistence/Core_8/Receiver/Receiver.csproj index 6d4bb51981a..cf98fc3413d 100644 --- a/samples/sqltransport-nhpersistence/Core_8/Receiver/Receiver.csproj +++ b/samples/sqltransport-nhpersistence/Core_8/Receiver/Receiver.csproj @@ -9,7 +9,7 @@ - + \ No newline at end of file diff --git a/samples/sqltransport-nhpersistence/Core_8/Sender/Sender.csproj b/samples/sqltransport-nhpersistence/Core_8/Sender/Sender.csproj index 6d4bb51981a..cf98fc3413d 100644 --- a/samples/sqltransport-nhpersistence/Core_8/Sender/Sender.csproj +++ b/samples/sqltransport-nhpersistence/Core_8/Sender/Sender.csproj @@ -9,7 +9,7 @@ - + \ No newline at end of file diff --git a/samples/sqltransport-sqlpersistence/Core_7/Receiver/Receiver.csproj b/samples/sqltransport-sqlpersistence/Core_7/Receiver/Receiver.csproj index 4a96c4f23ed..cf292983c69 100644 --- a/samples/sqltransport-sqlpersistence/Core_7/Receiver/Receiver.csproj +++ b/samples/sqltransport-sqlpersistence/Core_7/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 exe 7.3 diff --git a/samples/sqltransport-sqlpersistence/Core_7/Sender/Sender.csproj b/samples/sqltransport-sqlpersistence/Core_7/Sender/Sender.csproj index 7cf4c75b06f..2a4a4d936d8 100644 --- a/samples/sqltransport-sqlpersistence/Core_7/Sender/Sender.csproj +++ b/samples/sqltransport-sqlpersistence/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 exe 7.3 diff --git a/samples/sqltransport-sqlpersistence/Core_7/Shared/Shared.csproj b/samples/sqltransport-sqlpersistence/Core_7/Shared/Shared.csproj index 9d3376a6093..b3094f1f2fc 100644 --- a/samples/sqltransport-sqlpersistence/Core_7/Shared/Shared.csproj +++ b/samples/sqltransport-sqlpersistence/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqltransport-sqlpersistence/Core_8/Receiver/Receiver.csproj b/samples/sqltransport-sqlpersistence/Core_8/Receiver/Receiver.csproj index f45e3c3be12..a58fda73142 100644 --- a/samples/sqltransport-sqlpersistence/Core_8/Receiver/Receiver.csproj +++ b/samples/sqltransport-sqlpersistence/Core_8/Receiver/Receiver.csproj @@ -1,15 +1,15 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 exe 7.3 - + - + diff --git a/samples/sqltransport-sqlpersistence/Core_8/Sender/Sender.csproj b/samples/sqltransport-sqlpersistence/Core_8/Sender/Sender.csproj index eca1fb68f89..12ede7d1381 100644 --- a/samples/sqltransport-sqlpersistence/Core_8/Sender/Sender.csproj +++ b/samples/sqltransport-sqlpersistence/Core_8/Sender/Sender.csproj @@ -1,15 +1,15 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 exe 7.3 - + - + \ No newline at end of file diff --git a/samples/sqltransport-sqlpersistence/Core_8/Shared/Shared.csproj b/samples/sqltransport-sqlpersistence/Core_8/Shared/Shared.csproj index b15e2db2249..7f4fd6be8cc 100644 --- a/samples/sqltransport-sqlpersistence/Core_8/Shared/Shared.csproj +++ b/samples/sqltransport-sqlpersistence/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqltransport/native-integration/SqlTransportLegacySystemClient_4/Receiver/Receiver.csproj b/samples/sqltransport/native-integration/SqlTransportLegacySystemClient_4/Receiver/Receiver.csproj index 7042ff32a95..41416059847 100644 --- a/samples/sqltransport/native-integration/SqlTransportLegacySystemClient_4/Receiver/Receiver.csproj +++ b/samples/sqltransport/native-integration/SqlTransportLegacySystemClient_4/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/native-integration/SqlTransportLegacySystemClient_5/Receiver/Receiver.csproj b/samples/sqltransport/native-integration/SqlTransportLegacySystemClient_5/Receiver/Receiver.csproj index a46f248d627..3230853a764 100644 --- a/samples/sqltransport/native-integration/SqlTransportLegacySystemClient_5/Receiver/Receiver.csproj +++ b/samples/sqltransport/native-integration/SqlTransportLegacySystemClient_5/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/native-integration/SqlTransport_6/Receiver/Receiver.csproj b/samples/sqltransport/native-integration/SqlTransport_6/Receiver/Receiver.csproj index c1a1305d820..1fa231414fe 100644 --- a/samples/sqltransport/native-integration/SqlTransport_6/Receiver/Receiver.csproj +++ b/samples/sqltransport/native-integration/SqlTransport_6/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/native-integration/SqlTransport_7/Receiver/Receiver.csproj b/samples/sqltransport/native-integration/SqlTransport_7/Receiver/Receiver.csproj index 2098ba342f4..9d76a03b8f4 100644 --- a/samples/sqltransport/native-integration/SqlTransport_7/Receiver/Receiver.csproj +++ b/samples/sqltransport/native-integration/SqlTransport_7/Receiver/Receiver.csproj @@ -1,13 +1,13 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 - + - + diff --git a/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Receiver/Receiver.csproj b/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Receiver/Receiver.csproj index 426b691a66a..415bbe03891 100644 --- a/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Receiver/Receiver.csproj +++ b/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Sender/Sender.csproj b/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Sender/Sender.csproj index 426b691a66a..415bbe03891 100644 --- a/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Sender/Sender.csproj +++ b/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Shared/Shared.csproj b/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Shared/Shared.csproj index 080ee0a66f0..cef1dd146b1 100644 --- a/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Shared/Shared.csproj +++ b/samples/sqltransport/simple/SqlTransportLegacySystemClient_4/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Receiver/Receiver.csproj b/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Receiver/Receiver.csproj index 4ac5f17a5cd..bba6907718b 100644 --- a/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Receiver/Receiver.csproj +++ b/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Sender/Sender.csproj b/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Sender/Sender.csproj index 4ac5f17a5cd..bba6907718b 100644 --- a/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Sender/Sender.csproj +++ b/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Shared/Shared.csproj b/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Shared/Shared.csproj index 080ee0a66f0..cef1dd146b1 100644 --- a/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Shared/Shared.csproj +++ b/samples/sqltransport/simple/SqlTransportLegacySystemClient_5/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqltransport/simple/SqlTransport_6/Receiver/Receiver.csproj b/samples/sqltransport/simple/SqlTransport_6/Receiver/Receiver.csproj index 02e271c3081..598dfc6b4a2 100644 --- a/samples/sqltransport/simple/SqlTransport_6/Receiver/Receiver.csproj +++ b/samples/sqltransport/simple/SqlTransport_6/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/simple/SqlTransport_6/Sender/Sender.csproj b/samples/sqltransport/simple/SqlTransport_6/Sender/Sender.csproj index 02e271c3081..598dfc6b4a2 100644 --- a/samples/sqltransport/simple/SqlTransport_6/Sender/Sender.csproj +++ b/samples/sqltransport/simple/SqlTransport_6/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/simple/SqlTransport_6/Shared/Shared.csproj b/samples/sqltransport/simple/SqlTransport_6/Shared/Shared.csproj index 9d3376a6093..b3094f1f2fc 100644 --- a/samples/sqltransport/simple/SqlTransport_6/Shared/Shared.csproj +++ b/samples/sqltransport/simple/SqlTransport_6/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqltransport/simple/SqlTransport_7/Receiver/Receiver.csproj b/samples/sqltransport/simple/SqlTransport_7/Receiver/Receiver.csproj index 629fd70d16a..fe7912a68a0 100644 --- a/samples/sqltransport/simple/SqlTransport_7/Receiver/Receiver.csproj +++ b/samples/sqltransport/simple/SqlTransport_7/Receiver/Receiver.csproj @@ -1,12 +1,12 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 - - + + \ No newline at end of file diff --git a/samples/sqltransport/simple/SqlTransport_7/Sender/Sender.csproj b/samples/sqltransport/simple/SqlTransport_7/Sender/Sender.csproj index 629fd70d16a..fe7912a68a0 100644 --- a/samples/sqltransport/simple/SqlTransport_7/Sender/Sender.csproj +++ b/samples/sqltransport/simple/SqlTransport_7/Sender/Sender.csproj @@ -1,12 +1,12 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 - - + + \ No newline at end of file diff --git a/samples/sqltransport/simple/SqlTransport_7/Shared/Shared.csproj b/samples/sqltransport/simple/SqlTransport_7/Shared/Shared.csproj index b15e2db2249..7f4fd6be8cc 100644 --- a/samples/sqltransport/simple/SqlTransport_7/Shared/Shared.csproj +++ b/samples/sqltransport/simple/SqlTransport_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Receiver/Receiver.csproj b/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Receiver/Receiver.csproj index 02e271c3081..598dfc6b4a2 100644 --- a/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Receiver/Receiver.csproj +++ b/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Sender/Sender.csproj b/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Sender/Sender.csproj index 02e271c3081..598dfc6b4a2 100644 --- a/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Sender/Sender.csproj +++ b/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Shared/Shared.csproj b/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Shared/Shared.csproj index 9d3376a6093..b3094f1f2fc 100644 --- a/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Shared/Shared.csproj +++ b/samples/sqltransport/startup-purge-behavior/SqlTransport_6/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Receiver/Receiver.csproj b/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Receiver/Receiver.csproj index 629fd70d16a..fe7912a68a0 100644 --- a/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Receiver/Receiver.csproj +++ b/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Receiver/Receiver.csproj @@ -1,12 +1,12 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 - - + + \ No newline at end of file diff --git a/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Sender/Sender.csproj b/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Sender/Sender.csproj index bb93422b63c..106bc54d415 100644 --- a/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Sender/Sender.csproj +++ b/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Sender/Sender.csproj @@ -1,12 +1,12 @@  - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 - - + + \ No newline at end of file diff --git a/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Shared/Shared.csproj b/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Shared/Shared.csproj index b15e2db2249..7f4fd6be8cc 100644 --- a/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Shared/Shared.csproj +++ b/samples/sqltransport/startup-purge-behavior/SqlTransport_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/sqs/native-integration/Sqs_5/Receiver/Receiver.csproj b/samples/sqs/native-integration/Sqs_5/Receiver/Receiver.csproj index deec3958bc0..8722d14a450 100644 --- a/samples/sqs/native-integration/Sqs_5/Receiver/Receiver.csproj +++ b/samples/sqs/native-integration/Sqs_5/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/native-integration/Sqs_5/Sender/Sender.csproj b/samples/sqs/native-integration/Sqs_5/Sender/Sender.csproj index 4c4484290f9..34aa5e5b494 100644 --- a/samples/sqs/native-integration/Sqs_5/Sender/Sender.csproj +++ b/samples/sqs/native-integration/Sqs_5/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/native-integration/Sqs_6/Receiver/Receiver.csproj b/samples/sqs/native-integration/Sqs_6/Receiver/Receiver.csproj index 986acc036b7..b8753c64107 100644 --- a/samples/sqs/native-integration/Sqs_6/Receiver/Receiver.csproj +++ b/samples/sqs/native-integration/Sqs_6/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/native-integration/Sqs_6/Sender/Sender.csproj b/samples/sqs/native-integration/Sqs_6/Sender/Sender.csproj index 4c4484290f9..34aa5e5b494 100644 --- a/samples/sqs/native-integration/Sqs_6/Sender/Sender.csproj +++ b/samples/sqs/native-integration/Sqs_6/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/simple/Sqs_4/Sample/Sample.csproj b/samples/sqs/simple/Sqs_4/Sample/Sample.csproj index 3327255611e..8fc4bdbcd74 100644 --- a/samples/sqs/simple/Sqs_4/Sample/Sample.csproj +++ b/samples/sqs/simple/Sqs_4/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/simple/Sqs_5/Receiver/Receiver.csproj b/samples/sqs/simple/Sqs_5/Receiver/Receiver.csproj index 4e59fac47d8..b36067a7aed 100644 --- a/samples/sqs/simple/Sqs_5/Receiver/Receiver.csproj +++ b/samples/sqs/simple/Sqs_5/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/simple/Sqs_5/Sender/Sender.csproj b/samples/sqs/simple/Sqs_5/Sender/Sender.csproj index 4e59fac47d8..b36067a7aed 100644 --- a/samples/sqs/simple/Sqs_5/Sender/Sender.csproj +++ b/samples/sqs/simple/Sqs_5/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/simple/Sqs_6/Receiver/Receiver.csproj b/samples/sqs/simple/Sqs_6/Receiver/Receiver.csproj index 1cabe3336ae..fc1be905656 100644 --- a/samples/sqs/simple/Sqs_6/Receiver/Receiver.csproj +++ b/samples/sqs/simple/Sqs_6/Receiver/Receiver.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/simple/Sqs_6/Sender/Sender.csproj b/samples/sqs/simple/Sqs_6/Sender/Sender.csproj index 1cabe3336ae..fc1be905656 100644 --- a/samples/sqs/simple/Sqs_6/Sender/Sender.csproj +++ b/samples/sqs/simple/Sqs_6/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/sqs/simple/Sqs_6/Shared/Shared.csproj b/samples/sqs/simple/Sqs_6/Shared/Shared.csproj index 609feb83193..83e4dd551ff 100644 --- a/samples/sqs/simple/Sqs_6/Shared/Shared.csproj +++ b/samples/sqs/simple/Sqs_6/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/startup-shutdown-sequence/Core_7/Sample/Sample.csproj b/samples/startup-shutdown-sequence/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/startup-shutdown-sequence/Core_7/Sample/Sample.csproj +++ b/samples/startup-shutdown-sequence/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/startup-shutdown-sequence/Core_8/Sample/Sample.csproj b/samples/startup-shutdown-sequence/Core_8/Sample/Sample.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/startup-shutdown-sequence/Core_8/Sample/Sample.csproj +++ b/samples/startup-shutdown-sequence/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/throttling/Core_7/Limited/Limited.csproj b/samples/throttling/Core_7/Limited/Limited.csproj index 5adcc0f8bb8..2d71556feab 100644 --- a/samples/throttling/Core_7/Limited/Limited.csproj +++ b/samples/throttling/Core_7/Limited/Limited.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/throttling/Core_7/Sender/Sender.csproj b/samples/throttling/Core_7/Sender/Sender.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/throttling/Core_7/Sender/Sender.csproj +++ b/samples/throttling/Core_7/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/throttling/Core_7/Shared/Shared.csproj b/samples/throttling/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/throttling/Core_7/Shared/Shared.csproj +++ b/samples/throttling/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/throttling/Core_8/Limited/Limited.csproj b/samples/throttling/Core_8/Limited/Limited.csproj index 5adcc0f8bb8..2d71556feab 100644 --- a/samples/throttling/Core_8/Limited/Limited.csproj +++ b/samples/throttling/Core_8/Limited/Limited.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/throttling/Core_8/Sender/Sender.csproj b/samples/throttling/Core_8/Sender/Sender.csproj index 2832212245a..c6b85f78b68 100644 --- a/samples/throttling/Core_8/Sender/Sender.csproj +++ b/samples/throttling/Core_8/Sender/Sender.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/throttling/Core_8/Shared/Shared.csproj b/samples/throttling/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/throttling/Core_8/Shared/Shared.csproj +++ b/samples/throttling/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/unit-of-work/Core_7/Sample/Sample.csproj b/samples/unit-of-work/Core_7/Sample/Sample.csproj index 779c7ebf1a9..20e77abde63 100644 --- a/samples/unit-of-work/Core_7/Sample/Sample.csproj +++ b/samples/unit-of-work/Core_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/unit-of-work/Core_8/Sample/Sample.csproj b/samples/unit-of-work/Core_8/Sample/Sample.csproj index fc7deb57d6e..908e862b3bb 100644 --- a/samples/unit-of-work/Core_8/Sample/Sample.csproj +++ b/samples/unit-of-work/Core_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/unit-testing/Testing_7/Sample/Sample.csproj b/samples/unit-testing/Testing_7/Sample/Sample.csproj index 33497dad616..ca218ce9c43 100644 --- a/samples/unit-testing/Testing_7/Sample/Sample.csproj +++ b/samples/unit-testing/Testing_7/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/unit-testing/Testing_8/Sample/Sample.csproj b/samples/unit-testing/Testing_8/Sample/Sample.csproj index 9d3b6f7c746..49dd1b97c95 100644 --- a/samples/unit-testing/Testing_8/Sample/Sample.csproj +++ b/samples/unit-testing/Testing_8/Sample/Sample.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/unobtrusive/Core_7/Client/Client.csproj b/samples/unobtrusive/Core_7/Client/Client.csproj index 8da7f655431..efdf62301c4 100644 --- a/samples/unobtrusive/Core_7/Client/Client.csproj +++ b/samples/unobtrusive/Core_7/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/unobtrusive/Core_7/Server/Server.csproj b/samples/unobtrusive/Core_7/Server/Server.csproj index 8da7f655431..efdf62301c4 100644 --- a/samples/unobtrusive/Core_7/Server/Server.csproj +++ b/samples/unobtrusive/Core_7/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/unobtrusive/Core_7/Shared/Shared.csproj b/samples/unobtrusive/Core_7/Shared/Shared.csproj index a76a90434db..2b666bcdc95 100644 --- a/samples/unobtrusive/Core_7/Shared/Shared.csproj +++ b/samples/unobtrusive/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 \ No newline at end of file diff --git a/samples/unobtrusive/Core_8/Client/Client.csproj b/samples/unobtrusive/Core_8/Client/Client.csproj index 1149f917c91..181f8ebd6a5 100644 --- a/samples/unobtrusive/Core_8/Client/Client.csproj +++ b/samples/unobtrusive/Core_8/Client/Client.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/unobtrusive/Core_8/Server/Server.csproj b/samples/unobtrusive/Core_8/Server/Server.csproj index 1149f917c91..181f8ebd6a5 100644 --- a/samples/unobtrusive/Core_8/Server/Server.csproj +++ b/samples/unobtrusive/Core_8/Server/Server.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/unobtrusive/Core_8/Shared/Shared.csproj b/samples/unobtrusive/Core_8/Shared/Shared.csproj index a76a90434db..2b666bcdc95 100644 --- a/samples/unobtrusive/Core_8/Shared/Shared.csproj +++ b/samples/unobtrusive/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 \ No newline at end of file diff --git a/samples/username-header/Core_7/Endpoint1/Endpoint1.csproj b/samples/username-header/Core_7/Endpoint1/Endpoint1.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/username-header/Core_7/Endpoint1/Endpoint1.csproj +++ b/samples/username-header/Core_7/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/username-header/Core_7/Endpoint2/Endpoint2.csproj b/samples/username-header/Core_7/Endpoint2/Endpoint2.csproj index aaa36f79dda..b262e26a132 100644 --- a/samples/username-header/Core_7/Endpoint2/Endpoint2.csproj +++ b/samples/username-header/Core_7/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/username-header/Core_7/Shared/Shared.csproj b/samples/username-header/Core_7/Shared/Shared.csproj index 917d048b28b..d203de46f2a 100644 --- a/samples/username-header/Core_7/Shared/Shared.csproj +++ b/samples/username-header/Core_7/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/samples/username-header/Core_8/Endpoint1/Endpoint1.csproj b/samples/username-header/Core_8/Endpoint1/Endpoint1.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/username-header/Core_8/Endpoint1/Endpoint1.csproj +++ b/samples/username-header/Core_8/Endpoint1/Endpoint1.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/username-header/Core_8/Endpoint2/Endpoint2.csproj b/samples/username-header/Core_8/Endpoint2/Endpoint2.csproj index b3245d0470b..134aa939f72 100644 --- a/samples/username-header/Core_8/Endpoint2/Endpoint2.csproj +++ b/samples/username-header/Core_8/Endpoint2/Endpoint2.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 Exe 7.3 diff --git a/samples/username-header/Core_8/Shared/Shared.csproj b/samples/username-header/Core_8/Shared/Shared.csproj index 584ac849e58..78c5577fb46 100644 --- a/samples/username-header/Core_8/Shared/Shared.csproj +++ b/samples/username-header/Core_8/Shared/Shared.csproj @@ -1,6 +1,6 @@ - net5.0;netcoreapp3.1;net48 + net6.0;netcoreapp3.1;net48 7.3 diff --git a/tests/IntegrityTests/ProjectFrameworks.cs b/tests/IntegrityTests/ProjectFrameworks.cs index ebf426d83bb..d49dd4665f4 100644 --- a/tests/IntegrityTests/ProjectFrameworks.cs +++ b/tests/IntegrityTests/ProjectFrameworks.cs @@ -1,6 +1,4 @@ using System; -using System.Collections.Generic; -using System.IO; using System.Linq; using System.Xml; using System.Xml.Linq; @@ -36,7 +34,7 @@ public void TargetFrameworkElementShouldAgreeWithFrameworkCount() }); } - static readonly string[] sdkProjectAllowedTfmList = new[] { "net5.0", "netcoreapp3.1", "net48", "netstandard2.0" }; + static readonly string[] sdkProjectAllowedTfmList = new[] { "net6.0", "netcoreapp3.1", "net48", "netstandard2.0" }; static readonly string[] nonSdkProjectAllowedFrameworkList = new[] { "v4.8" }; [Test] @@ -54,9 +52,9 @@ public void RestrictTargetFrameworks() var mgr = new XmlNamespaceManager(new NameTable()); mgr.AddNamespace("x", xmlnsNode.Value); - foreach(var node in xdoc.XPathSelectElements("/x:Project/x:PropertyGroup/x:TargetFramework", mgr)) + foreach (var node in xdoc.XPathSelectElements("/x:Project/x:PropertyGroup/x:TargetFramework", mgr)) { - if(!nonSdkProjectAllowedFrameworkList.Contains(node.Value)) + if (!nonSdkProjectAllowedFrameworkList.Contains(node.Value)) { return false; } @@ -73,7 +71,7 @@ public void RestrictTargetFrameworks() } foreach (var node in xdoc.XPathSelectElements("/Project/PropertyGroup/TargetFrameworks")) { - foreach(var tfm in node.Value.Split(';')) + foreach (var tfm in node.Value.Split(';')) { if (!sdkProjectAllowedTfmList.Contains(tfm)) {