0

I have a pre-release package, after installing it in other projects, some unstable packages installs e.g. EntityFramework

Alternatively, I set fix version of EF in nuspec file.

<dependencies>
    <dependency id="Effort.EF6" version="1.3.0" />
</dependencies>

Is it possible to determine only install stable version of some dependencies?

Thanks in advance.

Mojtaba Khooryani
  • 1,763
  • 1
  • 17
  • 36

1 Answers1

0

You can specify the exact version that you want to reference in the dependency using the syntax outlined here -

<dependencies>
    <dependency id="Effort.EF6" version="[1.3.0]" />
</dependencies>
Ankit Mishra
  • 474
  • 3
  • 11