in

The ORM Foundation

Get the facts!

ORCAS support

Last post Tue, Dec 11 2007 8:19 by Brian Nalewajek. 12 replies.
Page 1 of 1 (13 items)
Sort Posts: Previous Next
  • Thu, Oct 25 2007 8:22

    ORCAS support

    What's the present situation regarding the CTP and Microsoft Visual Studio 2008 (codename ORCAS). Is NORMA yet installable in that version of VS?
    /Sten
  • Fri, Oct 26 2007 11:55 In reply to

    • Kevin M. Owen
    • Top 500 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Neumont University, South Jordan, Utah
    • Posts 0

    RE: ORCAS support

    We are still working on our final plan for how to deal with some of the versioning and side-by-side issues posed by supporting multiple versions of Visual Studio. We are also waiting for the availability of the redistributable installer for Visual Studio Shell, so that we can determine what components will be included in it. Because of this, we are not yet distributing an "official" installer for the Visual Studio 2008 version of NORMA.
    
    However, NORMA can be built from source for Visual Studio 2008.
    You need to have the Visual Studio 2008 SDK installed. The latest publicly available version is the August 2007 release (http://www.microsoft.com/downloads/details.aspx?FamilyID=D9000E2C-BD3F-4717-A181-723960814E16).
    
    Once you have the VsSDK installed, and the source code for NORMA downloaded (information about the public mirror of our Subversion repository is available at https://sourceforge.net/svn/?group_id=158881), run the following commands in the "trunk" directory:
    
    SET TargetVisualStudioVersion=v9.0
    FirstTimeBuild.bat
    
    Make that the command prompt from which you run these commands is elevated if you are running Vista or Server 2008. Also, make sure it is a 32-bit command prompt ("%SystemRoot%\SysWOW64\cmd.exe") if you are running on an x64 system.
  • Fri, Oct 26 2007 12:35 In reply to

    RE: ORCAS support

    Hi Kevin,
    
    I did hear that one significant feature of VS 2008, is the ability to use versions 2.0, 3.0 or 3.5 of the .Net framework, side by side.  That should help versioning the tool somewhat.  The framework to use is selectable at the time of project type selection.  I asked, and it seems pretty much set that the 3.5 framework will be formalized by the time of the release of the VS 2008.  They said that SilverLight 1.1 would be out the same time - I had heard last month that the neither the 3.5 framework nor the 1.1 of silver light would be ready for the VS 2008 release; so I guess we'll see.  The MS reps were non-committal on time line for "Astoria" initiative (anywhere from a few weeks to a year).
    
    BRN..  
  • Fri, Oct 26 2007 13:43 In reply to

    • Kevin M. Owen
    • Top 500 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Neumont University, South Jordan, Utah
    • Posts 0

    RE: ORCAS support

    Hi Brian,
    
    The .NET Framework 3.5 will definitely be ready at the same time as (if not prior to) VS2008 being ready; it is a hard dependency of VS2008, without which VS2008 can't even run.
    Although the "launch event" for Visual Studio 2008 is February 27, 2008, the actual RTM and release will almost certainly be before the end of this year. As far as I have heard, there are no more betas / CTPs planned, and the bar for changes has been extremely high for several months now. In fact, I wouldn't be surprised if VS2008 was released by the end of November (although that is half me making an educated guess and half me being hopeful).
    As for Silverlight 1.1, I haven't followed its development as closely, so I'm not sure what the release timeline is for it.
    The same goes for "Astoria", although I do recall hearing that it is still at a pretty early stage, so it might be a while.
    
    In terms of the versioning issues we are dealing with, we don't really have any problems with the .NET Framework itself. In that regard, the CLR team has done a very good job; everything "just works." There are some issues with Visual Studio and MSBuild, but they are relatively minor and can probably be worked around.
    With DSL Tools, on the other hand, we have a greater difficulty, since even our core object model depends on it, as do any and all of our extensions (e.g. OIAL, Conceptual Database, Custom Properties, etc.). If we end up having to create two different assemblies (one for the VS2005 version of DSL Tools - 8.2.0.0, and one for the VS2008 version of DSL Tools - 9.0.0.0), all of the extensions would need to create two assemblies as well. This presents serious versioning, maintainability, and interoperability issues. We are still evaluating our options, and haven't yet made a final decision regarding how we are going to handle this.
    
    Kevin
  • Sat, Oct 27 2007 9:44 In reply to

    RE: ORCAS support

    Hi Kevin, 
    Thanks for the added info.  I was wondering about the DSL tools in VS 2008, but I had forgotten to ask specifically about these.
    
    My take on SilverLight 1.0 and 1.1 is that 1.0 is out there now as more of a way for web developers to get started with the technology, but that the really interesting stuff will happen when 1.1 is released.  1.1 requires .Net 3.5 extensions, so part of that will be in place soon.  The other factor is (again my take), that the IDEA of what 1.1 will be enable has ratcheted up the requirements - which generates more possibilities, so more stuff to try to add in, etc....  There also seems to be a legitimate push to make more of it into an open standard; so other parties may want some stuff settled before they will commit.  I was told the links between Expression (design suite), and VS will remain the same for VS 2005 and 2008.  I'm not clear on the amount of XAML support in VS 2008 itself, or how much Expression tools will need to be upgraded to take advantage of 1.1.  I was told not to expect live integration between the designer suite and VS in this go 'round - though that's the goal.  I should be getting the Expression suite in a couple of weeks, and will likely grab the latest VS 2008 RC.  BTW, I did put Windows Server 2008 RC0 on a box, and that has been very stable so far.  That too is slated for Feb 2008 release, so maybe the idea is one big launch party.
    
    Astoria was explained as "Patterns and libraries, enabling data to be exposed as data services, and consumed by web clients" (taken to mean the WWW or anything that works that way).  The intension is to allow access to data in disparate sources to be done in a more web-like, and less SQL like syntax.  As specific web resources can be accessed by ever more specific URLs, so data is to be accessed by drilling down through entities. The example was that if the data source had a RDBMS table like Customers, Customer0 would be an entity; and you could access that customer's shipping address as Customer0.ShippingAddress (while Customer0.* would give you all the data associated with that customer, in that source).  As the goal is universal data access, a similar method will allow access to other types of data sources.  From one perspective, it won't matter (to the consumer), where the data resides; as you might not care where on the web you find the Mark Twain quote, football score, or song lyrics, you were looking for.  I heard that the data retrieved will be in a format selectable by the consumer: XML, JSON, ATOM/APP.  Until last week, I hadn't heard about Astoria, and I haven't had a chance to check out the references on it yet - but it looks interesting.  There's another codename project called Jasper, but that's even farther out.  
    
    BRN..
  • Tue, Oct 30 2007 17:55 In reply to

    • Richard
    • Top 100 Contributor
      Male
    • Joined on Sat, Mar 8 2008
    • Posts 4

    RE: ORCAS support

    OK, I tried to build manually and I must have screwed up somewhere.... Here is the full log, but it seems some files were either missing or were not included with the projects...
    
    Any way to uninstall and try again?
    
    Here is the build log if it helps...
    
    *************************************************************
    Build started 10/30/2007 2:42:19 PM.
    __________________________________________________
    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuild\NUBuild.sln" (default targets):
    
    Target ValidateSolutionConfiguration:
        Building solution configuration "NUBuild|Any CPU".
    Target Build:
        Target NUBuild:
            __________________________________________________
            Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuild\NUBuild.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuild\NUBuild.csproj" (default targets):
    
            Target PreBuildEvent:
                "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuild\..\..\VersionGenerator.exe"
                VersionGenerator.exe: Version.cs already up to date.
                VersionGenerator.exe: Version.wxi already up to date.
                VersionGenerator.exe finished successfully.
            Target CoreCompile:
              Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
            Target CopyFilesToOutputDirectory:
                NUBuild -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuild\bin\Neumont.Build.dll
    
    Build succeeded.
        0 Warning(s)
        0 Error(s)
    
    Time Elapsed 00:00:00.18
    Build started 10/30/2007 2:42:19 PM.
    __________________________________________________
    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuildVS\NUBuildVS.sln" (default targets):
    
    Target ValidateSolutionConfiguration:
        Building solution configuration "NUBuildVS|Any CPU".
    Target Build:
        Target NUBuildVS:
            __________________________________________________
            Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuildVS\NUBuildVS.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuildVS\NUBuildVS.csproj" (default targets):
    
            Target PreBuildEvent:
                "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuildVS\..\..\VersionGenerator.exe"
                VersionGenerator.exe: Version.cs already up to date.
                VersionGenerator.exe: Version.wxi already up to date.
                VersionGenerator.exe finished successfully.
            Target CoreCompile:
              Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
            Target CopyFilesToOutputDirectory:
                NUBuildVS -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\NUBuildVS\bin\Neumont.Build.VisualStudio.dll
            Target InstallInGac:
              Skipping target "InstallInGac" because all output files are up-to-date with respect to the input files.
            Target GenerateNativeImage:
              Skipping target "GenerateNativeImage" because all output files are up-to-date with respect to the input files.
    
    Build succeeded.
        0 Warning(s)
        0 Error(s)
    
    Time Elapsed 00:00:00.18
    Build started 10/30/2007 2:42:19 PM.
    __________________________________________________
    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\DevTools.proj" (default targets):
    
    Target Build:
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\DevTools.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\DisableRuleDirectiveProcessor\DisableRuleDirectiveProcessor.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "DisableRuleDirectiveProcessor|Any CPU".
        Target Build:
            Target DisableRuleDirectiveProcessor:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\DisableRuleDirectiveProcessor\DisableRuleDirectiveProcessor.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\DisableRuleDirectiveProcessor\DisableRuleDirectiveProcessor.csproj" (default targets):
    
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target CopyFilesToOutputDirectory:
                    DisableRuleDirectiveProcessor -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\DisableRuleDirectiveProcessor\bin\Neumont.Tools.Modeling.DisableRuleDirectiveProcessor.dll
                Target InstallInGac:
                  Skipping target "InstallInGac" because all output files are up-to-date with respect to the input files.
                Target GenerateNativeImage:
                  Skipping target "GenerateNativeImage" because all output files are up-to-date with respect to the input files.
                Target PostBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\DisableRuleDirectiveProcessor\Install.bat"
                    The operation completed successfully.
                    
                    The operation completed successfully.
                    
                    The operation completed successfully.
                    
    
    Build succeeded.
        0 Warning(s)
        0 Error(s)
    
    Time Elapsed 00:00:00.23
    Building help project. This may take several minutes...
    WARNING: Problems were encountered while building help project. Error level: 3 
    Press any key to continue . . . 
    Finished building help project.
    Build started 10/30/2007 2:42:21 PM.
    __________________________________________________
    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" (default targets):
    
    Target Build:
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ORMPackage.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target ORMModel:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ORMPackage.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ORMModel\ORMModel.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target VsctCompile:
                    No out of date dependencies, skipping execution.
                Target MergeResources:
                  Skipping target "MergeResources" because all output files are up-to-date with respect to the input files.
                Target CoreCompile:
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1607,1701,1702 /errorreport:prompt /warn:4 /doc:bin\Debug\Neumont.Tools.ORM.xml /define:TRACE;DEBUG;VISUALSTUDIO_9_0;NET_2_0;NET_3_0;NET_3_5 /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\EnvDTE.dll" /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\EnvDTE80.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Diagrams.GraphObject.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Shell.dll" /reference:C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.Modeling.Sdk.Utilities\9.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Modeling.Sdk.Utilities.dll /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.OLE.Interop.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Package.LanguageService.9.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.9.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.Interop.8.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.Interop.9.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.Interop.dll" /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.TemplateWizardInterface.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.TextManager.Interop.8.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.TextManager.Interop.dll" /reference:C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.VirtualTreeGrid\9.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.VirtualTreeGrid.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Design.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.Design.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll /debug+ /debug:full /keyfile:..\ORMPackage.snk /optimize+ /out:obj\Debug\Neumont.Tools.ORM.dll /resource:obj\Debug\Neumont.Tools.ORM.Shell.ReadingEditor.resources /resource:obj\Debug\Neumont.Tools.ORM.ObjectModel.ORMModel.resources /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ORMDiagram.resources /resource:obj\Debug\Neumont.Tools.Modeling.Diagnostics.TransactionLogViewer.resources /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.GeneratedCode.DomainModelResx.resources,Neumont.Tools.ORM.GeneratedCode.ShapeDomainModelResx.resources /resource:obj\Debug\Neumont.Tools.ORM.ObjectModel.ORMCoreDomainModel.resources /resource:obj\Debug\Neumont.Tools.ORM.ObjectModel.GeneratedCode.DomainModelResx.resources,Neumont.Tools.ORM.GeneratedCode.CoreDomainModelResx.resources /resource:obj\Debug\Neumont.Tools.ORM.Shell.GenerateReportDialog.resources /resource:obj\Debug\Neumont.Tools.ORM.Shell.ModelErrorDisplayFilterForm.resources /resource:obj\Debug\Neumont.Tools.ORM.Shell.SamplePopulationEditor.resources /resource:obj\Debug\Neumont.Tools.ORM.Framework.GeneratedCode.DomainModelResx.resources,Neumont.Tools.Modeling.GeneratedCode.FrameworkDomainModelResx.resources /resource:obj\Debug\Neumont.Tools.ORM.Shell.ImportStepOptionsBase.resources /resource:obj\Debug\Neumont.Tools.ORM.Shell.PackageResources.VSPackage.resources,VSPackage.resources /resource:obj\Debug\Neumont.Tools.ORM.Shell.ORMDesignerSettings.xsd /resource:obj\Debug\Neumont.Tools.ORM.ObjectModel.ORM2Core.xsd /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ORM2Diagram.xsd /resource:obj\Debug\Neumont.Tools.ORM.Shell.ORM2Root.xsd /resource:obj\Debug\Neumont.Tools.ORM.ObjectModel.VerbalizationUntypedSnippets.xsd /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectModelNoteAllowed.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectModelNoteSearching.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectExternalConstraintAllowed.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectExternalConstraintSearching.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectSubtypeSearching.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectSubtypeAllowed.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectRoleAllowed.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectRoleSearching.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectInternalConstraintAllowed.cur /resource:obj\Debug\Neumont.Tools.ORM.ShapeModel.ConnectInternalConstraintSearching.cur /resource:obj\Debug\Neumont.Tools.ORM.Shell.ExtensionStripper.xslt /target:library /win32icon:Resources\ORM.ico Framework\Design\ResourceAccessor.cs Framework\Design\ExpandableElementConverter.cs Framework\Design\DomainTypeDescriptor.cs Framework\Design\ElementTypeDescriptor.cs Framework\Design\ElementTypeDescriptionProvider.cs Framework\Diagrams\Design\DiagramTypeDescriptor.cs Framework\Diagrams\Design\PresentationElementTypeDescriptor.cs Framework\Diagrams\Design\PresentationElementTypeDescriptionProvider.cs Framework\HashSet.cs ObjectModel\Design\FactTypeTypeDescriptor.cs ObjectModel\Design\JoinTypeDescriptor.cs ObjectModel\Design\RoleTypeDescriptor.cs ObjectModel\Design\DataTypeTypeDescriptor.cs ObjectModel\Design\ObjectTypeTypeDescriptor.cs ObjectModel\Design\ReadingTypeDescriptor.cs ObjectModel\Design\MandatoryConstraintTypeDescriptor.cs ObjectModel\Design\UniquenessConstraintTypeDescriptor.cs ObjectModel\Design\ORMModelElementTypeDescriptor.cs ObjectModel\Design\Editors\ORMEditorUtility.cs Framework\Design\EnumConverter.cs ObjectModel\Design\SubtypeFactTypeDescriptor.cs Framework\Design\Editors\SizePreservingEditor.cs Framework\Design\Editors\EditorUtility.cs Framework\Design\Editors\TreePicker.cs Framework\Design\Editors\ElementPicker.cs ObjectModel\Design\Editors\AvailableVerbalizationSnippetsPicker.cs ObjectModel\Design\ReferenceModeConverter.cs ObjectModel\Design\Editors\RolePlayerPicker.cs ObjectModel\Design\Editors\DataTypePicker.cs ObjectModel\Design\Editors\ReferenceModePickers.cs ObjectModel\Design\Editors\ObjectificationPickers.cs ObjectModel\HierarchyContext.cs ObjectModel\UnaryBinarization.cs ShapeModel\Design\ObjectifiedFactTypeNameShapeTypeDescriptor.cs ShapeModel\Design\ORMBaseShapeTypeDescriptor.cs ShapeModel\Design\ORMBaseBinaryLinkShapeTypeDescriptor.cs ShapeModel\Design\ORMPresentationElementTypeDescriptor.cs ShapeModel\Design\FactTypeShapeTypeDescriptor.cs ShapeModel\ModelNoteLink.cs ShapeModel\ModelNoteConnectAction.cs ShapeModel\ModelNoteShape.cs Shell\ORMLayoutEngines.cs Shell\LayoutManager.cs Shell\ORMContextWindow.cs Shell\FactEditor\FactCodeWindowManager.cs Shell\FactEditor\FactColorizer.cs Shell\FactEditor\FactCompletionSet.cs Shell\FactEditor\FactFontsAndColors.cs Shell\FactEditor\FactGuidList.cs Shell\FactEditor\FactLanguageService.cs Shell\FactEditor\FactParser.cs Shell\FactEditor\FactSaver.cs Shell\FactEditor\FactTextViewFilter.cs ObjectModel\SurveyImplementations\CategorySurveyQuestion.cs Framework\Shell\DynamicSurveyTreeGrid\SurveyInterfaces.cs Framework\Shell\DynamicSurveyTreeGrid\ListGrouper.cs Framework\Shell\DynamicSurveyTreeGrid\MainList.cs Framework\Shell\DynamicSurveyTreeGrid\SampleDataElementNode.cs Framework\Shell\DynamicSurveyTreeGrid\SimpleListShifter.cs Framework\Shell\DynamicSurveyTreeGrid\SurveyClasses.cs Framework\Shell\DynamicSurveyTreeGrid\SurveyTreeControl.cs Framework\Shell\DiagramTabPage.cs Framework\Shell\MultiDiagramDocViewControl.cs Framework\Shell\MultiDiagramDocView.cs Framework\Comparers.cs Framework\Utility.cs ObjectModel\ORMCore.SurveyQuestionProvider.cs ObjectModel\SurveyImplementations\FactTypeAnswers.cs ObjectModel\SurveyImplementations\ORMNamedElement.cs ObjectModel\SurveyImplementations\ObjectTypeAnswers.cs Shell\ReadingRichTextBox.cs Shell\SamplePopulationEditor.cs ObjectModel\GeneratedCode\DomainRelationships.cs ShapeModel\GeneratedCode\DomainModel.cs ShapeModel\GeneratedCode\DomainRelationships.cs ShapeModel\GeneratedCode\ConnectionBuilders.cs ShapeModel\GeneratedCode\Connectors.cs ShapeModel\GeneratedCode\Diagram.cs ObjectModel\GeneratedCode\DomainClasses.cs ObjectModel\GeneratedCode\DomainModel.cs ShapeModel\GeneratedCode\Shapes.cs ShapeModel\GeneratedCode\ToolboxHelper.cs ObjectModel\SamplePopulation.cs ObjectModel\VerbalizationSnippetSetsManager.cs ObjectModel\DataType.cs ObjectModel\DataTypesGenerator.cs Shell\ReadingEditor.cs Shell\ReadingEditor.Designer.cs ObjectModel\Design\Editors\ReadingTextEditor.cs Shell\CustomReferenceModeEditor.cs Shell\CustomReferenceModesBranch.cs Shell\IntrinsicReferenceModesBranch.cs Shell\ReferenceModeHeaderBranch.cs Shell\ReferenceModeKindsBranch.cs ObjectModel\Note.cs ObjectModel\Objectification.cs ObjectModel\ORMElementInterfaces.cs ObjectModel\ModelError.cs Framework\NamedElementDictionary.cs Framework\Design\Editors\MultilineTextEditor.cs ObjectModel\Design\Editors\DerivationRuleEditor.cs ObjectModel\Constraint.cs ObjectModel\FactType.cs ObjectModel\ORMCore.DeserializationFixupListeners.cs Shell\ORMReferenceModeEditorWindow.cs ObjectModel\ORMCore.AttachRules.cs ObjectModel\ORMElements.cs ObjectModel\ORMElementUtilities.cs ObjectModel\ORMCoreModel.cs ObjectModel\ReadingOrder.cs ObjectModel\ReferenceMode.cs ObjectModel\ORMCore.SerializationExtensions.cs ObjectModel\SubtypeFact.cs ObjectModel\ValueRange.cs ObjectModel\Verbalization.cs Resources\ResourceStringsGenerator.cs ShapeModel\ORMBaseShapeSubField.cs ShapeModel\ORMShape.SerializationExtensions.cs Shell\ORMToolboxHelper.cs ShapeModel\ORMShape.EventSubscriber.cs ShapeModel\ORMBaseBinaryLinkShape.Extensions.cs ShapeModel\ORMBaseBinaryLinkShape.cs ShapeModel\ORMShape.AttachRules.cs ShapeModel\ORMShape.DeserializationFixupListeners.cs ShapeModel\RingConstraintShape.cs ShapeModel\RoleNameShape.cs ShapeModel\SubtypeLink.cs ShapeModel\SubtypeConnectorAction.cs ShapeModel\ValueRangeLink.cs ShapeModel\ValueRangeShape.cs ShapeModel\FrequencyConstraintShape.cs ShapeModel\InternalConstraintConnectAction.cs Framework\DeserializationManager.cs ShapeModel\RoleConnectorAction.cs Shell\ExtensionManager.cs Shell\ExtensionManager.Designer.cs Shell\ORMModelBrowser.cs Shell\ORMDocDataServices.cs ObjectModel\ORMModelInterfaces.cs ObjectModel\Reading.cs ObjectModel\Role.cs ObjectModel\ObjectType.cs ObjectModel\ORMModel.cs Resources\ResourceStrings.cs ShapeModel\AutoSizeTextField.cs ShapeModel\ExternalConstraintConnectAction.cs ShapeModel\ExternalConstraintLink.cs ShapeModel\CompositeLinkDecorator.cs ShapeModel\ExternalConstraintShape.cs ShapeModel\FloatingTextShape.cs ShapeModel\ORMBaseShape.SubFieldMouseExtensions.cs ShapeModel\FactTypeShape.cs ShapeModel\ObjectTypeShape.cs ShapeModel\ORMBaseShape.cs ShapeModel\ORMDiagram.cs ShapeModel\ReadingShape.cs ShapeModel\RolePlayerLink.cs ShapeModel\ViewFixupRules.cs Shell\OptionsPage.cs Shell\ORMExtensionType.cs Shell\ORMFontsAndColors.cs Shell\ORMCommandSet.cs Shell\ORMDocData.cs Shell\ORMDocView.cs Shell\ORMEditorFactory.cs Shell\ORMModelBrowserCommandSet.cs Shell\ORMNotesWindow.cs Shell\ORMPackage.cs Properties\AssemblyInfo.cs ..\CommonAssemblyInfo.cs ..\Version.cs Shell\IORMSelectionContainer.cs Shell\ORMReadingEditor.cs Shell\ORMSamplePopulationToolWindow.cs Shell\ORMDesignerSettings.cs Shell\ORMToolWindow.cs Shell\ORMVerbalizationToolWindow.cs Shell\SamplePopulationEditor.Designer.cs Framework\FrameworkDomainModel.cs Framework\Diagnostics\TraceUtility.cs Framework\Design\Editors\FlagsEnumEditor.cs Framework\Design\Editors\FlagsEnumListBox.cs Framework\Design\RolePlayerElementPropertyDescriptor.cs Framework\Diagnostics\TransactionLogViewer.cs Framework\Diagnostics\TransactionLogViewer.Designer.cs Framework\Diagrams\CustomFoldShapeGeometries.cs Framework\Diagrams\LayoutEngine.cs Framework\Diagrams\MultiShapeUtility.cs Framework\GeneratedCode\DomainClasses.cs Framework\GeneratedCode\DomainModel.cs Framework\GeneratedCode\DomainRelationships.cs Framework\ModelingEventManager.cs Framework\Framework.AttachRules.cs Framework\Shell\DiagramMenuDisplay.cs Framework\Shell\SerializationEngine.cs ObjectModel\Design\FrequencyConstraintBoundConverter.cs ObjectModel\Design\Editors\FrequencyConstraintMaxPicker.cs ObjectModel\Design\ObjectificationRolePlayerPropertyDescriptor.cs ObjectModel\Design\Editors\ModelErrorDisplayFilterEditor.cs ObjectModel\ModelErrorDisplayFilter.cs ObjectModel\Design\ExclusionConstraintTypeDescriptor.cs ObjectModel\SurveyImplementations\ConstraintAnswers.cs ObjectModel\SurveyImplementations\RoleAnswers.cs ObjectModel\VerbalizationGenerator.cs Shell\ImportStepOptions.cs Shell\ImportStepOptions.Designer.cs Shell\ORMSerializationEngine.cs Shell\FactEditor\FactTokenHelper.cs Shell\FactEditor\FactTokenInfo.cs Shell\FactEditor\NewFactAuthoringScope.cs ObjectModel\VerbalizationReport.cs Shell\FactEditor\NewFactDeclarations.cs Shell\FactEditor\NewFactEditorCommandSet.cs Shell\FactEditor\NewFactLanguageService.cs Shell\FactEditor\NewFactScanner.cs Shell\FactEditor\NewFactSource.cs ObjectModel\VerbalizationReportGenerator.cs Shell\FactEditor\ORMFactEditorToolWindow.cs Shell\GenerateReportDialog.cs Shell\GenerateReportDialog.Designer.cs Shell\ORMGeneralTemplateWizard.cs Shell\PackageResources\PackageResources.cs Shell\ModelErrorDisplayFilterForm.cs Shell\ModelErrorDisplayFilterForm.Designer.cs
                    ShapeModel\ORMBaseBinaryLinkShape.Extensions.cs(349,22): error CS0176: Static member 'Microsoft.VisualStudio.Modeling.Diagrams.ShapeGeometry.GetHitTestTolerance(Microsoft.VisualStudio.Modeling.Diagrams.DiagramHitTestInfo)' cannot be accessed with an instance reference; qualify it with a type name instead
                    ShapeModel\ORMBaseBinaryLinkShape.Extensions.cs(387,21): error CS0176: Static member 'Microsoft.VisualStudio.Modeling.Diagrams.LinkShapeGeometry.CreateDiagramItem(Microsoft.VisualStudio.Modeling.Diagrams.IGeometryHost, Microsoft.VisualStudio.Modeling.Diagrams.LineSegment)' cannot be accessed with an instance reference; qualify it with a type name instead
                    ShapeModel\ORMBaseBinaryLinkShape.Extensions.cs(459,18): error CS0176: Static member 'Microsoft.VisualStudio.Modeling.Diagrams.ShapeGeometry.GetHitTestTolerance(Microsoft.VisualStudio.Modeling.Diagrams.DiagramHitTestInfo)' cannot be accessed with an instance reference; qualify it with a type name instead
                Done building target "CoreCompile" in project "ORMModel.csproj" -- FAILED.
    
                Done building project "ORMModel.csproj" -- FAILED.
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ExtensionExample\ExtensionExample.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target ExtensionExample:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ExtensionExample\ExtensionExample.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ExtensionExample\ExtensionExample.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target CopyFilesToOutputDirectory:
                    ExtensionExample -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ExtensionExample\bin\Debug\Neumont.Tools.ORM.ExtensionExample.dll
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\OIALModel\OIALModel.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target OIALModel:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\OIALModel\OIALModel.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\OIALModel\OIALModel.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target CopyFilesToOutputDirectory:
                    OIALModel -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\OIALModel\bin\Debug\Neumont.Tools.ORM.OIALModel.dll
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\AlternateViews\RelationalView\RelationalView.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target RelationalView:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\AlternateViews\RelationalView\RelationalView.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\AlternateViews\RelationalView\RelationalView.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target CopyFilesToOutputDirectory:
                    RelationalView -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\AlternateViews\RelationalView\bin\Debug\Neumont.Tools.ORM.Views.RelationalView.dll
                Target InstallInGac:
                  Skipping target "InstallInGac" because all output files are up-to-date with respect to the input files.
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\Oial.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target OialModel:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\Oial.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\OialModel\OialModel.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target CopyFilesToOutputDirectory:
                    OialModel -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\OialModel\bin\Debug\Neumont.Tools.ORMAbstraction.dll
                Target InstallInGac:
                  Skipping target "InstallInGac" because all output files are up-to-date with respect to the input files.
            Target ORMOialBridge:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\Oial.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\ORMOialBridge\ORMOialBridge.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target ResolveProjectReferences:
                    __________________________________________________
                    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\ORMOialBridge\ORMOialBridge.csproj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\OialModel\OialModel.csproj" (GetTargetPath target(s)):
    
                    __________________________________________________
                    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\ORMOialBridge\ORMOialBridge.csproj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\OialModel\OialModel.csproj" (GetNativeManifest target(s)):
    
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target GetCopyToOutputDirectoryItems:
                    __________________________________________________
                    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\ORMOialBridge\ORMOialBridge.csproj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\OialModel\OialModel.csproj" (GetCopyToOutputDirectoryItems target(s)):
    
                Target CopyFilesToOutputDirectory:
                    ORMOialBridge -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Oial\ORMOialBridge\bin\Debug\Neumont.Tools.ORMToORMAbstractionBridge.dll
                Target InstallInGac:
                  Skipping target "InstallInGac" because all output files are up-to-date with respect to the input files.
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\Dil.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target DcilModel:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\Dil.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\DcilModel\DcilModel.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target CopyFilesToOutputDirectory:
                    DcilModel -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\DcilModel\bin\Debug\Neumont.Tools.RelationalModels.dll
                Target InstallInGac:
                  Skipping target "InstallInGac" because all output files are up-to-date with respect to the input files.
            Target OialDcilBridge:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\Dil.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\OialDcilBridge\OialDcilBridge.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target ResolveProjectReferences:
                    __________________________________________________
                    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\OialDcilBridge\OialDcilBridge.csproj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\DcilModel\DcilModel.csproj" (GetTargetPath target(s)):
    
                    __________________________________________________
                    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\OialDcilBridge\OialDcilBridge.csproj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\DcilModel\DcilModel.csproj" (GetNativeManifest target(s)):
    
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target GetCopyToOutputDirectoryItems:
                    __________________________________________________
                    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\OialDcilBridge\OialDcilBridge.csproj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\DcilModel\DcilModel.csproj" (GetCopyToOutputDirectoryItems target(s)):
    
                Target CopyFilesToOutputDirectory:
                    OialDcilBridge -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\RelationalModel\OialDcilBridge\bin\Debug\Neumont.Tools.ORMAbstractionToConceptualDatabaseBridge.dll
                Target InstallInGac:
                  Skipping target "InstallInGac" because all output files are up-to-date with respect to the input files.
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\CustomProperties\CustomProperties.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target CustomProperties:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\CustomProperties\CustomProperties.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\CustomProperties\CustomProperties.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target CopyFilesToOutputDirectory:
                    CustomProperties -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\CustomProperties\bin\Debug\Neumont.Tools.ORM.CustomProperties.dll
                Target InstallInGac:
                  Skipping target "InstallInGac" because all output files are up-to-date with respect to the input files.
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\ORMCustomTool\ORMCustomTool.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target ORMCustomTool:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\ORMCustomTool\ORMCustomTool.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\ORMCustomTool\ORMCustomTool.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\ORMCustomTool\..\..\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                  Skipping target "CoreCompile" because all output files are up-to-date with respect to the input files.
                Target CopyFilesToOutputDirectory:
                    ORMCustomTool -> C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\ORMCustomTool\bin\Neumont.Tools.ORM.ORMCustomTool.dll
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\DatabaseImport\DatabaseImport.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target DatabaseImport:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\DatabaseImport\DatabaseImport.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tools\DatabaseImport\DatabaseImport.csproj" (default targets):
    
                Target PreBuildEvent:
                    "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\.\VersionGenerator.exe"
                    VersionGenerator.exe: Version.cs already up to date.
                    VersionGenerator.exe: Version.wxi already up to date.
                    VersionGenerator.exe finished successfully.
                Target CoreResGen:
                    No resources are out of date with respect to their source files. Skipping resource generation.
                Target CoreCompile:
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1607,1701,1702 /errorreport:prompt /warn:4 /doc:bin\Debug\Neumont.Tools.ORM.DatabaseImport.xml /define:TRACE;DEBUG;VISUALSTUDIO_9_0;NET_2_0;NET_3_0;NET_3_5 /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\EnvDTE.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Data.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.OLE.Interop.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.9.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.Interop.8.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.Interop.dll" /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.TemplateWizardInterface.dll" /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll /debug+ /debug:full /keyfile:..\..\ORMPackage.snk /optimize+ /out:obj\Debug\Neumont.Tools.ORM.DatabaseImport.dll /resource:obj\Debug\Neumont.Tools.ORM.DatabaseImport.SchemaSelector.resources /target:library DcilObjectModel.cs SchemaSelector.cs SchemaSelector.Designer.cs IDcilSchemaProvider.cs MySqlDcilSchemaProvider.cs ORMDatabaseImportWizard.cs Properties\AssemblyInfo.cs ..\..\CommonAssemblyInfo.cs ..\..\Version.cs SqlServer2005DcilSchemaProvider.cs
                    ORMDatabaseImportWizard.cs(84,4): error CS0012: The type 'Microsoft.VisualStudio.Shell.Interop.IVsUserSettingsMigration' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.VisualStudio.Shell.Interop.9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
                Done building target "CoreCompile" in project "DatabaseImport.csproj" -- FAILED.
    
                Done building project "DatabaseImport.csproj" -- FAILED.
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Setup.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target Setup:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Setup.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Setup.wixproj" (default targets):
    
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\Product.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v Product.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\Features.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v Features.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\Components.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v Components.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\ComponentGroups.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v ComponentGroups.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\UI.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\CancelDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\CancelDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\Common.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\Common.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\ErrorDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\ErrorDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\ErrorProgressText.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\ErrorProgressText.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\ExitDialog.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\ExitDialog.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\FatalError.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\FatalError.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\FilesInUse.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\FilesInUse.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\MaintenanceTypeDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\MaintenanceTypeDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\MaintenanceWelcomeDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\MaintenanceWelcomeDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\MsiRMFilesInUse.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\MsiRMFilesInUse.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\OutOfDiskDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\OutOfDiskDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\OutOfRbDiskDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\OutOfRbDiskDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\PrepareDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\PrepareDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\ProgressDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\ProgressDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\ResumeDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\ResumeDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\UserExit.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\UserExit.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\VerifyReadyDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\VerifyReadyDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\WaitForCostingDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\WaitForCostingDlg.wxs
                Target Compile:
                    C:\Program Files\Windows Installer XML v3\bin\candle.exe -dDebug -dVISUALSTUDIO_9_0 -dNET_2_0 -dNET_3_0 -dNET_3_5 -d"VsSDKRedistributablesDir=C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Redistributables" -nologo -out obj\Debug\WelcomeDlg.wixobj -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -sw1091 -wx -v UI\WelcomeDlg.wxs
                Target Link:
                    C:\Program Files\Windows Installer XML v3\bin\Light.exe -ext "Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension, WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad" -loc Strings.wxl -nologo -out "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\bin\Debug\Neumont ORM Architect for Visual Studio.msi" -sice:ICE03 -sice:ICE82 -v -wx obj\Debug\Product.wixobj obj\Debug\Features.wixobj obj\Debug\Components.wixobj obj\Debug\ComponentGroups.wixobj obj\Debug\UI.wixobj obj\Debug\CancelDlg.wixobj obj\Debug\Common.wixobj obj\Debug\ErrorDlg.wixobj obj\Debug\ErrorProgressText.wixobj obj\Debug\ExitDialog.wixobj obj\Debug\FatalError.wixobj obj\Debug\FilesInUse.wixobj obj\Debug\MaintenanceTypeDlg.wixobj obj\Debug\MaintenanceWelcomeDlg.wixobj obj\Debug\MsiRMFilesInUse.wixobj obj\Debug\OutOfDiskDlg.wixobj obj\Debug\OutOfRbDiskDlg.wixobj obj\Debug\PrepareDlg.wixobj obj\Debug\ProgressDlg.wixobj obj\Debug\ResumeDlg.wixobj obj\Debug\UserExit.wixobj obj\Debug\VerifyReadyDlg.wixobj obj\Debug\WaitForCostingDlg.wixobj obj\Debug\WelcomeDlg.wixobj
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(23): error LGHT0103: The system cannot find the file '..\ORMModel\bin\Debug\Neumont.Tools.ORM.dll'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(47): error LGHT0103: The system cannot find the file '..\Tools\DatabaseImport\bin\Debug\Neumont.Tools.ORM.DatabaseImport.dll'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(65): error LGHT0103: The system cannot find the file '..\ORMModel\bin\Debug\Neumont.Tools.ORM.dll'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(67): error LGHT0103: The system cannot find the file '..\ORMModel\bin\Debug\Neumont.Tools.ORM.pdb'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(69): error LGHT0103: The system cannot find the file '..\ORMModel\bin\Debug\Neumont.Tools.ORM.xml'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(134): error LGHT0103: The system cannot find the file '..\Tools\DatabaseImport\bin\Debug\Neumont.Tools.ORM.DatabaseImport.dll'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(282): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\Neumont.ORM.General.hxs'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(286): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General.HxC'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(293): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General.HxT'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(295): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_A.HxK'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(297): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_D.HxK'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(299): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_F.HxK'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(301): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_K.HxK'.
                    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(303): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_N.HxK'.
                Done building target "Link" in project "Setup.wixproj" -- FAILED.
    
                Done building project "Setup.wixproj" -- FAILED.
    
    Build FAILED.
    ShapeModel\ORMBaseBinaryLinkShape.Extensions.cs(349,22): error CS0176: Static member 'Microsoft.VisualStudio.Modeling.Diagrams.ShapeGeometry.GetHitTestTolerance(Microsoft.VisualStudio.Modeling.Diagrams.DiagramHitTestInfo)' cannot be accessed with an instance reference; qualify it with a type name instead
    ShapeModel\ORMBaseBinaryLinkShape.Extensions.cs(387,21): error CS0176: Static member 'Microsoft.VisualStudio.Modeling.Diagrams.LinkShapeGeometry.CreateDiagramItem(Microsoft.VisualStudio.Modeling.Diagrams.IGeometryHost, Microsoft.VisualStudio.Modeling.Diagrams.LineSegment)' cannot be accessed with an instance reference; qualify it with a type name instead
    ShapeModel\ORMBaseBinaryLinkShape.Extensions.cs(459,18): error CS0176: Static member 'Microsoft.VisualStudio.Modeling.Diagrams.ShapeGeometry.GetHitTestTolerance(Microsoft.VisualStudio.Modeling.Diagrams.DiagramHitTestInfo)' cannot be accessed with an instance reference; qualify it with a type name instead
    ORMDatabaseImportWizard.cs(84,4): error CS0012: The type 'Microsoft.VisualStudio.Shell.Interop.IVsUserSettingsMigration' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.VisualStudio.Shell.Interop.9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(23): error LGHT0103: The system cannot find the file '..\ORMModel\bin\Debug\Neumont.Tools.ORM.dll'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(47): error LGHT0103: The system cannot find the file '..\Tools\DatabaseImport\bin\Debug\Neumont.Tools.ORM.DatabaseImport.dll'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(65): error LGHT0103: The system cannot find the file '..\ORMModel\bin\Debug\Neumont.Tools.ORM.dll'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(67): error LGHT0103: The system cannot find the file '..\ORMModel\bin\Debug\Neumont.Tools.ORM.pdb'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(69): error LGHT0103: The system cannot find the file '..\ORMModel\bin\Debug\Neumont.Tools.ORM.xml'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(134): error LGHT0103: The system cannot find the file '..\Tools\DatabaseImport\bin\Debug\Neumont.Tools.ORM.DatabaseImport.dll'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(282): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\Neumont.ORM.General.hxs'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(286): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General.HxC'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(293): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General.HxT'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(295): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_A.HxK'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(297): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_D.HxK'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(299): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_F.HxK'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(301): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_K.HxK'.
    C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Setup\Components.wxs(303): error LGHT0103: The system cannot find the file '..\Documentation\Help Project\Build\COL_Neumont.ORM.General_N.HxK'.
        0 Warning(s)
        18 Error(s)
    
    Time Elapsed 00:00:30.24
    Build started 10/30/2007 2:42:52 PM.
    __________________________________________________
    Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tests.proj" (default targets):
    
    Target Build:
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tests.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ORMTestPackage.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target TestDriverEngine:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ORMTestPackage.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ORM2CommandLineTest\TestDriverEngine.csproj" (default targets):
    
                Target ResolveAssemblyReferences:
                    Primary reference "nunit.framework".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "nunit.framework", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "nunit.framework, Version=2.2.9.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath "bin\Debug\TestEngine\".
                            Considered "bin\Debug\TestEngine\nunit.framework.exe", but it didn't exist.
                            Considered "bin\Debug\TestEngine\nunit.framework.dll", but it didn't exist.
                    Primary reference "xmldiffpatch".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "xmldiffpatch". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{HintPathFromItem}".
                            Considered "C:\Program Files\XmlDiffPatch\Bin\xmldiffpatch.dll", but it didn't exist.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\xmldiffpatch.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\xmldiffpatch.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\xmldiffpatch.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\xmldiffpatch.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\xmldiffpatch.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\xmldiffpatch.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\xmldiffpatch.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\xmldiffpatch.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\xmldiffpatch.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\xmldiffpatch.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\xmldiffpatch.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\xmldiffpatch.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\xmldiffpatch.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\xmldiffpatch.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\xmldiffpatch.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\xmldiffpatch.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\xmldiffpatch.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "xmldiffpatch", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "xmldiffpatch, Version=1.0.8.28, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" as a file name, but it didn't exist.
                            For SearchPath "bin\Debug\TestEngine\".
                            Considered "bin\Debug\TestEngine\xmldiffpatch.exe", but it didn't exist.
                            Considered "bin\Debug\TestEngine\xmldiffpatch.dll", but it didn't exist.
                Done building target "ResolveAssemblyReferences" in project "TestDriverEngine.csproj".
                Target CoreCompile:
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1607,1701,1702 /warn:4 /doc:bin\Debug\TestEngine\Neumont.Tools.ORM.SDK.TestEngine.XML /define:DEBUG;TRACE;VISUALSTUDIO_9_0;NET_2_0;NET_3_0;NET_3_5 /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.dll" /reference:C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.Modeling.Sdk.Utilities\9.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Modeling.Sdk.Utilities.dll /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.TextManager.Interop.dll" /reference:"C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.dll" /reference:"C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.OIALModel.dll" /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll /debug+ /debug:full /keyfile:..\ORMPackage.snk /optimize- /out:obj\Debug\Neumont.Tools.ORM.SDK.TestEngine.dll /resource:obj\Debug\Neumont.Tools.ORM.SDK.TestEngine.ORMModel.orm /resource:obj\Debug\Neumont.Tools.ORM.SDK.TestEngine.ORMTestReport.xsd /resource:obj\Debug\Neumont.Tools.ORM.SDK.TestEngine.ORMTestSuite.xsd /resource:obj\Debug\Neumont.Tools.ORM.SDK.TestEngine.MapIds.xslt /target:library ..\Version.cs ORMDocServices.cs ORMTaskItem.cs ORMTaskProvider.cs Properties\AssemblyInfo.cs ORMStore.cs Suite.cs TestAttribute.cs TestInterfaces.cs
                    ORMDocServices.cs(20,17): error CS0234: The type or namespace name 'XmlDiffPatch' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
                    Suite.cs(10,17): error CS0234: The type or namespace name 'XmlDiffPatch' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
                    Suite.cs(274,27): error CS0246: The type or namespace name 'XmlDiff' could not be found (are you missing a using directive or an assembly reference?)
                Done building target "CoreCompile" in project "TestDriverEngine.csproj" -- FAILED.
    
                Done building project "TestDriverEngine.csproj" -- FAILED.
            Target TestSample:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ORMTestPackage.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\TestSuites\TestSample\TestSample.csproj" (default targets):
    
                Target ResolveAssemblyReferences:
                    Primary reference "nunit.framework".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "nunit.framework", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "nunit.framework, Version=2.2.9.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath ".\".
                            Considered ".\nunit.framework.exe", but it didn't exist.
                            Considered ".\nunit.framework.dll", but it didn't exist.
                    Primary reference "Neumont.Tools.ORM.SDK.TestEngine".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Neumont.Tools.ORM.SDK.TestEngine". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{HintPathFromItem}".
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "Neumont.Tools.ORM.SDK.TestEngine", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "Neumont.Tools.ORM.SDK.TestEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=957d5b7d5e79e25f, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath ".\".
                            Considered ".\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered ".\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                Done building target "ResolveAssemblyReferences" in project "TestSample.csproj".
                Target _CopyNonResxEmbeddedResources:
                    Skipped all preprocessing because $(DisableAllPreprocessing) is 'true'.
                    Skipped all preprocessing because $(DisableAllPreprocessing) is 'true'.
                Target CoreCompile:
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /errorreport:prompt /warn:4 /define:DEBUG;TRACE;VISUALSTUDIO_9_0;NET_2_0;NET_3_0;NET_3_5 /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.dll" /reference:"C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.dll" /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll /debug+ /debug:full /keyfile:..\..\ORMPackage.snk /optimize- /out:obj\Debug\TestSample.dll /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2a.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2a.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2b.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1c.Load.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1c.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2b.Load.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2b.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2a.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1a.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1a.Compare.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1b.Compare.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1b.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1c.Compare.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1c.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2a.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2a.Compare.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2b.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2b.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1a.Load.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1a.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1b.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1b.Load.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1c.Load.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1c.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2a.Load.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2b.Load.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1b.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1b.Load.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1a.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1a.Load.orm /resource:obj\Debug\TestSample.Sample.Tests.Test2.Compare.orm /resource:obj\Debug\TestSample.Sample.Tests.Test2.Load.orm /resource:obj\Debug\TestSample.Sample.Tests.Test1.Compare.orm /resource:obj\Debug\TestSample.Sample.Tests.Test1.Load.orm /resource:obj\Debug\TestSample.Sample.Tests.Test1.Report.xml /resource:obj\Debug\TestSample.Sample.Tests.Test2.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1b.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1c.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2b.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2a.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1a.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1b.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1c.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2a.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2b.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1a.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1b.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1c.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2b.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2a.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1a.Report.xml /target:library DTBlankTests\DTBlankTests.cs FCMinMaxTests\FCMinMaxTests.cs NMinus1Tests\NMinus1Tests.cs Sample\Tests.cs Properties\AssemblyInfo.cs
                    DTBlankTests\DTBlankTests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(3,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    Sample\Tests.cs(6,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(21,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(18,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(18,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(7,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(25,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(39,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(45,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(49,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(65,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(69,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(75,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(97,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(103,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(15,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(16,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(44,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(48,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(66,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(70,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(77,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(98,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(105,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(12,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(13,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(44,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(48,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(66,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(70,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(77,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(101,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(108,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(12,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(13,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(43,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(96,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(103,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(19,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(20,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                Done building target "CoreCompile" in project "TestSample.csproj" -- FAILED.
    
                Done building project "TestSample.csproj" -- FAILED.
            Target AutomationTestSample:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\ORMTestPackage.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\TestSuites\AutomationTestSample\AutomationTestSample.csproj" (default targets):
    
                Target ResolveAssemblyReferences:
                    Primary reference "nunit.framework".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "nunit.framework", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "nunit.framework, Version=2.2.9.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath "bin\Debug\".
                            Considered "bin\Debug\nunit.framework.exe", but it didn't exist.
                            Considered "bin\Debug\nunit.framework.dll", but it didn't exist.
                    Primary reference "Neumont.Tools.ORM.SDK.TestEngine".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Neumont.Tools.ORM.SDK.TestEngine". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{HintPathFromItem}".
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "Neumont.Tools.ORM.SDK.TestEngine", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "Neumont.Tools.ORM.SDK.TestEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=957d5b7d5e79e25f, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath "bin\Debug\".
                            Considered "bin\Debug\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "bin\Debug\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                Done building target "ResolveAssemblyReferences" in project "AutomationTestSample.csproj".
                Target CoreCompile:
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /errorreport:prompt /warn:4 /define:DEBUG;TRACE;VISUALSTUDIO_9_0;NET_2_0;NET_3_0;NET_3_5 /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\EnvDTE.dll" /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\EnvDTE80.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Shell.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.OLE.Interop.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.9.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.Interop.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.TextManager.Interop.dll" /reference:C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.VirtualTreeGrid\9.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.VirtualTreeGrid.dll /reference:"C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.dll" /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll /debug+ /debug:full /optimize- /out:obj\Debug\AutomationTestSample.dll /target:library CommonTestHooks.cs ORMTestHooks.cs Properties\AssemblyInfo.cs RolePlayerRequiredErrorTests.cs TestVisualStudio.cs ToolboxTests.cs
                    RolePlayerRequiredErrorTests.cs(11,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    RolePlayerRequiredErrorTests.cs(13,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    ToolboxTests.cs(11,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    ToolboxTests.cs(13,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    RolePlayerRequiredErrorTests.cs(12,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    RolePlayerRequiredErrorTests.cs(15,38): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    ToolboxTests.cs(12,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    ToolboxTests.cs(15,38): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    ToolboxTests.cs(31,4): error CS0246: The type or namespace name 'SetUp' could not be found (are you missing a using directive or an assembly reference?)
                    ToolboxTests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    ToolboxTests.cs(28,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                Done building target "CoreCompile" in project "AutomationTestSample.csproj" -- FAILED.
    
                Done building project "AutomationTestSample.csproj" -- FAILED.
        __________________________________________________
        Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\Tests.proj" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\TestSuites\TestSuites.sln" (default targets):
    
        Target ValidateSolutionConfiguration:
            Building solution configuration "Debug|Any CPU".
        Target Build:
            Target TestSample:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\TestSuites\TestSuites.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\TestSuites\TestSample\TestSample.csproj" (default targets):
    
                Target ResolveAssemblyReferences:
                    Primary reference "nunit.framework".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "nunit.framework", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "nunit.framework, Version=2.2.9.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath ".\".
                            Considered ".\nunit.framework.exe", but it didn't exist.
                            Considered ".\nunit.framework.dll", but it didn't exist.
                    Primary reference "Neumont.Tools.ORM.SDK.TestEngine".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Neumont.Tools.ORM.SDK.TestEngine". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{HintPathFromItem}".
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "Neumont.Tools.ORM.SDK.TestEngine", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "Neumont.Tools.ORM.SDK.TestEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=957d5b7d5e79e25f, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath ".\".
                            Considered ".\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered ".\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                Done building target "ResolveAssemblyReferences" in project "TestSample.csproj".
                Target _CopyNonResxEmbeddedResources:
                    Skipped all preprocessing because $(DisableAllPreprocessing) is 'true'.
                    Skipped all preprocessing because $(DisableAllPreprocessing) is 'true'.
                Target CoreCompile:
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /errorreport:prompt /warn:4 /define:DEBUG;TRACE;VISUALSTUDIO_9_0;NET_2_0;NET_3_0;NET_3_5 /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.dll" /reference:"C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.dll" /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Xml.dll /debug+ /debug:full /keyfile:..\..\ORMPackage.snk /optimize- /out:obj\Debug\TestSample.dll /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2a.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2a.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2b.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1c.Load.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1c.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2b.Load.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2b.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2a.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1a.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1a.Compare.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1b.Compare.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1b.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1c.Compare.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1c.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2a.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2a.Compare.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2b.Load.orm /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2b.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1a.Load.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1a.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1b.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1b.Load.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1c.Load.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1c.Compare.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2a.Load.orm /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2b.Load.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1b.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1b.Load.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1a.Compare.orm /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1a.Load.orm /resource:obj\Debug\TestSample.Sample.Tests.Test2.Compare.orm /resource:obj\Debug\TestSample.Sample.Tests.Test2.Load.orm /resource:obj\Debug\TestSample.Sample.Tests.Test1.Compare.orm /resource:obj\Debug\TestSample.Sample.Tests.Test1.Load.orm /resource:obj\Debug\TestSample.Sample.Tests.Test1.Report.xml /resource:obj\Debug\TestSample.Sample.Tests.Test2.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1b.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1c.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2b.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test2a.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1a.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1b.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest1c.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2a.Report.xml /resource:obj\Debug\TestSample.FCMinMaxTests.FCMinMaxTests.FCMinMaxTest2b.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1a.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1b.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest1c.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2b.Report.xml /resource:obj\Debug\TestSample.DTBlankTests.DTBlankTests.DTBlankTest2a.Report.xml /resource:obj\Debug\TestSample.NMinus1Tests.NMinus1Tests.NMinus1Test1a.Report.xml /target:library DTBlankTests\DTBlankTests.cs FCMinMaxTests\FCMinMaxTests.cs NMinus1Tests\NMinus1Tests.cs Sample\Tests.cs Properties\AssemblyInfo.cs
                    DTBlankTests\DTBlankTests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(3,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    Sample\Tests.cs(6,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(21,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(18,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(18,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(7,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(25,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(39,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(45,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(49,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(65,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(69,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(75,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(97,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(103,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(15,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    DTBlankTests\DTBlankTests.cs(16,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(44,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(48,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(66,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(70,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(77,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(98,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(105,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(12,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    FCMinMaxTests\FCMinMaxTests.cs(13,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(44,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(48,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(66,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(70,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(77,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(101,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(108,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(12,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    NMinus1Tests\NMinus1Tests.cs(13,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(43,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(96,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(103,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(19,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
                    Sample\Tests.cs(20,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                Done building target "CoreCompile" in project "TestSample.csproj" -- FAILED.
    
                Done building project "TestSample.csproj" -- FAILED.
            Target AutomationTestSample:
                __________________________________________________
                Project "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\TestSuites\TestSuites.sln" is building "C:\Tools\NORMA_VS-2007-10CTP\Source\trunk\TestSuites\AutomationTestSample\AutomationTestSample.csproj" (default targets):
    
                Target ResolveAssemblyReferences:
                    Primary reference "nunit.framework".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\nunit.framework.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\nunit.framework.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\nunit.framework.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "nunit.framework", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "nunit.framework, Version=2.2.9.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath "bin\Debug\".
                            Considered "bin\Debug\nunit.framework.exe", but it didn't exist.
                            Considered "bin\Debug\nunit.framework.dll", but it didn't exist.
                    Primary reference "Neumont.Tools.ORM.SDK.TestEngine".
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Neumont.Tools.ORM.SDK.TestEngine". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
                            For SearchPath "{HintPathFromItem}".
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{TargetFrameworkDirectory}".
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{Registry:Software\Microsoft\.NetFramework,v3.5,AssemblyFoldersEx}".
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft ASP.NET\ASP.NET Futures July 2007\v1.2.61025\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Extensions\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office11\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Visual Studio Tools for Office\PIA\Office12\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\Primary Interop Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\MSEnv\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\ReportViewer\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.1\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Common Files\Microsoft Shared\Visual Basic Power Packs\1.1\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 9.0\DBPro\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTA\v9.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v8.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\VSTO\v9.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{AssemblyFolders}".
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.5\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2910.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft Synchronization Services\ADO.NET\v1.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2911.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2909.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2905.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2908.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\NotificationServices\9.0.242\Bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2904.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\SQLXML 4.0\bin\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Connections\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft.NET\ADOMD.NET\90\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\Tasks\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\SDK\Assemblies\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2907.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Program Files\Microsoft SQL Server Compact Edition\v3.5\Desktop\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2903.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2906.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\PipelineComponents\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "c:\Program Files\Microsoft SQL Server\90\DTS\ForEachEnumerators\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                            For SearchPath "{GAC}".
                            Considered "Neumont.Tools.ORM.SDK.TestEngine", which was not found in the GAC.
                            For SearchPath "{RawFileName}".
                            Considered treating "Neumont.Tools.ORM.SDK.TestEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=957d5b7d5e79e25f, processorArchitecture=MSIL" as a file name, but it didn't exist.
                            For SearchPath "bin\Debug\".
                            Considered "bin\Debug\Neumont.Tools.ORM.SDK.TestEngine.exe", but it didn't exist.
                            Considered "bin\Debug\Neumont.Tools.ORM.SDK.TestEngine.dll", but it didn't exist.
                Done building target "ResolveAssemblyReferences" in project "AutomationTestSample.csproj".
                Target CoreCompile:
                    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Csc.exe /noconfig /nowarn:1701,1702 /errorreport:prompt /warn:4 /define:DEBUG;TRACE;VISUALSTUDIO_9_0;NET_2_0;NET_3_0;NET_3_5 /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\EnvDTE.dll" /reference:"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PublicAssemblies\EnvDTE80.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Modeling.Sdk.Shell.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.OLE.Interop.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.9.0.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.Shell.Interop.dll" /reference:"C:\Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies\Microsoft.VisualStudio.TextManager.Interop.dll" /reference:C:\Windows\assembly\GAC_MSIL\Microsoft.VisualStudio.VirtualTreeGrid\9.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.VirtualTreeGrid.dll /reference:"C:\Program Files\Neumont\ORM Architect for Visual Studio\bin\Neumont.Tools.ORM.dll" /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll /reference:C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll /debug+ /debug:full /optimize- /out:obj\Debug\AutomationTestSample.dll /target:library CommonTestHooks.cs ORMTestHooks.cs Properties\AssemblyInfo.cs RolePlayerRequiredErrorTests.cs TestVisualStudio.cs ToolboxTests.cs
                    RolePlayerRequiredErrorTests.cs(11,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    RolePlayerRequiredErrorTests.cs(13,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    ToolboxTests.cs(11,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    ToolboxTests.cs(13,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    RolePlayerRequiredErrorTests.cs(12,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    RolePlayerRequiredErrorTests.cs(15,38): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    ToolboxTests.cs(12,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
                    ToolboxTests.cs(15,38): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
                    ToolboxTests.cs(31,4): error CS0246: The type or namespace name 'SetUp' could not be found (are you missing a using directive or an assembly reference?)
                    ToolboxTests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
                    ToolboxTests.cs(28,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
                Done building target "CoreCompile" in project "AutomationTestSample.csproj" -- FAILED.
    
                Done building project "AutomationTestSample.csproj" -- FAILED.
    
    Build FAILED.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "xmldiffpatch". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Neumont.Tools.ORM.SDK.TestEngine". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Neumont.Tools.ORM.SDK.TestEngine". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Neumont.Tools.ORM.SDK.TestEngine". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "nunit.framework". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets : warning MSB3245: Could not resolve this reference. Could not locate the assembly "Neumont.Tools.ORM.SDK.TestEngine". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
    ORMDocServices.cs(20,17): error CS0234: The type or namespace name 'XmlDiffPatch' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
    Suite.cs(10,17): error CS0234: The type or namespace name 'XmlDiffPatch' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
    Suite.cs(274,27): error CS0246: The type or namespace name 'XmlDiff' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    DTBlankTests\DTBlankTests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(3,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    Sample\Tests.cs(6,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(21,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(18,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(18,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(7,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(25,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(39,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(45,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(49,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(65,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(69,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(75,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(97,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(103,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(15,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(16,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(44,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(48,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(66,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(70,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(77,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(98,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(105,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(12,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(13,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(44,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(48,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(66,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(70,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(77,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(101,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(108,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(12,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(13,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(43,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(96,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(103,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(19,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(20,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    RolePlayerRequiredErrorTests.cs(11,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    RolePlayerRequiredErrorTests.cs(13,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    ToolboxTests.cs(11,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    ToolboxTests.cs(13,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    RolePlayerRequiredErrorTests.cs(12,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    RolePlayerRequiredErrorTests.cs(15,38): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    ToolboxTests.cs(12,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    ToolboxTests.cs(15,38): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    ToolboxTests.cs(31,4): error CS0246: The type or namespace name 'SetUp' could not be found (are you missing a using directive or an assembly reference?)
    ToolboxTests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    ToolboxTests.cs(28,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    DTBlankTests\DTBlankTests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(4,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(7,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(3,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    Sample\Tests.cs(6,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(21,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(18,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(8,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(18,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(7,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(25,11): error CS0246: The type or namespace name 'IORMToolTestServices' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(39,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(45,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(49,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(65,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(69,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(75,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(97,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(103,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(15,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
    DTBlankTests\DTBlankTests.cs(16,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(44,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(48,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(66,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(70,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(77,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(98,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(105,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(12,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
    FCMinMaxTests\FCMinMaxTests.cs(13,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(44,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(48,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(59,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(66,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(70,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(77,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(101,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(108,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(12,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
    NMinus1Tests\NMinus1Tests.cs(13,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(43,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(55,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(96,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(103,4): error CS0246: The type or namespace name 'ORMTest' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(19,3): error CS0246: The type or namespace name 'ORMTestFixture' could not be found (are you missing a using directive or an assembly reference?)
    Sample\Tests.cs(20,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
    RolePlayerRequiredErrorTests.cs(11,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    RolePlayerRequiredErrorTests.cs(13,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    ToolboxTests.cs(11,25): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    ToolboxTests.cs(13,7): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    RolePlayerRequiredErrorTests.cs(12,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    RolePlayerRequiredErrorTests.cs(15,38): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    ToolboxTests.cs(12,23): error CS0246: The type or namespace name 'NUnit' could not be found (are you missing a using directive or an assembly reference?)
    ToolboxTests.cs(15,38): error CS0234: The type or namespace name 'SDK' does not exist in the namespace 'Neumont.Tools.ORM' (are you missing an assembly reference?)
    ToolboxTests.cs(31,4): error CS0246: The type or namespace name 'SetUp' could not be found (are you missing a using directive or an assembly reference?)
    ToolboxTests.cs(37,4): error CS0246: The type or namespace name 'Test' could not be found (are you missing a using directive or an assembly reference?)
    ToolboxTests.cs(28,3): error CS0246: The type or namespace name 'TestFixture' could not be found (are you missing a using directive or an assembly reference?)
        10 Warning(s)
        141 Error(s)
    
    Time Elapsed 00:00:03.87
    
    Running 'devenv.exe /RootSuffix "" /Setup'... This may take a few minutes...
    
    *************************************************************
  • Wed, Oct 31 2007 16:49 In reply to

    • Richard
    • Top 100 Contributor
      Male
    • Joined on Sat, Mar 8 2008
    • Posts 4

    Some Changed API's

    It looks like some of the methods used in the VS2005 version are not existing in the latest 2008 version.
    
    As an example check out this link for ShapeGeometry: http://msdn2.microsoft.com/en-us/library/microsoft.visualstudio.modeling.diagrams.shapegeometry(VS.90).aspx
    
    So some methods will need to be revised to accomidate these changes.
    
    Check out: http://msdn2.microsoft.com/en-us/library/bb166441(VS.90).aspx
    
    I really love this tool, hope things can be worked out where it continues...
  • Wed, Oct 31 2007 17:04 In reply to

    • Kevin M. Owen
    • Top 500 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Neumont University, South Jordan, Utah
    • Posts 0

    RE: Some Changed API's

    Which version of VS2008 are you trying to compile it against? It should compile correctly against VS2008 Beta 2 ss long as you follow the instructions at https://sourceforge.net/forum/message.php?msg_id=4590202
  • Wed, Oct 31 2007 17:48 In reply to

    • Kevin M. Owen
    • Top 500 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Neumont University, South Jordan, Utah
    • Posts 0

    RE: ORCAS support

    OK, I just fixed the issue with the DatabaseImport project (the missing reference to Microsoft.VisualStudio.Shell.Interop.9.0).
    I'm not sure what the problem is with the ORMModel project. It builds correctly on my system... What version of Visual Studio 2008 (beta 2?) are you using? Which version of the Visual Studio 2008 SDK do you have installed?
  • Sat, Nov 3 2007 16:28 In reply to

    • Richard
    • Top 100 Contributor
      Male
    • Joined on Sat, Mar 8 2008
    • Posts 4

    RE: ORCAS support

    I may be jumping the gun a bit... Just email me..
  • Tue, Nov 27 2007 2:11 In reply to

    • Richard
    • Top 100 Contributor
      Male
    • Joined on Sat, Mar 8 2008
    • Posts 4

    RE: ORCAS support

    Yeah I was running on a final CTP. that's why I think I got the weird messages. If you try to build on the latest, you may get the same messages I got.
  • Wed, Nov 28 2007 6:39 In reply to

    • Kevin M. Owen
    • Top 500 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Neumont University, South Jordan, Utah
    • Posts 0

    RE: ORCAS support

    You're right, when I tried to build it against the RTM version of VS2008, I did receive the same messages.
    Thankfully, these are pretty straightforward to fix. You can just remove the "this." or "base." from each method call that gives an error.
    Alternatively, if you update to the latest source code from our Subversion repository, these should already be fixed. In addition, a new FirstTimeBuildVS2008.bat file should be present in the trunk directory, which will make sure that everything is set up correctly for building NORMA for Visual Studio 2008.
  • Tue, Dec 11 2007 8:19 In reply to

    RE: ORCAS support

    Hi,
    
    Just loaded up final release product of VS08 Pro last night.  I installed the 11/07 CTP of nORMa for VS 08.  The install was uneventful (on my notebook, Vista Ultimate).  Not wanting to complicate things, I created a Console Application (on of the project types allowed in earlier CTPs - I'll test out some other project types later).  You still have to know to create a project, add new item, select ORM model, etc..., but that worked as before.  The only ORM window that opened at the start was ORM Definition - again you have to know to RT click context in the work area to bring up the other windows (and add them one at a time).  If you've done it for earlier CTPs, you know what to do; but this could be frustrating for new user (suggest having all ORM windows open on startup).
    
    I used to the Fact Editor to create a pathetically simple model, and used the Custom Tool build to generate an Standard SQL file.  Haven't done a physical implementation yet, but the SQL look Ok.
    
    Here in CT, we had a .Net Roadshow event yesterday, and they had a follow on "install fest" at the local MS office.  While I saw no errors on the install of VS 08, I did need to run the install a second time to complete the job; some of the others there(I think may have been running betas), we not as lucky - seems that clearing out the betas can be more trouble than expected.
    
    I also installed the 11/07 CTP for VS 2005, but haven't tested that yet to see if there is a conflict in having both VS versions and both nORMa versions running on the same computer.
    
    Thanks to the nORMa team for the latest release, and for the VS 2008 version.
    
    BRN..
Page 1 of 1 (13 items)
© 2008-2024 ------- Terms of Service