is this proper syntax for gacutil to add assembly?
devbrat ghosh
Hi
"Build" consists of the outputs of executing a Build Type - the binaries, test results, build reports, etc.
Compilation is one part of the Build process (the execution of a Build Type) - other parts include:
* Getting sources.
* Running tests.
* Copying files to the drop location.
A Build to be successful only if it compiles with no errors AND executes all of its tests (if any) with no errors. Of course, it must also get all of the sources with no errors or no binaries will ever get generated.
Thanks
Satish Babu
This is the correct syntax for adding an assembly to GAC: gacutil /i AssemblyFileName.dll
1) Is this proper syntax for gacutil to add assembly?
>gacutil i\ assemnly name r\ filepath
2) what is Differnce between compilation and Build (c#)?
thanks
Dev