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

Window title not shown when packaged #309

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open

Conversation

dansiegel
Copy link
Contributor

@dansiegel dansiegel commented Aug 5, 2024

Fixes: #

PR Type

What kind of change does this PR introduce?

  • Bugfix

What is the current behavior?

WinUI Desktop is shown when running the WinUI head packaged.

What is the new behavior?

The Application Title is shown regardless of whether the WinUI head is running Packaged or Unpackaged.

var compilationProvider = context.CompilationProvider;
var additionalTextsProvider = context.AdditionalTextsProvider;

// Combine optionsProvider and compilationProvider
Copy link
Member

Choose a reason for hiding this comment

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

That's no longer incremental once you combine with compilationProvider.

Instead, use an assembly name provider:

var assemblyNameProvider = context.CompilationProvider.Select((compilation, _) => compilation.Assembly.Name);

<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" />
Copy link
Member

Choose a reason for hiding this comment

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

This is a too recent. We should really be using the oldest version we can and bump only if there is a specific new API we need

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyName>Uno.Resizetizer</AssemblyName>
Copy link
Member

Choose a reason for hiding this comment

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

Should the assembly name be Uno.Resizetizer.Generators?

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.

WinUI Desktop title is shown The Uno.Resizetizer extension for icon should be conditionally generated
2 participants