From e6a92267e22298fecdde53b32ab5a0e4021810c0 Mon Sep 17 00:00:00 2001 From: Andre Hofmeister <9199345+HofmeisterAn@users.noreply.github.com> Date: Sat, 24 Feb 2024 18:15:49 +0100 Subject: [PATCH] test: Apply DebugType only for Cake build --- Directory.Build.props | 4 ++-- build.cake | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index a39b85de8..2ec8579aa 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -31,9 +31,9 @@ true true - + diff --git a/build.cake b/build.cake index 9e7d1bcf1..2354617c5 100644 --- a/build.cake +++ b/build.cake @@ -67,6 +67,7 @@ Task("Build") Verbosity = param.Verbosity, NoRestore = true, ArgumentCustomization = args => args + .Append($"/p:DebugType=embedded") .Append($"/p:ContinuousIntegrationBuild=true") }); });