Hi,
I have an ASP.NET application with Global.asax file. And my application does not have an .sln file. When I try to push my app to heroku, I got the following error:
-----> Fetching custom git buildpack... done
-----> ASP.NET app detected
-----> Bundling XSP v3.0.11
Fetching 3.0.11 @ http://s3.amazonaws.com/mono-dependencies/xsp-3.0.11.tar.gz
-----> Bundling Mono v3.2.8
Fetching Mono v3.2.8 @ http://s3.amazonaws.com/mono-dependencies/mono-3.2.8.tar.gz
Copying xsp libraries to the GAC
-----> Fetching fixed NuGet.targets
-----> No *.sln file found
! Push rejected, failed to compile ASP.NET app
From what I understand from https://github.com/friism/heroku-buildpack-mono/blob/master/bin/compile compiler looks for an .sln file and when it can not find it terminates the push.
But in the readme file it says The buildpack will detect your app as ASP.NET if it has the file global.asax in the root or at one directory depth or as .NET if it has a .sln file.
How can we solve this?
Thanks
Hi,
I have an ASP.NET application with
Global.asaxfile. And my application does not have an.slnfile. When I try to push my app to heroku, I got the following error:From what I understand from https://github.com/friism/heroku-buildpack-mono/blob/master/bin/compile compiler looks for an
.slnfile and when it can not find it terminates the push.But in the readme file it says
The buildpack will detect your app as ASP.NET if it has the file global.asax in the root or at one directory depth or as .NET if it has a .sln file.How can we solve this?
Thanks