1

I have a .NET application that I created using VS2012, targeting .NET framework 4.0, instaled on my local server and I would like to simply create a shortcut for it on my local machine. When I have the .NET Framework 4.0 installed on the local machine, the application runs just fine, as expected.

When I try to run this application without having .NET Framework installed on my local machine, I get the error 0xc0000135, wich is related to the .NET Framework not being installed.

My question is: is there a way to run this application on the local machine installing the .NET Framework only on my local server and not on my local machine?

Thank you

Natan
  • 1,867
  • 13
  • 24

2 Answers2

4

If you wait for next .NET 2015 framework it will be possible. You will be able to creat your own 'mini framework' only with those dll you realy need. I's not an answer for your question but you can read more here: blog post

Marcin
  • 821
  • 12
  • 20
0

Basically no. In order to run applications written in .NET you must have the framework installed on the machine you're trying to run the application on.

Jim Aho
  • 9,932
  • 15
  • 56
  • 87