diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 874e09c161..fd94d6dbdf 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -34,7 +34,7 @@ jobs: dotnet_promote_prerelease: needs: changes if: ${{ needs.changes.outputs.dotnet == 'true' || needs.changes.outputs.db_migrations == 'true'}} - uses: Energinet-DataHub/.github/.github/workflows/promote-prerelease.yml@v13 + uses: Energinet-DataHub/.github/.github/workflows/promote-prerelease.yml@v14 with: release_name_prefix: dotnet @@ -49,10 +49,10 @@ jobs: needs: [dotnet_promote_prerelease, changes] steps: - name: Find associated pull request - uses: Energinet-DataHub/.github/.github/actions/find-related-pr-number@v13 + uses: Energinet-DataHub/.github/.github/actions/find-related-pr-number@v14 id: find_pull_request - - uses: Energinet-DataHub/.github/.github/actions/github-create-token@v13 + - uses: Energinet-DataHub/.github/.github/actions/github-create-token@v14 name: Generate Github token id: generate_token with: @@ -76,7 +76,7 @@ jobs: if: | always() && contains(needs.*.result, 'failure') - uses: Energinet-DataHub/.github/.github/workflows/notify-team.yml@v13 + uses: Energinet-DataHub/.github/.github/workflows/notify-team.yml@v14 with: team_name: Mosaic subject: "Deployment dispatch failed: EDI" diff --git a/.github/workflows/ci-dotnet.yml b/.github/workflows/ci-dotnet.yml index 2fe835acac..2eca394785 100644 --- a/.github/workflows/ci-dotnet.yml +++ b/.github/workflows/ci-dotnet.yml @@ -38,7 +38,7 @@ jobs: uses: Energinet-DataHub/.github/.github/workflows/dotnet-postbuild-test.yml@v14 with: download_attempt_limit: 30 - azure_functions_core_tools_version: 4.0.5413 + azure_functions_core_tools_version: 4.0.5455 # Matrix parameters job_name: ${{ matrix.tests_filter_expression.name }} tests_dll_file_path: ${{ matrix.tests_filter_expression.paths }} @@ -161,7 +161,7 @@ jobs: uses: Energinet-DataHub/.github/.github/workflows/dotnet-postbuild-test.yml@v14 with: download_attempt_limit: 20 - azure_functions_core_tools_version: 4.0.5413 + azure_functions_core_tools_version: 4.0.5455 azure_integrationtest_tenant_id: ${{ vars.integration_test_azure_tenant_id }} azure_integrationtest_subscription_id: ${{ vars.integration_test_azure_subscription_id }} azure_integrationtest_spn_id: ${{ vars.integration_test_azure_spn_id_oidc }} diff --git a/.github/workflows/ci-orchestrator.yml b/.github/workflows/ci-orchestrator.yml index 0f2bbc6714..f5b41a6f7f 100644 --- a/.github/workflows/ci-orchestrator.yml +++ b/.github/workflows/ci-orchestrator.yml @@ -23,7 +23,7 @@ jobs: # License and Markdown Check # ci_base: - uses: Energinet-DataHub/.github/.github/workflows/ci-base.yml@v13 + uses: Energinet-DataHub/.github/.github/workflows/ci-base.yml@v14 secrets: dh3serviceaccount_privatekey: ${{ secrets.dh3serviceaccount_privatekey }} @@ -38,12 +38,6 @@ jobs: if: ${{ needs.changes.outputs.dotnet == 'true' || needs.changes.outputs.db_migrations == 'true' }} uses: ./.github/workflows/ci-dotnet.yml - ci_processmanager_client: - needs: changes - if: ${{ needs.changes.outputs.processmanager_client == 'true' }} - uses: ./.github/workflows/processmanager-client-bundle-publish.yml - secrets: inherit - render_c4model_views: needs: changes if: ${{ needs.changes.outputs.render_c4model_views == 'true' }} @@ -64,7 +58,6 @@ jobs: [ ci_base, ci_dotnet, - ci_processmanager_client, render_c4model_views ] if: | diff --git a/.github/workflows/processmanager-client-bundle-publish.yml b/.github/workflows/processmanager-client-bundle-publish.yml deleted file mode 100644 index 63ad13fcb6..0000000000 --- a/.github/workflows/processmanager-client-bundle-publish.yml +++ /dev/null @@ -1,118 +0,0 @@ -# Copyright 2020 Energinet DataHub A/S -# -# Licensed under the Apache License, Version 2.0 (the "License2"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -name: Publish ProcessManager.Client bundle - -on: - # Build, test, pack and publish release packages - # Only executed if (*.)ProcessManager.Client packages content or build scripts has changed; not if solution file, documentation or tests has changed - push: - branches: - - main - paths: - - source/ProcessManager.Client/** - - .github/workflows/processmanager-client-bundle-publish.yml - # Build, test, pack - # Executed if ProcessManager.Client folder or build scripts has changed; including if documentation or tests has changed - workflow_call: {} - # Build, test, pack and publish prerelease packages - # Executed if manually triggered - workflow_dispatch: {} - -env: - # Conditions - PUSH_PACKAGES: ${{ github.event_name != 'pull_request' }} - # Necessary to manage Azure resources from automated tests - AZURE_KEYVAULT_URL: ${{ vars.integration_test_azure_keyvault_url }} - # Set value used by 'AzuriteManager' - # Use 'AzuriteBlobFolderPath' for TestCommon version 4.2.0 and lower - AzuriteBlobFolderPath: ${{ github.workspace }}\node_modules\.bin\ - # Use 'AzuriteFolderPath' for TestCommon version 4.3.0 and higher - AzuriteFolderPath: ${{ github.workspace }}\node_modules\.bin\ - # Overrides settings in 'functionhost.settings.json' - FunctionAppHostPath: ${{ github.workspace }}\node_modules\azure-functions-core-tools\bin\func.dll - -jobs: - build_and_publish: - runs-on: windows-2022 - name: Publish bundle to NuGet.org - - environment: AzureAuth - - # We need to have permissions here to be able to support manually triggering this workflow for releasing a pre-release. - permissions: - id-token: write # Needed by 'dotnet-solution-build-and-test' to login to Azure - contents: read # Needed by https://github.com/EnricoMi/publish-unit-test-result-action - issues: read # Needed by https://github.com/EnricoMi/publish-unit-test-result-action - checks: write # Needed by https://github.com/EnricoMi/publish-unit-test-result-action - pull-requests: write # Needed by https://github.com/EnricoMi/publish-unit-test-result-action - - steps: - - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 - - - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 - with: - use_azure_functions_tools: "true" - azure_functions_core_tools_version: 4.0.5455 - - - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 - with: - solution_file_path: ./source/ProcessManager.Client.Filtered.slnf - azure_tenant_id: ${{ vars.integration_test_azure_tenant_id }} - azure_subscription_id: ${{ vars.integration_test_azure_subscription_id }} - azure_spn_id: ${{ vars.integration_test_azure_spn_id_oidc }} - publish_test_report: "true" - - - name: Pack ProcessManager.Client project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 - with: - project_path: ./source/ProcessManager.Client/ProcessManager.Client.csproj - - - name: Package content or build has changed - id: changed-content - uses: tj-actions/changed-files@v41 - with: - files: | - source/ProcessManager.Client/**/*.* - .github/workflows/processmanager-client-bundle-publish.yml - - - name: Assert versions of NuGet packages and push them to NuGet.org - uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v13 - with: - push_packages: ${{ env.PUSH_PACKAGES }} - content_changed: ${{ steps.changed-content.outputs.any_changed }} - nuget_token: ${{ secrets.nuget_token }} - nupkg_recurse_path: source/ProcessManager.Client - - # - # Branch policy status check - # - - allow_merge: - runs-on: ubuntu-latest - needs: [build_and_publish] - if: | - always() - steps: - - name: Verify if merge is allowed - run: | - echo "${{ toJSON(needs) }}" - - if [[ ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }} = true ]]; then - echo "Failed" - exit 1 - fi diff --git a/source/ApplyDBMigrationsApp/ApplyDBMigrationsApp.csproj b/source/ApplyDBMigrationsApp/ApplyDBMigrationsApp.csproj index 621269594e..f98cddf91b 100644 --- a/source/ApplyDBMigrationsApp/ApplyDBMigrationsApp.csproj +++ b/source/ApplyDBMigrationsApp/ApplyDBMigrationsApp.csproj @@ -29,7 +29,7 @@ limitations under the License. all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/source/ArchitectureTests/ArchitectureTests.csproj b/source/ArchitectureTests/ArchitectureTests.csproj index 8b297e8862..60effb5438 100644 --- a/source/ArchitectureTests/ArchitectureTests.csproj +++ b/source/ArchitectureTests/ArchitectureTests.csproj @@ -23,17 +23,17 @@ limitations under the License. - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/source/ArchivedMessages.IntegrationTests/ArchivedMessages.IntegrationTests.csproj b/source/ArchivedMessages.IntegrationTests/ArchivedMessages.IntegrationTests.csproj index 07346d50cf..04cf9caa28 100644 --- a/source/ArchivedMessages.IntegrationTests/ArchivedMessages.IntegrationTests.csproj +++ b/source/ArchivedMessages.IntegrationTests/ArchivedMessages.IntegrationTests.csproj @@ -23,10 +23,10 @@ limitations under the License. - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/source/ArchivedMessages.Interfaces/ArchivedMessages.Interfaces.csproj b/source/ArchivedMessages.Interfaces/ArchivedMessages.Interfaces.csproj index cd9db23b79..bb44a75a09 100644 --- a/source/ArchivedMessages.Interfaces/ArchivedMessages.Interfaces.csproj +++ b/source/ArchivedMessages.Interfaces/ArchivedMessages.Interfaces.csproj @@ -8,7 +8,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/source/AuditLog/AuditLog.csproj b/source/AuditLog/AuditLog.csproj index b9332595e3..440e7a932a 100644 --- a/source/AuditLog/AuditLog.csproj +++ b/source/AuditLog/AuditLog.csproj @@ -4,15 +4,15 @@ Energinet.DataHub.EDI.AuditLog - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/source/B2BApi.AppTests/B2BApi.AppTests.csproj b/source/B2BApi.AppTests/B2BApi.AppTests.csproj index 0818b59f00..c04d9466fe 100644 --- a/source/B2BApi.AppTests/B2BApi.AppTests.csproj +++ b/source/B2BApi.AppTests/B2BApi.AppTests.csproj @@ -8,14 +8,14 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/B2BApi/B2BApi.csproj b/source/B2BApi/B2BApi.csproj index 701bd2997a..3f5700b06e 100644 --- a/source/B2BApi/B2BApi.csproj +++ b/source/B2BApi/B2BApi.csproj @@ -23,31 +23,31 @@ limitations under the License. false - - + + - - - - + + + + - - - + + + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/source/B2BApi/Configuration/Middleware/UnHandledExceptionMiddleware.cs b/source/B2BApi/Configuration/Middleware/UnHandledExceptionMiddleware.cs index 8e1cdd2a38..60750c137c 100644 --- a/source/B2BApi/Configuration/Middleware/UnHandledExceptionMiddleware.cs +++ b/source/B2BApi/Configuration/Middleware/UnHandledExceptionMiddleware.cs @@ -113,10 +113,8 @@ await newHttpResponse.WriteStringAsync( private static async Task CreateJsonResponseAsync(HttpResponseData newHttpResponse) { - // You need to explicitly pass the status code in WriteAsJsonAsync method. - // https://github.com/Azure/azure-functions-dotnet-worker/issues/776 - // The method also ensures that the content type is "application/json; charset=utf-8" - await newHttpResponse.WriteAsJsonAsync(new { Message = ErrorMessage }, newHttpResponse.StatusCode); + // The method ensures that the content type is "application/json; charset=utf-8" + await newHttpResponse.WriteAsJsonAsync(new { Message = ErrorMessage }); } private static OutputBindingData? GetHttpOutputBindingFromMultipleOutputBinding(FunctionContext context) diff --git a/source/B2BApi/HostFactory.cs b/source/B2BApi/HostFactory.cs index 0f7454cc4d..4fc495bf78 100644 --- a/source/B2BApi/HostFactory.cs +++ b/source/B2BApi/HostFactory.cs @@ -63,11 +63,6 @@ public static IHost CreateHost(TokenValidationParameters tokenValidationParamete (context, services) => { services - .Configure((Action)(options => - { - options.EnableUserCodeException = true; - })) - // Logging .AddApplicationInsightsForIsolatedWorker(SubsystemName) diff --git a/source/B2CWebApi.AppTests/B2CWebApi.AppTests.csproj b/source/B2CWebApi.AppTests/B2CWebApi.AppTests.csproj index ddf870af6b..821b2022e4 100644 --- a/source/B2CWebApi.AppTests/B2CWebApi.AppTests.csproj +++ b/source/B2CWebApi.AppTests/B2CWebApi.AppTests.csproj @@ -8,24 +8,24 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/source/B2CWebApi/B2CWebApi.csproj b/source/B2CWebApi/B2CWebApi.csproj index 0711cc6475..3f659bb2ac 100644 --- a/source/B2CWebApi/B2CWebApi.csproj +++ b/source/B2CWebApi/B2CWebApi.csproj @@ -8,17 +8,17 @@ - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/source/BuildingBlocks.Domain/BuildingBlocks.Domain.csproj b/source/BuildingBlocks.Domain/BuildingBlocks.Domain.csproj index 666ee793bf..eb968d5f37 100644 --- a/source/BuildingBlocks.Domain/BuildingBlocks.Domain.csproj +++ b/source/BuildingBlocks.Domain/BuildingBlocks.Domain.csproj @@ -8,6 +8,6 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/source/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj b/source/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj index fc35bf2a9c..396a48e0fa 100644 --- a/source/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj +++ b/source/BuildingBlocks.Infrastructure/BuildingBlocks.Infrastructure.csproj @@ -6,11 +6,12 @@ - - + + - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/BuildingBlocks.Interfaces/BuildingBlocks.Interfaces.csproj b/source/BuildingBlocks.Interfaces/BuildingBlocks.Interfaces.csproj index 15c96cae51..3d518f69e9 100644 --- a/source/BuildingBlocks.Interfaces/BuildingBlocks.Interfaces.csproj +++ b/source/BuildingBlocks.Interfaces/BuildingBlocks.Interfaces.csproj @@ -5,7 +5,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/BuildingBlocks.Tests/BuildingBlocks.Tests.csproj b/source/BuildingBlocks.Tests/BuildingBlocks.Tests.csproj index 05bf24a5d6..57b79b921a 100644 --- a/source/BuildingBlocks.Tests/BuildingBlocks.Tests.csproj +++ b/source/BuildingBlocks.Tests/BuildingBlocks.Tests.csproj @@ -22,12 +22,12 @@ limitations under the License. - - - + + + - - + + diff --git a/source/CalculationResults/CalculationResults.Infrastructure/CalculationResults.Infrastructure.csproj b/source/CalculationResults/CalculationResults.Infrastructure/CalculationResults.Infrastructure.csproj index 0eaff67120..aa910bb08e 100644 --- a/source/CalculationResults/CalculationResults.Infrastructure/CalculationResults.Infrastructure.csproj +++ b/source/CalculationResults/CalculationResults.Infrastructure/CalculationResults.Infrastructure.csproj @@ -6,14 +6,14 @@ - - - - - - - - + + + + + + + + diff --git a/source/CalculationResults/CalculationResults.Interfaces/CalculationResults.Interfaces.csproj b/source/CalculationResults/CalculationResults.Interfaces/CalculationResults.Interfaces.csproj index 6500ac5a19..b632269cb1 100644 --- a/source/CalculationResults/CalculationResults.Interfaces/CalculationResults.Interfaces.csproj +++ b/source/CalculationResults/CalculationResults.Interfaces/CalculationResults.Interfaces.csproj @@ -4,7 +4,7 @@ Energinet.DataHub.Wholesale.CalculationResults.Interfaces - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/Contracts/Contracts.csproj b/source/Contracts/Contracts.csproj index 2e783491bc..6b734bc46c 100644 --- a/source/Contracts/Contracts.csproj +++ b/source/Contracts/Contracts.csproj @@ -24,8 +24,8 @@ limitations under the License. - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/DataAccess.UnitOfWork/DataAccess.UnitOfWork.csproj b/source/DataAccess.UnitOfWork/DataAccess.UnitOfWork.csproj index 2f095b2a80..34c5180068 100644 --- a/source/DataAccess.UnitOfWork/DataAccess.UnitOfWork.csproj +++ b/source/DataAccess.UnitOfWork/DataAccess.UnitOfWork.csproj @@ -8,8 +8,8 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/source/DataAccess/DataAccess.csproj b/source/DataAccess/DataAccess.csproj index a524b9ab1e..7c8e99dd56 100644 --- a/source/DataAccess/DataAccess.csproj +++ b/source/DataAccess/DataAccess.csproj @@ -7,7 +7,7 @@ - + all diff --git a/source/Edi.UnitTests/Edi.UnitTests.csproj b/source/Edi.UnitTests/Edi.UnitTests.csproj index 27d0e5df99..34bd5585fb 100644 --- a/source/Edi.UnitTests/Edi.UnitTests.csproj +++ b/source/Edi.UnitTests/Edi.UnitTests.csproj @@ -6,18 +6,18 @@ true - - + + - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/source/Edi/Edi.csproj b/source/Edi/Edi.csproj index 38dc347044..926c85b412 100644 --- a/source/Edi/Edi.csproj +++ b/source/Edi/Edi.csproj @@ -5,10 +5,10 @@ - - + + - + diff --git a/source/IncomingMessages.Infrastructure/IncomingMessages.Infrastructure.csproj b/source/IncomingMessages.Infrastructure/IncomingMessages.Infrastructure.csproj index 50a6eece60..f2ec5a646d 100644 --- a/source/IncomingMessages.Infrastructure/IncomingMessages.Infrastructure.csproj +++ b/source/IncomingMessages.Infrastructure/IncomingMessages.Infrastructure.csproj @@ -19,7 +19,7 @@ - + all diff --git a/source/IncomingMessages.IntegrationTests/IncomingMessages.IntegrationTests.csproj b/source/IncomingMessages.IntegrationTests/IncomingMessages.IntegrationTests.csproj index 9000b5bbb5..087f686683 100644 --- a/source/IncomingMessages.IntegrationTests/IncomingMessages.IntegrationTests.csproj +++ b/source/IncomingMessages.IntegrationTests/IncomingMessages.IntegrationTests.csproj @@ -26,8 +26,8 @@ limitations under the License. all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/source/IntegrationEvents.Application/IntegrationEvents.Application.csproj b/source/IntegrationEvents.Application/IntegrationEvents.Application.csproj index a7bc48e050..704ca791fd 100644 --- a/source/IntegrationEvents.Application/IntegrationEvents.Application.csproj +++ b/source/IntegrationEvents.Application/IntegrationEvents.Application.csproj @@ -15,8 +15,8 @@ - - + + all diff --git a/source/IntegrationEvents.Infrastructure/IntegrationEvents.Infrastructure.csproj b/source/IntegrationEvents.Infrastructure/IntegrationEvents.Infrastructure.csproj index e02ee80bc2..7b01c661ef 100644 --- a/source/IntegrationEvents.Infrastructure/IntegrationEvents.Infrastructure.csproj +++ b/source/IntegrationEvents.Infrastructure/IntegrationEvents.Infrastructure.csproj @@ -13,10 +13,10 @@ - + - - + + all diff --git a/source/IntegrationEvents.IntegrationTests/IntegrationEvents.IntegrationTests.csproj b/source/IntegrationEvents.IntegrationTests/IntegrationEvents.IntegrationTests.csproj index 7cfc32452f..69f5372518 100644 --- a/source/IntegrationEvents.IntegrationTests/IntegrationEvents.IntegrationTests.csproj +++ b/source/IntegrationEvents.IntegrationTests/IntegrationEvents.IntegrationTests.csproj @@ -8,11 +8,11 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all @@ -21,7 +21,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/source/IntegrationTests/IntegrationTests.csproj b/source/IntegrationTests/IntegrationTests.csproj index 67d9658c49..371f8316b3 100644 --- a/source/IntegrationTests/IntegrationTests.csproj +++ b/source/IntegrationTests/IntegrationTests.csproj @@ -23,20 +23,20 @@ limitations under the License. - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/source/MasterData.IntegrationTests/MasterData.IntegrationTests.csproj b/source/MasterData.IntegrationTests/MasterData.IntegrationTests.csproj index f54b757939..c1bec8772a 100644 --- a/source/MasterData.IntegrationTests/MasterData.IntegrationTests.csproj +++ b/source/MasterData.IntegrationTests/MasterData.IntegrationTests.csproj @@ -8,10 +8,10 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/source/Outbox.Infrastructure/Outbox.Infrastructure.csproj b/source/Outbox.Infrastructure/Outbox.Infrastructure.csproj index b80660de46..0f32257bcf 100644 --- a/source/Outbox.Infrastructure/Outbox.Infrastructure.csproj +++ b/source/Outbox.Infrastructure/Outbox.Infrastructure.csproj @@ -4,9 +4,9 @@ Energinet.DataHub.EDI.Outbox.Infrastructure - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/OutgoingMessages.Application/OutgoingMessages.Application.csproj b/source/OutgoingMessages.Application/OutgoingMessages.Application.csproj index f3b49dcb39..87c1c2bfea 100644 --- a/source/OutgoingMessages.Application/OutgoingMessages.Application.csproj +++ b/source/OutgoingMessages.Application/OutgoingMessages.Application.csproj @@ -6,8 +6,10 @@ + + - + all runtime; build; native; contentfiles; analyzers; buildtransitive @@ -20,7 +22,6 @@ - diff --git a/source/OutgoingMessages.Infrastructure/OutgoingMessages.Infrastructure.csproj b/source/OutgoingMessages.Infrastructure/OutgoingMessages.Infrastructure.csproj index 9eaf04e383..ab08d0c82b 100644 --- a/source/OutgoingMessages.Infrastructure/OutgoingMessages.Infrastructure.csproj +++ b/source/OutgoingMessages.Infrastructure/OutgoingMessages.Infrastructure.csproj @@ -6,7 +6,10 @@ - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/Process.Application/Process.Application.csproj b/source/Process.Application/Process.Application.csproj index d014203366..f839c08224 100644 --- a/source/Process.Application/Process.Application.csproj +++ b/source/Process.Application/Process.Application.csproj @@ -8,7 +8,7 @@ - + all diff --git a/source/Process.Infrastructure/Process.Infrastructure.csproj b/source/Process.Infrastructure/Process.Infrastructure.csproj index 6737a57592..204e30f5cd 100644 --- a/source/Process.Infrastructure/Process.Infrastructure.csproj +++ b/source/Process.Infrastructure/Process.Infrastructure.csproj @@ -8,11 +8,11 @@ - + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/ProcessManager.Client.Tests/ProcessManager.Client.Tests.csproj b/source/ProcessManager.Client.Tests/ProcessManager.Client.Tests.csproj index d77ae2d068..375d408c94 100644 --- a/source/ProcessManager.Client.Tests/ProcessManager.Client.Tests.csproj +++ b/source/ProcessManager.Client.Tests/ProcessManager.Client.Tests.csproj @@ -18,11 +18,14 @@ - - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + - + diff --git a/source/ProcessManager.Client/ProcessManager.Client.csproj b/source/ProcessManager.Client/ProcessManager.Client.csproj index f0127a572a..1c7a6dc98e 100644 --- a/source/ProcessManager.Client/ProcessManager.Client.csproj +++ b/source/ProcessManager.Client/ProcessManager.Client.csproj @@ -76,9 +76,9 @@ - + - + @@ -86,8 +86,8 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/ProcessManager.Core.Tests/ProcessManager.Core.Tests.csproj b/source/ProcessManager.Core.Tests/ProcessManager.Core.Tests.csproj index 7eb59953a1..51abf729dd 100644 --- a/source/ProcessManager.Core.Tests/ProcessManager.Core.Tests.csproj +++ b/source/ProcessManager.Core.Tests/ProcessManager.Core.Tests.csproj @@ -8,10 +8,13 @@ - - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + - + diff --git a/source/ProcessManager.Core/ProcessManager.Core.csproj b/source/ProcessManager.Core/ProcessManager.Core.csproj index 9edffe4a78..45b52f65f5 100644 --- a/source/ProcessManager.Core/ProcessManager.Core.csproj +++ b/source/ProcessManager.Core/ProcessManager.Core.csproj @@ -11,15 +11,15 @@ - - + + - + - - + + diff --git a/source/ProcessManager.Orchestrations.Tests/ProcessManager.Orchestrations.Tests.csproj b/source/ProcessManager.Orchestrations.Tests/ProcessManager.Orchestrations.Tests.csproj index 4219b8af5d..c007a04230 100644 --- a/source/ProcessManager.Orchestrations.Tests/ProcessManager.Orchestrations.Tests.csproj +++ b/source/ProcessManager.Orchestrations.Tests/ProcessManager.Orchestrations.Tests.csproj @@ -13,11 +13,14 @@ - - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + - + diff --git a/source/ProcessManager.Orchestrations/ProcessManager.Orchestrations.csproj b/source/ProcessManager.Orchestrations/ProcessManager.Orchestrations.csproj index b82cd52dc3..854173a231 100644 --- a/source/ProcessManager.Orchestrations/ProcessManager.Orchestrations.csproj +++ b/source/ProcessManager.Orchestrations/ProcessManager.Orchestrations.csproj @@ -7,13 +7,13 @@ - + - - - - - + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/source/ProcessManager.SubsystemTests/ProcessManager.SubsystemTests.csproj b/source/ProcessManager.SubsystemTests/ProcessManager.SubsystemTests.csproj index e1b9934b06..21e82bd7ff 100644 --- a/source/ProcessManager.SubsystemTests/ProcessManager.SubsystemTests.csproj +++ b/source/ProcessManager.SubsystemTests/ProcessManager.SubsystemTests.csproj @@ -8,11 +8,14 @@ - - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + - + diff --git a/source/ProcessManager.Tests/ProcessManager.Tests.csproj b/source/ProcessManager.Tests/ProcessManager.Tests.csproj index d0671c52e4..3c14a8a19b 100644 --- a/source/ProcessManager.Tests/ProcessManager.Tests.csproj +++ b/source/ProcessManager.Tests/ProcessManager.Tests.csproj @@ -12,11 +12,14 @@ - - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + - + diff --git a/source/ProcessManager/ProcessManager.csproj b/source/ProcessManager/ProcessManager.csproj index 5891230755..2a89387b29 100644 --- a/source/ProcessManager/ProcessManager.csproj +++ b/source/ProcessManager/ProcessManager.csproj @@ -11,8 +11,8 @@ - - + + diff --git a/source/SubsystemTests/SubsystemTests.csproj b/source/SubsystemTests/SubsystemTests.csproj index c5744b0cb6..01362bf35c 100644 --- a/source/SubsystemTests/SubsystemTests.csproj +++ b/source/SubsystemTests/SubsystemTests.csproj @@ -71,37 +71,37 @@ - + - - + + - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/source/SystemTests/SystemTests.csproj b/source/SystemTests/SystemTests.csproj index ecdfe75ffe..2b0cbba764 100644 --- a/source/SystemTests/SystemTests.csproj +++ b/source/SystemTests/SystemTests.csproj @@ -9,13 +9,13 @@ - - + + - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive @@ -24,8 +24,8 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - - + + all diff --git a/source/Tests/Tests.csproj b/source/Tests/Tests.csproj index 717b4f4cb3..4a4861e191 100644 --- a/source/Tests/Tests.csproj +++ b/source/Tests/Tests.csproj @@ -23,17 +23,17 @@ limitations under the License. - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + runtime; build; native; contentfiles; analyzers; buildtransitive