0

Im stumped: 0 Errors, 0 Warnings, 0 Messages but the output window says
Build: 1 succeeded or up-to-date, 1 Failed, 0 Skipped

I have two projects, A is a web application, B is a dll referenced by A. B by its self builds ok.

What could be wrong?

robasta
  • 4,621
  • 5
  • 35
  • 53

3 Answers3

1

In *.sou file there is user preferences and most of time if you change directory(downloading project ) of project those remains unchange. Even some time migration doesn't work properly.So simply deleting *.suo file and re opening project will solve in most cases. Cleaning all bin directories may also help. If none help I think moving project to another place and repeat the steps above will help.

In your situation I think excluding the file cause an override on *.suo file best guess.

Halis Yılboğa
  • 850
  • 10
  • 12
0

I excluded the App_Readme folder from the project and it started building. Not sure why I have to exclude the folder though. The folder was added when i added Glimpse from NuGet.

robasta
  • 4,621
  • 5
  • 35
  • 53
0

I had this happen to me too. The problem was I had the following code

Sub Page_UnLoad()  Handles Me.UnLoad
    objConn.Close()
    objConn = Nothing
End Sub

I removed the Page_UnLoad Sub and it compiled and ran as expected.

mnmoondog
  • 21
  • 1