The type or namespace name 'WizardFramework' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
When I b开发者_StackOverflow中文版uild a Add-in, wizard project, I got this error message:
Error 7 The type or namespace name 'WizardFramework' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) D:\soamol\soam\SDK\IDEIntegrations\VisualStudio\SymVSIntegration\SymCsOnboardingWizard\Wizard\OnboardingPage4_AppDetails.cs 3 17 SymCsOnboardingWizard
VS2008 .Net3.5 sp1
Can anyone help me?
Have you added the Microsoft.SqlServer.Management.SqlWizardFramework.dll
assembly as a reference to your project?
You will also need to add a using Microsoft.SqlServer.Management.SqlWizardFramework;
statement to the top of the code file you want to use this class in.
精彩评论