i trying understand if there way rely on nuget automatic package restore when referencing libraries hosted on github. problem when add library submodule, has it's own /packages/ directory. but, when add csproj library solution since there no dlls in /packages/ directory of submodule, build fails. obviously, easy fix on machine open .sln file submodule i've referenced, build. now, building main solution work since /packages/ folder in submodule populated. but, not can on build server. any way of solving problem without messing submodule? don't want change submodule .csproj because put out of sync origin. ideally love if instruct nuget pull packages referenced submodule .csproj in it's own /packages/ directory. there 2 types of automatic package restore. 1 triggered when build solution within visual studio, , 1 msbuild based , requires modifying project run nuget.exe restore part of build. msbuild based restore enabled selecting enable nuget package resto...
Comments
Post a Comment