-
Deployment question
Hello all,
I am new to VS 2008 and I was trying to deploy an application to another PC via a thumb drive. Once the Setup folder was created, I tried to install it on the PC and it said I need to install .NET framework 3.5. I have my project set to 2.0. I also noticed after trying this, that some of my forms are missing some of the components and will not open the design environment because of "Show Call Stack" errors. Any advice?
-
Re: Deployment question
You really need to have the frameworks installed if you want it to work.
-
Re: Deployment question
How would I find out what Framework version is on the PC now? It already has an application loaded on it that someone else did. I think they used 2.0 to develop the app.
-
Re: Deployment question
You can see which frameworks is installed on the computer itself. (Configuration - Software)
If 2.0 is installed, then it doesn't mean that 3.5 is installed. Those are different frameworks.
-
Re: Deployment question
If you have set your project to 2.0, then you should be able to run it on computers with 2.0 installed. Works for me.
-
Re: Deployment question
Its better to use a "setup project". It will check if the framework is installed etc. Take a look at this:
http://msdn.microsoft.com/en-us/libr...(v=VS.71).aspx
-
Re: Deployment question
-
Re: Deployment question
Are you using VB Express or Visual Studio? As .NET 3.5 is the default in VS 2008, did you change the target Framework when you created the project or afterwards? How exactly did you deploy: Windows Installer by Setup project, ClickOnce by publishing or just XCOPY by copying the file(s) directly? Exactly when and how did it say that .NET 3.5 was required?
-
Re: Deployment question
Moved To Application Deployment