AppHarbor - Support for the core ASP.NET core

Does AppHarbor Core support ASP.NET?

When I tried to deploy my sample application (from RC Studio Visual Studio 2015 templates), I got the following build log in AppHarbor:

Build started 5/4/2015 2:28:38 PM. 1>Project "D:\temp\g3zdb4oh.rcv\input\ASPNetTest.sln" on node 1 (default targets). 1>ValidateSolutionConfiguration: Building solution configuration "Release|Any CPU". 1>Project "D:\temp\g3zdb4oh.rcv\input\ASPNetTest.sln" (1) is building "D:\temp\g3zdb4oh.rcv\input\src\ASPNetTest\ASPNetTest.xproj" (2) on node 1 (default targets). 2>D:\temp\g3zdb4oh.rcv\input\src\ASPNetTest\ASPNetTest.xproj(7,3): error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\DNX\Microsoft.DNX.Props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. 2>Done Building Project "D:\temp\g3zdb4oh.rcv\input\src\ASPNetTest\ASPNetTest.xproj" (default targets) -- FAILED. 1>Done Building Project "D:\temp\g3zdb4oh.rcv\input\ASPNetTest.sln" (default targets) -- FAILED. Build FAILED. "D:\temp\g3zdb4oh.rcv\input\ASPNetTest.sln" (default target) (1) -> "D:\temp\g3zdb4oh.rcv\input\src\ASPNetTest\ASPNetTest.xproj" (default target) (2) -> D:\temp\g3zdb4oh.rcv\input\src\ASPNetTest\ASPNetTest.xproj(7,3): error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\DNX\Microsoft.DNX.Props" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. 0 Warning(s) 1 Error(s) Time Elapsed 00:00:00.03 

The code I tried to deploy was as follows: https://github.com/yngndrw/ASPNetTest

I'm not sure if I missed something or if AppHarbor does not yet support this?

+7
asp.net-core appharbor
source share
1 answer

The rune from AppHarbor answered my question :

Hi,

ASP.NET 5 / vNext and .NET 4.6 are not officially supported, as they are still in RC state - official support will be deployed and deployed to all servers when they reach RTM. Please note, however, that for the vNext / ASP.NET 5 application, you can still run these applications in AppHarbor, but for now, you will have to bypass the missing projects for assembly purposes, as they are currently not available on the AppHarbor build servers.

AppHarbor will continue to support earlier versions of the .NET Framework, including 4+, and there are no plans to stop supporting applications that require these frameworks when vNext and .NET 4.6 are officially supported.

We can also provide beta support or recommendations for deploying applications using newer frameworks prior to the official RC. I will definitely update this thread if / when we do this.

Best, Rune

After adding support, I will be updated. Thanks.

+1
source share

All Articles