I have a C# application which needs to run on a client's machine but the client does not want to have to install the .NET framework. He wants my application to run 'as-is' from a CD or a PenDrive.
How do I make this happen?
I have a C# application which needs to run on a client's machine but the client does not want to have to install the .NET framework. He wants my application to run 'as-is' from a CD or a PenDrive.
How do I make this happen?
You need the appropriate version of the .NET framework installed in order to run .NET applications. That's pretty much a requirement.
It's just like trying to run a Java application without the JRE installed, or a PHP application without PHP.
Sorry but this is not possible. You need the .NET framework on the machine with the C# code on as the C# code relies on .NET to actually DO anything.