DNX on the VSO Host Build Controller

When I try to create an ASP.NET 5 DNX project on VSO, I get the following error:

Cannot find the DNX executable dnx-clr-win-x86.1.0.0-beta6 in the folder: C: \ Users \ buildguest.dnx \ runtimes (119.5): Error: Dnx package run time must be installed. See the output window for more details.

Does this mean that we cannot use the node assembly controller with DNX projects?

+7
asp.net-core tfsbuild vsts dnx azure-devops
source share
2 answers

Found excellent dnx installation guide on vso host. https://msdn.microsoft.com/Library/vs/alm/Build/azure/deploy-aspnet5

The first PreBuild.ps1 script was added as a Powershell build step, and it worked right away.

+9
source share

Since I still use it to compile my code, for me it is not dead.

I integrated some travis-ci configuration into the py project, looked at my .travis.yml for an update, but I am counting on my hostname, my computer and Internet connection to work the same way as I did a few years ago:

dnx-install.sh

Please note that DNX should be able to compile DNX from source code, even marked obsolete, and that it would be possible, but painful, to write some scripts and use mono-roselin directly ... still not a dead branch for me,

0
source share

All Articles