When compiling to choose, always choose mono, one thing.

Is it possible to make it so that 2 assemblies with different bit depths are immediately compiled?

There is AnyCpu, but in some situations it causes problems.

    1 answer 1

    You can forcefully build both configurations through AfterBuild:

    <Target Name="AfterBuild"> <MSBuild Condition=" '$(Platform)' == 'x86' " Projects="$(MSBuildProjectFile)" Properties="Platform=x64;PlatFormTarget=x64" RunEachTargetSeparately="true" /> </Target>