-
I've made no changes to my solution, but found that my Azure Devops pipeline was breaking. To cut a long story short, the Azure DevOps agent was upgraded to 3.14 ( see actions/runner-images#9426 ) After upgrading to 3.14 locally, I now get the same error. 1st Error: 2nd error: Is there any documentation on this change? Do I need to do the WIX_IS_NETFRAMEWORK_472_OR_LATER_INSTALLED or is that now defined in NetFx472.wxs ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Prior to 3.14, 3.11 didn't have support for various .NET Framework versions so people defined it themselves. In 3.14 these properties are added to the NetFx extension so you need to remove your own definition or change it to a unique property name. NetFx472.wxs is inside the extension itself. Your property definition could be anywhere in your code. Search for WIX_IS_NETFRAMEWORK_472_OR_LATER_INSTALLED across all of your wxs files. |
Beta Was this translation helpful? Give feedback.
Prior to 3.14, 3.11 didn't have support for various .NET Framework versions so people defined it themselves. In 3.14 these properties are added to the NetFx extension so you need to remove your own definition or change it to a unique property name.
NetFx472.wxs is inside the extension itself. Your property definition could be anywhere in your code. Search for WIX_IS_NETFRAMEWORK_472_OR_LATER_INSTALLED across all of your wxs files.