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