-
Notifications
You must be signed in to change notification settings - Fork 0
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
Custom platform not supported #17
Comments
It is a little bit similar to #12. |
For references: https://github.com/dotnet/project-system/blob/main/docs/configurations.md Platforms/Configurations properties used to define them in dotnet project-system. |
This issue does seem related to #12. We'll include this issue when addressing that backlog item. |
I found a workaround for this issue by adapting the installation file "FireGiant.HeatWave.DesignTime.targets": I think adding those properties only when no previous values are set might work then for everyone |
HeatWave v0.9.5 should now respect custom |
HeatWave Version
0.9.3
Visual Studio Version
17.4.4
Repro Steps
Alterantively:
Add
<Platforms>Any;x64;x86;ARM64</Platforms>
toPropertyGroup
of installer projectActual Result
No option "New" to add platform. List of platforms does not honor
Platforms
property of the project.Expected Result
A way to add / edit list of used projects. At least honor list of platforms configured in project.
With WIX 3 I used custom platform "Any", that used to build for both x86/x64 platforms from one Build (similar to TargetFramewroks in .NET projects).
It is still perfectly supported with command line build with something like:
It is possible to use some other hacks to achieve the same (I could use something like
<TargetPlatforms>x86;x64<TargetPlatforms>
property to drive the same - but it will be less intuitive in VS, as platform for outer build will be selected to either x86/x64/arm64.The text was updated successfully, but these errors were encountered: