How to remove code added to a .dll component?
I have myProject.dll component in /bin directory with several .vb code added into it, and I want to remove some .vb files added (compiled) to that myProject.dll.
To compile the .vb files I use the command line compiler, I don’ t use any IDE tool, so I need to know how to remove that .vb files from the command line compiler.
To compile them, now I use this cmd.exe file:
Code:
@echo off
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\vbc.exe /nologo /target:library /out:bin/myProject.dll newCodeBehind.vb /r:system.dll /r:system.web.dll /r:system.data.dll
PAUSE
How can I do it so that I can remove the newCodeBehind.vb file from the myProject.dll component once compiled/added on it?
Thank you,
Cesar
Re: How to remove code added to a .dll component?
In this page:
http://msdn.microsoft.com/library/de...bycategory.asp
There is a list of Visual Basic Compiler Options Listed by Category, but I can' t see any option to do what I want. Do you see any option to do it?
Thank you