Compile your solution without DevExpress assemblies installed in 4 lines
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-PackageSource –ProviderName 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-HintPath –OutputPath YOURBIN –SourcesPath YOURSOURCESPATH
For feedback drop an issue at https://github.com/eXpandFramework/DevExpress.PackageContent