In a .csproj file, what is for?

后端 未结 8 662
北恋
北恋 2020-12-23 20:02

How is


different from


?<

8条回答
  •  一向
    一向 (楼主)
    2020-12-23 20:48

    I have a project that contains no compilable items (it stores html and javascript for jasmine unit tests).

    One day my solution (that contained said project) stopped compiling saying "The target "Build" does not exist in the project".

    I added an import to bring in the compiler, which worked fine on my machine but failed using msbuild on the build server.

    
    

    I then changed a line from

    
    

    to

    
    

    and it worked on the build server as well.

提交回复
热议问题