deploying Release folder
-
I have an application and I am going to deploy it without making an EXE. J’t copy the release folder and run it. Are there any wrong of that or any disadvantage?
-
I have an application and I am going to deploy it without making an EXE. J’t copy the release folder and run it. Are there any wrong of that or any disadvantage?
What do you mean without an EXE? The Release folder will contain an exe if the project type was console or winform application.
Work @ Network integrated solutions | Flickr | A practical use of the MVC pattern
-
What do you mean without an EXE? The Release folder will contain an exe if the project type was console or winform application.
Work @ Network integrated solutions | Flickr | A practical use of the MVC pattern
yes i did a mistake writting that..Ok t'me is that same we deploy the release folder and makeing an installation file.. Any disadvantage deploying release folder?
-
yes i did a mistake writting that..Ok t'me is that same we deploy the release folder and makeing an installation file.. Any disadvantage deploying release folder?
If you have a simple application that doesn't need work done before first run it's OK. You can just xcopy the directory. If you have a more complex application you may be needing a setup program created. The setup application lets users choose components, location, language, etc for the application (i.e. the work that has to be done before the first run).
Work @ Network integrated solutions | Flickr | A practical use of the MVC pattern