We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm trying to use the Microsoft.Windows.SDK.BuildTools.MSIX NuGet package with a .NET Framework 4.8 WPF application and encountered an issue at build.
Microsoft.Windows.SDK.BuildTools.MSIX
1.2.20250107.1
Building the project fails with the following error:
[...]\build\Microsoft.Windows.SDK.BuildTools.MSIX.MrtCore.PriGen.targets(399,5): error APPX3217: SDK folder containing 'UAP.props' for 'UAP 7.0' cannot be located.
Adding the NuGet package Microsoft.Windows.SDK.BuildTools version 10.0.26100.1742 resolves the error.
Microsoft.Windows.SDK.BuildTools
Is there something I'm missing that would enable the Microsoft.Windows.SDK.BuildTools.MSIX package to work independently with the inbox Windows SDK?
The text was updated successfully, but these errors were encountered:
I believe you’re supposed to bring in the regular BuildTools package, UWP on .NET 9, which is currently the only supported target, does that.
Sorry, something went wrong.
The package should then declare that as a dependency, right?
The aforementioned props file seems to be geared towards supporting both scenarios.
<!-- Tools installed via nupkg --> <Target Name="_GetSdkToolsPathsFromPackage" Condition="'$(UseSdkBuildToolsPackage)' == 'true'" /> <!-- Tools installed via SDK msi--> <Target Name="_GetSdkToolsPathsFromSdk" Condition="'$(UseSdkBuildToolsPackage)' != 'true'"> ...
Is EnableMsixTooling enabled?
EnableMsixTooling
Didn't test that; that would be out of scope with my vanilla WPF project test.
No branches or pull requests
Description
I'm trying to use the
Microsoft.Windows.SDK.BuildTools.MSIX
NuGet package with a .NET Framework 4.8 WPF application and encountered an issue at build.Steps to Reproduce
Microsoft.Windows.SDK.BuildTools.MSIX
version1.2.20250107.1
Observed Behavior
Building the project fails with the following error:
Workaround
Adding the NuGet package
Microsoft.Windows.SDK.BuildTools
version 10.0.26100.1742 resolves the error.Question
Is there something I'm missing that would enable the
Microsoft.Windows.SDK.BuildTools.MSIX
package to work independently with the inbox Windows SDK?The text was updated successfully, but these errors were encountered: