From 338c5047d7a2ca907bd2d8c0b09cf848da2ddc6a Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Mon, 4 Mar 2024 12:03:27 -0800 Subject: [PATCH] Fix the velocity script to actually support canary (#16810) Welp, would you look at that? We never actually supported "canary" feature settings. Canary's been defaulting to the "Dev" config since inception. There's a couple things that are supposed to only be on in Dev and not Canary. They clearly haven't mattered, but better safe than sorry! --- build/rules/GenerateFeatureFlags.proj | 1 + 1 file changed, 1 insertion(+) diff --git a/build/rules/GenerateFeatureFlags.proj b/build/rules/GenerateFeatureFlags.proj index 686365c0ca..eb6b9783bc 100644 --- a/build/rules/GenerateFeatureFlags.proj +++ b/build/rules/GenerateFeatureFlags.proj @@ -30,6 +30,7 @@ $(SolutionDir)obj\$(Configuration)\GenerateFeatureFlags\ $(SolutionDir)bin\$(Configuration)\ + <_WTBrandingName Condition="'$(WindowsTerminalBranding)'=='Canary'">Canary <_WTBrandingName Condition="'$(WindowsTerminalBranding)'=='Preview'">Preview <_WTBrandingName Condition="'$(WindowsTerminalBranding)'=='Release'">Release <_WTBrandingName Condition="'$(_WTBrandingName)'==''">Dev