views:

29

answers:

1

How to know the minimum system requirement for a .NET application? say, what should be the system configuration to run the application? How to provide the minimum system configuration, required to run the aplication?

RAM ?, Processor ? and all.

Application uses dotNetFramework3.5 and DirectX9 made in C#.

Is it all about trial and error .. try to run the aplication in minimum possible system resource, Or there are some tools.

A: 

Usually you try it out on different hardware and keep note on how well it runs. From that you'll be able to deduce what is needed or recommended. I am not aware of other methods. Certainly you can't go around and say "Hey, this IL instruction here will totally need a Pentium 4".

Joey