Reputation: 21
I'm not being able to check-in a newly created ASP.NET 5 application on TFS (Team Foundation Server). Every time I try to check-in the project, it fails and gives me the following error: "Could not find file 'Global.asax'.". I know that ASP.NET 5 is not yet completely released, but can anyone at least tell me why this happens and if there's a fix or will be?
Any help would be appreciated.
Upvotes: 2
Views: 101
Reputation: 81
I have a work around that did the job for me:
Upvotes: 0
Reputation: 1140
To remove it from the csproj
instead of the "notepad solution" you can also choose to unload
the project from Visual Studio and edit it, before load
it again.
Upvotes: 0
Reputation: 1817
Edit the cs.proj file in notepad and remove the Global.asax entry.
Upvotes: 3