c# - Compile a library without checking references -
i given legacy solution not buildable due broken references, code etc.
there 50 library-projects , need make slight change 1 of these library, compile library , use in production working system deployed.
i don't want make long way making solution buildable, fixing hundreds of issues etc.
is there way skip reference checking , build needed library?
you can (taking backup , then)
- collect of dll/assemblies
- remove of projects don't build solution
- then include dll's directly reference via add reference -> browse , selecting dll's
this work if can right dll's match source version trying rebuild. whilst should case (version control etc) - experience tells me can hardest part.
Comments
Post a Comment