Reputation: 18160
In VS2017 I created a new Winforms project using the XAF Solutions Wizard ( Entity Framework Code - First)
The wizard adds references according to options I select.
Now I want to change all the packages to use my Nuget Feed for the Dev Express References.
Is there a Nuget command that I can use to do this automatically?
Upvotes: 1
Views: 473
Reputation: 2285
There is no way to do this with Nugets unless you script your way out as we are doing in XAF community project expandFramework. For some cases it won't work, however for a similar case here is what we do.
Get-DxNugets 18.2.6
`Nuget Install packageName -OutputFolder $commonOutputFolder
Update-HintPath -OutputPath "$packageInstallationfolder" -SourcesPath $rootPath -filter "DevExpress*"
all powershell functions come from the XpandPosh project. There are many helpful methods there unfortunately no docs. But you can get support
Upvotes: 1