Get Visual Studio to build the same DLL for the same C # source
3 answers
The way out will be different, I don't think you can control it.
You can probably skip the compilation step for a specific project that hasn't changed and copied an earlier version instead. I would not recommend this, because this kind of wins was the purpose of the build process. Many development teams automatically get the build process, incrementing the version number even if there were no changes, just to indicate which assembly created the DLL.
I'm just wondering why you want the result to be the same? You may be correcting the symptom, not the cause. If you didn't expect any changes in the output, why start building in the first place?
0
a source to share