how can include .netframeworl 2.0 in application setup
Answer Posted / vinay babu mandava
You can put .Net Framework 2.0 as Prerequisites for your setUp
Project.
This can be done in the following way.
Right click on you setup project and select Proprties and a
dialog box appears and now click on Prerequisites button
and now select what ever you want.
Thanks,
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
What are access modifiers in c#?
What is delegates in c#?
What is distribute by in hive?
What is a namespace server?
What is the default modifier for class in c#?
What are the Configuration files in .net?
Differentiate between dataset and datareader?
What does the dispose method do with the connection object?
What is lazy loading entity framework?
Constructor to an arbitrary base constructor?
What is c sharp used for?
What is type keyword in c#?
What is the main usage of keyword “virtual†? How does it work for a method or property?
Can we instantiate abstract class in c#?