How to prepare setup file to a C# application

  • Thread starter Thread starter Kondapanaidu
  • Start date Start date
K

Kondapanaidu

Hi,
I am using .NET 1.1 with professional 2000.
What are the steps we have to follow to make set up to C# console
application.
My application is having one dll.

Example: Application Name is : tc200 (This is console application)
My Dll name is : installer (This is Class Library file)

Any body help me out.

Please give the step by step guidance.

Thanks in advance.

regards
 
Hello,

If you add a new project to your current solution. The project type will be
a setup project, it is best if you use the setup wizard.

This will add all your application dependancies to the setup.

Regards
Scott Blood
C# Developer
 
For a simple application like this you can also think about option of XCOPY
deployment. You can install .NET Framework 1.1 on target machine if it is not
already installed, and simply copy your DLL and EXE there.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top