What is deps.json, and how do I make it use relative paths?

后端 未结 4 1889
南旧
南旧 2020-12-25 10:27

I\'m setting up an ASP.NET Core project on TeamCity. The binaries it builds crash on startup on other machines. The error message shows that it is looking for dlls in paths

4条回答
  •  遥遥无期
    2020-12-25 10:56

    If you are using the newer .csproj format

    Adding false under the tag fixed the issue for me.

    
        netcoreapp1.1
        false
    
    

提交回复
热议问题