I have a windows application written in C#. I need to distribute this
app.
What are the files you need to do this. I know that the machines are
to be installed .NET SDK. I just need to know what are the files from
my project that should be copied to the destination machines.

Thanks in advance

Re: Deployment issue by Ed

Ed
Wed Feb 11 16:26:02 CST 2004

You need to distribute:
- The .EXE
- The .DLLs that your project uses (that aren't part of the .NET Framework)
- The other resources your app uses at runtime (such as images,
configuration files, etc) that aren't embedded into the binaries (you'll
have to make sure the path to these files stays consistent across machines)

"James" <james_morris1232000@yahoo.com.au> wrote in message
news:e6b95b66.0402111422.2cbaeb21@posting.google.com...
> I have a windows application written in C#. I need to distribute this
> app.
> What are the files you need to do this. I know that the machines are
> to be installed .NET SDK. I just need to know what are the files from
> my project that should be copied to the destination machines.
>
> Thanks in advance



Re: Deployment issue by hirf-spam-me-here

hirf-spam-me-here
Wed Feb 11 17:06:20 CST 2004

* james_morris1232000@yahoo.com.au (James) scripsit:
> I have a windows application written in C#. I need to distribute this
> app.
> What are the files you need to do this. I know that the machines are
> to be installed .NET SDK. I just need to know what are the files from
> my project that should be copied to the destination machines.

All components your application uses. If your app (EXE) only requires
some .NET DLLs and resources (images, ...), you will just have to
copy all of these files into a folder on the destination computer.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Re: Deployment issue by Rob

Rob
Wed Feb 11 17:45:57 CST 2004

I may be missing something in the other replies, but using vb.net I just
create a setup project to create an msi file. Right click the solution, add
new project, setup and deployment project.....




"James" <james_morris1232000@yahoo.com.au> wrote in message
news:e6b95b66.0402111422.2cbaeb21@posting.google.com...
> I have a windows application written in C#. I need to distribute this
> app.
> What are the files you need to do this. I know that the machines are
> to be installed .NET SDK. I just need to know what are the files from
> my project that should be copied to the destination machines.
>
> Thanks in advance