static linked Windows Forms application project

  • Thread starter Thread starter Jakanapes
  • Start date Start date
J

Jakanapes

Hi all,

I'm new to VS2005 and I'm having trouble getting my executable to run
on another machine.

It's a Windows Forms app. and both PCs have the .NET framework
installed. However, I still get the "This application has failed to
start because the application configuration is incorrect" error.

Is there a way to make the Windows Forms compile using static
libraries? From nosing around the web, it seems like this would fix
the problem.
 
I'm new to VS2005 and I'm having trouble getting my executable to run
on another machine.

It's a Windows Forms app. and both PCs have the .NET framework
installed. However, I still get the "This application has failed to
start because the application configuration is incorrect" error.

The .NET 2.0 framework? because that is what VS2005 builds against.
..NET 1.x will not suffice.
Apart from that, does you app perhaps have any other dependencies?
Is there a way to make the Windows Forms compile using static
libraries? From nosing around the web, it seems like this would fix
the problem.

Static linking is not suported for managed applications.
Compiling with /clr mandates the use of dynamic crt.

--

Kind regards,
Bruno van Dooren
(e-mail address removed)
Remove only "_nos_pam"
 
Back
Top