I want to make a multiplatform application from windows environment for macOS. I want to know how to configure the 'csproj' file.
My .csproj file:
<PropertyGroup>
<OutputType>Exe</OutputType> <!-- How to put executable for macOS -->
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<RuntimeIdentifiers>win10-x64;osx.10.11-x64</RuntimeIdentifiers>
<DisableWinExeOutputInference>true</DisableWinExeOutputInference>
</PropertyGroup>