Open
Description
The OpenApi generation fails at the moment of installing the necessary dependencies, in particular when trying to install the package Microsoft.CSharp
:
Unable to install Microsoft.CSharp version 4.5.0
This happens because my project already contains a dependency which depends on a higher version. In particular:
<PackageReference Include="AutoMapper" Version="10.1.1" />
depends on:
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
I wonder if it would be possible not trying to install a package if it already exists with a higher version.