├── .gitignore └── src ├── 3rd_Party_Libs ├── AlpineSoft.EZRSA.dll ├── Antlr3.Runtime.dll ├── AxInterop.SHDocVw.dll ├── CompactSerialization.dll ├── Diff.dll ├── FirebirdSql.Data.FirebirdClient.dll ├── FluentNHibernate.dll ├── FluentNHibernate.xml ├── GraphSharp.dll ├── ILMerge.exe ├── ITemplate.dll ├── Iesi.Collections.dll ├── Iesi.Collections.xml ├── Inflector.Net.dll ├── Inflector.Net.pdb ├── Interop.PGMRX120Lib.dll ├── Interop.SHDocVw.dll ├── Ionic.Zip.XML ├── Ionic.Zip.dll ├── Ionic.Zip.pdb ├── License.dll ├── Microsoft.GLEE.dll ├── Microsoft.NetMap.Core.dll ├── Microsoft.NetMap.Core.xml ├── Microsoft.NetMap.Visualization.dll ├── Microsoft.NetMap.Visualization.xml ├── Mono.Cecil.Pdb.dll ├── Mono.Cecil.dll ├── MsHtmHstInterop.dll ├── NHibernate.dll ├── NHibernate.xml ├── QuickGraph.Graphviz.dll ├── QuickGraph.Graphviz.xml ├── QuickGraph.dll ├── QuickGraph.xml ├── SQLite_ANTLR_Grammar - Original.g ├── SQLite_ANTLR_Grammar.g ├── System.Data.SqlServerCe.dll ├── System.Data.SqlServerCe.xml ├── Unit Testing │ ├── Moq.dll │ ├── Moq.pdb │ ├── Moq.xml │ ├── Rhino.Mocks.dll │ ├── Rhino.Mocks.xml │ ├── nunit.framework.dll │ ├── nunit.framework.extensions.dll │ └── nunit.framework.xml ├── Vista Api.dll ├── Vista Api.pdb ├── log4net.dll ├── log4net.xml ├── sqlite3.dll └── sqlite3.exe ├── ApiExtender ├── ApiExtender.csproj ├── ApiExtender.csproj.user ├── ApiExtender.sln ├── Injector.cs ├── MSBuild.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.config ├── frmMain.Designer.cs ├── frmMain.cs └── frmMain.resx ├── ArchAngel.CodeProvider.sln ├── ArchAngel.Common ├── ApplicationBrand.cs ├── ArchAngel.Common.csproj ├── ArchAngel.Common.csproj.DotSettings.user ├── ArchAngel.Common.csproj.user ├── DesignerProject │ ├── ApiExtensionMethod.cs │ ├── Comparers.cs │ ├── Enums.cs │ ├── FunctionInfo.cs │ ├── FunctionTypes.cs │ ├── IDesignerProject.cs │ ├── ProjectBase.cs │ ├── ProjectDeserialiserV1.cs │ ├── ProjectEnumHelper.cs │ ├── ProjectRelated.cs │ ├── ProjectSerialiserV1.cs │ ├── TemplateDefinition.cs │ └── UserOption.cs ├── DuplicateFileNameChecker.cs ├── GenerationError.cs ├── GenerationHelper.cs ├── Generator.cs ├── IWorkbenchProjectController.cs ├── ProgressHelpers.cs ├── ProjectFileTree.cs ├── ProjectSettings.cs ├── ProjectVerifier.cs ├── Properties │ └── AssemblyInfo.cs ├── RibbonButtonController.cs ├── TemplateHelper.cs ├── WorkbenchProject.cs └── WorkbenchProjectController.cs ├── ArchAngel.Debugger.DebugProcess ├── ArchAngel.Debugger.DebugProcess.csproj ├── ArchAngel.Debugger.DebugProcess.csproj.DotSettings.user ├── ArchAngel.Debugger.DebugProcess.csproj.user ├── CommandReceiver.cs ├── Commands.cs ├── DebugProcessInfoService.cs ├── DebugProject.cs ├── Main.cs ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx └── app.config ├── ArchAngel.Debugger ├── ArchAngel.Debugger.csproj ├── ArchAngel.Debugger.csproj.DotSettings.user ├── ArchAngel.Debugger.csproj.user ├── CorAPI │ ├── AppDomain.cs │ ├── AppDomainEnumerator.cs │ ├── Assembly.cs │ ├── AssemblyEnumerator.cs │ ├── Breakpoint.cs │ ├── BreakpointEnumerator.cs │ ├── ChainEnumerator.cs │ ├── Class.cs │ ├── Constants.cs │ ├── Controller.cs │ ├── CorMetadata.cs │ ├── CorPublish.cs │ ├── Debugger.cs │ ├── ErrorInfoEnumerator.cs │ ├── Eval.cs │ ├── FunctionBreakpoint.cs │ ├── HResults.cs │ ├── ISymBinder2.cs │ ├── ISymConstant.cs │ ├── ISymENCUpdate.cs │ ├── ISymEncMethod.cs │ ├── ISymReader2.cs │ ├── ISymScope2.cs │ ├── ISymSearchInfo.cs │ ├── ISymWriter2.cs │ ├── MetadataFieldInfo.cs │ ├── MetadataParameterInfo.cs │ ├── MetadataType.cs │ ├── Module.cs │ ├── ModuleBreakpoint.cs │ ├── ModuleEnumerator.cs │ ├── ObjectEnumerator.cs │ ├── Process.cs │ ├── ProcessEnumerator.cs │ ├── RegisterSet.cs │ ├── Stepper.cs │ ├── StepperEnumerator.cs │ ├── SymAccess.cs │ ├── SymConstant.cs │ ├── SymDocument.cs │ ├── SymDocumentWriter.cs │ ├── SymNamespace.cs │ ├── SymReader.cs │ ├── SymScope.cs │ ├── SymSearchInfo.cs │ ├── SymSearchPolicyAttributes.cs │ ├── SymWriter.cs │ ├── Thread.cs │ ├── ThreadEnumerator.cs │ ├── Type.cs │ ├── TypeEnumerator.cs │ ├── Value.cs │ ├── ValueBreakpoint.cs │ ├── WrapperBase.cs │ ├── symbinder.cs │ ├── symmethod.cs │ └── symvariable.cs ├── Debugger.cs ├── MDbgEngine │ ├── Appdomain.cs │ ├── Breakpoint.cs │ ├── DebuggerVar.cs │ ├── Engine.cs │ ├── Exception.cs │ ├── FrameFactory.cs │ ├── Function.cs │ ├── InternalUtil.cs │ ├── Module.cs │ ├── Process.cs │ ├── StopReason.cs │ ├── Thread.cs │ ├── Value.cs │ └── WrapperWrapperBase.cs ├── Properties │ └── AssemblyInfo.cs ├── Raw │ ├── ICorDebugWrappers.cs │ ├── ICorPublishWrappers.cs │ ├── IMetadataImport.cs │ └── WindowsImports.cs └── doc │ └── Documentation.chm ├── ArchAngel.Designer.sln ├── ArchAngel.Designer ├── ArchAngel.Designer.csproj ├── ArchAngel.Designer.csproj.DotSettings.user ├── ArchAngel.Designer.csproj.user ├── BaseApp.cs ├── Branding.cs ├── Class1.cs ├── CompileHelper.cs ├── CompileHelperRelated.cs ├── CompilerError.cs ├── Config │ ├── File.cs │ ├── Folder.cs │ ├── ITemplateConfig.cs │ ├── Option.cs │ ├── Output.cs │ ├── Project.cs │ └── Script.cs ├── ConsoleApp.cs ├── Controller.cs ├── Designer.ico ├── EntityInstance.cst ├── Exceptions │ └── TypeNotFoundException.cs ├── ExternalFunctions.cs ├── FunctionRunner.cs ├── Helper.cs ├── IScriptManager.cs ├── IScriptManagerCallback.cs ├── IntelliSense.cs ├── Program.cs ├── Project.cs ├── ProjectLoadAndSaveHelper.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── app.manifest │ └── licenses.licx ├── Resources │ ├── BlankProvider.zip │ ├── Edit.png │ ├── HID.exe │ ├── HardwareID.txt │ ├── blue_arrow.png │ ├── cs.syntax │ ├── edit_16_h.png │ ├── error_16.png │ ├── green_arrow.png │ ├── treenode_add_32.png │ └── vb.syntax ├── ScriptManager.cs ├── SearchHelper.cs ├── Settings.cs ├── SyntaxReader.cs ├── UI │ └── PropertyGrids │ │ ├── FormUserOption.Designer.cs │ │ ├── FormUserOption.cs │ │ └── FormUserOption.resx ├── UnsupportedLanguageException.cs ├── Wizards │ ├── FunctionWizardScreens │ │ ├── Screen1.Designer.cs │ │ ├── Screen1.cs │ │ ├── Screen1.resx │ │ ├── Screen2.Designer.cs │ │ ├── Screen2.cs │ │ ├── Screen2.resx │ │ ├── Screen3.Designer.cs │ │ ├── Screen3.cs │ │ └── Screen3.resx │ ├── OutputFileWizardScreens │ │ ├── Screen1.Designer.cs │ │ ├── Screen1.cs │ │ ├── Screen1.resx │ │ ├── Screen2.Designer.cs │ │ ├── Screen2.cs │ │ ├── Screen2.resx │ │ ├── Screen3.Designer.cs │ │ ├── Screen3.cs │ │ ├── Screen3.resx │ │ ├── Screen4.Designer.cs │ │ ├── Screen4.cs │ │ └── Screen4.resx │ ├── TemplateSync │ │ ├── ScreenApiExtensions.Designer.cs │ │ ├── ScreenApiExtensions.cs │ │ ├── ScreenApiExtensions.resx │ │ ├── ScreenFileLayouts.Designer.cs │ │ ├── ScreenFileLayouts.cs │ │ ├── ScreenFileLayouts.resx │ │ ├── ScreenFunctions.Designer.cs │ │ ├── ScreenFunctions.cs │ │ ├── ScreenFunctions.resx │ │ ├── ScreenProjectDetails.Designer.cs │ │ ├── ScreenProjectDetails.cs │ │ ├── ScreenProjectDetails.resx │ │ ├── ScreenStart.Designer.cs │ │ ├── ScreenStart.cs │ │ ├── ScreenStart.resx │ │ ├── ScreenSummary.Designer.cs │ │ ├── ScreenSummary.cs │ │ ├── ScreenSummary.resx │ │ ├── ScreenUserOptions.Designer.cs │ │ ├── ScreenUserOptions.cs │ │ ├── ScreenUserOptions.resx │ │ ├── frmTemplateSyncWizard.Designer.cs │ │ ├── frmTemplateSyncWizard.cs │ │ └── frmTemplateSyncWizard.resx │ ├── frmFunctionWizard.Designer.cs │ ├── frmFunctionWizard.cs │ ├── frmFunctionWizard.resx │ ├── frmOutputFileWizard.Designer.cs │ ├── frmOutputFileWizard.cs │ └── frmOutputFileWizard.resx ├── app.config ├── frmAbout.Designer.cs ├── frmAbout.cs ├── frmAbout.resx ├── frmActionEdit.Designer.cs ├── frmActionEdit.cs ├── frmActionEdit.resx ├── frmCleanUp.Designer.cs ├── frmCleanUp.cs ├── frmCleanUp.resx ├── frmCompile.Designer.cs ├── frmCompile.cs ├── frmCompile.resx ├── frmConstantsDataEntry.Designer.cs ├── frmConstantsDataEntry.cs ├── frmConstantsDataEntry.resx ├── frmExtractTemplate.Designer.cs ├── frmExtractTemplate.cs ├── frmExtractTemplate.resx ├── frmFind.Designer.cs ├── frmFind.cs ├── frmFind.resx ├── frmFunctionEdit.Designer.cs ├── frmFunctionEdit.cs ├── frmFunctionEdit.resx ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── frmNewProvider.Designer.cs ├── frmNewProvider.cs ├── frmNewProvider.resx ├── frmOptions.Designer.cs ├── frmOptions.cs ├── frmOptions.resx ├── frmParameterEdit.Designer.cs ├── frmParameterEdit.cs ├── frmParameterEdit.resx ├── frmSelectModelObject.Designer.cs ├── frmSelectModelObject.cs ├── frmSelectModelObject.resx ├── frmSplash.Designer.cs ├── frmSplash.cs ├── frmSplash.resx ├── frmTestFunction.Designer.cs ├── frmTestFunction.cs ├── frmTestFunction.resx ├── frmWait.Designer.cs ├── frmWait.cs ├── frmWait.resx ├── ucApiExtensions.Designer.cs ├── ucApiExtensions.cs ├── ucApiExtensions.resx ├── ucConstants.Designer.cs ├── ucConstants.cs ├── ucConstants.resx ├── ucFindResults.Designer.cs ├── ucFindResults.cs ├── ucFindResults.resx ├── ucFunction.Designer.cs ├── ucFunction.cs ├── ucFunction.resx ├── ucFunctions.Designer.cs ├── ucFunctions.cs ├── ucFunctions.resx ├── ucGenerationChoices.Designer.cs ├── ucGenerationChoices.cs ├── ucGenerationChoices.resx ├── ucOptions.Designer.cs ├── ucOptions.cs ├── ucOptions.resx ├── ucProjectDetails.Designer.cs ├── ucProjectDetails.cs ├── ucProjectDetails.resx ├── ucUserOptions.Designer.cs ├── ucUserOptions.cs ├── ucUserOptions.resx ├── ucUserOptionsAPI.Designer.cs ├── ucUserOptionsAPI.cs ├── ucUserOptionsAPI.resx ├── ucUserOptionsHelper.Designer.cs ├── ucUserOptionsHelper.cs └── ucUserOptionsHelper.resx ├── ArchAngel.Interfaces ├── ActionAttribute.cs ├── ApiExtensionHelper.cs ├── ArchAngel.Interfaces.csproj ├── ArchAngel.Interfaces.csproj.DotSettings.user ├── ArchAngel.Interfaces.csproj.user ├── ArchAngel.Interfaces.vsdoc ├── Attributes.cs ├── BaseAction.cs ├── Cardinality.cs ├── Controls │ ├── ContentItems │ │ ├── ContentItem.Designer.cs │ │ ├── ContentItem.cs │ │ ├── ContentItem.resx │ │ └── Controller.cs │ ├── FormObjectOptionEdit.Designer.cs │ ├── FormObjectOptionEdit.cs │ └── FormObjectOptionEdit.resx ├── DefaultValueFunction.cs ├── ErrorReportingService.cs ├── Events.cs ├── Exceptions │ └── TemplateFunctionException.cs ├── ExtensionAttributeHelper.cs ├── GeneratedFile.cs ├── Helper.cs ├── IOptionForm.cs ├── IProgressUpdater.cs ├── IProjectHelper.cs ├── IScriptBase.cs ├── IScriptBaseObject.cs ├── ITemplate.cs ├── IVerificationIssueSolver.cs ├── IWorkbenchProject.cs ├── IWorkbenchProjectSettings.cs ├── NHibernateEnums.cs ├── PreGenerationData.cs ├── ProjectOptions │ ├── DatabaseScripts │ │ ├── MaintenanceScript.cs │ │ ├── Scripts.cs │ │ ├── Scripts.xml │ │ └── Utility.cs │ ├── ModelScripts │ │ ├── Scripts.cs │ │ ├── Scripts.xml │ │ └── Utility.cs │ └── TypeMappings │ │ ├── DatabaseTypeMap.cs │ │ ├── DefaultTypeMap.xml │ │ ├── DotNetType.cs │ │ ├── ExtensionMethods.cs │ │ ├── FormCustomType.Designer.cs │ │ ├── FormCustomType.cs │ │ ├── FormCustomType.resx │ │ ├── Scripts.cs │ │ └── Utility.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── IController.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── licenses.licx ├── ProviderHelper.cs ├── ProviderInfo.cs ├── RibbonBarContentItem.cs ├── SchemaDiagrammer │ ├── IEntity.cs │ └── IRelationship.cs ├── ScriptBaseObject.cs ├── ScriptFunctionWrapper.cs ├── Scripting │ ├── DatabaseChanges │ │ ├── IChangedColumn.cs │ │ ├── IChangedTable.cs │ │ └── IDatabase.cs │ ├── NHibernate │ │ └── Model │ │ │ ├── ICache.cs │ │ │ ├── IColumn.cs │ │ │ ├── IComponent.cs │ │ │ ├── IComponentProperty.cs │ │ │ ├── IDiscriminator.cs │ │ │ ├── IEntity.cs │ │ │ ├── IEntityGenerator.cs │ │ │ ├── IEntityKey.cs │ │ │ ├── IField.cs │ │ │ ├── IFieldDef.cs │ │ │ ├── IIndex.cs │ │ │ ├── IKey.cs │ │ │ ├── INhConfig.cs │ │ │ ├── IProject.cs │ │ │ ├── IProperty.cs │ │ │ ├── IReference.cs │ │ │ ├── ISourceAttribute.cs │ │ │ ├── ISourceClass.cs │ │ │ ├── ISourceField.cs │ │ │ ├── ISourceFunction.cs │ │ │ ├── ISourceParameter.cs │ │ │ ├── ISourceProperty.cs │ │ │ └── ITable.cs │ └── RelativePathHelper.cs ├── Setting.cs ├── SharedData.cs ├── SourceCodeMultiLineType.cs ├── SourceCodeType.cs ├── Template │ ├── Enums.cs │ ├── File.cs │ ├── Folder.cs │ ├── Script.cs │ ├── StaticFile.cs │ ├── TemplateDeserializer.cs │ ├── TemplateProject.cs │ └── TemplateSerializer.cs ├── TemplateData.cs ├── TemplateHelper.cs ├── TemplateInfo │ ├── File.cs │ ├── Folder.cs │ ├── Function.cs │ ├── Option.cs │ ├── Output.cs │ ├── Project.cs │ └── Script.cs ├── TemplateLoader.cs ├── UserOption.cs ├── VirtualPropertyHelper.cs └── Wizards │ └── NewProject │ └── IFormNewProject.cs ├── ArchAngel.Licensing ├── ArchAngel.Licensing.csproj ├── ArchAngel.Licensing.csproj.DotSettings.user ├── ArchAngel.Licensing.csproj.user ├── DriveInfo.cs ├── License.cs ├── LicenseHelper.cs ├── LicenseMonitor.cs ├── LicenseWizard │ ├── ScreenActivate.Designer.cs │ ├── ScreenActivate.cs │ ├── ScreenActivate.resx │ ├── ScreenActivate2.cs │ ├── ScreenStart.Designer.cs │ ├── ScreenStart.cs │ ├── ScreenStart.resx │ ├── ScreenUnlock.Designer.cs │ ├── ScreenUnlock.cs │ ├── ScreenUnlock.resx │ ├── frmLicenseWizard.Designer.cs │ ├── frmLicenseWizard.cs │ └── frmLicenseWizard.resx ├── NalpeironAuthorizer.cs ├── NativeMethods.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── ReactorAuthorizer.cs ├── SecurityChecks.cs ├── SlyceAuthorizer.cs ├── frmStatus.Designer.cs ├── frmStatus.cs ├── frmStatus.resx ├── test_private_key.xml └── test_public_key.xml ├── ArchAngel.NHibernateHelper ├── ArchAngel.NHibernateHelper.csproj ├── ArchAngel.NHibernateHelper.csproj.DotSettings.user ├── ArchAngel.NHibernateHelper.csproj.user ├── CodeInsertions │ ├── AttributeConstraintBuilder.cs │ ├── ClassConstraintBuilder.cs │ ├── EntityCodeInsertions.cs │ ├── EntityExtensions.cs │ ├── FieldConstraintBuilder.cs │ ├── FunctionConstraintBuilder.cs │ ├── ImplementsConstraintBuilder.cs │ ├── PropertyConstraintBuilder.cs │ └── UsingStatementConstraintBuilder.cs ├── EntityLoader.cs ├── EntityModelExtensionMethods.cs ├── EntityModelPreprocessor.cs ├── Enums │ ├── AssociationType.cs │ ├── BytecodeGenerator.cs │ ├── CollectionFetchModes.cs │ ├── DefaultCascadeTypes.cs │ ├── FetchMode.cs │ ├── NHibernateVersions.cs │ ├── OptimisticLockModes.cs │ └── VisualStudioVersions.cs ├── HibernateMappingHelper.cs ├── Images.cs ├── LoadProjectWizard │ ├── CustomNewProjectInformation.cs │ ├── LoadExistingDatabase.Designer.cs │ ├── LoadExistingDatabase.cs │ ├── LoadExistingDatabase.resx │ ├── LoadExistingProject.Designer.cs │ ├── LoadExistingProject.cs │ ├── LoadExistingProject.resx │ ├── NHibernateHBMLoadErrorView.Designer.cs │ ├── NHibernateHBMLoadErrorView.cs │ ├── NHibernateHBMLoadErrorView.resx │ ├── Prefixes.Designer.cs │ ├── Prefixes.cs │ ├── Prefixes.resx │ ├── SelectDatabaseObjects.Designer.cs │ ├── SelectDatabaseObjects.cs │ ├── SelectDatabaseObjects.resx │ ├── SetNhConfig.Designer.cs │ ├── SetNhConfig.cs │ └── SetNhConfig.resx ├── MappingFiles │ └── Version_2_2 │ │ ├── EntityMapper.cs │ │ ├── Enums.cs │ │ ├── ExtensionMethods │ │ ├── ExtMethods_Bag.cs │ │ ├── ExtMethods_Class.cs │ │ ├── ExtMethods_Component.cs │ │ ├── ExtMethods_CompositeId.cs │ │ ├── ExtMethods_IDBag.cs │ │ ├── ExtMethods_Key.cs │ │ ├── ExtMethods_List.cs │ │ ├── ExtMethods_ManyToMany.cs │ │ ├── ExtMethods_ManyToOne.cs │ │ ├── ExtMethods_Map.cs │ │ ├── ExtMethods_Property.cs │ │ ├── ExtMethods_Set.cs │ │ └── ExtMethods_nhibernatemapping.cs │ │ ├── NHibernateMappingException.cs │ │ ├── ReferenceMapper.cs │ │ ├── Utility.cs │ │ └── nhibernate-mapping.cs ├── NHCollections.cs ├── NHConfigFile.cs ├── NHValidatorMapping.cs ├── NHibernateFileVerifier.cs ├── NHibernateLoaderException.cs ├── NHibernateProjectPreprocessor.cs ├── ProjectLoader.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── PropertyTemplate.cs ├── ProviderInfo.cs ├── ReferenceLoader.cs ├── Resources │ ├── TableHS.png │ └── XSDSchema_NameSpaceIcon.png ├── Test.cs ├── UI │ ├── FormErrors.Designer.cs │ ├── FormErrors.cs │ ├── FormErrors.resx │ ├── FormSelectClasses.Designer.cs │ ├── FormSelectClasses.cs │ └── FormSelectClasses.resx ├── Validation │ ├── CheckLazyPropertiesHaveLazyEntityRule.cs │ ├── CheckReferenceCollectionTypeRule.cs │ ├── CheckSchemaAgainstRealDatabaseRule.cs │ └── NHibernateProjectLoaderModule.cs ├── nhibernate-configuration.xsd ├── nhibernate-mapping.xsd ├── nhv-configuration.xsd ├── nhv-mapping.xsd └── supported-nhibernate-mapping.xsd ├── ArchAngel.ProviderUtility.sln ├── ArchAngel.Providers.CodeProvider ├── ArchAngel.Providers.CodeProvider.csproj ├── ArchAngel.Providers.CodeProvider.csproj.DotSettings.user ├── ArchAngel.Providers.CodeProvider.csproj.user ├── ArchAngel.Providers.CodeProvider.sln ├── CSharp │ ├── AttributePrinter.cs │ ├── AttributeSectionPrinter.cs │ ├── BaseConstructPrinter.cs │ ├── BasePrinter.cs │ ├── CSharpCodeFormatter.cs │ ├── CSharpController.cs │ ├── CSharpFormatSettings.cs │ ├── CSharpParser.cs │ ├── ClassPrinter.cs │ ├── CodeRootPrinter.cs │ ├── ConstantPrinter.cs │ ├── ConstructorPrinter.cs │ ├── DataTypePrinter.cs │ ├── DelegatePrinter.cs │ ├── DestructorPrinter.cs │ ├── EmptyPlaceholderPrinter.cs │ ├── EnumerationPrinter.cs │ ├── EventPrinter.cs │ ├── FieldPrinter.cs │ ├── FunctionPrinter.cs │ ├── IndexerPrinter.cs │ ├── InterfaceAccessorPrinter.cs │ ├── InterfaceEventPrinter.cs │ ├── InterfaceIndexerPrinter.cs │ ├── InterfaceMethodPrinter.cs │ ├── InterfacePrinter.cs │ ├── InterfacePropertyPrinter.cs │ ├── NamespacePrinter.cs │ ├── OperatorPrinter.cs │ ├── ParameterBasePrinter.cs │ ├── ParameterPrinter.cs │ ├── PropertyAccessorPrinter.cs │ ├── PropertyPrinter.cs │ ├── RegionContainer.cs │ ├── RegionEndPrinter.cs │ ├── RegionPrinter.cs │ ├── RegionStartPrinter.cs │ ├── StructPrinter.cs │ ├── UsingStatementPrinter.cs │ └── Utility.cs ├── CodeFormatter.cs ├── CodeInsertions │ ├── AddAccessorToPropertyAction.cs │ ├── AddAttributeToClassAction.cs │ ├── AddAttributeToFieldAction.cs │ ├── AddAttributeToMethodAction.cs │ ├── AddAttributeToPropertyAction.cs │ ├── AddChildToClassAction.cs │ ├── AddFieldToClassAction.cs │ ├── AddFunctionToClass.cs │ ├── AddImplementsToClassAction.cs │ ├── AddMethodToClass.cs │ ├── AddModifierToClassAction.cs │ ├── AddModifierToFieldAction.cs │ ├── AddModifierToFunctionAction.cs │ ├── AddModifierToPropertyAction.cs │ ├── AddPropertyToClassAction.cs │ ├── AddUsingStatementToClassAction.cs │ ├── ChangeInitialValueOfFieldAction.cs │ ├── ChangeMethodBodyAction.cs │ ├── ChangeMethodHeaderAction.cs │ ├── ChangeNameOfFieldAction.cs │ ├── ChangeNameOfFunctionAction.cs │ ├── ChangeNameOfPropertyAction.cs │ ├── ChangePropertyAccessorModifierAction.cs │ ├── ChangeReturnTypeOfFunctionAction.cs │ ├── ChangeTypeOfFieldAction.cs │ ├── ChangeTypeOfPropertyAction.cs │ ├── CodeInsertionAction.cs │ ├── InsertionHelpers.cs │ ├── RemoveAccessorFromPropertyAction.cs │ ├── RemoveAttributeFromClassAction.cs │ ├── RemoveFieldFromClassAction.cs │ ├── RemoveImplementsFromClassAction.cs │ ├── RemoveMethodFromClassAction.cs │ ├── RemoveModifierFromClassAction.cs │ ├── RemoveModifierFromFieldAction.cs │ ├── RemoveModifierFromPropertyAction.cs │ ├── RemoveModifiersFromClassAction.cs │ ├── RemoveModifiersFromFunctionAction.cs │ ├── RemoveModifiersFromPropertyAction.cs │ ├── RemovePropertyFromClassAction.cs │ ├── RemoveUsingStatementFromClassAction.cs │ └── RenameBaseConstructAction.cs ├── DotNet │ ├── Attribute.cs │ ├── AttributeSection.cs │ ├── BaseConstruct.cs │ ├── Class.cs │ ├── CodeRoot.cs │ ├── CommentObject.cs │ ├── Comparers.cs │ ├── Constant.cs │ ├── Constructor.cs │ ├── Controller.cs │ ├── DataType.cs │ ├── Delegate.cs │ ├── Destructor.cs │ ├── EmptyPlaceholder.cs │ ├── Enumeration.cs │ ├── Event.cs │ ├── Field.cs │ ├── Function.cs │ ├── IPrinter.cs │ ├── IVisibilityModifiers.cs │ ├── IWrapper.cs │ ├── Indexer.cs │ ├── Interface.cs │ ├── InterfaceAccessor.cs │ ├── InterfaceEvent.cs │ ├── InterfaceIndexer.cs │ ├── InterfaceMethod.cs │ ├── InterfaceProperty.cs │ ├── Namespace.cs │ ├── Operator.cs │ ├── Parameter.cs │ ├── ParameterBase.cs │ ├── Property.cs │ ├── PropertyAccessor.cs │ ├── Region.cs │ ├── RegionEnd.cs │ ├── RegionStart.cs │ ├── Struct.cs │ └── UsingStatement.cs ├── DoubleLookup.cs ├── Extensions │ └── IEnumerableExtensions.cs ├── FormatterUtility.cs ├── Helper.cs ├── IBaseConstruct.cs ├── IBody.cs ├── ICodeRoot.cs ├── IParser.cs ├── LookupList.cs ├── ParseResults.cs ├── ParserSyntaxError.cs ├── PreprocessorSection.cs ├── ProGrammar Files │ ├── CS.GDL │ ├── CSharp.GDP │ └── CSharpGrammar.GMR ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── CSharp.GMR ├── SqlFormatter.cs ├── TextRange.cs ├── VB │ ├── AssemblyInfo.cs │ ├── VBAttribute.cs │ ├── VBAttributePrinter.cs │ ├── VBAttributeSection.cs │ ├── VBAttributeSectionPrinter.cs │ ├── VBBaseConstruct.cs │ ├── VBBaseConstructPrinter.cs │ ├── VBClass.cs │ ├── VBClassPrinter.cs │ ├── VBCodeFormatter.cs │ ├── VBCodeRoot.cs │ ├── VBCodeRootPrinter.cs │ ├── VBCommentObject.cs │ ├── VBConstant.cs │ ├── VBConstantPrinter.cs │ ├── VBConstructor.cs │ ├── VBConstructorPrinter.cs │ ├── VBController.cs │ ├── VBDataType.cs │ ├── VBDataTypePrinter.cs │ ├── VBDelegate.cs │ ├── VBDelegatePrinter.cs │ ├── VBDestructor.cs │ ├── VBDestructorPrinter.cs │ ├── VBEmptyPlaceholder.cs │ ├── VBEmptyPlaceholderPrinter.cs │ ├── VBEnumeration.cs │ ├── VBEnumerationPrinter.cs │ ├── VBEvent.cs │ ├── VBEventPrinter.cs │ ├── VBField.cs │ ├── VBFieldPrinter.cs │ ├── VBFormatSettings.cs │ ├── VBFunction.cs │ ├── VBFunctionPrinter.cs │ ├── VBIndexer.cs │ ├── VBIndexerPrinter.cs │ ├── VBInterface.cs │ ├── VBInterfaceAccessor.cs │ ├── VBInterfaceAccessorPrinter.cs │ ├── VBInterfaceEvent.cs │ ├── VBInterfaceEventPrinter.cs │ ├── VBInterfaceIndexer.cs │ ├── VBInterfaceIndexerPrinter.cs │ ├── VBInterfaceMethod.cs │ ├── VBInterfaceMethodPrinter.cs │ ├── VBInterfacePrinter.cs │ ├── VBInterfaceProperty.cs │ ├── VBInterfacePropertyPrinter.cs │ ├── VBNamespace.cs │ ├── VBNamespacePrinter.cs │ ├── VBOperator.cs │ ├── VBOperatorPrinter.cs │ ├── VBParameter.cs │ ├── VBParameterBase.cs │ ├── VBParameterPrinter.cs │ ├── VBParser.cs │ ├── VBProperty.cs │ ├── VBPropertyAccessor.cs │ ├── VBPropertyAccessorPrinter.cs │ ├── VBPropertyPrinter.cs │ ├── VBRegion.cs │ ├── VBRegionEnd.cs │ ├── VBRegionEndPrinter.cs │ ├── VBRegionPrinter.cs │ ├── VBRegionStart.cs │ ├── VBRegionStartPrinter.cs │ ├── VBStruct.cs │ ├── VBStructPrinter.cs │ ├── VBUsingStatement.cs │ └── VBUsingStatementPrinter.cs └── Xml │ ├── Attribute.cs │ ├── AttributeList.cs │ ├── CDataSection.cs │ ├── Comment.cs │ ├── Document.cs │ ├── DocumentTypeDeclaration.cs │ ├── Element.cs │ ├── ElementType.cs │ ├── EntityReferences.cs │ ├── NumericCharacterReference.cs │ ├── ParameterEntity.cs │ ├── ProcessingInstruction.cs │ ├── Prolog.cs │ └── XmlDeclaration.cs ├── ArchAngel.Providers.Database ├── AccessDAL │ ├── AccessBase.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ └── View.cs ├── ArchAngel.Providers.Database.csproj ├── BLL │ ├── ConnectionStringHelper.cs │ ├── Database.cs │ ├── Helper.cs │ ├── ScriptBLL.cs │ ├── Search.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ ├── Version2SerializationBinder.cs │ └── View.cs ├── ClassDiagram2.cd ├── Controls │ ├── AssociationWizard │ │ ├── Screen1.Designer.cs │ │ ├── Screen1.cs │ │ ├── Screen1.resx │ │ ├── Screen2.Designer.cs │ │ ├── Screen2.cs │ │ ├── Screen2.resx │ │ ├── frmAssociationWizard.Designer.cs │ │ ├── frmAssociationWizard.cs │ │ └── frmAssociationWizard.resx │ ├── ContentItems │ │ ├── Controller.cs │ │ ├── EditModel.Designer.cs │ │ ├── EditModel.cs │ │ ├── EditModel.resx │ │ ├── SetupDatabase.Designer.cs │ │ ├── SetupDatabase.cs │ │ └── SetupDatabase.resx │ ├── FilterWizard │ │ ├── ucFilterColumns.Designer.cs │ │ ├── ucFilterColumns.cs │ │ ├── ucFilterColumns.resx │ │ ├── ucFilterReturnOrder.Designer.cs │ │ ├── ucFilterReturnOrder.cs │ │ ├── ucFilterReturnOrder.resx │ │ ├── ucFilterStart.Designer.cs │ │ ├── ucFilterStart.cs │ │ ├── ucFilterStart.resx │ │ ├── ucFilterSummary.Designer.cs │ │ ├── ucFilterSummary.cs │ │ ├── ucFilterSummary.resx │ │ ├── ucFilterWhere.Designer.cs │ │ ├── ucFilterWhere.cs │ │ └── ucFilterWhere.resx │ ├── FormColumn.Designer.cs │ ├── FormColumn.cs │ ├── FormColumn.resx │ ├── FormFilter.Designer.cs │ ├── FormFilter.cs │ ├── FormFilter.resx │ ├── FormFilter2.Designer.cs │ ├── FormFilter2.cs │ ├── FormFilter2.resx │ ├── FormIndex.Designer.cs │ ├── FormIndex.cs │ ├── FormIndex.resx │ ├── FormKey.Designer.cs │ ├── FormKey.cs │ ├── FormKey.resx │ ├── FormLookup.Designer.cs │ ├── FormLookup.cs │ ├── FormLookup.resx │ ├── FormMapColumn.Designer.cs │ ├── FormMapColumn.cs │ ├── FormMapColumn.resx │ ├── FormRelationship.Designer.cs │ ├── FormRelationship.cs │ ├── FormRelationship.resx │ ├── FormScriptObject.Designer.cs │ ├── FormScriptObject.cs │ ├── FormScriptObject.resx │ ├── FormSelectDatabase.Designer.cs │ ├── FormSelectDatabase.cs │ └── FormSelectDatabase.resx ├── DALFactory │ └── DataAccess.cs ├── Docs │ └── ArchAngel Features.doc ├── Helper.cs ├── Helper │ ├── CSharp.cs │ ├── DataTypeSQL.txt │ ├── DatabaseConstant.cs │ ├── Parameter.cs │ ├── ReservedWordCSharp.txt │ ├── ReservedWordSQL.txt │ ├── SQLServer.cs │ ├── Script.cs │ └── Utility.cs ├── IDAL │ ├── IHelper.cs │ ├── IStoredProcedure.cs │ ├── ITable.cs │ └── IView.cs ├── ITemplate │ ├── ITemplate.cs │ ├── TemplateInfo │ │ ├── File.cs │ │ ├── Folder.cs │ │ ├── Function.cs │ │ ├── Option.cs │ │ ├── Output.cs │ │ ├── Project.cs │ │ └── Script.cs │ └── Utility.cs ├── Model │ ├── AppConfig.cs │ ├── ArchangelEditorInfo.cs │ ├── Association.cs │ ├── Attributes.cs │ ├── Column.cs │ ├── Compare.cs │ ├── DataTypes.cs │ ├── Database.cs │ ├── DatabaseConnection.cs │ ├── DefaultValueFunction.cs │ ├── Filter.cs │ ├── IScriptBase.cs │ ├── Index.cs │ ├── Key.cs │ ├── Lookup.cs │ ├── LookupValue.cs │ ├── ManyToManyRelationship.cs │ ├── ManyToOneRelationship.cs │ ├── MapColumn.cs │ ├── OneToManyRelationship.cs │ ├── OneToOneRelationship.cs │ ├── Relationship.cs │ ├── RestrictedValue.cs │ ├── ScriptBase.cs │ ├── ScriptObject.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ ├── UserOption.cs │ └── View.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── licenses.config │ └── licenses.licx ├── ProviderInfo.cs ├── Resources │ ├── Thumbs.db │ ├── refresh_database.ico │ ├── refresh_database.png │ └── reset.png ├── SQLServerDAL_2000 │ ├── ColumnHelper.cs │ ├── Database.cs │ ├── Helper.cs │ ├── SQLServer.cs │ ├── SQLServerBase.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ └── View.cs ├── SQLServerDAL_2005 │ ├── ColumnHelper.cs │ ├── Database.cs │ ├── Helper.cs │ ├── SQLServer.cs │ ├── SQLServerBase.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ └── View.cs ├── SQLServerDAL_ADONET │ ├── ColumnHelper.cs │ ├── DB Restrictions.txt │ ├── SQLServerBase.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ └── View.cs ├── SQLServerDAL_DMO │ ├── ColumnHelper.cs │ ├── Database.cs │ ├── Helper.cs │ ├── SQLServer.cs │ ├── SQLServerBase.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ └── View.cs ├── SQLServerDAL_Express │ ├── ColumnHelper.cs │ ├── Database.cs │ ├── Helper.cs │ ├── SQLServer.cs │ ├── SQLServerBase.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ └── View.cs ├── SQLServerDAL_SMO │ ├── ColumnHelper.cs │ ├── Database.cs │ ├── Helper.cs │ ├── SQLServer.cs │ ├── SQLServerBase.cs │ ├── StoredProcedure.cs │ ├── Table.cs │ └── View.cs ├── SerializerHelper.cs └── TempDeserializerBase.cs ├── ArchAngel.Providers.EntityModel.UnitTesting ├── 1Table3Columns - SQL Server.sql ├── 1Table3Columns.sdf ├── 2Tables1Relationship - SQL Server.sql ├── 2Tables1Relationship.sdf ├── 3Tables1Relationship - SQL Server.sql ├── App.config ├── ArchAngel.Providers.EntityModel.UnitTesting.csproj ├── CreateDatabase - SQL Server.sql ├── DropAllObjects - SQL Server.sql ├── EditModel │ └── View │ │ ├── Specs_For_ColumnCollectionPresenter.cs │ │ ├── Specs_For_ColumnPresenter.cs │ │ ├── Specs_For_ComponentPresenter.cs │ │ ├── Specs_For_ComponentPropertyPresenter.cs │ │ ├── Specs_For_ComponentSpecPresenter.cs │ │ ├── Specs_For_DatabaseEntityPresenter.cs │ │ ├── Specs_For_DatabasePresenter.cs │ │ ├── Specs_For_DetailedDatabaseMergeResultPresenter.cs │ │ ├── Specs_For_EntityKeyPresenter.cs │ │ ├── Specs_For_EntityPresenter.cs │ │ ├── Specs_For_IndexPresenter.cs │ │ ├── Specs_For_KeyPresenter.cs │ │ ├── Specs_For_MappingPresenter.cs │ │ ├── Specs_For_PropertyPresenter.cs │ │ ├── Specs_For_ReferencePresenter.cs │ │ ├── Specs_For_RelationshipPresenter.cs │ │ └── Specs_For_SimpleDBMergeResultPresenter.cs ├── ForeignKeyToUniqueKey - SQL Server.sql ├── ForeignKeyToUniqueKey.sdf ├── Integration Tests │ ├── ModelSetup.cs │ ├── Specs_For_Entities.cs │ ├── Specs_For_Indexes.cs │ ├── Specs_For_Keys.cs │ ├── Specs_For_Managing_The_Model.cs │ ├── Specs_For_References.cs │ ├── Specs_For_Relationships.cs │ └── Specs_For_Tables.cs ├── Model │ ├── Database │ │ ├── Discrimination │ │ │ └── Specs_For_DiscriminatorBuilder.cs │ │ ├── Opening_Database.cs │ │ ├── Serialisation │ │ │ ├── Specs_For_Deserialisation_Of_A_Column.cs │ │ │ ├── Specs_For_Deserialisation_Of_A_Database.cs │ │ │ ├── Specs_For_Deserialisation_Of_A_Key.cs │ │ │ ├── Specs_For_Deserialisation_Of_A_Relationship.cs │ │ │ ├── Specs_For_Deserialisation_Of_A_ScriptObject.cs │ │ │ ├── Specs_For_Deserialisation_Of_A_Table.cs │ │ │ ├── Specs_For_Deserialisation_Of_An_Index.cs │ │ │ ├── Specs_For_Deserialisation_Of_Database_Connection_Information.cs │ │ │ ├── Specs_For_Serialisation_Of_A_Column.cs │ │ │ ├── Specs_For_Serialisation_Of_A_Database.cs │ │ │ ├── Specs_For_Serialisation_Of_A_Key.cs │ │ │ ├── Specs_For_Serialisation_Of_A_Relationship.cs │ │ │ ├── Specs_For_Serialisation_Of_A_ScriptBase.cs │ │ │ ├── Specs_For_Serialisation_Of_A_Table.cs │ │ │ ├── Specs_For_Serialisation_Of_An_Index.cs │ │ │ └── Specs_For_Serialisation_Of_Database_Connection_Information.cs │ │ ├── Specs_For_Database_Connections.cs │ │ ├── Specs_For_Database_Relationships.cs │ │ ├── Specs_For_Helpers.cs │ │ ├── Specs_For_Merge Operation_Text.cs │ │ ├── Specs_For_Merge_Operations.cs │ │ ├── Specs_For_Merging_Databases.cs │ │ ├── Specs_For_Merging_Databases_Relationships.cs │ │ ├── Specs_For_Table_Processor.cs │ │ ├── SqlServerHelper.cs │ │ ├── TestDatabaseLoader.cs │ │ └── Validation │ │ │ ├── Specs_For_Index_Validation.cs │ │ │ └── Specs_For_Table_Validation.cs │ ├── EntityLayer │ │ ├── Serialisation │ │ │ ├── Specs_For_Deserialisation_Of_ComponentProperty.cs │ │ │ ├── Specs_For_Deserialisation_Of_ComponentSpecification.cs │ │ │ ├── Specs_For_Deserialisation_Of_Components.cs │ │ │ ├── Specs_For_Deserialisation_Of_Discriminators.cs │ │ │ ├── Specs_For_Deserialisation_Of_Entities.cs │ │ │ ├── Specs_For_Deserialisation_Of_EntitySets.cs │ │ │ ├── Specs_For_Deserialisation_Of_Keys.cs │ │ │ ├── Specs_For_Deserialisation_Of_Properties.cs │ │ │ ├── Specs_For_Deserialisation_Of_References.cs │ │ │ ├── Specs_For_Serialisation_Of_ComponentProperty.cs │ │ │ ├── Specs_For_Serialisation_Of_ComponentSpecifications.cs │ │ │ ├── Specs_For_Serialisation_Of_Components.cs │ │ │ ├── Specs_For_Serialisation_Of_Discriminators.cs │ │ │ ├── Specs_For_Serialisation_Of_Entities.cs │ │ │ ├── Specs_For_Serialisation_Of_EntitySets.cs │ │ │ ├── Specs_For_Serialisation_Of_Keys.cs │ │ │ ├── Specs_For_Serialisation_Of_Properties.cs │ │ │ └── Specs_For_Serialisation_Of_References.cs │ │ ├── Specs_For_Components.cs │ │ ├── Specs_For_Entities.cs │ │ └── Specs_For_Managing_The_Model.cs │ ├── MappingLayer │ │ ├── Serialisation │ │ │ ├── Specs_For_Deserialisation_Of_ComponentMappings.cs │ │ │ ├── Specs_For_Deserialisation_Of_MappingSets.cs │ │ │ ├── Specs_For_Deserialisation_Of_Mappings.cs │ │ │ ├── Specs_For_Deserialisation_Of_ReferenceMappings.cs │ │ │ ├── Specs_For_Deserialisation_Of_RelationshipMappings.cs │ │ │ ├── Specs_For_Serialisation_Of_ComponentMappings.cs │ │ │ ├── Specs_For_Serialisation_Of_MappingSets.cs │ │ │ ├── Specs_For_Serialisation_Of_Mappings.cs │ │ │ ├── Specs_For_Serialisation_Of_ReferenceMappings.cs │ │ │ └── Specs_For_Serialisation_Of_RelationshipMappings.cs │ │ ├── Specs_For_ComponentMapping.cs │ │ ├── Specs_For_Creating_Entities_From_Tables.cs │ │ ├── Specs_For_Creating_Tables_From_Entities.cs │ │ ├── Specs_For_Mapping.cs │ │ ├── Specs_For_ReferenceMapping.cs │ │ └── Specs_For_RelationshipMapping.cs │ ├── Specs_For_API_Usage.cs │ ├── Specs_For_Deserialisation_Of_VirtualProperties.cs │ ├── Specs_For_SQL_To_CLR_Type_Conversion.cs │ ├── Specs_For_Serialisation_Of_VirtualProperties.cs │ └── Validation │ │ ├── Specs_For_All_Properties_Mapped.cs │ │ ├── Specs_For_Database_Naming.cs │ │ ├── Specs_For_Entity_Naming.cs │ │ ├── Specs_For_InheritanceRules.cs │ │ └── Specs_For_Validation_Rules_Engine.cs ├── MultiColumnIndexes - SQL Server.sql ├── MultiColumnIndexes.sdf ├── MultiColumnKeys - SQL Server.sql ├── MultiColumnKeys.sdf ├── NHibernate │ ├── Specs_For_Basic_CodeInsertions.cs │ ├── Specs_For_Creating_A_Database_Schema_From_NH_Config.cs │ ├── Specs_For_Loading_From_An_NHibernate_CSProj_File.cs │ ├── Specs_For_Loading_From_HBM_Files__References.cs │ ├── Specs_For_Loading_From_HBMs__Entities.cs │ └── Specs_For_Loading_From_HBMs__Inheritance.cs ├── NoneIndexType - SQL Server.sql ├── NoneIndexType.sdf ├── Properties │ ├── AssemblyInfo.cs │ ├── licenses.config │ └── licenses.licx ├── Provider │ └── Specs_For_ProviderInfo.cs └── Resources │ ├── BasicClass.txt │ ├── NHProject.txt │ ├── TablePerClassHierarchy.hbm.xml │ ├── TablePerSubclass.hbm.xml │ ├── basic.hbm.xml │ ├── basicSQL2005.cfg.xml │ ├── basicSQLCE.cfg.xml │ ├── two-related-entities-1To1.hbm.xml │ ├── two-related-entities-MToM.hbm.xml │ ├── two-related-entities-map.hbm.xml │ └── two-related-entities.hbm.xml ├── ArchAngel.Providers.EntityModel.sln ├── ArchAngel.Providers.EntityModel ├── ArchAngel.Providers.EntityModel.csproj ├── ArchAngel.Providers.EntityModel.csproj.DotSettings.user ├── ArchAngel.Providers.EntityModel.csproj.bak ├── ArchAngel.Providers.EntityModel.csproj.user ├── Controller │ ├── DatabaseLayer │ │ ├── DatabaseLoader.cs │ │ ├── DatabaseLoaderException.cs │ │ ├── DatabaseMergeResult.cs │ │ ├── DatabaseProcessor.cs │ │ ├── DatabaseTypes.cs │ │ ├── Exceptions.cs │ │ ├── FirebirdDatabaseConnector.cs │ │ ├── FirebirdDatabaseLoader.cs │ │ ├── IDatabaseConnector.cs │ │ ├── IDatabaseLoader.cs │ │ ├── MergeOperations.cs │ │ ├── MySQLDatabaseConnector.cs │ │ ├── MySQLDatabaseLoader.cs │ │ ├── OracleDatabaseConnector.cs │ │ ├── OracleDatabaseLoader.cs │ │ ├── PostgreSQLDatabaseConnector.cs │ │ ├── PostgreSQLDatabaseLoader.cs │ │ ├── SQLCEDatabaseConnector.cs │ │ ├── SQLCEDatabaseLoader.cs │ │ ├── SQLServer2005DatabaseConnector.cs │ │ ├── SQLServer2005DatabaseLoader.cs │ │ ├── SQLiteDatabaseConnector.cs │ │ ├── SQLiteDatabaseLoader.cs │ │ ├── SQLiteParsing │ │ │ ├── SQLiteLexer.cs │ │ │ └── SQLiteParser.cs │ │ ├── SchemaData.cs │ │ ├── SqlServerExpressDatabaseConnector.cs │ │ ├── SqlServerExpressDatabaseLoader.cs │ │ └── TableProcessor.cs │ ├── MappingLayer │ │ ├── EntityProcessor.cs │ │ └── MappingProcessor.cs │ └── Validation │ │ ├── ExceptionValidationRule.cs │ │ ├── Interfaces.cs │ │ ├── Modules │ │ ├── OneToOneDatabaseMappingModule.cs │ │ └── ValidateModelModule.cs │ │ ├── Rules │ │ ├── AllColumnsHaveADataTypeRule.cs │ │ ├── AllComponentPropertiesHaveADataTypeRule.cs │ │ ├── AllEntitiesHaveAPrimaryKeyRule.cs │ │ ├── AllPrimaryColumnsUsedRule.cs │ │ ├── AllPropertiesHaveADataTypeRule.cs │ │ ├── AllReferencesHaveBackingDataRule.cs │ │ ├── AllRelationshipsHaveValidKeys.cs │ │ ├── CheckAllPropertiesMappedRule.cs │ │ ├── CheckEntityComponentsRule.cs │ │ ├── CheckEntityInheritanceForTablePerConcreteClassRule.cs │ │ ├── CheckEntityInheritanceForTablePerHierarchyRule.cs │ │ ├── CheckEntityInheritanceForTablePerSubclassRule.cs │ │ ├── CheckInheritanceClassesAreNotRelated.cs │ │ ├── DatabaseNamingRule.cs │ │ └── EntityNamingRule.cs │ │ ├── ValidationResult.cs │ │ └── ValidationRulesEngine.cs ├── FunctionInfo.xml ├── Helper │ ├── ConnectionStringHelper.cs │ ├── DataTypeSQL.txt │ ├── DatabaseConstant.cs │ ├── NameHelper.cs │ ├── ReservedWordCSharp.txt │ ├── ReservedWordSQL.txt │ └── SQLServer.cs ├── Model │ ├── Attributes.cs │ ├── DatabaseLayer │ │ ├── Column.cs │ │ ├── Database.cs │ │ ├── DatabaseDefinedAttribute.cs │ │ ├── DatabaseDeserialisationScheme.cs │ │ ├── DatabaseSerialisationScheme.cs │ │ ├── Discrimination │ │ │ ├── AndGrouping.cs │ │ │ ├── BasicDiscriminatorProcessor.cs │ │ │ ├── ColumnWrapperImpl.cs │ │ │ ├── ConditionImpl.cs │ │ │ ├── DiscriminatorBuilder.cs │ │ │ ├── DiscriminatorImpl.cs │ │ │ └── Interfaces.cs │ │ ├── EntityObject.cs │ │ ├── Index.cs │ │ ├── Interfaces.cs │ │ ├── Key.cs │ │ ├── Model2ClassDiagram.cd │ │ ├── Relationship.cs │ │ ├── ScriptBase.cs │ │ └── Table.cs │ ├── DatabaseLayerExtensions.cs │ ├── EntityLayer │ │ ├── Cache.cs │ │ ├── ComponentSpecification.cs │ │ ├── Discriminator.cs │ │ ├── Entity.cs │ │ ├── EntityGenerator.cs │ │ ├── EntitySet.cs │ │ ├── EntitySetDeserialisationScheme.cs │ │ ├── EntitySetSerialisationScheme.cs │ │ ├── Interfaces │ │ │ ├── Component.cs │ │ │ ├── ComponentProperty.cs │ │ │ ├── ComponentSpecification.cs │ │ │ ├── Computation.cs │ │ │ ├── CustomAttribute.cs │ │ │ ├── CustomFunction.cs │ │ │ ├── CustomImplement.cs │ │ │ ├── CustomNamespace.cs │ │ │ ├── CustomProperty.cs │ │ │ ├── Entity.cs │ │ │ ├── EntityKey.cs │ │ │ ├── EntitySet.cs │ │ │ ├── IDiscriminator.cs │ │ │ ├── IEntityGenerator.cs │ │ │ ├── IPropertyContainer.cs │ │ │ ├── Property.cs │ │ │ └── Reference.cs │ │ ├── Key.cs │ │ ├── Property.cs │ │ ├── Reference.cs │ │ └── ValidationOptions.cs │ ├── EntityLayerExtensions.cs │ ├── Enums.cs │ ├── EventAggregator.cs │ ├── IItemContainer.cs │ ├── MappingLayer │ │ ├── ComponentMapping.cs │ │ ├── FluentInterfaces.cs │ │ ├── Interfaces.cs │ │ ├── Mapping.cs │ │ ├── MappingCache.cs │ │ ├── MappingImpl.cs │ │ ├── MappingSet.cs │ │ ├── MappingSetDeserialisationScheme.cs │ │ ├── MappingSetSerialisationScheme.cs │ │ ├── Prefix.cs │ │ ├── RelationshipReferenceMapping.cs │ │ └── TableReferenceMapping.cs │ ├── MappingLayerExtensions.cs │ ├── ModelObject.cs │ ├── TableExtensions.cs │ └── VirtualPropertySerialisation.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── licenses.config │ └── licenses.licx ├── ProviderInfo.cs ├── Resources │ ├── AddDB_32.png │ ├── AddReference_32.png │ ├── Add_Component_32.png │ ├── Add_Relationship_32.png │ ├── Add_Table_32.png │ ├── Column.png │ ├── ColumnInherited.png │ ├── OneToOne_32.png │ ├── RemoveEntity_32.png │ ├── Remove_Component_32.png │ ├── Remove_Reference_32.png │ ├── Remove_Relationship_32.png │ ├── Remove_Table_32.png │ ├── Thumbs.db │ ├── add_entity_32.png │ ├── delete_a_16.png │ ├── doc_add_32.png │ ├── doc_arrow_right_green_16.png │ ├── edit_16_h.png │ ├── edit_16_h1.png │ ├── field_insert_b_16.png │ ├── field_insert_b_161.png │ ├── flow_chart_16.png │ ├── flow_chart_32_h.png │ ├── folder_add_32.png │ ├── import_32.png │ ├── insert_32_h.png │ ├── next_32.png │ ├── previous_32.png │ ├── refresh_database.ico │ ├── refresh_database.png │ ├── remove_32_h.png │ ├── reset.png │ ├── table_to_entity.png │ ├── tick_32.png │ ├── tick_32_h.png │ ├── transfer_data_32.png │ ├── treenode_add_32.png │ └── treenode_delete_32.png ├── SchemaController.cs ├── Settings1.Designer.cs ├── Settings1.settings ├── SettingsEngine.cs ├── ShapeStyles.xaml ├── TempDeserializerBase.cs ├── UI │ ├── ComboTreeGridControl.Designer.cs │ ├── ComboTreeGridControl.cs │ ├── ComboTreeGridControl.resx │ ├── CustomCode.Designer.cs │ ├── CustomCode.cs │ ├── CustomCode.resx │ ├── Diagrammer │ │ ├── EntityShape.cs │ │ ├── ISchemaController.cs │ │ ├── InheritanceCardinalityConverter.cs │ │ ├── InheritanceDrawingStrategy.cs │ │ ├── ReferenceCardinalityConverter.cs │ │ ├── ReferenceDrawingStrategy.cs │ │ └── TableShape.cs │ ├── EditModel.Designer.cs │ ├── EditModel.cs │ ├── EditModel.resx │ ├── Editors │ │ ├── ComponentDetailsEditor.Designer.cs │ │ ├── ComponentDetailsEditor.cs │ │ ├── ComponentDetailsEditor.resx │ │ ├── ComponentMappingDiagram.Designer.cs │ │ ├── ComponentMappingDiagram.cs │ │ ├── ComponentMappingDiagram.resx │ │ ├── ComponentPropertiesEditor.Designer.cs │ │ ├── ComponentPropertiesEditor.cs │ │ ├── ComponentPropertiesEditor.resx │ │ ├── DetailsEditorHelper.cs │ │ ├── EntityDetailsEditor.Designer.cs │ │ ├── EntityDetailsEditor.cs │ │ ├── EntityDetailsEditor.resx │ │ ├── EntityHybridDiagram.Designer.cs │ │ ├── EntityHybridDiagram.cs │ │ ├── EntityHybridDiagram.resx │ │ ├── EntityInheritanceDiagram.Designer.cs │ │ ├── EntityInheritanceDiagram.cs │ │ ├── EntityInheritanceDiagram.resx │ │ ├── EntityMappingDiagram.Designer.cs │ │ ├── EntityMappingDiagram.cs │ │ ├── EntityMappingDiagram.resx │ │ ├── EntityPropertiesEditor.Designer.cs │ │ ├── EntityPropertiesEditor.cs │ │ ├── EntityPropertiesEditor.resx │ │ ├── EntityReferenceDiagram.Designer.cs │ │ ├── EntityReferenceDiagram.cs │ │ ├── EntityReferenceDiagram.resx │ │ ├── Resources │ │ │ ├── EntityDataModel_complex_type_16x16.png │ │ │ ├── Exit2.png │ │ │ ├── Filter2HS.png │ │ │ ├── TableHS.png │ │ │ ├── VSObject_Class.bmp │ │ │ ├── about_16.png │ │ │ ├── delete_x_16.png │ │ │ ├── delete_x_16_h.png │ │ │ ├── edit_16.png │ │ │ ├── filter16.png │ │ │ ├── filter16_d.png │ │ │ ├── filter16_h.png │ │ │ ├── insert_16.png │ │ │ ├── insert_16_h.png │ │ │ ├── join_video24.png │ │ │ ├── plus_16.png │ │ │ ├── plus_16_h.png │ │ │ ├── print_preview_16.png │ │ │ ├── record_blue16.png │ │ │ ├── record_blue16_h.png │ │ │ ├── split_video24.png │ │ │ ├── square_light_blue_16.png │ │ │ ├── stop_16.png │ │ │ ├── tick_16.png │ │ │ ├── tree_24.png │ │ │ ├── tree_24_d.png │ │ │ ├── undo_square_16.png │ │ │ ├── undo_square_16_d.png │ │ │ ├── view24.png │ │ │ └── view24_d.png │ │ ├── TableColumnsEditor.Designer.cs │ │ ├── TableColumnsEditor.cs │ │ ├── TableColumnsEditor.resx │ │ ├── TableDetailsEditor.Designer.cs │ │ ├── TableDetailsEditor.cs │ │ ├── TableDetailsEditor.resx │ │ ├── TableKeysEditor.Designer.cs │ │ ├── TableKeysEditor.cs │ │ ├── TableKeysEditor.resx │ │ ├── TableMappingDiagram.Designer.cs │ │ ├── TableMappingDiagram.cs │ │ ├── TableMappingDiagram.resx │ │ ├── TableRelationshipsDiagram.Designer.cs │ │ ├── TableRelationshipsDiagram.cs │ │ ├── TableRelationshipsDiagram.resx │ │ └── UserControls │ │ │ ├── CodeInput.Designer.cs │ │ │ ├── CodeInput.cs │ │ │ ├── CodeInput.resx │ │ │ ├── DatabaseChanges.Designer.cs │ │ │ ├── DatabaseChanges.cs │ │ │ ├── DatabaseChanges.resx │ │ │ ├── DatabaseSynchroEditor.Designer.cs │ │ │ ├── DatabaseSynchroEditor.cs │ │ │ ├── DatabaseSynchroEditor.resx │ │ │ ├── FormAttributeEditor.Designer.cs │ │ │ ├── FormAttributeEditor.cs │ │ │ ├── FormAttributeEditor.resx │ │ │ ├── FormAvailableInheritance.Designer.cs │ │ │ ├── FormAvailableInheritance.cs │ │ │ ├── FormAvailableInheritance.resx │ │ │ ├── FormComponentMappingEditor.Designer.cs │ │ │ ├── FormComponentMappingEditor.cs │ │ │ ├── FormComponentMappingEditor.resx │ │ │ ├── FormDiscriminator.Designer.cs │ │ │ ├── FormDiscriminator.cs │ │ │ ├── FormDiscriminator.resx │ │ │ ├── FormEntityMappingEditor.Designer.cs │ │ │ ├── FormEntityMappingEditor.cs │ │ │ ├── FormEntityMappingEditor.resx │ │ │ ├── FormInheritanceHierarchy.Designer.cs │ │ │ ├── FormInheritanceHierarchy.cs │ │ │ ├── FormInheritanceHierarchy.resx │ │ │ ├── FormInheritanceInfo.Designer.cs │ │ │ ├── FormInheritanceInfo.cs │ │ │ ├── FormInheritanceInfo.resx │ │ │ ├── FormRefactorToComponent.Designer.cs │ │ │ ├── FormRefactorToComponent.cs │ │ │ ├── FormRefactorToComponent.resx │ │ │ ├── FormReferenceEditor2.Designer.cs │ │ │ ├── FormReferenceEditor2.cs │ │ │ ├── FormReferenceEditor2.resx │ │ │ ├── FormRelationshipEditor.Designer.cs │ │ │ ├── FormRelationshipEditor.cs │ │ │ ├── FormRelationshipEditor.resx │ │ │ ├── FormSelectEntityForInheritance.Designer.cs │ │ │ ├── FormSelectEntityForInheritance.cs │ │ │ ├── FormSelectEntityForInheritance.resx │ │ │ ├── FormSelectExistingEntity.Designer.cs │ │ │ ├── FormSelectExistingEntity.cs │ │ │ ├── FormSelectExistingEntity.resx │ │ │ ├── FormSelectSchemas.Designer.cs │ │ │ ├── FormSelectSchemas.cs │ │ │ ├── FormSelectSchemas.resx │ │ │ ├── FormSelectTable.Designer.cs │ │ │ ├── FormSelectTable.cs │ │ │ ├── FormSelectTable.resx │ │ │ ├── FormSubClassDiscriminator.Designer.cs │ │ │ ├── FormSubClassDiscriminator.cs │ │ │ ├── FormSubClassDiscriminator.resx │ │ │ ├── FormTableRelationshipEditor.Designer.cs │ │ │ ├── FormTableRelationshipEditor.cs │ │ │ ├── FormTableRelationshipEditor.resx │ │ │ ├── InheritanceHierarchy.Designer.cs │ │ │ ├── InheritanceHierarchy.cs │ │ │ ├── InheritanceHierarchy.resx │ │ │ ├── ModelChanges.Designer.cs │ │ │ ├── ModelChanges.cs │ │ │ ├── ModelChanges.resx │ │ │ ├── NamespaceEditor.Designer.cs │ │ │ ├── NamespaceEditor.cs │ │ │ ├── NamespaceEditor.resx │ │ │ ├── NamespaceInput.Designer.cs │ │ │ ├── NamespaceInput.cs │ │ │ ├── NamespaceInput.resx │ │ │ └── SynchroGrid │ │ │ ├── Resources │ │ │ ├── arrow_left_light_green_16.png │ │ │ ├── arrow_left_light_green_24.png │ │ │ ├── arrow_left_orange_16.png │ │ │ ├── arrow_left_orange_24.png │ │ │ ├── arrow_right_light_green_16.png │ │ │ ├── arrow_right_light_green_24.png │ │ │ ├── arrow_right_orange_16.png │ │ │ ├── arrow_right_orange_24.png │ │ │ └── stop_16.png │ │ │ ├── SynchroCanvas.Designer.cs │ │ │ ├── SynchroCanvas.cs │ │ │ ├── SynchroCanvas.resx │ │ │ └── TableRow.cs │ ├── Filters │ │ ├── DiagramViewFilter.cs │ │ ├── ReferenceFilter.cs │ │ ├── RelatedEntitiesFilter.cs │ │ ├── RelatedEntityObjectsFilter.cs │ │ └── ShowAllFilters.cs │ ├── FormDetailedDatabaseChanges.Designer.cs │ ├── FormDetailedDatabaseChanges.cs │ ├── FormDetailedDatabaseChanges.resx │ ├── FormSelect.Designer.cs │ ├── FormSelect.cs │ ├── FormSelect.resx │ ├── FormSelectColumn.Designer.cs │ ├── FormSelectColumn.cs │ ├── FormSelectColumn.resx │ ├── FormSelectComponent.Designer.cs │ ├── FormSelectComponent.cs │ ├── FormSelectComponent.resx │ ├── FormSelectEntity.Designer.cs │ ├── FormSelectEntity.cs │ ├── FormSelectEntity.resx │ ├── IUserInteractor.cs │ ├── LoadDatabaseForm.Designer.cs │ ├── LoadDatabaseForm.cs │ ├── LoadDatabaseForm.resx │ ├── PresenterController.cs │ ├── Presenters │ │ ├── ColumnCollectionPresenter.cs │ │ ├── ColumnPresenter.cs │ │ ├── ComponentPresenter.cs │ │ ├── ComponentPropertyPresenter.cs │ │ ├── ComponentSpecificationPresenter.cs │ │ ├── CreateOneToOneMappingPresenter.cs │ │ ├── DatabasePresenter.cs │ │ ├── DatabaseTablePresenter.cs │ │ ├── DetailedDBMergeResultPresenter.cs │ │ ├── EntityKeyPresenter.cs │ │ ├── EntityPresenter.cs │ │ ├── FirebirdHelper.cs │ │ ├── IDBMergeResultProcessor.cs │ │ ├── IDatabaseFormFiller.cs │ │ ├── IndexCollectionPresenter.cs │ │ ├── IndexPresenter.cs │ │ ├── ItemCollectionPresenter.cs │ │ ├── KeyCollectionPresenter.cs │ │ ├── KeyPresenter.cs │ │ ├── MappingPresenter.cs │ │ ├── MySQLHelper.cs │ │ ├── OracleHelper.cs │ │ ├── PostgreSQLHelper.cs │ │ ├── PresenterBase.cs │ │ ├── PropertyPresenter.cs │ │ ├── ReferencePresenter.cs │ │ ├── RelationshipPresenter.cs │ │ ├── SQLiteHelper.cs │ │ ├── SimpleDBMergeResultPresenter.cs │ │ ├── SqlServer2005Helper.cs │ │ ├── SqlServerExpressHelper.cs │ │ └── TableCollectionPresenter.cs │ ├── PropertyGrids │ │ ├── Entities.Designer.cs │ │ ├── Entities.cs │ │ ├── Entities.resx │ │ ├── EntityForm2.Designer.cs │ │ ├── EntityForm2.cs │ │ ├── EntityForm2.resx │ │ ├── FormCollectionAdapter.cs │ │ ├── FormColumn.Designer.cs │ │ ├── FormColumn.cs │ │ ├── FormColumn.resx │ │ ├── FormComponent.Designer.cs │ │ ├── FormComponent.cs │ │ ├── FormComponent.resx │ │ ├── FormComponentSpecification.Designer.cs │ │ ├── FormComponentSpecification.cs │ │ ├── FormComponentSpecification.resx │ │ ├── FormCreateNewRelationship.Designer.cs │ │ ├── FormCreateNewRelationship.cs │ │ ├── FormCreateNewRelationship.resx │ │ ├── FormCreateOneToOneMapping.Designer.cs │ │ ├── FormCreateOneToOneMapping.cs │ │ ├── FormCreateOneToOneMapping.resx │ │ ├── FormDatabase.Designer.cs │ │ ├── FormDatabase.cs │ │ ├── FormDatabase.resx │ │ ├── FormDatabaseRefreshResults.Designer.cs │ │ ├── FormDatabaseRefreshResults.cs │ │ ├── FormDatabaseRefreshResults.resx │ │ ├── FormDatabaseTable.Designer.cs │ │ ├── FormDatabaseTable.cs │ │ ├── FormDatabaseTable.resx │ │ ├── FormDatabaseUpdateScripts.Designer.cs │ │ ├── FormDatabaseUpdateScripts.cs │ │ ├── FormDatabaseUpdateScripts.resx │ │ ├── FormEntity.Designer.cs │ │ ├── FormEntity.cs │ │ ├── FormEntity.resx │ │ ├── FormEntityKey.Designer.cs │ │ ├── FormEntityKey.cs │ │ ├── FormEntityKey.resx │ │ ├── FormIndex.Designer.cs │ │ ├── FormIndex.cs │ │ ├── FormIndex.resx │ │ ├── FormItemCollection.Designer.cs │ │ ├── FormItemCollection.cs │ │ ├── FormItemCollection.resx │ │ ├── FormKey.Designer.cs │ │ ├── FormKey.cs │ │ ├── FormKey.resx │ │ ├── FormMapping.Designer.cs │ │ ├── FormMapping.cs │ │ ├── FormMapping.resx │ │ ├── FormPrefixes.Designer.cs │ │ ├── FormPrefixes.cs │ │ ├── FormPrefixes.resx │ │ ├── FormProperty.Designer.cs │ │ ├── FormProperty.cs │ │ ├── FormProperty.resx │ │ ├── FormReference.Designer.cs │ │ ├── FormReference.cs │ │ ├── FormReference.resx │ │ ├── FormRelationship.Designer.cs │ │ ├── FormRelationship.cs │ │ ├── FormRelationship.resx │ │ ├── Interfaces.cs │ │ ├── ValidationPropertyGrid.Designer.cs │ │ ├── ValidationPropertyGrid.cs │ │ ├── ValidationPropertyGrid.resx │ │ ├── VirtualPropertyGrid.Designer.cs │ │ ├── VirtualPropertyGrid.cs │ │ └── VirtualPropertyGrid.resx │ ├── SchemaDiagrammerController.cs │ ├── ValidationFailureView.Designer.cs │ ├── ValidationFailureView.cs │ ├── ValidationFailureView.resx │ ├── Wizards │ │ ├── ConvertKeyToComponentModelInformation.cs │ │ ├── ConvertKeyToComponentResults.cs │ │ ├── FormConvertKeyToComponent.Designer.cs │ │ ├── FormConvertKeyToComponent.cs │ │ └── FormConvertKeyToComponent.resx │ ├── ucDatabaseInformation.Designer.cs │ ├── ucDatabaseInformation.cs │ └── ucDatabaseInformation.resx └── app.config ├── ArchAngel.Scripting ├── ArchAngel.Scripting.csproj ├── ArchAngel.Scripting.csproj.user ├── NHibernate │ └── Model │ │ ├── Column.cs │ │ ├── Component.cs │ │ ├── ComponentProperty.cs │ │ ├── Entity.cs │ │ ├── Field.cs │ │ ├── Project.cs │ │ ├── Property.cs │ │ ├── Reference.cs │ │ └── Table.cs └── Properties │ └── AssemblyInfo.cs ├── ArchAngel.TemplatePackager.sln ├── ArchAngel.Templates ├── NHibernate.vnh_template ├── NHibernate │ ├── NH_Inheritance │ │ ├── AllDifferentTypes.mdf │ │ ├── AllDifferentTypes_log.ldf │ │ ├── NH_Inheritance.wbproj │ │ └── Project Files │ │ │ ├── ArchAngel_Providers_EntityModel_data │ │ │ ├── database.xml │ │ │ ├── entities.xml │ │ │ └── mappings.xml │ │ │ ├── appconfig.xml │ │ │ ├── options.xml │ │ │ └── version.txt │ ├── Northwind │ │ ├── Northwind.wbproj │ │ └── Project Files │ │ │ ├── ArchAngel_Providers_EntityModel_data │ │ │ ├── database.xml │ │ │ ├── entities.xml │ │ │ └── mappings.xml │ │ │ ├── appconfig.xml │ │ │ ├── options.xml │ │ │ └── version.txt │ ├── Project │ │ ├── NorthwindNH.wbproj │ │ └── Project Files │ │ │ ├── ArchAngel_Providers_EntityModel_data │ │ │ ├── database.xml │ │ │ ├── entities.xml │ │ │ └── mappings.xml │ │ │ ├── appconfig.xml │ │ │ ├── options.xml │ │ │ └── version.txt │ └── Template │ │ ├── NHibernate.AAT.DLL │ │ ├── NHibernate.AAT.pdb │ │ ├── NHibernate.aad │ │ ├── TestGenUI │ │ ├── NHSessionHelper.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Specs_For_Categories.cs │ │ ├── Specs_For_Customer.cs │ │ ├── Specs_For_Employees.cs │ │ ├── Specs_For_OrderLine.cs │ │ ├── Specs_For_Orders.cs │ │ ├── Specs_For_Product.cs │ │ ├── Specs_For_Region.cs │ │ ├── Specs_For_Shipper.cs │ │ ├── Specs_For_Supplier.cs │ │ ├── Specs_For_Territory.cs │ │ ├── TestGenUI.csproj │ │ ├── TestGenUI.sln │ │ ├── nunit.framework.dll │ │ └── nunit.framework.xml │ │ └── _AADProjectFiles │ │ ├── Functions │ │ ├── CustomNewProjectScreens.function.xml │ │ ├── LoadProjectOutput.function.xml │ │ └── PreGenerationModelInitialisation.function.xml │ │ ├── Outputs.xml │ │ ├── StaticFiles │ │ └── StaticFiles.xml │ │ └── UserOptions │ │ ├── AutoImport.useroption.xml │ │ ├── BytecodeGenerator.useroption.xml │ │ ├── CacheProviderClass.useroption.xml │ │ ├── CacheQueryCacheFactory.useroption.xml │ │ ├── CacheRegionPrefix.useroption.xml │ │ ├── CacheUserMinimalPuts.useroption.xml │ │ ├── CacheUserQueryCache.useroption.xml │ │ ├── ComponentProperty_UsePrivateSetter.useroption.xml │ │ ├── ComponentSpec_MarkAsSerializable.useroption.xml │ │ ├── Component_UsePrivateSetter.useroption.xml │ │ ├── DefaultAccess.useroption.xml │ │ ├── DefaultCascade.useroption.xml │ │ ├── DefaultCollectionCascade.useroption.xml │ │ ├── DefaultCollectionLazy.useroption.xml │ │ ├── DefaultInverse.useroption.xml │ │ ├── DefaultLazy.useroption.xml │ │ ├── End1CollectionType.useroption.xml │ │ ├── End1IndexColumn.useroption.xml │ │ ├── End1Inverse.useroption.xml │ │ ├── End1SqlWhereClause.useroption.xml │ │ ├── End1UsePrivateSetter.useroption.xml │ │ ├── End2CollectionType.useroption.xml │ │ ├── End2IndexColumn.useroption.xml │ │ ├── End2Inverse.useroption.xml │ │ ├── End2SqlWhereClause.useroption.xml │ │ ├── End2UsePrivateSetter.useroption.xml │ │ ├── Entity_BatchSize.useroption.xml │ │ ├── Entity_DefaultAccess.useroption.xml │ │ ├── Entity_DefaultCascade.useroption.xml │ │ ├── Entity_DefaultCollectionLazy.useroption.xml │ │ ├── Entity_DynamicInsert.useroption.xml │ │ ├── Entity_DynamicUpdate.useroption.xml │ │ ├── Entity_Lazy.useroption.xml │ │ ├── Entity_MarkAsSerializable.useroption.xml │ │ ├── Entity_Mutable.useroption.xml │ │ ├── Entity_OptimisticLock.useroption.xml │ │ ├── Entity_Persister.useroption.xml │ │ ├── Entity_Proxy.useroption.xml │ │ ├── Entity_SelectBeforeUpdate.useroption.xml │ │ ├── Entity_SqlWhereClause.useroption.xml │ │ ├── GeneratePartialClasses.useroption.xml │ │ ├── GenerateStatistics.useroption.xml │ │ ├── ImplementEqualityMembers.useroption.xml │ │ ├── MaxFetchDepth.useroption.xml │ │ ├── NHibernateVersion.useroption.xml │ │ ├── ProjectGuid.useroption.xml │ │ ├── ProjectName.useroption.xml │ │ ├── ProjectNamespace.useroption.xml │ │ ├── Property_Access.useroption.xml │ │ ├── Property_Formula.useroption.xml │ │ ├── Property_Generation.useroption.xml │ │ ├── Property_Insert.useroption.xml │ │ ├── Property_IsLazy.useroption.xml │ │ ├── Property_IsVersion.useroption.xml │ │ ├── Property_OptimisticLock.useroption.xml │ │ ├── Property_Update.useroption.xml │ │ ├── Property_UsePrivateSetter.useroption.xml │ │ ├── QuerySubstitutions.useroption.xml │ │ ├── ReferenceTemplate.useroption.xml │ │ ├── Reference_End1Cascade.useroption.xml │ │ ├── Reference_End1CollectionCascade.useroption.xml │ │ ├── Reference_End1CollectionFetchMode.useroption.xml │ │ ├── Reference_End1FetchMode.useroption.xml │ │ ├── Reference_End1Insert.useroption.xml │ │ ├── Reference_End1Lazy.useroption.xml │ │ ├── Reference_End1OrderByIsAsc.useroption.xml │ │ ├── Reference_End1OrderByProperty.useroption.xml │ │ ├── Reference_End1Update.useroption.xml │ │ ├── Reference_End2Cascade.useroption.xml │ │ ├── Reference_End2CollectionCascade.useroption.xml │ │ ├── Reference_End2CollectionFetchMode.useroption.xml │ │ ├── Reference_End2FetchMode.useroption.xml │ │ ├── Reference_End2Insert.useroption.xml │ │ ├── Reference_End2Lazy.useroption.xml │ │ ├── Reference_End2OrderByIsAsc.useroption.xml │ │ ├── Reference_End2OrderByProperty.useroption.xml │ │ ├── Reference_End2Update.useroption.xml │ │ ├── ShowSql.useroption.xml │ │ ├── TransactionFactoryClass.useroption.xml │ │ ├── UseFluentNHibernate.useroption.xml │ │ ├── UseOuterJoin.useroption.xml │ │ ├── UsePrivateSettersOnProperties.useroption.xml │ │ ├── UseProxyValidator.useroption.xml │ │ ├── UseSpatial.useroption.xml │ │ ├── UseSubNamespaceForSchemas.useroption.xml │ │ ├── UserOptions.xml │ │ └── VisualStudioVersion.useroption.xml ├── NHibernate_files │ ├── File_1.vnh_script │ ├── File_10.vnh_script │ ├── File_11.vnh_script │ ├── File_12.vnh_script │ ├── File_2.vnh_script │ ├── File_3.vnh_script │ ├── File_4.vnh_script │ ├── File_5.vnh_script │ ├── File_6.vnh_script │ ├── File_7.vnh_script │ ├── File_8.vnh_script │ ├── File_9.vnh_script │ ├── Resources │ │ ├── NH2 Antlr3.Runtime.dll │ │ ├── NH2 Castle.Core.dll │ │ ├── NH2 Castle.Core.xml │ │ ├── NH2 Castle.DynamicProxy.license.txt │ │ ├── NH2 Castle.DynamicProxy2.dll │ │ ├── NH2 Castle.DynamicProxy2.xml │ │ ├── NH2 Common.Logging.dll │ │ ├── NH2 FluentNHibernate.XML │ │ ├── NH2 FluentNHibernate.dll │ │ ├── NH2 GeoAPI.dll │ │ ├── NH2 GeoAPI.xml │ │ ├── NH2 Iesi.Collections.dll │ │ ├── NH2 Iesi.Collections.pdb │ │ ├── NH2 Iesi.Collections.xml │ │ ├── NH2 LinFu.DynamicProxy.dll │ │ ├── NH2 LinFu.License.txt │ │ ├── NH2 NHibernate.ByteCode.Castle.dll │ │ ├── NH2 NHibernate.ByteCode.Castle.pdb │ │ ├── NH2 NHibernate.ByteCode.Castle.xml │ │ ├── NH2 NHibernate.ByteCode.LinFu.dll │ │ ├── NH2 NHibernate.ByteCode.LinFu.pdb │ │ ├── NH2 NHibernate.ByteCode.LinFu.xml │ │ ├── NH2 NHibernate.ByteCode.Spring.dll │ │ ├── NH2 NHibernate.ByteCode.Spring.pdb │ │ ├── NH2 NHibernate.ByteCode.Spring.xml │ │ ├── NH2 NHibernate.Spatial.MsSql2008.dll │ │ ├── NH2 NHibernate.Spatial.MsSqlSpatial.dll │ │ ├── NH2 NHibernate.Spatial.dll │ │ ├── NH2 NHibernate.Spatial.xml │ │ ├── NH2 NHibernate.Validator.dll │ │ ├── NH2 NHibernate.Validator.xml │ │ ├── NH2 NHibernate.dll │ │ ├── NH2 NHibernate.pdb │ │ ├── NH2 NHibernate.xml │ │ ├── NH2 NetTopologySuite.dll │ │ ├── NH2 NetTopologySuite.xml │ │ ├── NH2 Spring.Aop.dll │ │ ├── NH2 Spring.Aop.xml │ │ ├── NH2 Spring.Core.dll │ │ ├── NH2 Spring.Core.xml │ │ ├── NH2 antlr.runtime.dll │ │ ├── NH2 log4net.dll │ │ ├── NH2 log4net.license.txt │ │ ├── NH2 log4net.xml │ │ ├── NH2 nhibernate-configuration.xsd │ │ ├── NH2 nhibernate-mapping.xsd │ │ ├── NH2 nunit.framework.dll │ │ ├── NH2 nunit.framework.xml │ │ ├── NH3 Antlr3.Runtime.dll │ │ ├── NH3 Castle.Core.dll │ │ ├── NH3 Castle.Core.xml │ │ ├── NH3 Common.Logging.dll │ │ ├── NH3 FluentNHibernate.dll │ │ ├── NH3 FluentNHibernate.xml │ │ ├── NH3 Iesi.Collections.dll │ │ ├── NH3 Iesi.Collections.pdb │ │ ├── NH3 Iesi.Collections.xml │ │ ├── NH3 LinFu.DynamicProxy.dll │ │ ├── NH3 LinFu.License.txt │ │ ├── NH3 NHibernate.ByteCode.Castle.dll │ │ ├── NH3 NHibernate.ByteCode.Castle.pdb │ │ ├── NH3 NHibernate.ByteCode.Castle.xml │ │ ├── NH3 NHibernate.ByteCode.LinFu.dll │ │ ├── NH3 NHibernate.ByteCode.LinFu.pdb │ │ ├── NH3 NHibernate.ByteCode.LinFu.xml │ │ ├── NH3 NHibernate.ByteCode.Spring.dll │ │ ├── NH3 NHibernate.ByteCode.Spring.pdb │ │ ├── NH3 NHibernate.ByteCode.Spring.xml │ │ ├── NH3 NHibernate.Validator.Specific.dll │ │ ├── NH3 NHibernate.Validator.Specific.xml │ │ ├── NH3 NHibernate.Validator.dll │ │ ├── NH3 NHibernate.Validator.xml │ │ ├── NH3 NHibernate.dll │ │ ├── NH3 NHibernate.pdb │ │ ├── NH3 NHibernate.xml │ │ ├── NH3 Remotion.Data.Linq.dll │ │ ├── NH3 Spring.Aop.dll │ │ ├── NH3 Spring.Aop.xml │ │ ├── NH3 Spring.Core.dll │ │ ├── NH3 Spring.Core.xml │ │ ├── NH3 antlr.runtime.dll │ │ ├── NH3 log4net.dll │ │ ├── NH3 log4net.xml │ │ ├── NH3 nhibernate-configuration.xsd │ │ └── NH3 nhibernate-mapping.xsd │ ├── StaticFile_10_Skip.vnh_script │ ├── StaticFile_11_Skip.vnh_script │ ├── StaticFile_12_Skip.vnh_script │ ├── StaticFile_13_Skip.vnh_script │ ├── StaticFile_14_Skip.vnh_script │ ├── StaticFile_15_Skip.vnh_script │ ├── StaticFile_16_Skip.vnh_script │ ├── StaticFile_17_Skip.vnh_script │ ├── StaticFile_18_Skip.vnh_script │ ├── StaticFile_19_Skip.vnh_script │ ├── StaticFile_1_Skip.vnh_script │ ├── StaticFile_20_Skip.vnh_script │ ├── StaticFile_21_Skip.vnh_script │ ├── StaticFile_22_Skip.vnh_script │ ├── StaticFile_23_Skip.vnh_script │ ├── StaticFile_24_Skip.vnh_script │ ├── StaticFile_25_Skip.vnh_script │ ├── StaticFile_26_Skip.vnh_script │ ├── StaticFile_27_Skip.vnh_script │ ├── StaticFile_28_Skip.vnh_script │ ├── StaticFile_29_Skip.vnh_script │ ├── StaticFile_2_Skip.vnh_script │ ├── StaticFile_30_Skip.vnh_script │ ├── StaticFile_31_Skip.vnh_script │ ├── StaticFile_32_Skip.vnh_script │ ├── StaticFile_33_Skip.vnh_script │ ├── StaticFile_34_Skip.vnh_script │ ├── StaticFile_35_Skip.vnh_script │ ├── StaticFile_36_Skip.vnh_script │ ├── StaticFile_37_Skip.vnh_script │ ├── StaticFile_38_Skip.vnh_script │ ├── StaticFile_39_Skip.vnh_script │ ├── StaticFile_3_Skip.vnh_script │ ├── StaticFile_40_Skip.vnh_script │ ├── StaticFile_41_Skip.vnh_script │ ├── StaticFile_42_Skip.vnh_script │ ├── StaticFile_43_Skip.vnh_script │ ├── StaticFile_44_Skip.vnh_script │ ├── StaticFile_45_Skip.vnh_script │ ├── StaticFile_46_Skip.vnh_script │ ├── StaticFile_47_Skip.vnh_script │ ├── StaticFile_48_Skip.vnh_script │ ├── StaticFile_49_Skip.vnh_script │ ├── StaticFile_4_Skip.vnh_script │ ├── StaticFile_50_Skip.vnh_script │ ├── StaticFile_51_Skip.vnh_script │ ├── StaticFile_52_Skip.vnh_script │ ├── StaticFile_53_Skip.vnh_script │ ├── StaticFile_54_Skip.vnh_script │ ├── StaticFile_55_Skip.vnh_script │ ├── StaticFile_56_Skip.vnh_script │ ├── StaticFile_57_Skip.vnh_script │ ├── StaticFile_58_Skip.vnh_script │ ├── StaticFile_59_Skip.vnh_script │ ├── StaticFile_5_Skip.vnh_script │ ├── StaticFile_60_Skip.vnh_script │ ├── StaticFile_61_Skip.vnh_script │ ├── StaticFile_62_Skip.vnh_script │ ├── StaticFile_63_Skip.vnh_script │ ├── StaticFile_64_Skip.vnh_script │ ├── StaticFile_65_Skip.vnh_script │ ├── StaticFile_66_Skip.vnh_script │ ├── StaticFile_67_Skip.vnh_script │ ├── StaticFile_68_Skip.vnh_script │ ├── StaticFile_69_Skip.vnh_script │ ├── StaticFile_6_Skip.vnh_script │ ├── StaticFile_70_Skip.vnh_script │ ├── StaticFile_71_Skip.vnh_script │ ├── StaticFile_72_Skip.vnh_script │ ├── StaticFile_73_Skip.vnh_script │ ├── StaticFile_74_Skip.vnh_script │ ├── StaticFile_75_Skip.vnh_script │ ├── StaticFile_76_Skip.vnh_script │ ├── StaticFile_77_Skip.vnh_script │ ├── StaticFile_78_Skip.vnh_script │ ├── StaticFile_79_Skip.vnh_script │ ├── StaticFile_7_Skip.vnh_script │ ├── StaticFile_80_Skip.vnh_script │ ├── StaticFile_81_Skip.vnh_script │ ├── StaticFile_82_Skip.vnh_script │ ├── StaticFile_83_Skip.vnh_script │ ├── StaticFile_84_Skip.vnh_script │ ├── StaticFile_85_Skip.vnh_script │ ├── StaticFile_86_Skip.vnh_script │ ├── StaticFile_87_Skip.vnh_script │ ├── StaticFile_88_Skip.vnh_script │ ├── StaticFile_89_Skip.vnh_script │ ├── StaticFile_8_Skip.vnh_script │ └── StaticFile_9_Skip.vnh_script ├── PetShop2005 │ ├── StyleSheet#ProjectName#.css │ ├── StyleSheet#ProjectName#Print.css │ ├── cancel.gif │ ├── common.js │ ├── definition.xml │ ├── delete.gif │ ├── edit.gif │ └── update.gif ├── SharpArchitecture.vnh_template ├── SharpArchitecture_files │ ├── File_1.vnh_script │ ├── File_10.vnh_script │ ├── File_11.vnh_script │ ├── File_12.vnh_script │ ├── File_13.vnh_script │ ├── File_14.vnh_script │ ├── File_15.vnh_script │ ├── File_16.vnh_script │ ├── File_17.vnh_script │ ├── File_18.vnh_script │ ├── File_19.vnh_script │ ├── File_2.vnh_script │ ├── File_20.vnh_script │ ├── File_21.vnh_script │ ├── File_22.vnh_script │ ├── File_23.vnh_script │ ├── File_24.vnh_script │ ├── File_25.vnh_script │ ├── File_26.vnh_script │ ├── File_27.vnh_script │ ├── File_28.vnh_script │ ├── File_29.vnh_script │ ├── File_3.vnh_script │ ├── File_30.vnh_script │ ├── File_31.vnh_script │ ├── File_32.vnh_script │ ├── File_33.vnh_script │ ├── File_34.vnh_script │ ├── File_35.vnh_script │ ├── File_36.vnh_script │ ├── File_37.vnh_script │ ├── File_38.vnh_script │ ├── File_39.vnh_script │ ├── File_4.vnh_script │ ├── File_40.vnh_script │ ├── File_41.vnh_script │ ├── File_42.vnh_script │ ├── File_43.vnh_script │ ├── File_44.vnh_script │ ├── File_45.vnh_script │ ├── File_46.vnh_script │ ├── File_47.vnh_script │ ├── File_48.vnh_script │ ├── File_49.vnh_script │ ├── File_5.vnh_script │ ├── File_50.vnh_script │ ├── File_51.vnh_script │ ├── File_52.vnh_script │ ├── File_53.vnh_script │ ├── File_54.vnh_script │ ├── File_55.vnh_script │ ├── File_56.vnh_script │ ├── File_57.vnh_script │ ├── File_58.vnh_script │ ├── File_59.vnh_script │ ├── File_6.vnh_script │ ├── File_60.vnh_script │ ├── File_61.vnh_script │ ├── File_62.vnh_script │ ├── File_63.vnh_script │ ├── File_64.vnh_script │ ├── File_65.vnh_script │ ├── File_66.vnh_script │ ├── File_67.vnh_script │ ├── File_68.vnh_script │ ├── File_69.vnh_script │ ├── File_7.vnh_script │ ├── File_70.vnh_script │ ├── File_71.vnh_script │ ├── File_72.vnh_script │ ├── File_73.vnh_script │ ├── File_74.vnh_script │ ├── File_75.vnh_script │ ├── File_76.vnh_script │ ├── File_77.vnh_script │ ├── File_78.vnh_script │ ├── File_79.vnh_script │ ├── File_8.vnh_script │ ├── File_9.vnh_script │ ├── Resources │ │ ├── Antlr3.Runtime.dll │ │ ├── Castle.Core.dll │ │ ├── Castle.Core.xml │ │ ├── Castle.Services.Logging.Log4netIntegration.dll │ │ ├── Castle.Windsor.dll │ │ ├── Castle.Windsor.xml │ │ ├── CommonServiceLocator.WindsorAdapter.dll │ │ ├── FluentNHibernate.XML │ │ ├── FluentNHibernate.dll │ │ ├── Gallio.dll │ │ ├── Iesi.Collections.dll │ │ ├── Iesi.Collections.license.txt │ │ ├── Iesi.Collections.xml │ │ ├── Inflector.Net.dll │ │ ├── MbUnit.dll │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ ├── Microsoft.Web.Mvc.dll │ │ ├── MicrosoftAjax.debug.js │ │ ├── MicrosoftAjax.js │ │ ├── MicrosoftMvcAjax.debug.js │ │ ├── MicrosoftMvcAjax.js │ │ ├── Moq.dll │ │ ├── Moq.xml │ │ ├── MvcContrib.FluentHtml.dll │ │ ├── MvcContrib.FluentHtml.xml │ │ ├── MvcContrib.TestHelper.XML │ │ ├── MvcContrib.TestHelper.dll │ │ ├── MvcContrib.XML │ │ ├── MvcContrib.dll │ │ ├── NHibernate.ByteCode.Castle.dll │ │ ├── NHibernate.ByteCode.Castle.xml │ │ ├── NHibernate.Validator.Specific.dll │ │ ├── NHibernate.Validator.Specific.xml │ │ ├── NHibernate.Validator.dll │ │ ├── NHibernate.Validator.xml │ │ ├── NHibernate.dll │ │ ├── NHibernate.license.txt │ │ ├── NHibernate.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── Remotion.Data.Linq.dll │ │ ├── Rhino.Mocks.dll │ │ ├── Rhino.Mocks.xml │ │ ├── SharpArch.dll │ │ ├── SharpArch.pdb │ │ ├── System.Data.SQLite.DLL │ │ ├── System.Web.Abstractions.dll │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ ├── System.Web.Routing.dll │ │ ├── jquery-1.4.2.js │ │ ├── jquery-1.4.2.min.js │ │ ├── log4net.dll │ │ ├── log4net.license.txt │ │ ├── log4net.xml │ │ ├── nhibernate-configuration.xsd │ │ ├── nhibernate-mapping.xsd │ │ ├── nunit.framework.dll │ │ ├── nunit.framework.xml │ │ ├── sharp_arch.jpg │ │ ├── sharp_arch_small.gif │ │ └── sqlite-nhibernate-config.xml │ ├── StaticFile_10_Skip.vnh_script │ ├── StaticFile_11_Skip.vnh_script │ ├── StaticFile_12_Skip.vnh_script │ ├── StaticFile_13_Skip.vnh_script │ ├── StaticFile_14_Skip.vnh_script │ ├── StaticFile_15_Skip.vnh_script │ ├── StaticFile_16_Skip.vnh_script │ ├── StaticFile_17_Skip.vnh_script │ ├── StaticFile_18_Skip.vnh_script │ ├── StaticFile_19_Skip.vnh_script │ ├── StaticFile_1_Skip.vnh_script │ ├── StaticFile_20_Skip.vnh_script │ ├── StaticFile_21_Skip.vnh_script │ ├── StaticFile_22_Skip.vnh_script │ ├── StaticFile_25_Skip.vnh_script │ ├── StaticFile_26_Skip.vnh_script │ ├── StaticFile_27_Skip.vnh_script │ ├── StaticFile_28_Skip.vnh_script │ ├── StaticFile_29_Skip.vnh_script │ ├── StaticFile_2_Skip.vnh_script │ ├── StaticFile_30_Skip.vnh_script │ ├── StaticFile_35_Skip.vnh_script │ ├── StaticFile_36_Skip.vnh_script │ ├── StaticFile_37_Skip.vnh_script │ ├── StaticFile_38_Skip.vnh_script │ ├── StaticFile_39_Skip.vnh_script │ ├── StaticFile_3_Skip.vnh_script │ ├── StaticFile_40_Skip.vnh_script │ ├── StaticFile_41_Skip.vnh_script │ ├── StaticFile_42_Skip.vnh_script │ ├── StaticFile_43_Skip.vnh_script │ ├── StaticFile_44_Skip.vnh_script │ ├── StaticFile_45_Skip.vnh_script │ ├── StaticFile_46_Skip.vnh_script │ ├── StaticFile_47_Skip.vnh_script │ ├── StaticFile_48_Skip.vnh_script │ ├── StaticFile_49_Skip.vnh_script │ ├── StaticFile_4_Skip.vnh_script │ ├── StaticFile_50_Skip.vnh_script │ ├── StaticFile_51_Skip.vnh_script │ ├── StaticFile_52_Skip.vnh_script │ ├── StaticFile_53_Skip.vnh_script │ ├── StaticFile_54_Skip.vnh_script │ ├── StaticFile_55_Skip.vnh_script │ ├── StaticFile_56_Skip.vnh_script │ ├── StaticFile_57_Skip.vnh_script │ ├── StaticFile_58_Skip.vnh_script │ ├── StaticFile_59_Skip.vnh_script │ ├── StaticFile_5_Skip.vnh_script │ ├── StaticFile_60_Skip.vnh_script │ ├── StaticFile_63_Skip.vnh_script │ ├── StaticFile_64_Skip.vnh_script │ ├── StaticFile_65_Skip.vnh_script │ ├── StaticFile_66_Skip.vnh_script │ ├── StaticFile_67_Skip.vnh_script │ ├── StaticFile_68_Skip.vnh_script │ ├── StaticFile_69_Skip.vnh_script │ ├── StaticFile_6_Skip.vnh_script │ ├── StaticFile_7_Skip.vnh_script │ ├── StaticFile_8_Skip.vnh_script │ └── StaticFile_9_Skip.vnh_script ├── UpdateModel │ └── definition.xml └── UpdateSerkoAPIModel │ └── definition.xml ├── ArchAngel.UnitTesting ├── ArchAngel.UnitTesting.csproj ├── CSharpFormatter │ ├── Test Files │ │ ├── Attributes.cs │ │ ├── CommentOrdering.cs │ │ ├── Comments.cs │ │ ├── Complex.cs │ │ ├── LineBreaksBetweenFunctions.cs │ │ └── OneLineIfStatements.cs │ └── TestCSharpFormatter.cs ├── Designer │ ├── Serialisation │ │ ├── Specs_For_Project_Loading__ApiExtensions.cs │ │ ├── Specs_For_Project_Loading__Functions.cs │ │ ├── Specs_For_Project_Loading__Outputs.cs │ │ ├── Specs_For_Project_Loading__ProjectFile.cs │ │ ├── Specs_For_Project_Loading__StaticFiles.cs │ │ ├── Specs_For_Project_Loading__UserOptions.cs │ │ ├── Specs_For_Project_Saving__ApiExtensions.cs │ │ ├── Specs_For_Project_Saving__Functions.cs │ │ ├── Specs_For_Project_Saving__Outputs.cs │ │ ├── Specs_For_Project_Saving__ProjectFile.cs │ │ ├── Specs_For_Project_Saving__StaticFiles.cs │ │ └── Specs_For_Project_Saving__UserOptions.cs │ └── Specs_For_CompileHelper__VirtualProperties.cs ├── IntelliMerge │ └── TestDiff.cs ├── Properties │ └── AssemblyInfo.cs ├── TestAnalysisHelper.cs ├── TestGenerationHelper.cs ├── TestIntellimerge.cs └── TestProjectFileTree.cs ├── ArchAngel.WorkBench ├── AboutBoxArchAngel.Designer.cs ├── AboutBoxArchAngel.cs ├── AboutBoxArchAngel.resx ├── ArchAngel.Workbench.csproj ├── ArchAngel.ico ├── Branding.cs ├── ClassDiagram1.cd ├── ContentItems │ ├── ContentItem.Designer.cs │ ├── ContentItem.cs │ ├── ContentItem.resx │ ├── EditModel.Designer.cs │ ├── EditModel.cs │ ├── EditModel.resx │ ├── FormStaticFiles.Designer.cs │ ├── FormStaticFiles.cs │ ├── FormStaticFiles.resx │ ├── IntelliPromptHelper.cs │ ├── Options.Designer.cs │ ├── Options.cs │ ├── Options.resx │ ├── Output.Designer.cs │ ├── Output.cs │ ├── Output.resx │ ├── SetupDatabase.Designer.cs │ ├── SetupDatabase.cs │ ├── SetupDatabase.resx │ ├── Templates.Designer.cs │ ├── Templates.cs │ ├── Templates.resx │ ├── TreeListHelper.cs │ └── TreelistNodeSort.cs ├── Controller.cs ├── Docs │ ├── ArchAngel Features.doc │ └── BetaTesting.doc ├── FilterWizard │ ├── ucFilterColumns.Designer.cs │ ├── ucFilterColumns.cs │ ├── ucFilterColumns.resx │ ├── ucFilterReturnOrder.Designer.cs │ ├── ucFilterReturnOrder.cs │ ├── ucFilterReturnOrder.resx │ ├── ucFilterStart.Designer.cs │ ├── ucFilterStart.cs │ ├── ucFilterStart.resx │ ├── ucFilterSummary.Designer.cs │ ├── ucFilterSummary.cs │ ├── ucFilterSummary.resx │ ├── ucFilterWhere.Designer.cs │ ├── ucFilterWhere.cs │ └── ucFilterWhere.resx ├── FormColumn.Designer.cs ├── FormColumn.cs ├── FormColumn.resx ├── FormErrors.Designer.cs ├── FormErrors.cs ├── FormErrors.resx ├── FormFilter.Designer.cs ├── FormFilter.cs ├── FormFilter.resx ├── FormFilter2.Designer.cs ├── FormFilter2.cs ├── FormFilter2.resx ├── FormIndex.Designer.cs ├── FormIndex.cs ├── FormIndex.resx ├── FormKey.Designer.cs ├── FormKey.cs ├── FormKey.resx ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── FormMapColumn.Designer.cs ├── FormMapColumn.cs ├── FormMapColumn.resx ├── FormMergeEditor.Designer.cs ├── FormMergeEditor.cs ├── FormMergeEditor.resx ├── FormObjectOptionEdit.Designer.cs ├── FormObjectOptionEdit.cs ├── FormObjectOptionEdit.resx ├── FormOptions.Designer.cs ├── FormOptions.cs ├── FormOptions.resx ├── FormParseError.Designer.cs ├── FormParseError.cs ├── FormParseError.resx ├── FormRelationship.Designer.cs ├── FormRelationship.cs ├── FormRelationship.resx ├── FormScriptObject.Designer.cs ├── FormScriptObject.cs ├── FormScriptObject.resx ├── FormSelectDatabase.Designer.cs ├── FormSelectDatabase.cs ├── FormSelectDatabase.resx ├── FormSplash.Designer.cs ├── FormSplash.cs ├── FormSplash.resx ├── GenerationError.cs ├── IController.cs ├── IntelliMerge │ ├── AnalysisHelper.cs │ ├── GenerationHelper.cs │ ├── ProgressHelpers.cs │ ├── ProjectFileTree.cs │ ├── SlyceMergeWorker.cs │ ├── WriteOutHelper.cs │ ├── frmIntelliMergeTest.Designer.cs │ ├── frmIntelliMergeTest.cs │ ├── frmIntelliMergeTest.resx │ ├── images │ │ ├── VSObject_Class.bmp │ │ ├── VSObject_Field.bmp │ │ ├── VSObject_Method.bmp │ │ ├── VSObject_Properties.bmp │ │ ├── blank.ico │ │ └── otheroptions.ico │ ├── ucMerger.Designer.cs │ └── ucMerger.resx ├── IntelliSense.cs ├── OptionsItems │ ├── Formatting.Designer.cs │ ├── Formatting.cs │ ├── Formatting.resx │ ├── General.Designer.cs │ ├── General.cs │ ├── General.resx │ ├── OptionScreen.cs │ └── OptionScreen.resx ├── Program.cs ├── ProjectOptions │ └── TypeMappings │ │ ├── DatabaseTypeMap.cs │ │ ├── DefaultTypeMap.xml │ │ ├── TypeMapping.cs │ │ └── UniType.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ └── Program.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── app.manifest │ └── licenses.licx ├── Resources │ ├── Document.png │ ├── Templates │ │ └── NHibernate │ │ │ └── NHibernate.vnh_template │ ├── TextCenter.png │ ├── Unpinned.png │ ├── arrow.png │ ├── blue_arrow.png │ ├── cog_refresh_32.png │ ├── cross_32.png │ ├── error_16.png │ ├── folder_16.png │ ├── folder_add_32.png │ ├── folder_open_normal.png │ ├── green_arrow.png │ ├── insert_32.png │ ├── plus_32.png │ └── reset_32.png ├── SearchHelper.cs ├── Settings.cs ├── UserControls │ ├── BaseTypeMapEditor.Designer.cs │ ├── BaseTypeMapEditor.cs │ ├── BaseTypeMapEditor.resx │ ├── DatabaseScriptEditor.Designer.cs │ ├── DatabaseScriptEditor.cs │ ├── DatabaseScriptEditor.resx │ ├── DbTypeMapEditor.Designer.cs │ ├── DbTypeMapEditor.cs │ ├── DbTypeMapEditor.resx │ ├── ErrorProvider.Designer.cs │ ├── ErrorProvider.cs │ ├── ErrorProvider.resx │ ├── FileActionPanel.Designer.cs │ ├── FileActionPanel.cs │ ├── FileActionPanel.resx │ ├── Heading.Designer.cs │ ├── Heading.cs │ ├── Heading.resx │ ├── ItemEdit.Designer.cs │ ├── ItemEdit.cs │ ├── ItemEdit.resx │ ├── NamingEditor.Designer.cs │ ├── NamingEditor.cs │ ├── NamingEditor.resx │ ├── ProjectSettings.Designer.cs │ ├── ProjectSettings.cs │ ├── ProjectSettings.resx │ ├── SequentialNavBar.Designer.cs │ ├── SequentialNavBar.cs │ ├── SequentialNavBar.resx │ ├── TextFileActionPanel.Designer.cs │ ├── TextFileActionPanel.cs │ └── TextFileActionPanel.resx ├── Wizards │ └── NewProject │ │ ├── Screen1.Designer.cs │ │ ├── Screen1.cs │ │ ├── Screen1.resx │ │ ├── Screen2.Designer.cs │ │ ├── Screen2.cs │ │ ├── Screen2.resx │ │ ├── frmNewProject.Designer.cs │ │ ├── frmNewProject.cs │ │ └── frmNewProject.resx ├── Workbench.ico ├── app.config ├── frmActionEdit.Designer.cs ├── frmActionEdit.cs ├── frmActionEdit.resx ├── frmFind.Designer.cs ├── frmFind.cs ├── frmFind.resx ├── ucFindResults.Designer.cs ├── ucFindResults.cs └── ucFindResults.resx ├── ArchAngel.Workbench.sln ├── ArchAngel.build ├── ArchAngel ├── App.xaml ├── App.xaml.cs ├── ArchAngel.csproj ├── Designer_NoBackground.ico ├── LauncherWindow.xaml ├── LauncherWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.config ├── licenses.licx └── nhtest.xml ├── BUILD-README.txt ├── CodeFormatter ├── CodeFormatter.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── licenses.licx ├── Combined ArchAngel.Designer.sln ├── Combined ArchAngel.Workbench.sln ├── Combined ArchAngel.sln ├── CombinedArchAngel.build ├── Custom Icons ├── .vsdoc ├── Action_Generation.ico ├── Action_Start.ico ├── Action_Stop.ico ├── Blue_square.ico ├── Designer.ico ├── Designer_NoBackground.ico ├── Filter2HS_red_dot.ico ├── FunctionHS_red_dot.ico ├── HighlightHS_red_dot.ico ├── IntelliDiff icons │ ├── blank.png │ ├── conflict.png │ ├── error.png │ ├── file_conflict.png │ ├── file_error.png │ ├── file_normal.png │ ├── file_resolved.png │ ├── file_unknown.png │ ├── file_warning.png │ ├── folder_closed_conflict.png │ ├── folder_closed_error.png │ ├── folder_closed_normal.png │ ├── folder_closed_resolved.png │ ├── folder_closed_unknown.png │ ├── folder_closed_warning.png │ ├── folder_open_conflict.png │ ├── folder_open_error.png │ ├── folder_open_normal.png │ ├── folder_open_resolved.png │ ├── folder_open_unknown.png │ ├── folder_open_warning.png │ ├── resolved.png │ ├── unknown.png │ └── warning.png ├── List_BulletsHS_red_dot.ico ├── List_NumberedHS_red_dot.ico ├── MessagePanel │ ├── Hourglass.png │ ├── alarm_32.png │ └── alarm_64.png ├── PostActions.ico ├── PreActions.ico ├── PrimaryKeyHS_red_dot.ico ├── Project4.ico ├── RelationshipsHS_red_dot.ico ├── VSProject_database_red_dot.ico ├── Visual NHibernate Splash.png ├── Webcontrol_Gridview_red_dot.ico ├── Workbench.ico ├── Workbench_NoBackground.ico ├── aal.ico ├── aaproj.ico ├── db_register_32.png ├── delete_a_16.png ├── doc_add_32.png ├── doc_add_32_h.png ├── edit_16_h.png ├── field_insert_b_16.png ├── folder_add_32.png ├── folder_add_32_h.png ├── help.ico ├── import_32.png ├── next_32.png ├── previous_32.png ├── question_mark_32.ico ├── stz.ico ├── tick_32.png ├── tick_32_h.png ├── treenode_add_32.png └── treenode_delete_32.png ├── Documentation ├── ArchAngel.Debugger.DebugProcess.dxc ├── ArchAngel.Debugger.dxc ├── Build Process.docx ├── CodeRootMap.vsd ├── Documentation.dxp ├── DotNetZipLib-v1.7.chm ├── Generation Process.vsd ├── IntelliMerge.vsd ├── System Overview.docx ├── System Overview.vsd ├── Workbench.vsd └── XML Object Model Design.vsd ├── Help ├── API Ext Intellisense.png ├── API Ext New Property.png ├── API Ext Options.png ├── API Ext Validation.png ├── API Ext view.png ├── API_Extensions_Provider_Utility_Menu.png ├── ArchAngel First Generation (Small).jpg ├── ArchAngel First Generation.jpg ├── ArchAngel Help.hmx ├── ArchAngel Help.hmxz ├── ArchAngel Subsequent Generation (Small).jpg ├── ArchAngel Subsequent Generation.jpg ├── Database Provider API Documentation │ └── ArchAngel.Providers.Database.chm ├── Default Val Func buttons.png ├── Default Val Func edit.png ├── Designer_Navigation_Pane.png ├── Designer_New_Provider.png ├── Designer_New_Provider_Menu.png ├── Designer_Screens_Template_Details.png ├── Icon_File_Save.png ├── Output file layout.png ├── Slyce_PDF_Standard_manual_A4.mnl ├── User Options Intellisense.png ├── User Options in Workbench.png ├── Validator function edit.png ├── Workbench Navigation Pane.png ├── Workbench Screen_Options.png ├── Workbench Select_Database.png ├── Workbench UI.png ├── Workbench UI2.png ├── Workbench Validation_Issues.png ├── Workbench_Add_Database_Button.png ├── Workbench_Database_Buttons.png ├── Workbench_File_New_Icon.png ├── Workbench_New_Database_Dialog.png ├── Workbench_Resolve_Conflicts.png ├── Workbench_Resolve_Conflicts_Menu.png ├── Workbench_Screen_Analysis.png ├── Workbench_Screen_Database_Details.png ├── Workbench_Screen_Generation.png ├── Workbench_Screen_Object_Model.png ├── Workbench_Screen_Project_Setup.png ├── Workbench_View_Changes.png ├── Workbench_View_Changes_Menu.png └── helpman.adu ├── Inflector.Net ├── Inflector.Net.csproj ├── Inflector.Net.sln └── Inflector.cs ├── Installer ├── ArchAngel Build Script.fbz5 ├── ArchAngel.FileManifest.xml ├── CryptoLicensing │ └── Visual NHibernate Licensing.netlicproj ├── DotFuscator Files │ ├── ArchAngel Database Provider DotFuscator.xml │ ├── ArchAngel Debugger DotFuscator.xml │ ├── ArchAngel Designer DotFuscator.xml │ ├── ArchAngel Entity Provider DotFuscator.xml │ ├── ArchAngel Libraries DotFuscator.xml │ ├── ArchAngel Workbench DotFuscator.xml │ ├── CodeProvider DotFuscator.xml │ ├── DotNetBar DotFuscator.xml │ ├── Dotfuscated │ │ ├── ArchAngel.Common.dll │ │ ├── ArchAngel.Common.pdb │ │ ├── ArchAngel.Debugger.dll │ │ ├── ArchAngel.Debugger.pdb │ │ ├── ArchAngel.Designer.exe │ │ ├── ArchAngel.Designer.pdb │ │ ├── ArchAngel.Interfaces.dll │ │ ├── ArchAngel.Interfaces.pdb │ │ ├── ArchAngel.NHibernateHelper.dll │ │ ├── ArchAngel.NHibernateHelper.pdb │ │ ├── ArchAngel.Providers.CodeProvider.dll │ │ ├── ArchAngel.Providers.CodeProvider.pdb │ │ ├── ArchAngel.Providers.EntityModel.dll │ │ ├── ArchAngel.Providers.EntityModel.pdb │ │ ├── ArchAngel.Workbench.exe │ │ ├── ArchAngel.Workbench.pdb │ │ ├── Map.0.xml │ │ ├── Map.1.xml │ │ ├── Map.2.xml │ │ ├── Map.html │ │ ├── Map.xml │ │ ├── SchemaDiagrammer.dll │ │ ├── Slyce.Common.dll │ │ ├── Slyce.Common.pdb │ │ ├── Slyce.IntelliMerge.dll │ │ └── Slyce.IntelliMerge.pdb │ ├── DotfuscatorProjectFixer.exe │ ├── DotfuscatorProjectFixer.pdb │ ├── PathsToReplace.txt │ └── Schema Diagrammer DotFuscator.xml ├── DotfuscatorFixer │ ├── DotfuscatorProjectFixer.sln │ └── DotfuscatorProjectFixer │ │ ├── DotfuscatorProjectFixer.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Green_Tick.jpg ├── InstallAware Project │ ├── ArchAngel 1.mia │ ├── FixInstallAwareProject.bat │ ├── PathsToReplace.mia.txt │ ├── PathsToReplace.mpr.txt │ ├── ProjectFixer.exe │ ├── ProjectFixer.pdb │ ├── blue.avi │ ├── componentslist.dfm │ ├── componentslist.dfm.miaf │ ├── componentstree.dfm │ ├── componentstree.dfm.miaf │ ├── destination.dfm │ ├── destination.dfm.miaf │ ├── finish.dfm │ ├── finish.dfm.miaf │ ├── icon.ico │ ├── index.htm │ ├── license.rtf │ ├── licensecheck.dfm │ ├── licensecheck.dfm.miaf │ ├── licenseradio.dfm │ ├── licenseradio.dfm.miaf │ ├── licensetext.dfm │ ├── licensetext.dfm.miaf │ ├── logo-slyce.gif │ ├── maintenance.dfm │ ├── maintenance.dfm.miaf │ ├── prereq.dfm │ ├── prereq.dfm.miaf │ ├── progress.dfm │ ├── progress.dfm.miaf │ ├── progressprereq.dfm │ ├── progressprereq.dfm.miaf │ ├── readme.dfm │ ├── readme.dfm.miaf │ ├── readme.rtf │ ├── registration.dfm │ ├── registration.dfm.miaf │ ├── registrationwithserial.dfm │ ├── registrationwithserial.dfm.miaf │ ├── setuptype.dfm │ ├── setuptype.dfm.miaf │ ├── startinstallation.dfm │ ├── startinstallation.dfm.miaf │ ├── startmenu.dfm │ ├── startmenu.dfm.miaf │ ├── update_download.dfm │ ├── update_download.dfm.miaf │ ├── update_install.dfm │ ├── update_install.dfm.miaf │ ├── update_notify_download.dfm │ ├── update_notify_download.dfm.miaf │ ├── update_notify_install.dfm │ ├── update_notify_install.dfm.miaf │ ├── update_reboot.dfm │ ├── update_reboot.dfm.miaf │ ├── update_setup_account.dfm │ ├── update_setup_account.dfm.miaf │ ├── update_setup_finish.dfm │ ├── update_setup_finish.dfm.miaf │ ├── update_setup_schedule.dfm │ ├── update_setup_schedule.dfm.miaf │ ├── update_setup_welcome.dfm │ ├── update_setup_welcome.dfm.miaf │ ├── welcome.dfm │ ├── welcome.dfm.miaf │ ├── wizard.dfm │ └── wizard.dfm.miaf ├── MD5_Values.ini ├── MD5_Values.xml ├── NSIS │ ├── ArchAngel.nsi │ ├── ArchAngel.nsi.bak │ ├── DotNetSearch.nsh │ ├── FindProcDLL.dll │ ├── Output │ │ └── Visual NHibernate Setup 2.7.15.1450.exe │ ├── images │ │ ├── Designer.ico │ │ ├── Workbench.ico │ │ ├── header.bmp │ │ ├── install.ico │ │ ├── uninstall.ico │ │ ├── website.ico │ │ ├── wizard.bmp │ │ └── wizard_uninstall.bmp │ └── registerExtension.nsh ├── Reactor Files │ ├── ArchAngel Actions.nrproj │ ├── ArchAngel Code Provider.nrproj │ ├── ArchAngel Database Provider.nrproj │ ├── ArchAngel Editor.nrproj │ ├── ArchAngel Interfaces.nrproj │ ├── ArchAngel Licensing.nrproj │ ├── ArchAngel Loader.nrproj │ ├── ArchAngel Workbench.nrproj │ ├── Single Designer.nrproj │ ├── Single Workbench.nrproj │ ├── Slyce Loader.nrproj │ ├── Slyce.Common.nrproj │ ├── Slyce.IntelliMerge.UI.nrproj │ ├── Slyce.IntelliMerge.nrproj │ └── Slyce.Updater.nrproj ├── VS Solution Files │ ├── Single ArchAngel.Designer.sln │ ├── Single ArchAngel.TemplatePackager.sln │ ├── Single ArchAngel.Workbench.sln │ ├── Single Slyce.Common.sln │ ├── Single Slyce.IntelliMerge.sln │ ├── Single Slyce.IntelliMergeUI.sln │ ├── Single Slyce.Licensing.sln │ ├── Single Slyce.Loader.sln │ ├── Single Slyce.Providers.CodeProvider.sln │ ├── Single Slyce.Providers.Database.sln │ └── Slyce.Updater.sln ├── VersionInfo.xml ├── Website Data Files │ ├── news.xml │ ├── update_paths_visualnhibernate.xml │ └── version_history_visualnhibernate.xml ├── default.html ├── smartassembly 5 │ ├── ArchAngel Code Provider.{sa}proj │ ├── ArchAngel Debugger.{sa}proj │ ├── ArchAngel Designer.{sa}proj │ ├── ArchAngel Entity Provider.{sa}proj │ ├── ArchAngel Workbench.{sa}proj │ ├── ArchAngel.Common.{sa}proj │ ├── ArchAngel.Interfaces.{sa}proj │ ├── ArchAngel.NHibernateHelper.{sa}proj │ ├── Output │ │ ├── ArchAngel.Common.dll │ │ ├── ArchAngel.Common.pdb │ │ ├── ArchAngel.Debugger.dll │ │ ├── ArchAngel.Debugger.pdb │ │ ├── ArchAngel.Designer.exe │ │ ├── ArchAngel.Designer.pdb │ │ ├── ArchAngel.Interfaces.dll │ │ ├── ArchAngel.Interfaces.pdb │ │ ├── ArchAngel.NHibernateHelper.dll │ │ ├── ArchAngel.NHibernateHelper.pdb │ │ ├── ArchAngel.Providers.CodeProvider.dll │ │ ├── ArchAngel.Providers.CodeProvider.pdb │ │ ├── ArchAngel.Providers.EntityModel.dll │ │ ├── ArchAngel.Providers.EntityModel.pdb │ │ ├── ArchAngel.Workbench.exe │ │ ├── ArchAngel.Workbench.pdb │ │ ├── Slyce.Common.dll │ │ ├── Slyce.Common.pdb │ │ ├── Slyce.IntelliMerge.dll │ │ └── Slyce.IntelliMerge.pdb │ ├── SchemaDiagrammer.{sa}proj │ ├── Slyce.Common.{sa}proj │ └── Slyce.IntelliMerge.{sa}proj ├── smartassembly 6 │ ├── ArchAngel Code Provider.{sa}proj │ ├── ArchAngel Debugger.{sa}proj │ ├── ArchAngel Designer.{sa}proj │ ├── ArchAngel Entity Provider.{sa}proj │ ├── ArchAngel Workbench.{sa}proj │ ├── ArchAngel.Common.{sa}proj │ ├── ArchAngel.Interfaces.{sa}proj │ ├── ArchAngel.NHibernateHelper.{sa}proj │ ├── Output │ │ ├── ArchAngel.Common.dll │ │ ├── ArchAngel.Common.pdb │ │ ├── ArchAngel.Debugger.dll │ │ ├── ArchAngel.Debugger.pdb │ │ ├── ArchAngel.Designer.exe │ │ ├── ArchAngel.Designer.pdb │ │ ├── ArchAngel.NHibernateHelper.dll │ │ ├── ArchAngel.NHibernateHelper.pdb │ │ ├── ArchAngel.Providers.CodeProvider.dll │ │ ├── ArchAngel.Providers.CodeProvider.pdb │ │ ├── ArchAngel.Workbench.exe │ │ └── ArchAngel.Workbench.pdb │ ├── SchemaDiagrammer.{sa}proj │ ├── Slyce.Common.{sa}proj │ └── Slyce.IntelliMerge.{sa}proj ├── smartassembly │ ├── ArchAngel Code Provider.{sa}proj │ ├── ArchAngel Debugger.{sa}proj │ ├── ArchAngel Designer.{sa}proj │ ├── ArchAngel Entity Provider.{sa}proj │ ├── ArchAngel Workbench.{sa}proj │ ├── ArchAngel.Common.{sa}proj │ ├── ArchAngel.Interfaces.{sa}proj │ ├── ArchAngel.NHibernateHelper.{sa}proj │ ├── Output │ │ ├── ArchAngel.Common.dll │ │ ├── ArchAngel.Common.pdb │ │ ├── ArchAngel.Debugger.dll │ │ ├── ArchAngel.Debugger.pdb │ │ ├── ArchAngel.Designer.exe │ │ ├── ArchAngel.Designer.pdb │ │ ├── ArchAngel.Interfaces.dll │ │ ├── ArchAngel.Interfaces.pdb │ │ ├── ArchAngel.NHibernateHelper.dll │ │ ├── ArchAngel.NHibernateHelper.pdb │ │ ├── ArchAngel.Providers.CodeProvider.dll │ │ ├── ArchAngel.Providers.CodeProvider.pdb │ │ ├── ArchAngel.Providers.EntityModel.dll │ │ ├── ArchAngel.Providers.EntityModel.pdb │ │ ├── ArchAngel.Workbench.exe │ │ ├── ArchAngel.Workbench.pdb │ │ ├── Slyce.Common.dll │ │ ├── Slyce.Common.pdb │ │ ├── Slyce.IntelliMerge.dll │ │ └── Slyce.IntelliMerge.pdb │ ├── SchemaDiagrammer.{sa}proj │ ├── Slyce.Common.{sa}proj │ └── Slyce.IntelliMerge.{sa}proj └── version_info.ini ├── Metrics └── NDependProject.xml ├── PatchBuilder.sln ├── Provider.Test ├── 2Tables1Relationship.sdf ├── 3Tables1Relationship.sdf ├── DatabaseTimingTests.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Provider.Test.csproj ├── SerialisationTimingTests.cs ├── Tester.cs ├── XmlTimingTests.cs ├── a.sdf ├── app.config ├── b.sdf ├── database.xsd ├── log4net.config └── testDatabase.xml ├── Sample Projects └── Custom Provider │ ├── .vsdoc │ ├── Demo.Providers.Test.csproj │ ├── Demo.Providers.Test.sln │ ├── Demo.Providers.Test.sln.vsdoc │ ├── Demo.Providers.Test.vsdoc │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── ProviderInfo.cs │ ├── Pupil.cs │ ├── Sample Template For Demo_Providers_Test.stz │ ├── School.cs │ └── Screens │ ├── Screen1.Designer.cs │ ├── Screen1.cs │ └── Screen1.resx ├── SchemaDiagrammer ├── Controller │ └── IController.cs ├── Controls.xaml ├── GraphViz │ └── bin │ │ ├── acyclic.exe │ │ ├── bcomps.exe │ │ ├── ccomps.exe │ │ ├── circo.exe │ │ ├── comdlg32.ocx │ │ ├── config5 │ │ ├── diffimg.exe │ │ ├── dijkstra.exe │ │ ├── dot.exe │ │ ├── dotty.exe │ │ ├── fc-cache.exe │ │ ├── fc-cat.exe │ │ ├── fc-list.exe │ │ ├── fc-match.exe │ │ ├── fdp.exe │ │ ├── gc.exe │ │ ├── iconv.dll │ │ ├── intl.dll │ │ ├── jpeg62.dll │ │ ├── lefty.exe │ │ ├── libcairo-2.dll │ │ ├── libcdt-4.dll │ │ ├── libcgraph-4.dll │ │ ├── libexpat.dll │ │ ├── libfontconfig-1.dll │ │ ├── libfreetype-6.dll │ │ ├── libgdk_pixbuf-2.0-0.dll │ │ ├── libglib-2.0-0.dll │ │ ├── libgmodule-2.0-0.dll │ │ ├── libgobject-2.0-0.dll │ │ ├── libgraph-4.dll │ │ ├── libgvc-4.dll │ │ ├── libgvc_builtins-4.dll │ │ ├── libgvplugin_core-5.dll │ │ ├── libgvplugin_dot_layout-5.dll │ │ ├── libgvplugin_gd-5.dll │ │ ├── libgvplugin_neato_layout-5.dll │ │ ├── libgvplugin_pango-5.dll │ │ ├── libgvplugin_rsvg-5.dll │ │ ├── libpango-1.0-0.dll │ │ ├── libpangocairo-1.0-0.dll │ │ ├── libpangoft2-1.0-0.dll │ │ ├── libpangowin32-1.0-0.dll │ │ ├── libpathplan-4.dll │ │ ├── libpng12.dll │ │ ├── libxml2.dll │ │ ├── lneato.exe │ │ ├── mm2gv.exe │ │ ├── neato.exe │ │ ├── nop.exe │ │ ├── props.txt │ │ ├── prune.exe │ │ ├── sccmap.exe │ │ ├── settings.ini │ │ ├── tred.exe │ │ ├── twopi.exe │ │ ├── unflatten.exe │ │ └── zlib1.dll ├── Layout │ └── DiagramLayout.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ └── Schema.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SchemaDiagrammer.csproj ├── View │ ├── Converters │ │ ├── CardinalityConverter.cs │ │ ├── ConnectorBindingConverter.cs │ │ ├── DebugConverter.cs │ │ ├── MiddleOfLineConverter.cs │ │ └── VisibilityConverter.cs │ ├── DiagramSurface.cs │ ├── Draggers │ │ ├── ConnectionDragger.cs │ │ ├── DraggerBase.cs │ │ └── SimpleShapeDragger.cs │ ├── Helpers │ │ ├── ConnectionPointUtility.cs │ │ ├── DrawingHelper.cs │ │ ├── HitTestUtility.cs │ │ └── PointExtension.cs │ ├── IDiagramEntity.cs │ ├── SelectableObjectPanel.cs │ └── Shapes │ │ ├── Connection.cs │ │ ├── ConnectionPoint.cs │ │ ├── ConnectorEndPoints │ │ ├── ConnectorEndPoint.cs │ │ ├── IConnectorEndPointDrawingStrategy.cs │ │ ├── ManyConnectorEndPoint.cs │ │ └── OneConnectorEndPoint.cs │ │ ├── DiagramShape.cs │ │ ├── IConnectionDrawingStrategy.cs │ │ └── TextShapeDecoration.cs └── WPFDesigner.cs ├── Slyce.Common.UnitTesting ├── Properties │ └── AssemblyInfo.cs ├── Slyce.Common.UnitTesting.csproj ├── Specs_For_CleanNameCSharp.cs ├── Specs_For_FileController.cs ├── Specs_For_New_Distinct.cs ├── Specs_For_Observable_Trace_Listener.cs └── Specs_For_RelativePaths.cs ├── Slyce.Common.sln ├── Slyce.Common ├── AASettingsProvider.cs ├── Attributes.cs ├── CLRTypes.cs ├── CSProjFile.cs ├── ClassDiagram1.cd ├── CollectionChangedEvent.cs ├── ColorUtility.cs ├── ComboBoxItemEx.cs ├── ConfigurationUtility.cs ├── Controls │ ├── Diagramming │ │ ├── Shapes │ │ │ ├── EntityShape.Designer.cs │ │ │ ├── EntityShape.cs │ │ │ ├── EntityShape.resx │ │ │ ├── LineCaps.cs │ │ │ ├── LinkLine.cs │ │ │ ├── RawCategory.cs │ │ │ ├── RawComponent.cs │ │ │ ├── RawEntity.cs │ │ │ ├── RawProperty.cs │ │ │ ├── RawShape.cs │ │ │ ├── RawTable.cs │ │ │ ├── ReferenceLine.cs │ │ │ ├── Shape.cs │ │ │ ├── ShapeCanvas.Designer.cs │ │ │ ├── ShapeCanvas.cs │ │ │ ├── ShapeCanvas.resx │ │ │ ├── ShapeHelper.cs │ │ │ ├── TableShape.Designer.cs │ │ │ ├── TableShape.cs │ │ │ └── TableShape.resx │ │ └── SlyceGrid │ │ │ ├── ColumnItem.cs │ │ │ ├── DatGridViewGFH.cs │ │ │ ├── DataGridViewComboBoxCellEx.cs │ │ │ ├── DataGridViewComboBoxColumnEx.cs │ │ │ ├── DataGridViewTextBoxCellEx.cs │ │ │ ├── DataGridViewTextBoxColumnEx.cs │ │ │ ├── Resources │ │ │ ├── delete16.png │ │ │ ├── delete_x_16.png │ │ │ └── plus_16.png │ │ │ ├── SlyceGrid.Designer.cs │ │ │ ├── SlyceGrid.cs │ │ │ ├── SlyceGrid.resx │ │ │ ├── SlyceTreeGridCellItem.cs │ │ │ └── SlyceTreeGridItem.cs │ ├── DistinctStatus.cs │ ├── DistinctStatus.resx │ ├── FloatingToolstrip.Designer.cs │ ├── FloatingToolstrip.cs │ ├── FloatingToolstrip.resx │ ├── Grouper.cs │ ├── Line.cs │ ├── MessageBoxWithFileSelector.Designer.cs │ ├── MessageBoxWithFileSelector.cs │ ├── MessageBoxWithFileSelector.resx │ ├── MessagePanel.Designer.cs │ ├── MessagePanel.cs │ ├── MessagePanel.resx │ ├── NumEdit.cs │ ├── SlyceMessageBox.Designer.cs │ ├── SlyceMessageBox.cs │ ├── SlyceMessageBox.resx │ ├── SpinningProgress.cs │ ├── SpinningProgress.designer.cs │ ├── SpinningProgress.resx │ ├── SystemTrayPopup.Designer.cs │ ├── SystemTrayPopup.cs │ ├── SystemTrayPopup.resx │ ├── TableLayoutPanelEx.Designer.cs │ ├── TableLayoutPanelEx.cs │ ├── TransparentPanel.Designer.cs │ ├── TransparentPanel.cs │ ├── TransparentPanelEx.cs │ ├── VersionInfo.Designer.cs │ ├── VersionInfo.cs │ ├── VersionInfo.resx │ ├── WaitDialog.Designer.cs │ ├── WaitDialog.cs │ ├── WaitDialog.resx │ ├── ucHeading.Designer.cs │ ├── ucHeading.cs │ ├── ucHeading.resx │ ├── ucHoverList.Designer.cs │ └── ucHoverList.cs ├── CrossThreadHelper.cs ├── DoubleLookup.cs ├── Enumeration.cs ├── ErrorReporting │ ├── ExceptionReportingForm.cs │ ├── ExceptionReportingForm.resx │ ├── frmDebugWindow.Designer.cs │ ├── frmDebugWindow.cs │ ├── frmDebugWindow.resx │ ├── frmSendReport.Designer.cs │ ├── frmSendReport.cs │ ├── frmSendReport.resx │ ├── frmTransfer.Designer.cs │ ├── frmTransfer.cs │ └── frmTransfer.resx ├── EventExtensions.cs ├── EventList.cs ├── Exceptions │ ├── DeserialisationException.cs │ ├── FileLockedException.cs │ └── InvalidPathException.cs ├── Extension Methods │ ├── DictionaryExtensions.cs │ ├── IEnumerableExtensions.cs │ ├── ReflectionExtensions.cs │ └── XmlExtensionMethods.cs ├── FastSerializer.cs ├── FormHelper.cs ├── FtpUtility.cs ├── GenericEventArgs.cs ├── IFileController.cs ├── IOHelper.cs ├── KeyboardHelper.cs ├── LookupList.cs ├── NameHelper.cs ├── NodeProcessor.cs ├── ObservableTraceListener.cs ├── Pair.cs ├── ParallelHelper.cs ├── PathHelper.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── licenses.licx ├── ReflectionHelper.cs ├── RegistryMonitor.cs ├── RelativePaths.cs ├── Scripter.cs ├── Slyce.Common.csproj ├── SmartAssembly.Attributes.cs ├── StringExtensionMethods.cs ├── SyntaxEditorHelper.cs ├── SyntaxFiles │ ├── ActiproSoftware.Assembly.xml │ ├── ActiproSoftware.BatchFile.xml │ ├── ActiproSoftware.C.xml │ ├── ActiproSoftware.CSS.xml │ ├── ActiproSoftware.CSharp.xml │ ├── ActiproSoftware.Cpp.xml │ ├── ActiproSoftware.GrammarProduction.xml │ ├── ActiproSoftware.HTML.xml │ ├── ActiproSoftware.INIFile.xml │ ├── ActiproSoftware.JScript.xml │ ├── ActiproSoftware.Java.xml │ ├── ActiproSoftware.Lua.xml │ ├── ActiproSoftware.MSIL.xml │ ├── ActiproSoftware.PHP.xml │ ├── ActiproSoftware.Pascal.xml │ ├── ActiproSoftware.Perl.xml │ ├── ActiproSoftware.PlainText.xml │ ├── ActiproSoftware.PowerShell.xml │ ├── ActiproSoftware.Python.xml │ ├── ActiproSoftware.RTF.xml │ ├── ActiproSoftware.SQL.xml │ ├── ActiproSoftware.SyntaxEditor.LanguageDefinition.xsd │ ├── ActiproSoftware.VBDotNet.xml │ ├── ActiproSoftware.VBScript.xml │ ├── ActiproSoftware.XAML.xml │ └── ActiproSoftware.XML.xml ├── TextBoxFocusHelper.cs ├── TreelistUtility.cs ├── Updates │ ├── frmUpdate.Designer.cs │ ├── frmUpdate.cs │ └── frmUpdate.resx ├── Utility.cs ├── VersionNumber.cs ├── VersionNumberComparer.cs ├── XmlSqueezer.cs └── XmlUtility.cs ├── Slyce.IntelliMerge.UnitTesting.sln ├── Slyce.IntelliMerge.UnitTesting ├── Assertions.cs ├── Base2WaySpec.cs ├── Base3WaySpec.cs ├── CSharpFormatter │ ├── Specs_For_BaseContruct_WalkTree.cs │ ├── Specs_For_CSharp_BaseConstructs_FQName.cs │ └── Specs_For_CSharp_BaseConstructs_UID.cs ├── CodeInsertions │ └── Specs_For_CodeInsertions_AddToClass.cs ├── Controller │ ├── CodeProvider │ │ ├── Secs_For_LINQ_Formatting.cs │ │ ├── Specs_For_CSharp_Parser.cs │ │ ├── Specs_For_Comments_And_PreProcessor.cs │ │ ├── Specs_For_Expression_Formatting.cs │ │ ├── Specs_For_Single_Base_Construct_Parsing.cs │ │ ├── Specs_For_Statement_Formatting.cs │ │ ├── Specs_For_Whatever.cs │ │ └── Test_Entire_Projects.cs │ ├── Specs_For_Base_Construct_Clone.cs │ ├── Specs_For_Binary_FileInformation.cs │ ├── Specs_For_CSharp_Code_Root_DiffTypes.cs │ ├── Specs_For_CodeRootMapNode_GetMergedBaseConstruct.cs │ ├── Specs_For_CodeRootMapNode_GetSiblingsOfType.cs │ ├── Specs_For_CodeRootMap_Basic_Usage.cs │ ├── Specs_For_CodeRootMap_Diff.cs │ ├── Specs_For_CodeRootMap_MatchProcessor.cs │ ├── Specs_For_CodeRootMap_Matching.cs │ ├── Specs_For_CodeRootMap_Merge.cs │ ├── Specs_For_Code_Root_Map_Region_Handling.cs │ ├── Specs_For_FileInformation.cs │ ├── TestBackupUtility.cs │ └── TestPrevGenUtility.cs ├── Helper.cs ├── Notes.txt ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── AllLinesDifferent_Expected.txt │ ├── CSharp │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfoWithExtraAttribute.cs │ │ ├── Class1.cs │ │ ├── Class1_ChangedMethodText.cs │ │ ├── Class1_ExtraComments.cs │ │ ├── Class1_WithAttributes.cs │ │ ├── Class1_WithAttributes_Reordered.cs │ │ ├── Class1_WithConstant.cs │ │ ├── Class1_WithConstant_Reordered.cs │ │ ├── Class1_WithConstructor.cs │ │ ├── Class1_WithConstructor_Reordered.cs │ │ ├── Class1_WithDelegate.cs │ │ ├── Class1_WithDelegate_Reordered.cs │ │ ├── Class1_WithEmptyRegion.cs │ │ ├── Class1_WithEmptyRegion_Reordered.cs │ │ ├── Class1_WithEnum.cs │ │ ├── Class1_WithEnum_Reordered.cs │ │ ├── Class1_WithEnum_Values_Reordered.cs │ │ ├── Class1_WithEvent.cs │ │ ├── Class1_WithEvent_Reordered.cs │ │ ├── Class1_WithField.cs │ │ ├── Class1_WithField_Reordered.cs │ │ ├── Class1_WithIndexer.cs │ │ ├── Class1_WithIndexer_GetSet_Reordered.cs │ │ ├── Class1_WithIndexer_Reordered.cs │ │ ├── Class1_WithInterface.cs │ │ ├── Class1_WithInterface_Internally_Reordered.cs │ │ ├── Class1_WithInterface_Reordered.cs │ │ ├── Class1_WithOperator.cs │ │ ├── Class1_WithOperator_Reordered.cs │ │ ├── Class1_WithPropertyAccessors.cs │ │ ├── Class1_WithPropertyAccessors_GetSet_Reordered.cs │ │ ├── Class1_WithPropertyAccessors_Reordered.cs │ │ ├── Class1_WithRegion.cs │ │ ├── Class1_WithRegion_Reordered.cs │ │ ├── Class1_WithStruct.cs │ │ ├── Class1_WithStruct_Reordered.cs │ │ ├── Class1_WithTwoMethods.cs │ │ ├── Class1_WithTwoMethods_Reordered.cs │ │ ├── Class1_WithUsingStatements.cs │ │ ├── Class1_WithUsingStatements_Reordered.cs │ │ ├── Class1_With_String_Method.cs │ │ ├── Class1_With_String_Method_Changed_Param.cs │ │ ├── PerformanceTest.cs │ │ └── ScriptBase.cs │ ├── FirstLineDifferent_Expected.txt │ ├── FourLines.txt │ ├── FourLines_2Different.txt │ ├── FourLines_Expected.txt │ ├── LastLineDifferent_Expected.txt │ ├── Manifest │ │ ├── Manifest │ │ │ └── X.cs │ │ ├── SubDirs │ │ │ ├── .ArchAngel │ │ │ │ └── {c1285b30-66b7-4e2f-a85c-6d169d9977c7}_TemplateName │ │ │ │ │ ├── X.cs │ │ │ │ │ └── __AAManifest.xml │ │ │ └── SubDir │ │ │ │ ├── .ArchAngel │ │ │ │ └── {c1285b30-66b7-4e2f-a85c-6d169d9977c7}_TemplateName │ │ │ │ │ ├── Y.cs │ │ │ │ │ └── __AAManifest.xml │ │ │ │ ├── Y.cs │ │ │ │ └── __AAManifest.xml │ │ ├── SubDirsw │ │ │ ├── SubDir │ │ │ │ ├── Y.cs │ │ │ │ └── __AAManifest.xml │ │ │ ├── X.cs │ │ │ └── __AAManifest.xml │ │ ├── TLD │ │ │ ├── .ArchAngel │ │ │ │ └── {c1285b30-66b7-4e2f-a85c-6d169d9977c7}_TemplateName │ │ │ │ │ ├── X.cs │ │ │ │ │ └── __AAManifest.xml │ │ │ └── X.cs │ │ └── TLDw │ │ │ ├── X.cs │ │ │ └── __AAManifest.xml │ ├── MiddleLineDifferent_Expected.txt │ ├── MultiDiffs_Expected.txt │ ├── MultiDiffs_Left.txt │ ├── MultiDiffs_Right.txt │ ├── ThreeDiffLines.txt │ ├── ThreeLines.txt │ ├── ThreeLines_FirstLineChanged.txt │ ├── ThreeLines_FirstLineDeleted.txt │ ├── ThreeLines_FirstLine_InsertAtStart.txt │ ├── ThreeLines_LastLineChanged.txt │ ├── ThreeLines_MiddleLine_InsertAtMiddle.txt │ ├── ThreeOtherLines.txt │ ├── ThreeOtherLines2.txt │ ├── TwoLines.txt │ └── TwoLinesWithEmptyLines.txt ├── Slyce.IntelliMerge.UnitTesting.csproj ├── SpecsForDiff.cs ├── ThreeWayMerge.cs ├── TwoWayDiff.cs └── UI │ ├── Specs_For_TemplateVisualDiff.cs │ ├── Specs_For_TwoWayVisualDiff.cs │ ├── Specs_For_Visual_Diff_Output.cs │ ├── SyntaxEditorSetup.cs │ ├── SyntaxEditorSetup_Add.cs │ ├── SyntaxEditorSetup_Change.cs │ └── SyntaxEditorSetup_Delete.cs ├── Slyce.IntelliMerge.sln ├── Slyce.IntelliMerge ├── Controller │ ├── BinaryFileInformation.cs │ ├── CodeRootMap.cs │ ├── FileInformation.cs │ ├── FileInformationUtility.cs │ ├── IFileInformation.cs │ ├── ManifestWorkers │ │ ├── BackupUtility.cs │ │ ├── CodeRootMapMatchProcessor.cs │ │ ├── ManifestConstants.cs │ │ └── PrevGenUtility.cs │ ├── MissingObject.cs │ └── TextFileInformation.cs ├── Diff │ ├── Diff.cs │ ├── Merge.cs │ ├── Patch.cs │ ├── StructuredDiff.cs │ ├── TextDiff.cs │ └── UnifiedDiff.cs ├── DiffMatchPatch.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources1.Designer.cs │ └── licenses.licx ├── Resources │ ├── CSharp │ │ ├── VSObject_Class.bmp │ │ ├── VSObject_Constant.bmp │ │ ├── VSObject_Delegate.bmp │ │ ├── VSObject_Enum.bmp │ │ ├── VSObject_Event.bmp │ │ ├── VSObject_Field.bmp │ │ ├── VSObject_Interface.bmp │ │ ├── VSObject_Method.bmp │ │ ├── VSObject_Namespace.bmp │ │ ├── VSObject_Operator.bmp │ │ ├── VSObject_Properties.bmp │ │ ├── VSObject_Structure.bmp │ │ └── VSProject_CSCodefile.bmp │ ├── Control_ErrorProvider.bmp │ ├── Critical.bmp │ ├── StatusImages │ │ ├── blank.png │ │ ├── conflict.png │ │ ├── error.png │ │ ├── resolved.png │ │ ├── unknown.png │ │ └── warning.png │ ├── TextboxHS.png │ ├── VSProject_genericfile.bmp │ ├── blue_arrow.png │ ├── error.png │ ├── error_16.png │ ├── error_161.png │ ├── font_char33_red_16_h.png │ ├── font_char61_green_16_h.png │ └── green_arrow.png ├── Slyce.IntelliMerge.csproj ├── SlyceMerge.cs ├── StringUtility.cs ├── UI │ ├── CSharpStatusImageLoader.cs │ ├── CodeTestForm.Designer.cs │ ├── CodeTestForm.cs │ ├── CodeTestForm.resx │ ├── Editors │ │ ├── TextMergeDisplayAlgorithms.cs │ │ ├── ucAnalysisErrorEditor.Designer.cs │ │ ├── ucAnalysisErrorEditor.cs │ │ ├── ucAnalysisErrorEditor.resx │ │ ├── ucBinaryMergeEditor.Designer.cs │ │ ├── ucBinaryMergeEditor.cs │ │ ├── ucBinaryMergeEditor.resx │ │ ├── ucCodeMergeEditor.Designer.cs │ │ ├── ucCodeMergeEditor.cs │ │ ├── ucCodeMergeEditor.resx │ │ ├── ucGenerateErrorEditor.Designer.cs │ │ ├── ucGenerateErrorEditor.cs │ │ ├── ucGenerateErrorEditor.resx │ │ ├── ucMergeErrorEditor.Designer.cs │ │ ├── ucMergeErrorEditor.cs │ │ ├── ucMergeErrorEditor.resx │ │ ├── ucNoChangeEditor.Designer.cs │ │ ├── ucNoChangeEditor.cs │ │ ├── ucNoChangeEditor.resx │ │ ├── ucSimpleDiffEditor.Designer.cs │ │ ├── ucSimpleDiffEditor.cs │ │ ├── ucSimpleDiffEditor.resx │ │ ├── ucTextMergeEditor.Designer.cs │ │ ├── ucTextMergeEditor.cs │ │ └── ucTextMergeEditor.resx │ ├── FormSelectMatch.Designer.cs │ ├── FormSelectMatch.cs │ ├── FormSelectMatch.resx │ ├── IMergeEditor.cs │ ├── TestForm.Designer.cs │ ├── TestForm.cs │ ├── TestForm.resx │ ├── ThreeScreenTextDiff.Designer.cs │ ├── ThreeScreenTextDiff.cs │ ├── ThreeScreenTextDiff.resx │ ├── Utility.cs │ └── VisualDiff │ │ ├── DiffResult.cs │ │ ├── IVisualDiff.cs │ │ ├── ThreeWayVisualDiff.cs │ │ ├── TwoWayVisualDiff.cs │ │ └── VisualDiffOutput.cs └── Utility.cs ├── Slyce.Licensing.sln ├── Slyce.Licensing ├── Controls │ ├── GlassButton.Designer.cs │ └── GlassButton.cs ├── LicenseStatus.Designer.cs ├── LicenseStatus.cs ├── LicenseStatus.resx ├── Licenser.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── HID.exe ├── Slyce.Licensing.csproj ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── frmUnlock.Designer.cs ├── frmUnlock.cs └── frmUnlock.resx ├── Slyce.PatchBuilder ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── InstallScript.nsi ├── PatchBuilder.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Slyce.Updater.sln ├── SmartAssembly Custom Template ├── Controls │ ├── Header.Designer.cs │ ├── Header.cs │ └── Header.resx ├── ExceptionReportingForm.cs ├── ExceptionReportingForm.resx ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── RegistryHelper.cs ├── Sample 03 - Template With Custom UI.csproj ├── Sample 03 - Template With Custom UI.sln ├── Sample 03 - Template With Custom UI.sln.docstates ├── SecurityExceptionForm.cs ├── SmartAssembly_Custom_Template.zip └── UnhandledExceptionHandlerWithAdvancedUI.cs └── UnitTesting Examples ├── ChangeTheNameOfThisClass.cs ├── Notes.txt └── Properties └── AssemblyInfo.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/.gitignore -------------------------------------------------------------------------------- /src/3rd_Party_Libs/AlpineSoft.EZRSA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/AlpineSoft.EZRSA.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/AxInterop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/AxInterop.SHDocVw.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/CompactSerialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/CompactSerialization.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Diff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Diff.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/FluentNHibernate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/FluentNHibernate.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/FluentNHibernate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/FluentNHibernate.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/GraphSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/GraphSharp.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/ILMerge.exe -------------------------------------------------------------------------------- /src/3rd_Party_Libs/ITemplate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/ITemplate.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Iesi.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Iesi.Collections.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Iesi.Collections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Iesi.Collections.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Inflector.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Inflector.Net.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Inflector.Net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Inflector.Net.pdb -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Interop.PGMRX120Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Interop.PGMRX120Lib.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Interop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Interop.SHDocVw.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Ionic.Zip.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Ionic.Zip.XML -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Ionic.Zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Ionic.Zip.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Ionic.Zip.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Ionic.Zip.pdb -------------------------------------------------------------------------------- /src/3rd_Party_Libs/License.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/License.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Microsoft.GLEE.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Microsoft.GLEE.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Microsoft.NetMap.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Microsoft.NetMap.Core.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Microsoft.NetMap.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Microsoft.NetMap.Core.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Mono.Cecil.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/MsHtmHstInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/MsHtmHstInterop.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/NHibernate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/NHibernate.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/NHibernate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/NHibernate.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/QuickGraph.Graphviz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/QuickGraph.Graphviz.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/QuickGraph.Graphviz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/QuickGraph.Graphviz.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/QuickGraph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/QuickGraph.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/QuickGraph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/QuickGraph.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/SQLite_ANTLR_Grammar.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/SQLite_ANTLR_Grammar.g -------------------------------------------------------------------------------- /src/3rd_Party_Libs/System.Data.SqlServerCe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/System.Data.SqlServerCe.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/System.Data.SqlServerCe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/System.Data.SqlServerCe.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Unit Testing/Moq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Unit Testing/Moq.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Unit Testing/Moq.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Unit Testing/Moq.pdb -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Unit Testing/Moq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Unit Testing/Moq.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Unit Testing/Rhino.Mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Unit Testing/Rhino.Mocks.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Unit Testing/Rhino.Mocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Unit Testing/Rhino.Mocks.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Vista Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Vista Api.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/Vista Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/Vista Api.pdb -------------------------------------------------------------------------------- /src/3rd_Party_Libs/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/log4net.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/log4net.xml -------------------------------------------------------------------------------- /src/3rd_Party_Libs/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/sqlite3.dll -------------------------------------------------------------------------------- /src/3rd_Party_Libs/sqlite3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/3rd_Party_Libs/sqlite3.exe -------------------------------------------------------------------------------- /src/ApiExtender/ApiExtender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/ApiExtender.csproj -------------------------------------------------------------------------------- /src/ApiExtender/ApiExtender.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/ApiExtender.csproj.user -------------------------------------------------------------------------------- /src/ApiExtender/ApiExtender.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/ApiExtender.sln -------------------------------------------------------------------------------- /src/ApiExtender/Injector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/Injector.cs -------------------------------------------------------------------------------- /src/ApiExtender/MSBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/MSBuild.cs -------------------------------------------------------------------------------- /src/ApiExtender/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/Program.cs -------------------------------------------------------------------------------- /src/ApiExtender/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ApiExtender/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/Properties/Resources.resx -------------------------------------------------------------------------------- /src/ApiExtender/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/ApiExtender/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/Properties/Settings.settings -------------------------------------------------------------------------------- /src/ApiExtender/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/app.config -------------------------------------------------------------------------------- /src/ApiExtender/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/frmMain.Designer.cs -------------------------------------------------------------------------------- /src/ApiExtender/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/frmMain.cs -------------------------------------------------------------------------------- /src/ApiExtender/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ApiExtender/frmMain.resx -------------------------------------------------------------------------------- /src/ArchAngel.CodeProvider.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.CodeProvider.sln -------------------------------------------------------------------------------- /src/ArchAngel.Common/ApplicationBrand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/ApplicationBrand.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/ArchAngel.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/ArchAngel.Common.csproj -------------------------------------------------------------------------------- /src/ArchAngel.Common/DesignerProject/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/DesignerProject/Enums.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/GenerationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/GenerationError.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/GenerationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/GenerationHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/Generator.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/ProgressHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/ProgressHelpers.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/ProjectFileTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/ProjectFileTree.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/ProjectSettings.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/ProjectVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/ProjectVerifier.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/RibbonButtonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/RibbonButtonController.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/TemplateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/TemplateHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Common/WorkbenchProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Common/WorkbenchProject.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger.DebugProcess/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger.DebugProcess/Commands.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger.DebugProcess/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger.DebugProcess/Main.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger.DebugProcess/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ArchAngel.Debugger.DebugProcess/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger.DebugProcess/app.config -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/AppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/AppDomain.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Assembly.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Breakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Breakpoint.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Class.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Constants.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Controller.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/CorMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/CorMetadata.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/CorPublish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/CorPublish.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Debugger.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Eval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Eval.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/HResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/HResults.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/ISymBinder2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/ISymBinder2.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/ISymConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/ISymConstant.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/ISymENCUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/ISymENCUpdate.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/ISymEncMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/ISymEncMethod.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/ISymReader2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/ISymReader2.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/ISymScope2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/ISymScope2.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/ISymSearchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/ISymSearchInfo.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/ISymWriter2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/ISymWriter2.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/MetadataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/MetadataType.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Module.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Process.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/RegisterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/RegisterSet.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Stepper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Stepper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/SymAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/SymAccess.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/SymConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/SymConstant.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/SymDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/SymDocument.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/SymNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/SymNamespace.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/SymReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/SymReader.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/SymScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/SymScope.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/SymSearchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/SymSearchInfo.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/SymWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/SymWriter.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Thread.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Type.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/TypeEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/TypeEnumerator.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/Value.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/WrapperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/WrapperBase.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/symbinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/symbinder.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/symmethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/symmethod.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/CorAPI/symvariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/CorAPI/symvariable.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/Debugger.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Appdomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Appdomain.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Breakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Breakpoint.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Engine.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Exception.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Function.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Module.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Process.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/StopReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/StopReason.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Thread.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/MDbgEngine/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/MDbgEngine/Value.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/Raw/ICorDebugWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/Raw/ICorDebugWrappers.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/Raw/IMetadataImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/Raw/IMetadataImport.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/Raw/WindowsImports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/Raw/WindowsImports.cs -------------------------------------------------------------------------------- /src/ArchAngel.Debugger/doc/Documentation.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Debugger/doc/Documentation.chm -------------------------------------------------------------------------------- /src/ArchAngel.Designer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer.sln -------------------------------------------------------------------------------- /src/ArchAngel.Designer/BaseApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/BaseApp.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Branding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Branding.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Class1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ArchAngel.Designer/CompileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/CompileHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/CompileHelperRelated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/CompileHelperRelated.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/CompilerError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/CompilerError.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Config/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Config/File.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Config/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Config/Folder.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Config/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Config/Option.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Config/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Config/Output.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Config/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Config/Project.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Config/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Config/Script.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ConsoleApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ConsoleApp.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Controller.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Designer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Designer.ico -------------------------------------------------------------------------------- /src/ArchAngel.Designer/EntityInstance.cst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/EntityInstance.cst -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ExternalFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ExternalFunctions.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/FunctionRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/FunctionRunner.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Helper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/IScriptManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/IScriptManager.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/IntelliSense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/IntelliSense.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Program.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Project.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Properties/app.manifest -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Properties/licenses.licx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Resources/Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Resources/Edit.png -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Resources/HID.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Resources/HID.exe -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Resources/HardwareID.txt: -------------------------------------------------------------------------------- 1 | IDM5-1DIG-INIL-PIRR-S2GF -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Resources/blue_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Resources/blue_arrow.png -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Resources/cs.syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Resources/cs.syntax -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Resources/edit_16_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Resources/edit_16_h.png -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Resources/error_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Resources/error_16.png -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Resources/vb.syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Resources/vb.syntax -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ScriptManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ScriptManager.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/SearchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/SearchHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/Settings.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/SyntaxReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/SyntaxReader.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/app.config -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmAbout.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmAbout.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmAbout.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmActionEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmActionEdit.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmActionEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmActionEdit.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmCleanUp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmCleanUp.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmCleanUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmCleanUp.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmCleanUp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmCleanUp.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmCompile.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmCompile.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmCompile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmCompile.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmCompile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmCompile.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmConstantsDataEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmConstantsDataEntry.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmExtractTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmExtractTemplate.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmExtractTemplate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmExtractTemplate.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmFind.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmFind.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmFind.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmFind.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmFind.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmFunctionEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmFunctionEdit.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmFunctionEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmFunctionEdit.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmMain.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmMain.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmMain.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmNewProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmNewProvider.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmNewProvider.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmNewProvider.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmOptions.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmOptions.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmOptions.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmParameterEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmParameterEdit.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmParameterEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmParameterEdit.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmSelectModelObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmSelectModelObject.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmSplash.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmSplash.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmSplash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmSplash.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmSplash.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmSplash.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmTestFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmTestFunction.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmTestFunction.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmTestFunction.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmWait.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmWait.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmWait.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/frmWait.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/frmWait.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucApiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucApiExtensions.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucApiExtensions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucApiExtensions.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucConstants.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucConstants.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucConstants.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucConstants.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucConstants.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucFindResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucFindResults.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucFindResults.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucFindResults.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucFunction.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucFunction.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucFunction.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucFunction.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucFunction.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucFunctions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucFunctions.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucFunctions.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucFunctions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucFunctions.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucGenerationChoices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucGenerationChoices.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucGenerationChoices.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucGenerationChoices.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucOptions.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucOptions.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucOptions.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucProjectDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucProjectDetails.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucProjectDetails.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucProjectDetails.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucUserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucUserOptions.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucUserOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucUserOptions.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucUserOptionsAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucUserOptionsAPI.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucUserOptionsAPI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucUserOptionsAPI.resx -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucUserOptionsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucUserOptionsHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Designer/ucUserOptionsHelper.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Designer/ucUserOptionsHelper.resx -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/ActionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/ActionAttribute.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/ApiExtensionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/ApiExtensionHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Attributes.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/BaseAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/BaseAction.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Cardinality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Cardinality.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Events.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/GeneratedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/GeneratedFile.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Helper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/IOptionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/IOptionForm.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/IProgressUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/IProgressUpdater.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/IProjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/IProjectHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/IScriptBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/IScriptBase.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/IScriptBaseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/IScriptBaseObject.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/ITemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/ITemplate.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/IWorkbenchProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/IWorkbenchProject.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/NHibernateEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/NHibernateEnums.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/PreGenerationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/PreGenerationData.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Properties/IController.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace ArchAngel.Interfaces 3 | { 4 | public class IController 5 | { 6 | 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/ProviderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/ProviderHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/ProviderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/ProviderInfo.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/ScriptBaseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/ScriptBaseObject.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Setting.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/SharedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/SharedData.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/SourceCodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/SourceCodeType.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Template/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Template/Enums.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Template/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Template/File.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Template/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Template/Folder.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Template/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Template/Script.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/Template/StaticFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/Template/StaticFile.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/TemplateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/TemplateData.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/TemplateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/TemplateHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/TemplateInfo/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/TemplateInfo/File.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/TemplateInfo/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/TemplateInfo/Folder.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/TemplateInfo/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/TemplateInfo/Option.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/TemplateInfo/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/TemplateInfo/Output.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/TemplateInfo/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/TemplateInfo/Script.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/TemplateLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/TemplateLoader.cs -------------------------------------------------------------------------------- /src/ArchAngel.Interfaces/UserOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Interfaces/UserOption.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/DriveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/DriveInfo.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/License.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/License.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/LicenseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/LicenseHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/LicenseMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/LicenseMonitor.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/NalpeironAuthorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/NalpeironAuthorizer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/NativeMethods.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/ReactorAuthorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/ReactorAuthorizer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/SecurityChecks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/SecurityChecks.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/SlyceAuthorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/SlyceAuthorizer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/frmStatus.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/frmStatus.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/frmStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/frmStatus.cs -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/frmStatus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/frmStatus.resx -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/test_private_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/test_private_key.xml -------------------------------------------------------------------------------- /src/ArchAngel.Licensing/test_public_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Licensing/test_public_key.xml -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/EntityLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.NHibernateHelper/EntityLoader.cs -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.NHibernateHelper/Images.cs -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/NHCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.NHibernateHelper/NHCollections.cs -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/NHConfigFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.NHibernateHelper/NHConfigFile.cs -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/ProjectLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.NHibernateHelper/ProjectLoader.cs -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/ProviderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.NHibernateHelper/ProviderInfo.cs -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/Test.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/UI/FormErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.NHibernateHelper/UI/FormErrors.cs -------------------------------------------------------------------------------- /src/ArchAngel.NHibernateHelper/nhv-mapping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.NHibernateHelper/nhv-mapping.xsd -------------------------------------------------------------------------------- /src/ArchAngel.ProviderUtility.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.ProviderUtility.sln -------------------------------------------------------------------------------- /src/ArchAngel.Providers.CodeProvider/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.CodeProvider/Helper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.CodeProvider/IBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.CodeProvider/IBody.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.CodeProvider/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.CodeProvider/IParser.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/BLL/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/BLL/Helper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/BLL/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/BLL/Search.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/BLL/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/BLL/Table.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/BLL/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/BLL/View.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/ClassDiagram2.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/Helper.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/IDAL/ITable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/IDAL/ITable.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/IDAL/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/IDAL/IView.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/Model/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/Model/Index.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/Model/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/Model/Key.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/Model/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/Model/Table.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/Model/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.Database/Model/View.cs -------------------------------------------------------------------------------- /src/ArchAngel.Providers.Database/Properties/licenses.config: -------------------------------------------------------------------------------- 1 | ArchAngel.Workbench.exe -------------------------------------------------------------------------------- /src/ArchAngel.Providers.EntityModel.UnitTesting/Properties/licenses.config: -------------------------------------------------------------------------------- 1 | JetBrains.ReSharper.TaskRunnerFramework.dll 2 | devenv.exe -------------------------------------------------------------------------------- /src/ArchAngel.Providers.EntityModel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.EntityModel.sln -------------------------------------------------------------------------------- /src/ArchAngel.Providers.EntityModel/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Providers.EntityModel/app.config -------------------------------------------------------------------------------- /src/ArchAngel.TemplatePackager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.TemplatePackager.sln -------------------------------------------------------------------------------- /src/ArchAngel.Templates/NHibernate.vnh_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Templates/NHibernate.vnh_template -------------------------------------------------------------------------------- /src/ArchAngel.Templates/NHibernate/NH_Inheritance/Project Files/version.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/ArchAngel.Templates/NHibernate/Northwind/Project Files/version.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/ArchAngel.Templates/NHibernate/Project/Project Files/version.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /src/ArchAngel.Templates/PetShop2005/cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Templates/PetShop2005/cancel.gif -------------------------------------------------------------------------------- /src/ArchAngel.Templates/PetShop2005/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Templates/PetShop2005/common.js -------------------------------------------------------------------------------- /src/ArchAngel.Templates/PetShop2005/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Templates/PetShop2005/delete.gif -------------------------------------------------------------------------------- /src/ArchAngel.Templates/PetShop2005/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Templates/PetShop2005/edit.gif -------------------------------------------------------------------------------- /src/ArchAngel.Templates/PetShop2005/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Templates/PetShop2005/update.gif -------------------------------------------------------------------------------- /src/ArchAngel.Templates/SharpArchitecture_files/File_37.vnh_script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ArchAngel.Templates/SharpArchitecture_files/File_38.vnh_script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ArchAngel.UnitTesting/TestAnalysisHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.UnitTesting/TestAnalysisHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.UnitTesting/TestIntellimerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.UnitTesting/TestIntellimerge.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/AboutBoxArchAngel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/AboutBoxArchAngel.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/AboutBoxArchAngel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/AboutBoxArchAngel.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/ArchAngel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/ArchAngel.ico -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Branding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Branding.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/ContentItems/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/ContentItems/Options.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/ContentItems/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/ContentItems/Output.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Controller.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Docs/BetaTesting.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Docs/BetaTesting.doc -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormColumn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormColumn.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormColumn.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormColumn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormColumn.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormErrors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormErrors.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormErrors.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormErrors.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormErrors.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormFilter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormFilter.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormFilter.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormFilter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormFilter.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormFilter2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormFilter2.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormFilter2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormFilter2.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormFilter2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormFilter2.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormIndex.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormIndex.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormIndex.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormIndex.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormKey.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormKey.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormKey.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormKey.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormKey.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormMain.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormMain.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormMain.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormMapColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormMapColumn.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormMapColumn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormMapColumn.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormMergeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormMergeEditor.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormMergeEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormMergeEditor.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormObjectOptionEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormObjectOptionEdit.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormOptions.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormOptions.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormOptions.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormParseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormParseError.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormParseError.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormParseError.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormRelationship.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormRelationship.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormRelationship.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormScriptObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormScriptObject.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormScriptObject.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormScriptObject.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormSelectDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormSelectDatabase.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormSelectDatabase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormSelectDatabase.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormSplash.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormSplash.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormSplash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormSplash.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/FormSplash.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/FormSplash.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/GenerationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/GenerationError.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/IController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/IController.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/IntelliSense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/IntelliSense.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/OptionsItems/General.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/OptionsItems/General.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Program.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Properties/app.manifest -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/Document.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/Unpinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/Unpinned.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/arrow.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/cross_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/cross_32.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/error_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/error_16.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/folder_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/folder_16.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/insert_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/insert_32.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/plus_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/plus_32.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Resources/reset_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Resources/reset_32.png -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/SearchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/SearchHelper.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Settings.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/UserControls/Heading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/UserControls/Heading.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/Workbench.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/Workbench.ico -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/app.config -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/frmActionEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/frmActionEdit.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/frmActionEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/frmActionEdit.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/frmFind.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/frmFind.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/frmFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/frmFind.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/frmFind.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/frmFind.resx -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/ucFindResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/ucFindResults.cs -------------------------------------------------------------------------------- /src/ArchAngel.WorkBench/ucFindResults.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.WorkBench/ucFindResults.resx -------------------------------------------------------------------------------- /src/ArchAngel.Workbench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.Workbench.sln -------------------------------------------------------------------------------- /src/ArchAngel.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel.build -------------------------------------------------------------------------------- /src/ArchAngel/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/App.xaml -------------------------------------------------------------------------------- /src/ArchAngel/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/App.xaml.cs -------------------------------------------------------------------------------- /src/ArchAngel/ArchAngel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/ArchAngel.csproj -------------------------------------------------------------------------------- /src/ArchAngel/Designer_NoBackground.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/Designer_NoBackground.ico -------------------------------------------------------------------------------- /src/ArchAngel/LauncherWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/LauncherWindow.xaml -------------------------------------------------------------------------------- /src/ArchAngel/LauncherWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/LauncherWindow.xaml.cs -------------------------------------------------------------------------------- /src/ArchAngel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ArchAngel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/Properties/Resources.resx -------------------------------------------------------------------------------- /src/ArchAngel/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/ArchAngel/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/Properties/Settings.settings -------------------------------------------------------------------------------- /src/ArchAngel/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/app.config -------------------------------------------------------------------------------- /src/ArchAngel/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/licenses.licx -------------------------------------------------------------------------------- /src/ArchAngel/nhtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/ArchAngel/nhtest.xml -------------------------------------------------------------------------------- /src/BUILD-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/BUILD-README.txt -------------------------------------------------------------------------------- /src/CodeFormatter/CodeFormatter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/CodeFormatter.csproj -------------------------------------------------------------------------------- /src/CodeFormatter/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/Form1.Designer.cs -------------------------------------------------------------------------------- /src/CodeFormatter/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/Form1.cs -------------------------------------------------------------------------------- /src/CodeFormatter/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/Form1.resx -------------------------------------------------------------------------------- /src/CodeFormatter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/Program.cs -------------------------------------------------------------------------------- /src/CodeFormatter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CodeFormatter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/Properties/Resources.resx -------------------------------------------------------------------------------- /src/CodeFormatter/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/Properties/Settings.settings -------------------------------------------------------------------------------- /src/CodeFormatter/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CodeFormatter/Properties/licenses.licx -------------------------------------------------------------------------------- /src/Combined ArchAngel.Designer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Combined ArchAngel.Designer.sln -------------------------------------------------------------------------------- /src/Combined ArchAngel.Workbench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Combined ArchAngel.Workbench.sln -------------------------------------------------------------------------------- /src/Combined ArchAngel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Combined ArchAngel.sln -------------------------------------------------------------------------------- /src/CombinedArchAngel.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/CombinedArchAngel.build -------------------------------------------------------------------------------- /src/Custom Icons/.vsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/.vsdoc -------------------------------------------------------------------------------- /src/Custom Icons/Action_Generation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Action_Generation.ico -------------------------------------------------------------------------------- /src/Custom Icons/Action_Start.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Action_Start.ico -------------------------------------------------------------------------------- /src/Custom Icons/Action_Stop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Action_Stop.ico -------------------------------------------------------------------------------- /src/Custom Icons/Blue_square.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Blue_square.ico -------------------------------------------------------------------------------- /src/Custom Icons/Designer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Designer.ico -------------------------------------------------------------------------------- /src/Custom Icons/Designer_NoBackground.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Designer_NoBackground.ico -------------------------------------------------------------------------------- /src/Custom Icons/Filter2HS_red_dot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Filter2HS_red_dot.ico -------------------------------------------------------------------------------- /src/Custom Icons/FunctionHS_red_dot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/FunctionHS_red_dot.ico -------------------------------------------------------------------------------- /src/Custom Icons/HighlightHS_red_dot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/HighlightHS_red_dot.ico -------------------------------------------------------------------------------- /src/Custom Icons/IntelliDiff icons/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/IntelliDiff icons/blank.png -------------------------------------------------------------------------------- /src/Custom Icons/IntelliDiff icons/conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/IntelliDiff icons/conflict.png -------------------------------------------------------------------------------- /src/Custom Icons/IntelliDiff icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/IntelliDiff icons/error.png -------------------------------------------------------------------------------- /src/Custom Icons/IntelliDiff icons/resolved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/IntelliDiff icons/resolved.png -------------------------------------------------------------------------------- /src/Custom Icons/IntelliDiff icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/IntelliDiff icons/unknown.png -------------------------------------------------------------------------------- /src/Custom Icons/IntelliDiff icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/IntelliDiff icons/warning.png -------------------------------------------------------------------------------- /src/Custom Icons/List_BulletsHS_red_dot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/List_BulletsHS_red_dot.ico -------------------------------------------------------------------------------- /src/Custom Icons/List_NumberedHS_red_dot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/List_NumberedHS_red_dot.ico -------------------------------------------------------------------------------- /src/Custom Icons/MessagePanel/Hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/MessagePanel/Hourglass.png -------------------------------------------------------------------------------- /src/Custom Icons/MessagePanel/alarm_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/MessagePanel/alarm_32.png -------------------------------------------------------------------------------- /src/Custom Icons/MessagePanel/alarm_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/MessagePanel/alarm_64.png -------------------------------------------------------------------------------- /src/Custom Icons/PostActions.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/PostActions.ico -------------------------------------------------------------------------------- /src/Custom Icons/PreActions.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/PreActions.ico -------------------------------------------------------------------------------- /src/Custom Icons/PrimaryKeyHS_red_dot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/PrimaryKeyHS_red_dot.ico -------------------------------------------------------------------------------- /src/Custom Icons/Project4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Project4.ico -------------------------------------------------------------------------------- /src/Custom Icons/RelationshipsHS_red_dot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/RelationshipsHS_red_dot.ico -------------------------------------------------------------------------------- /src/Custom Icons/VSProject_database_red_dot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/VSProject_database_red_dot.ico -------------------------------------------------------------------------------- /src/Custom Icons/Visual NHibernate Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Visual NHibernate Splash.png -------------------------------------------------------------------------------- /src/Custom Icons/Workbench.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Workbench.ico -------------------------------------------------------------------------------- /src/Custom Icons/Workbench_NoBackground.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/Workbench_NoBackground.ico -------------------------------------------------------------------------------- /src/Custom Icons/aal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/aal.ico -------------------------------------------------------------------------------- /src/Custom Icons/aaproj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/aaproj.ico -------------------------------------------------------------------------------- /src/Custom Icons/db_register_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/db_register_32.png -------------------------------------------------------------------------------- /src/Custom Icons/delete_a_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/delete_a_16.png -------------------------------------------------------------------------------- /src/Custom Icons/doc_add_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/doc_add_32.png -------------------------------------------------------------------------------- /src/Custom Icons/doc_add_32_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/doc_add_32_h.png -------------------------------------------------------------------------------- /src/Custom Icons/edit_16_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/edit_16_h.png -------------------------------------------------------------------------------- /src/Custom Icons/field_insert_b_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/field_insert_b_16.png -------------------------------------------------------------------------------- /src/Custom Icons/folder_add_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/folder_add_32.png -------------------------------------------------------------------------------- /src/Custom Icons/folder_add_32_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/folder_add_32_h.png -------------------------------------------------------------------------------- /src/Custom Icons/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/help.ico -------------------------------------------------------------------------------- /src/Custom Icons/import_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/import_32.png -------------------------------------------------------------------------------- /src/Custom Icons/next_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/next_32.png -------------------------------------------------------------------------------- /src/Custom Icons/previous_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/previous_32.png -------------------------------------------------------------------------------- /src/Custom Icons/question_mark_32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/question_mark_32.ico -------------------------------------------------------------------------------- /src/Custom Icons/stz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/stz.ico -------------------------------------------------------------------------------- /src/Custom Icons/tick_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/tick_32.png -------------------------------------------------------------------------------- /src/Custom Icons/tick_32_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/tick_32_h.png -------------------------------------------------------------------------------- /src/Custom Icons/treenode_add_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/treenode_add_32.png -------------------------------------------------------------------------------- /src/Custom Icons/treenode_delete_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Custom Icons/treenode_delete_32.png -------------------------------------------------------------------------------- /src/Documentation/ArchAngel.Debugger.dxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/ArchAngel.Debugger.dxc -------------------------------------------------------------------------------- /src/Documentation/Build Process.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/Build Process.docx -------------------------------------------------------------------------------- /src/Documentation/CodeRootMap.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/CodeRootMap.vsd -------------------------------------------------------------------------------- /src/Documentation/Documentation.dxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/Documentation.dxp -------------------------------------------------------------------------------- /src/Documentation/DotNetZipLib-v1.7.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/DotNetZipLib-v1.7.chm -------------------------------------------------------------------------------- /src/Documentation/Generation Process.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/Generation Process.vsd -------------------------------------------------------------------------------- /src/Documentation/IntelliMerge.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/IntelliMerge.vsd -------------------------------------------------------------------------------- /src/Documentation/System Overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/System Overview.docx -------------------------------------------------------------------------------- /src/Documentation/System Overview.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/System Overview.vsd -------------------------------------------------------------------------------- /src/Documentation/Workbench.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/Workbench.vsd -------------------------------------------------------------------------------- /src/Documentation/XML Object Model Design.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Documentation/XML Object Model Design.vsd -------------------------------------------------------------------------------- /src/Help/API Ext Intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/API Ext Intellisense.png -------------------------------------------------------------------------------- /src/Help/API Ext New Property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/API Ext New Property.png -------------------------------------------------------------------------------- /src/Help/API Ext Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/API Ext Options.png -------------------------------------------------------------------------------- /src/Help/API Ext Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/API Ext Validation.png -------------------------------------------------------------------------------- /src/Help/API Ext view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/API Ext view.png -------------------------------------------------------------------------------- /src/Help/ArchAngel First Generation (Small).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/ArchAngel First Generation (Small).jpg -------------------------------------------------------------------------------- /src/Help/ArchAngel First Generation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/ArchAngel First Generation.jpg -------------------------------------------------------------------------------- /src/Help/ArchAngel Help.hmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/ArchAngel Help.hmx -------------------------------------------------------------------------------- /src/Help/ArchAngel Help.hmxz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/ArchAngel Help.hmxz -------------------------------------------------------------------------------- /src/Help/ArchAngel Subsequent Generation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/ArchAngel Subsequent Generation.jpg -------------------------------------------------------------------------------- /src/Help/Default Val Func buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Default Val Func buttons.png -------------------------------------------------------------------------------- /src/Help/Default Val Func edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Default Val Func edit.png -------------------------------------------------------------------------------- /src/Help/Designer_Navigation_Pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Designer_Navigation_Pane.png -------------------------------------------------------------------------------- /src/Help/Designer_New_Provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Designer_New_Provider.png -------------------------------------------------------------------------------- /src/Help/Designer_New_Provider_Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Designer_New_Provider_Menu.png -------------------------------------------------------------------------------- /src/Help/Designer_Screens_Template_Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Designer_Screens_Template_Details.png -------------------------------------------------------------------------------- /src/Help/Icon_File_Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Icon_File_Save.png -------------------------------------------------------------------------------- /src/Help/Output file layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Output file layout.png -------------------------------------------------------------------------------- /src/Help/Slyce_PDF_Standard_manual_A4.mnl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Slyce_PDF_Standard_manual_A4.mnl -------------------------------------------------------------------------------- /src/Help/User Options Intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/User Options Intellisense.png -------------------------------------------------------------------------------- /src/Help/User Options in Workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/User Options in Workbench.png -------------------------------------------------------------------------------- /src/Help/Validator function edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Validator function edit.png -------------------------------------------------------------------------------- /src/Help/Workbench Navigation Pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench Navigation Pane.png -------------------------------------------------------------------------------- /src/Help/Workbench Screen_Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench Screen_Options.png -------------------------------------------------------------------------------- /src/Help/Workbench Select_Database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench Select_Database.png -------------------------------------------------------------------------------- /src/Help/Workbench UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench UI.png -------------------------------------------------------------------------------- /src/Help/Workbench UI2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench UI2.png -------------------------------------------------------------------------------- /src/Help/Workbench Validation_Issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench Validation_Issues.png -------------------------------------------------------------------------------- /src/Help/Workbench_Add_Database_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Add_Database_Button.png -------------------------------------------------------------------------------- /src/Help/Workbench_Database_Buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Database_Buttons.png -------------------------------------------------------------------------------- /src/Help/Workbench_File_New_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_File_New_Icon.png -------------------------------------------------------------------------------- /src/Help/Workbench_New_Database_Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_New_Database_Dialog.png -------------------------------------------------------------------------------- /src/Help/Workbench_Resolve_Conflicts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Resolve_Conflicts.png -------------------------------------------------------------------------------- /src/Help/Workbench_Resolve_Conflicts_Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Resolve_Conflicts_Menu.png -------------------------------------------------------------------------------- /src/Help/Workbench_Screen_Analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Screen_Analysis.png -------------------------------------------------------------------------------- /src/Help/Workbench_Screen_Database_Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Screen_Database_Details.png -------------------------------------------------------------------------------- /src/Help/Workbench_Screen_Generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Screen_Generation.png -------------------------------------------------------------------------------- /src/Help/Workbench_Screen_Object_Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Screen_Object_Model.png -------------------------------------------------------------------------------- /src/Help/Workbench_Screen_Project_Setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_Screen_Project_Setup.png -------------------------------------------------------------------------------- /src/Help/Workbench_View_Changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_View_Changes.png -------------------------------------------------------------------------------- /src/Help/Workbench_View_Changes_Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/Workbench_View_Changes_Menu.png -------------------------------------------------------------------------------- /src/Help/helpman.adu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Help/helpman.adu -------------------------------------------------------------------------------- /src/Inflector.Net/Inflector.Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Inflector.Net/Inflector.Net.csproj -------------------------------------------------------------------------------- /src/Inflector.Net/Inflector.Net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Inflector.Net/Inflector.Net.sln -------------------------------------------------------------------------------- /src/Inflector.Net/Inflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Inflector.Net/Inflector.cs -------------------------------------------------------------------------------- /src/Installer/ArchAngel Build Script.fbz5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/ArchAngel Build Script.fbz5 -------------------------------------------------------------------------------- /src/Installer/ArchAngel.FileManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/ArchAngel.FileManifest.xml -------------------------------------------------------------------------------- /src/Installer/Green_Tick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/Green_Tick.jpg -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/blue.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/blue.avi -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/componentslist.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/destination.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/finish.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/finish.dfm -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/icon.ico -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/index.htm -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/license.rtf -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/maintenance.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/prereq.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/prereq.dfm -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/prereq.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/progress.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/progress.dfm -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/progressprereq.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/readme.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/readme.dfm -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/readme.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/readme.rtf -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/update_download.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/update_install.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/update_notify_download.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/update_notify_install.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/update_reboot.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/update_setup_finish.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/update_setup_welcome.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/welcome.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/welcome.dfm -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/welcome.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/wizard.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/InstallAware Project/wizard.dfm -------------------------------------------------------------------------------- /src/Installer/InstallAware Project/wizard.dfm.miaf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Installer/MD5_Values.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/MD5_Values.ini -------------------------------------------------------------------------------- /src/Installer/MD5_Values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/MD5_Values.xml -------------------------------------------------------------------------------- /src/Installer/NSIS/ArchAngel.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/ArchAngel.nsi -------------------------------------------------------------------------------- /src/Installer/NSIS/ArchAngel.nsi.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/ArchAngel.nsi.bak -------------------------------------------------------------------------------- /src/Installer/NSIS/DotNetSearch.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/DotNetSearch.nsh -------------------------------------------------------------------------------- /src/Installer/NSIS/FindProcDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/FindProcDLL.dll -------------------------------------------------------------------------------- /src/Installer/NSIS/images/Designer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/images/Designer.ico -------------------------------------------------------------------------------- /src/Installer/NSIS/images/Workbench.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/images/Workbench.ico -------------------------------------------------------------------------------- /src/Installer/NSIS/images/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/images/header.bmp -------------------------------------------------------------------------------- /src/Installer/NSIS/images/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/images/install.ico -------------------------------------------------------------------------------- /src/Installer/NSIS/images/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/images/uninstall.ico -------------------------------------------------------------------------------- /src/Installer/NSIS/images/website.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/images/website.ico -------------------------------------------------------------------------------- /src/Installer/NSIS/images/wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/images/wizard.bmp -------------------------------------------------------------------------------- /src/Installer/NSIS/images/wizard_uninstall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/images/wizard_uninstall.bmp -------------------------------------------------------------------------------- /src/Installer/NSIS/registerExtension.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/NSIS/registerExtension.nsh -------------------------------------------------------------------------------- /src/Installer/Reactor Files/Slyce Loader.nrproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/Reactor Files/Slyce Loader.nrproj -------------------------------------------------------------------------------- /src/Installer/Reactor Files/Slyce.Common.nrproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/Reactor Files/Slyce.Common.nrproj -------------------------------------------------------------------------------- /src/Installer/VersionInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/VersionInfo.xml -------------------------------------------------------------------------------- /src/Installer/Website Data Files/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/Website Data Files/news.xml -------------------------------------------------------------------------------- /src/Installer/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/default.html -------------------------------------------------------------------------------- /src/Installer/version_info.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Installer/version_info.ini -------------------------------------------------------------------------------- /src/Metrics/NDependProject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Metrics/NDependProject.xml -------------------------------------------------------------------------------- /src/PatchBuilder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/PatchBuilder.sln -------------------------------------------------------------------------------- /src/Provider.Test/2Tables1Relationship.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/2Tables1Relationship.sdf -------------------------------------------------------------------------------- /src/Provider.Test/3Tables1Relationship.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/3Tables1Relationship.sdf -------------------------------------------------------------------------------- /src/Provider.Test/DatabaseTimingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/DatabaseTimingTests.cs -------------------------------------------------------------------------------- /src/Provider.Test/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Provider.Test/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Form1.cs -------------------------------------------------------------------------------- /src/Provider.Test/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Form1.resx -------------------------------------------------------------------------------- /src/Provider.Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Program.cs -------------------------------------------------------------------------------- /src/Provider.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Provider.Test/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Provider.Test/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Provider.Test/Provider.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Provider.Test.csproj -------------------------------------------------------------------------------- /src/Provider.Test/SerialisationTimingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/SerialisationTimingTests.cs -------------------------------------------------------------------------------- /src/Provider.Test/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/Tester.cs -------------------------------------------------------------------------------- /src/Provider.Test/XmlTimingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/XmlTimingTests.cs -------------------------------------------------------------------------------- /src/Provider.Test/a.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/a.sdf -------------------------------------------------------------------------------- /src/Provider.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/app.config -------------------------------------------------------------------------------- /src/Provider.Test/b.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/b.sdf -------------------------------------------------------------------------------- /src/Provider.Test/database.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/database.xsd -------------------------------------------------------------------------------- /src/Provider.Test/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/log4net.config -------------------------------------------------------------------------------- /src/Provider.Test/testDatabase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Provider.Test/testDatabase.xml -------------------------------------------------------------------------------- /src/Sample Projects/Custom Provider/.vsdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Sample Projects/Custom Provider/.vsdoc -------------------------------------------------------------------------------- /src/Sample Projects/Custom Provider/Pupil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Sample Projects/Custom Provider/Pupil.cs -------------------------------------------------------------------------------- /src/Sample Projects/Custom Provider/School.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Sample Projects/Custom Provider/School.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/Controller/IController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/Controller/IController.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/Controls.xaml -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/acyclic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/acyclic.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/bcomps.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/bcomps.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/ccomps.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/ccomps.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/circo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/circo.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/comdlg32.ocx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/comdlg32.ocx -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/config5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/config5 -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/diffimg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/diffimg.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/dijkstra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/dijkstra.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/dot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/dot.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/dotty.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/dotty.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/fc-cache.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/fc-cache.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/fc-cat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/fc-cat.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/fc-list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/fc-list.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/fc-match.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/fc-match.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/fdp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/fdp.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/gc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/gc.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/iconv.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/intl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/intl.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/jpeg62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/jpeg62.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/lefty.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/lefty.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/libcdt-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/libcdt-4.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/libexpat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/libexpat.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/libgvc-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/libgvc-4.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/libpng12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/libpng12.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/libxml2.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/lneato.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/lneato.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/mm2gv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/mm2gv.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/neato.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/neato.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/nop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/nop.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/props.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/props.txt -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/prune.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/prune.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/sccmap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/sccmap.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/settings.ini -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/tred.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/tred.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/twopi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/twopi.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/unflatten.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/unflatten.exe -------------------------------------------------------------------------------- /src/SchemaDiagrammer/GraphViz/bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/GraphViz/bin/zlib1.dll -------------------------------------------------------------------------------- /src/SchemaDiagrammer/Layout/DiagramLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/Layout/DiagramLayout.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/MainWindow.xaml -------------------------------------------------------------------------------- /src/SchemaDiagrammer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/Model/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/Model/Schema.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/Properties/Resources.resx -------------------------------------------------------------------------------- /src/SchemaDiagrammer/SchemaDiagrammer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/SchemaDiagrammer.csproj -------------------------------------------------------------------------------- /src/SchemaDiagrammer/View/DiagramSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/View/DiagramSurface.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/View/IDiagramEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/View/IDiagramEntity.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/View/Shapes/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/View/Shapes/Connection.cs -------------------------------------------------------------------------------- /src/SchemaDiagrammer/WPFDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/SchemaDiagrammer/WPFDesigner.cs -------------------------------------------------------------------------------- /src/Slyce.Common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common.sln -------------------------------------------------------------------------------- /src/Slyce.Common/AASettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/AASettingsProvider.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Attributes.cs -------------------------------------------------------------------------------- /src/Slyce.Common/CLRTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/CLRTypes.cs -------------------------------------------------------------------------------- /src/Slyce.Common/CSProjFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/CSProjFile.cs -------------------------------------------------------------------------------- /src/Slyce.Common/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Slyce.Common/CollectionChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/CollectionChangedEvent.cs -------------------------------------------------------------------------------- /src/Slyce.Common/ColorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/ColorUtility.cs -------------------------------------------------------------------------------- /src/Slyce.Common/ComboBoxItemEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/ComboBoxItemEx.cs -------------------------------------------------------------------------------- /src/Slyce.Common/ConfigurationUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/ConfigurationUtility.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/DistinctStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/DistinctStatus.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/DistinctStatus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/DistinctStatus.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/FloatingToolstrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/FloatingToolstrip.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/Grouper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/Grouper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/Line.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/MessagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/MessagePanel.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/MessagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/MessagePanel.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/NumEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/NumEdit.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/SlyceMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/SlyceMessageBox.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/SlyceMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/SlyceMessageBox.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/SpinningProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/SpinningProgress.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/SpinningProgress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/SpinningProgress.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/SystemTrayPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/SystemTrayPopup.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/SystemTrayPopup.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/SystemTrayPopup.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/TableLayoutPanelEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/TableLayoutPanelEx.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/TransparentPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/TransparentPanel.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/TransparentPanelEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/TransparentPanelEx.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/VersionInfo.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/VersionInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/VersionInfo.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/WaitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/WaitDialog.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/WaitDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/WaitDialog.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/ucHeading.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/ucHeading.Designer.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/ucHeading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/ucHeading.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/ucHeading.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/ucHeading.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Controls/ucHoverList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Controls/ucHoverList.cs -------------------------------------------------------------------------------- /src/Slyce.Common/CrossThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/CrossThreadHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/DoubleLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/DoubleLookup.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Enumeration.cs -------------------------------------------------------------------------------- /src/Slyce.Common/ErrorReporting/frmTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/ErrorReporting/frmTransfer.cs -------------------------------------------------------------------------------- /src/Slyce.Common/EventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/EventExtensions.cs -------------------------------------------------------------------------------- /src/Slyce.Common/EventList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/EventList.cs -------------------------------------------------------------------------------- /src/Slyce.Common/FastSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/FastSerializer.cs -------------------------------------------------------------------------------- /src/Slyce.Common/FormHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/FormHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/FtpUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/FtpUtility.cs -------------------------------------------------------------------------------- /src/Slyce.Common/GenericEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/GenericEventArgs.cs -------------------------------------------------------------------------------- /src/Slyce.Common/IFileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/IFileController.cs -------------------------------------------------------------------------------- /src/Slyce.Common/IOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/IOHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/KeyboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/KeyboardHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/LookupList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/LookupList.cs -------------------------------------------------------------------------------- /src/Slyce.Common/NameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/NameHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/NodeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/NodeProcessor.cs -------------------------------------------------------------------------------- /src/Slyce.Common/ObservableTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/ObservableTraceListener.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Pair.cs -------------------------------------------------------------------------------- /src/Slyce.Common/ParallelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/ParallelHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/PathHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Slyce.Common/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/ReflectionHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/RegistryMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/RegistryMonitor.cs -------------------------------------------------------------------------------- /src/Slyce.Common/RelativePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/RelativePaths.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Scripter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Scripter.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Slyce.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Slyce.Common.csproj -------------------------------------------------------------------------------- /src/Slyce.Common/SmartAssembly.Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/SmartAssembly.Attributes.cs -------------------------------------------------------------------------------- /src/Slyce.Common/StringExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/StringExtensionMethods.cs -------------------------------------------------------------------------------- /src/Slyce.Common/SyntaxEditorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/SyntaxEditorHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/TextBoxFocusHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/TextBoxFocusHelper.cs -------------------------------------------------------------------------------- /src/Slyce.Common/TreelistUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/TreelistUtility.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Updates/frmUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Updates/frmUpdate.Designer.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Updates/frmUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Updates/frmUpdate.cs -------------------------------------------------------------------------------- /src/Slyce.Common/Updates/frmUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Updates/frmUpdate.resx -------------------------------------------------------------------------------- /src/Slyce.Common/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/Utility.cs -------------------------------------------------------------------------------- /src/Slyce.Common/VersionNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/VersionNumber.cs -------------------------------------------------------------------------------- /src/Slyce.Common/VersionNumberComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/VersionNumberComparer.cs -------------------------------------------------------------------------------- /src/Slyce.Common/XmlSqueezer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/XmlSqueezer.cs -------------------------------------------------------------------------------- /src/Slyce.Common/XmlUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Common/XmlUtility.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge.UnitTesting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge.UnitTesting.sln -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge.UnitTesting/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge.UnitTesting/Helper.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge.UnitTesting/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge.UnitTesting/Notes.txt -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge.sln -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Diff/Diff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Diff/Diff.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Diff/Merge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Diff/Merge.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Diff/Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Diff/Patch.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Diff/StructuredDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Diff/StructuredDiff.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Diff/TextDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Diff/TextDiff.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Diff/UnifiedDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Diff/UnifiedDiff.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/DiffMatchPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/DiffMatchPatch.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Properties/licenses.licx -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Resources/Critical.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Resources/Critical.bmp -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Resources/TextboxHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Resources/TextboxHS.png -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Resources/blue_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Resources/blue_arrow.png -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Resources/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Resources/error.png -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Resources/error_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Resources/error_16.png -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Resources/error_161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Resources/error_161.png -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/SlyceMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/SlyceMerge.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/StringUtility.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/UI/CodeTestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/UI/CodeTestForm.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/UI/CodeTestForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/UI/CodeTestForm.resx -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/UI/FormSelectMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/UI/FormSelectMatch.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/UI/FormSelectMatch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/UI/FormSelectMatch.resx -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/UI/IMergeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/UI/IMergeEditor.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/UI/TestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/UI/TestForm.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/UI/TestForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/UI/TestForm.resx -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/UI/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/UI/Utility.cs -------------------------------------------------------------------------------- /src/Slyce.IntelliMerge/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.IntelliMerge/Utility.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing.sln -------------------------------------------------------------------------------- /src/Slyce.Licensing/Controls/GlassButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/Controls/GlassButton.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing/LicenseStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/LicenseStatus.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing/LicenseStatus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/LicenseStatus.resx -------------------------------------------------------------------------------- /src/Slyce.Licensing/Licenser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/Licenser.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/Program.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing/Resources/HID.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/Resources/HID.exe -------------------------------------------------------------------------------- /src/Slyce.Licensing/Slyce.Licensing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/Slyce.Licensing.csproj -------------------------------------------------------------------------------- /src/Slyce.Licensing/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/frmMain.Designer.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/frmMain.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/frmMain.resx -------------------------------------------------------------------------------- /src/Slyce.Licensing/frmUnlock.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/frmUnlock.Designer.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing/frmUnlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/frmUnlock.cs -------------------------------------------------------------------------------- /src/Slyce.Licensing/frmUnlock.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Licensing/frmUnlock.resx -------------------------------------------------------------------------------- /src/Slyce.PatchBuilder/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.PatchBuilder/Form1.Designer.cs -------------------------------------------------------------------------------- /src/Slyce.PatchBuilder/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.PatchBuilder/Form1.cs -------------------------------------------------------------------------------- /src/Slyce.PatchBuilder/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.PatchBuilder/Form1.resx -------------------------------------------------------------------------------- /src/Slyce.PatchBuilder/InstallScript.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.PatchBuilder/InstallScript.nsi -------------------------------------------------------------------------------- /src/Slyce.PatchBuilder/PatchBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.PatchBuilder/PatchBuilder.csproj -------------------------------------------------------------------------------- /src/Slyce.PatchBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.PatchBuilder/Program.cs -------------------------------------------------------------------------------- /src/Slyce.Updater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/Slyce.Updater.sln -------------------------------------------------------------------------------- /src/UnitTesting Examples/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhibernate/Visual-NHibernate/HEAD/src/UnitTesting Examples/Notes.txt --------------------------------------------------------------------------------