Client Installation problems..
-
I am new to .NET I have completed my project and want to deploy the files to a clilent machine. How do I go about it? I have created the setup files. But installing these on clients system dosent run them properly.. It closes after some time. (Fatal error comes). What files do I need to copy to the setup? I have copied the exe files from the debug folder iniside my project folder.. Do I have to build the project on Release mode and then take the exe's? Does copying the exe's will solve the purpose or do I have to copy some other files?? Please help me..
-
I am new to .NET I have completed my project and want to deploy the files to a clilent machine. How do I go about it? I have created the setup files. But installing these on clients system dosent run them properly.. It closes after some time. (Fatal error comes). What files do I need to copy to the setup? I have copied the exe files from the debug folder iniside my project folder.. Do I have to build the project on Release mode and then take the exe's? Does copying the exe's will solve the purpose or do I have to copy some other files?? Please help me..
ptr2void wrote:
Do I have to build the project on Release mode and then take the exe's?
Yes, but you also need the .NET framework.
Christian Graus Please read this if you don't understand the answer I've given you "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
I am new to .NET I have completed my project and want to deploy the files to a clilent machine. How do I go about it? I have created the setup files. But installing these on clients system dosent run them properly.. It closes after some time. (Fatal error comes). What files do I need to copy to the setup? I have copied the exe files from the debug folder iniside my project folder.. Do I have to build the project on Release mode and then take the exe's? Does copying the exe's will solve the purpose or do I have to copy some other files?? Please help me..
you should make your setup through setup wizard... and it's better to point your exe from release folder... by making setup through setup wizard it automatically includes the dependencies which u may be missing while making setup by yourself
-
you should make your setup through setup wizard... and it's better to point your exe from release folder... by making setup through setup wizard it automatically includes the dependencies which u may be missing while making setup by yourself
Nouman Bhatti wrote:
you should make your setup through setup wizard... and it's better to point your exe from release folder... by making setup through setup wizard it automatically includes the dependencies which u may be missing while making setup by yourself
Could you please tell me how can I make my setup through the wizard?
-
I am new to .NET I have completed my project and want to deploy the files to a clilent machine. How do I go about it? I have created the setup files. But installing these on clients system dosent run them properly.. It closes after some time. (Fatal error comes). What files do I need to copy to the setup? I have copied the exe files from the debug folder iniside my project folder.. Do I have to build the project on Release mode and then take the exe's? Does copying the exe's will solve the purpose or do I have to copy some other files?? Please help me..
.NET is very easy to deploy. If you only use the built in functionality, ie. no external dll's, you can simply move the exe and run it. Assuming that you have the correct .NET Framework installed. There are minor differences between Debug and Release mode and I don't think this is the reason for the crash. If the program closes after some time it seems more likely that you have a bug that you need to fix in your program.
-
Nouman Bhatti wrote:
you should make your setup through setup wizard... and it's better to point your exe from release folder... by making setup through setup wizard it automatically includes the dependencies which u may be missing while making setup by yourself
Could you please tell me how can I make my setup through the wizard?
when u make a new project there's a option of setup wizard....