.net - How can I enforce VS to include the assemblies used in GAC to be copied to the output folder? -
i have installed openxml sdk development machine , registered relevant assemlies gac far can see. (for example: documentformat.openxml)
i developed console app.
but thing want deploy app on server there no openxml sdk installed.
question: how can enforce visual studio include assemblies used in gac copied output folder? (or should find assemblies , take re-create of them side side console app's output folder instead?)
yes, this:
mark referencescopy local = true. puts dlls in bin folder after build. that might plenty you, these next steps if want add together source command other devs/build servers can find assemblies:
then move them bin other folder in solution. remove original reference. add new reference new location have copied to.it's pretty much same solution going do, copy local step helps find exact dll beingness used rather hunt around gac.
.net visual-studio-2010 deployment assemblies gac
No comments:
Post a Comment