release problem

  • Thread starter Thread starter Leo
  • Start date Start date
L

Leo

hi all,

I have never programmed something in Visual Studio .NET before so here is my
newbie question:

I built this nice little application. It runs quite fast on my development
PC, then I try to run it on my customers machine and there is an
initialization error and on the machine of a friend I get a .dll missing
error.

I built the application with the release option and copied all files in the
/bin directory to the other machines.

All machines have Win2000 with the newest SP. The application is very
simple.

Where is my problem ?

Thanks,
-Leo
 
* "Leo said:
I have never programmed something in Visual Studio .NET before so here is my
newbie question:

I built this nice little application. It runs quite fast on my development
PC, then I try to run it on my customers machine and there is an
initialization error and on the machine of a friend I get a .dll missing
error.

I built the application with the release option and copied all files in the
/bin directory to the other machines.

All machines have Win2000 with the newest SP. The application is very
simple.

You will have to deploy the .NET Framework with your application, for
example in a Setup:

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>
 
Back
Top