References from class library are not copied to running project bin folder

后端 未结 3 1530
礼貌的吻别
礼貌的吻别 2020-12-25 12:56

I have a class library that represents my logic layer. To that library I\'ve added a nuget package for Google.Apis.Analytics.v3 - it installed the package and all it\'s depe

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-25 13:09

    If you have 10's of dlls it's easier to do a copy with a postbuild event:

    xcopy "$(ProjectDir)bin\*.dll" $(SolutionDir)MyTargetProject\bin\" /y
    

提交回复
热议问题