Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How to create a packaged executable

0 views
Skip to first unread message

Scott Capistrant

unread,
Dec 29, 2003, 4:59:30 PM12/29/03
to
I am relatively new to the VB.net platform. How would I
create a packaged exe that can run outside of my computer
(i.e. load the needed dll's and such). Thanks.

Jan Tielens

unread,
Dec 29, 2003, 5:05:24 PM12/29/03
to
You can add a setup project to your solution. In VS.NET, just right-click on
the Solution node in the Solution Explorer. Then choose "Setup Project" in
the Setup and Deployment Projects. If you want to deploy the .NET Framework
with your project, take a look at the .NET Bootstrapper plugin:
http://tinyurl.com/2b4sj

--
Greetz,
Jan
__________________________________
Read my weblog: http://weblogs.asp.net/jan
"Scott Capistrant" <sco...@calculated.com> schreef in bericht
news:040501c3ce57$08e9ea10$a101...@phx.gbl...

CMG

unread,
Dec 29, 2003, 5:08:59 PM12/29/03
to
You prettymuch only need the Microsoft .NET Framework to
run your VB.NET applications.

You can find it here
( http://www.microsoft.com/downloads/details.aspx?
FamilyId=262D25E3-F589-4842-8157-
034D1E7CF3A3&displaylang=en ) (Redistributable Package)

>.
>

CMG

unread,
Dec 29, 2003, 5:13:13 PM12/29/03
to
Hmmm, nice, this is way better then my solution :)
>.
>

Herfried K. Wagner [MVP]

unread,
Dec 29, 2003, 5:22:12 PM12/29/03
to
* "Scott Capistrant" <sco...@calculated.com> scripsit:

> I am relatively new to the VB.net platform. How would I
> create a packaged exe that can run outside of my computer
> (i.e. load the needed dll's and such). Thanks.

Create a setup project for the application (VS.NET includes a Setup
Wizard, the Standard Edition of VB.NET includes a project template for
setups only). In the setup, you can include the .NET Framework, which
is required for the execution of the application on the target machine:

Framework 1.0:

.NET Framework Deployment Guide
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid.asp>

Using Visual Studio .NET to Redistribute the .NET Framework
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy.asp>

Framework 1.1:

Redistributing the .NET Framework 1.1
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/redistdeploy1_1.asp>

.NET Framework 1.1 Deployment Guide
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetframedepguid1_1.asp>

.NET Framework 1.1 Redistributable Prerequisites
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/NETFx1Redistreq1_1.asp>

.NET Framework Redistributable Package 1.1 Technical Reference
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetfxref1_1.asp>

Using Visual Studio .NET 2003 to Redistribute the .NET Framework
<http://msdn.microsoft.com/library/en-us/dnnetdep/html/vsredistdeploy1_1.asp>

Visual Studio .NET Framework Bootstrapper Plug-in
<http://workspaces.gotdotnet.com/vsboot>

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

0 new messages