Not Monitored
Tag not monitored by Microsoft.
32,740 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a solution with multi-target project, created like so:
<PropertyGroup>
<TargetFrameworks>net461;net472</TargetFrameworks>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<OutputType>Library</OutputType>
</PropertyGroup>
But every time I build the solution, it's being built first for net461
, and then for net472
.
What I am trying to achieve is two-fold:
net472
) Passing something like /p:TargetFrameworks="net472" does not really work.
Any help/advice is greatly appreciated.