Hi!
I have found solution... trick was ... app.config file is not NET6 compatible.
So, AppContextSwitchOverrides … Switches like...
Switch.System.Windows.DoNotScaleForDpiChanges
are transferred from
"appname".config => "appname".runtimeconfig.json
In order to control these switches ... I had to put new item group into *.csproj
<Project>
...
<ItemGroup>
<RuntimeHostConfigurationOption Include="Switch.System.Windows.DoNotScaleForDpiChanges" Value="true" />
<RuntimeHostConfigurationOption Include="Switch.System.IO.UseLegacyPathHandling" Value="false" />
</ItemGroup>
...
</Project>
So, RuntimeHostConfigurationOption has done the job!
Thanks for your time!
V.
P.S. app.manifest still stands as like it was before.