This is my first attempt at getting a project running on appharbor
The solution references a number of other project dlls. The build works locally and I am using git to push it to appharbor.
I get this message as the build fails: /order/rpc.ashx(1): error ASPPARSE: Could not create type 'web.order.rpc'.
[HttpParseException]: Could not create type 'web.order.rpc'.
at System.Web.UI.SimpleWebHandlerParser.GetType(String typeName)
at System.Web.UI.SimpleWebHandlerParser.GetTypeToCache(Assembly builtAssembly)
....
at System.Web.Compilation.BuildManagerHost.PrecompileApp(ClientBuildManagerCallback callback, List`1 excludedVirtualPaths)
at System.Web.Compilation.ClientBuildManager.PrecompileApplication(ClientBuildManagerCallback callback, Boolean forceCleanBuild)
at System.Web.Compilation.ClientBuildManager.PrecompileApplication(ClientBuildManagerCallback callback)
at System.Web.Compilation.Precompiler.Main(String[] args)
The source code is pretty simple:
namespace web.order
{
public class rpc : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
var Response = context.Response;
var Request = context.Request;
Response.Expires = 0;
Response.ContentType = "text/plain";
Response.Write("{}");
}
public bool IsReusable
{
get
{
return false;
}
}
}
}
Any help would greatly be appreciated