Quantcast
Channel: eXpandFramework RSS
Viewing all articles
Browse latest Browse all 861

Compile your solution without DevExpress assemblies installed in 4 lines

$
0
0

Do you have a project, where you use Azure pipelines to build it? How do you get the referenced DevExpress assemblies? In this post I will discuss how we go for it in eXpandFramework. The process however is applicable in all other projects.


After executing the next 4 lines your solution should compile:


Install-Module XpandPosh
Register-PackageSourceProviderName Nuget Name DX_private Location https://nuget.devexpress.com/YOURTOKEN
Install-DX -binPath YOURBIN -dxSources $(Get-PackageSourceLocations -join ";") -sourcePath YOURSOURCESPATH -dxVersion 18.2.5
Update-HintPathOutputPath YOURBIN SourcesPath YOURSOURCESPATH

For feedback drop an issue at https://github.com/eXpandFramework/DevExpress.PackageContent


Viewing all articles
Browse latest Browse all 861

Trending Articles