For some reason, our dev deployment is done by copying an updated .dll file to the GAC (Global Assembly Cache) by dragging and dropping it to the C:\Windows\Assembly folder.
I tried to create a batch script that contains the following code:
XCOPY d:\source\sample.dll c:\Windows\Assembly
but this seems to not work.
I was told it is because dragging the .dll into the Assembly folder does not copy it, but installs it somehow.
Is there a way to do this using a batch?
We do this 20 times per day, so its really time consuming to do this manually every time.