Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable USE_PROD_CLSIDS switch in CommonCore #4865

Merged
merged 1 commit into from
Oct 10, 2024

Conversation

JohnMcPMS
Copy link
Member

@JohnMcPMS JohnMcPMS commented Oct 10, 2024

Change

Adds a UseProdCLSIDs MSBuild property to USE_PROD_CLSIDS preprocessor definition to CommonCore.

Microsoft Reviewers: Open in CodeFlow

@JohnMcPMS JohnMcPMS requested a review from a team as a code owner October 10, 2024 21:40
Comment on lines 244 to +250
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(UseProdCLSIDs)'=='true'">
<ClCompile>
<PreprocessorDefinitions>USE_PROD_CLSIDS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can also put the condition in the item itself

Suggested change
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(UseProdCLSIDs)'=='true'">
<ClCompile>
<PreprocessorDefinitions>USE_PROD_CLSIDS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<PreprocessorDefinitions Condition="'$(UseProdCLSIDs)'=='true'">USE_PROD_CLSIDS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>

@JohnMcPMS JohnMcPMS changed the title Add property to define converter Enable USE_PROD_CLSIDS switch in CommonCore Oct 10, 2024
@JohnMcPMS JohnMcPMS merged commit 8d6f17d into microsoft:master Oct 10, 2024
9 checks passed
@JohnMcPMS JohnMcPMS deleted the fixels branch October 10, 2024 23:06
@JohnMcPMS JohnMcPMS linked an issue Oct 11, 2024 that may be closed by this pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sixel implementation not working in WinGet 1.9.2507
2 participants