I have a project in Visual Studio 2022: console application and WIX installer.
Console app properties window shows Build -> DebugSymbols = “PDB file, portable across platforms”.
Console.csproj file has this:
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
</PropertyGroup>
When I try to change Build -> DebugSymbols = “PDB file, portable across platforms” to any other option from the dropdown list – dropdown is enabled, has four options, but it won’t change. It reverts to “PDB file, portable across platforms”. And my WIX project won’t compile, saying
The argument -pdbType value ‘portable’ is invalid. Use one of the
following values full, none
How can I fix that?