Multiple Conditions in a PropertyGroup

Hi,
I want to have a multi target project that does .net core and standard.

Can I set the destination based on Target ?

There is this

  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
    <OutputPath>.\Bin\Release</OutputPath>
    <CpuType>anycpu</CpuType>
    <EnableUnmanagedDebugging>False</EnableUnmanagedDebugging>
  </PropertyGroup>

Can I use an AND in the condition ?

`<PropertyGroup Condition=" '$(Configuration)' == 'Release'  AND '$(Target)' == 'Core'">`

Cheers,
John

John,

no, you can’t. EBuild uses this syntax for MSBuild compatibility, but it does not actually parse these as expressions

Ok. How would you suggest I have a target in separate folders ? It looked like island does by submode, can I do the same with Echoes ?

Oh, just set the OutputPathUsesSubModes or OutputPathUsesSubTargets options.