Skip to content

Commit

Permalink
Fix the velocity script to actually support canary (#16810)
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
zadjii-msft authored Mar 4, 2024
1 parent 33589cd commit 338c504
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build/rules/GenerateFeatureFlags.proj
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<IntermediateOutputPath>$(SolutionDir)obj\$(Configuration)\GenerateFeatureFlags\</IntermediateOutputPath>
<OpenConsoleCommonOutDir>$(SolutionDir)bin\$(Configuration)\</OpenConsoleCommonOutDir>

<_WTBrandingName Condition="'$(WindowsTerminalBranding)'=='Canary'">Canary</_WTBrandingName>
<_WTBrandingName Condition="'$(WindowsTerminalBranding)'=='Preview'">Preview</_WTBrandingName>
<_WTBrandingName Condition="'$(WindowsTerminalBranding)'=='Release'">Release</_WTBrandingName>
<_WTBrandingName Condition="'$(_WTBrandingName)'==''">Dev</_WTBrandingName>
Expand Down

0 comments on commit 338c504

Please sign in to comment.