C # - Visual studio - posting prerequisite errors

I have an application that uses .net 3.5 (created in C # - Visual Studio 2010). The application works fine, but if I try to publish and establish the prerequisites for using the same location as the application, I get this:

Error 2 The installation location for the required components was not installed on the "component provider website", and the file "DotNetFX35SP1 \ dotNetFX20 \ aspnet.msp" in the ".NET Framework 3.5 SP1" element could not be located on the disk. For more information, see Help. Aplication

I have the framework installed as well as the suite, but I think I need to put files somewhere ... but I don’t know where.

Can anyone help me out?

+3
source share
1 answer

According to this page :

The reason is that we sent .NET. Frameworks 3.5 SP1 package as Homesite Only, i.e. It only supports "Install Prerequisites from a Component Provider Website". We did this so that the size of VS 2008 SP1 is too large.

We put the information in the SP1 update file on how to get the files on the machine to enable the self-terminating script. Search for "Enable Sobes."

http://download.microsoft.com/download/A/2/8/A2807F78-C861-4B66-9B31-9205C3F22252/VS2008SP1Readme.htm

+4
source

All Articles