how to delete Project in vb.net

  • Thread starter Thread starter Charles Watson
  • Start date Start date
C

Charles Watson

how to delete Project in vb.net? I want to delete the
Project and all of its assemblies.
 
* "Charles Watson said:
how to delete Project in vb.net? I want to delete the
Project and all of its assemblies.

Delete the folder that contains the files. What's the problem?
 
This is a web project. I noticed the created assemblies had many
different paths. Is it necessary to run a search for the project name
and delete all references to it?
 
H Charles,

It is on the webserver that you did use for the project.

It depends on how you manage your IIS how to do that, it is not that easy as
with a window form and you have to do it carefully.

But you it in the same way as websites that you create on your webserver.

So there are 2 places, in your project directory as Herfried said and on
your webserver.

I hope this helps a little bit?

Cor
 
* Charles Watson said:
This is a web project. I noticed the created assemblies had many
different paths. Is it necessary to run a search for the project name
and delete all references to it?

You will go onto your webserver and delete the project's folder on the
webserver too. You can do that in the IIS configuration tool.
 
Back
Top