Hey all,


The error is:

Reference required to assembly 'System.Configuration.Install' containing the base class 'System.Configuration.Install.ComponentInstaller'. Add one to your project.
However, I have System.Configuration.Install listed as a reference in my project in the solution explorer. Here is some of the code of the ProjectInstaller.vb

Code:
Option Strict On

Imports System.ComponentModel
Imports System.Configuration.Install

<RunInstaller(True)> Public Class ProjectInstaller
    Inherits System.Configuration.Install.Installer

#Region " Component Designer generated code "

....

    Friend WithEvents myServiceProcessInstaller As
              System.ServiceProcess.ServiceProcessInstaller
    Friend WithEvents myWindowsServiceInstaller As
               System.ServiceProcess.ServiceInstaller

....
The errors are on the Friend lines. I am ready to pull my hair out with this one, I know I have something small left out somewhere...

Thanks for any pointers!