├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── CodeQuality.yml ├── .gitignore ├── BasicRdl.Tests ├── BasicRdl.Tests.csproj ├── BasicRdlRibbonViewModelTestFixture.cs ├── Converters │ └── ReactiveListClassKindConverterTestFixture.cs ├── OfficeRibbon │ └── BasicRdlRibbonPartTestFixture.cs ├── Properties │ └── AssemblyInfo.cs └── ViewModels │ ├── CategoryBrowserViewModelTestFixture.cs │ ├── ConstantsBrowserViewModelTestFixture.cs │ ├── Dialogs │ ├── ArrayParameterTypeDialogViewModelTestFixture.cs │ ├── BinaryRelationshipRuleDialogViewModelTestFixture.cs │ ├── BooleanParameterTypeDialogViewModelTestFixture.cs │ ├── CategoryDialogViewModelTestFixture.cs │ ├── CompoundParameterTypeDialogViewModelTestFixture.cs │ ├── ConstantDialogViewModelTestFixture.cs │ ├── CyclicRatioScaleDialogViewModelTestFixture.cs │ ├── DateParameterTypeDialogViewModelTestFixture.cs │ ├── DateTimeParameterTypeDialogViewModelTestFixture.cs │ ├── DecompositionRuleDialogViewModelTestFixture.cs │ ├── DerivedQuantityKindDialogViewModelTestFixture.cs │ ├── DerivedUnitDialogViewModelTestFixture.cs │ ├── EnumerationParameterTypeDialogViewModelTestFixture.cs │ ├── EnumerationValueDefinitionDialogViewModelTestFixture.cs │ ├── FileTypeDialogViewModelTestFixture.cs │ ├── GlossaryDialogViewModelTestFixture.cs │ ├── IntervalScaleDialogViewModelTestFixture.cs │ ├── LinearConversionUnitDialogViewModelTestFixture.cs │ ├── LogarithmicScaleDialogViewModelTestFixture.cs │ ├── MappingToReferenceScaleDialogViewModelTestFixture.cs │ ├── MultiRelationshipRuleDialogViewModelTestFixture.cs │ ├── OrdinalScaleDialogViewModelTestFixture.cs │ ├── ParameterizedCategoryRuleDialogViewModelTestFixture.cs │ ├── PrefixedUnitDialogViewModelTestFixture.cs │ ├── QuantityKindFactorDialogViewModelTestFixture.cs │ ├── RatioScaleDialogViewModelTestFixture.cs │ ├── ReferencerRuleDialogViewModelTestFixture.cs │ ├── Rows │ │ └── ParameterTypeComponentRowViewModelTestFixture.cs │ ├── ScaleReferenceQuantityValueDialogViewModelTestFixture.cs │ ├── ScaleValueDefinitionDialogViewModelTestFixture.cs │ ├── SimpleQuantityKindDialogViewModelTestFixture.cs │ ├── SimpleUnitDialogViewModelTestFixture.cs │ ├── SiteRdlClosingDialogViewModelTestFixture.cs │ ├── SiteRdlOpeningDialogViewModelTestFixture.cs │ ├── SpecializedQuantityKindDialogViewModelTestFixture.cs │ ├── TermDialogViewModelTestFixture.cs │ ├── TextParameterTypeDialogViewModelTestFixture.cs │ ├── TimeOfDayParameterTypeDialogViewModelTestFixture.cs │ ├── UnitFactorDialogViewModleTestFixture.cs │ └── UnitPrefixDialogViewModelTestFixture.cs │ ├── ExtendedRdlRibbonViewModelTestFixture.cs │ ├── FileTypeBrowserViewModelTestFixture.cs │ ├── GlossaryBrowserViewModelTestFixture.cs │ ├── MeasurementScalesBrowserViewModelTestFixture.cs │ ├── MeasurementUnitsBrowserViewModelTestFixture.cs │ ├── ParameterTypesBrowserViewModelTestFixture.cs │ ├── ReferenceSourceBrowserViewModelTestFixture.cs │ ├── ReferenceSourceRibbonViewModelTestFixture.cs │ ├── Ribbons │ ├── CategoryRibbonViewModelTestFixture.cs │ ├── ConstantBrowserRibbonViewModelTestFixture.cs │ ├── FileTypeBrowserRibbonViewModelTestFixture.cs │ ├── GlossaryBrowserRibbonViewModelTestFixture.cs │ ├── MeasurementScalesRibbonViewModelTestFixture.cs │ ├── MeasurementUnitsRibbonViewModelTestFixture.cs │ ├── ParameterTypeRibbonViewModelTestFixture.cs │ ├── ReferenceSourceRibbonViewModelTestFixture.cs │ ├── RulesRibbonViewModelTestFixture.cs │ └── UnitPrefixRibbonViewModelTestFixture.cs │ ├── Rows │ ├── CategoryRowViewModelTestFixture.cs │ ├── ConstantRowViewModelTestFixture.cs │ ├── FileTypeRowViewModelTestFixture.cs │ ├── GlossaryRowViewModelTestFixture.cs │ ├── MeasurementScaleRowViewModelTestFixture.cs │ ├── MeasurementUnitRowViewModelTestFixture.cs │ ├── ParameterTypeRowViewModelTestFixture.cs │ ├── ReferenceSourceRowViewModelTestFixture.cs │ ├── RuleRowViewModelTestFixture.cs │ ├── TermRowViewModelTestFixture.cs │ └── UnitPrefixRowViewModelTestFixture.cs │ ├── RulesBrowserViewModelTestFixture.cs │ ├── SiteRdlSelectionRibbonViewModelTestFixture.cs │ ├── SiteRdlSessionRowViewModelTestFixture.cs │ ├── UnitPrefixBrowserViewModelTestFixture.cs │ └── UnitPrefixRibbonViewModelTestFixture.cs ├── BasicRdl ├── BasicRdl.csproj ├── BasicRdlModule.cs ├── OfficeRibbon │ └── BasicRdlRibbonPart.cs ├── Properties │ └── AssemblyInfo.cs ├── ReportGenerators │ └── HtmlGlossaryReportGenerator.cs ├── Resources │ ├── DotLiquidTemplate │ │ └── GlossaryReportTemplate.liquid │ └── RibbonXml │ │ └── rdlribbon.xml ├── Settings.StyleCop ├── ViewModels │ ├── CategoryBrowserViewModel.cs │ ├── CategoryRowViewModel.cs │ ├── ClosingSiteRdlSessionRowViewModel.cs │ ├── ConstantRowViewModel.cs │ ├── ConstantsBrowserViewModel.cs │ ├── Dialogs │ │ ├── ArrayParameterTypeDialogViewModel.cs │ │ ├── BinaryRelationshipRuleDialogViewModel.cs │ │ ├── BooleanParameterTypeDialogViewModel.cs │ │ ├── CategoryDialogViewModel.cs │ │ ├── CompoundParameterTypeDialogViewModel.cs │ │ ├── ConstantDialogViewModel.cs │ │ ├── CyclicRatioScaleDialogViewModel.cs │ │ ├── DateParameterTypeDialogViewModel.cs │ │ ├── DateTimeParameterTypeDialogViewModel.cs │ │ ├── DecompositionRuleDialogViewModel.cs │ │ ├── DerivedQuantityKindDialogViewModel.cs │ │ ├── DerivedUnitDialogViewModel.cs │ │ ├── EnumerationParameterTypeDialogViewModel.cs │ │ ├── EnumerationValueDefinitionDialogViewModel.cs │ │ ├── FileTypeDialogViewModel.cs │ │ ├── GlossaryDialogViewModel.cs │ │ ├── IntervalScaleDialogViewModel.cs │ │ ├── LinearConversionUnitDialogViewModel.cs │ │ ├── LogarithmicScaleDialogViewModel.cs │ │ ├── MappingToReferenceScaleDialogViewModel.cs │ │ ├── MultiRelationshipRuleDialogViewModel.cs │ │ ├── OrdinalScaleDialogViewModel.cs │ │ ├── ParameterizedCategoryRuleDialogViewModel.cs │ │ ├── PrefixedUnitDialogViewModel.cs │ │ ├── QuantityKindFactorDialogViewModel.cs │ │ ├── RatioScaleDialogViewModel.cs │ │ ├── ReferencerRuleDialogViewModel.cs │ │ ├── Rows │ │ │ ├── DependentParameterTypeAssignmentRowViewModel.cs │ │ │ ├── IndependentParameterTypeAssignmentRowViewModel.cs │ │ │ ├── ParameterTypeAssignmentRowViewModel.cs │ │ │ ├── ParameterTypeComponentRowViewModel.cs │ │ │ └── ScaleReferenceQuantityValueRowViewModel.cs │ │ ├── SampledFunctionParameterTypeDialogViewModel.cs │ │ ├── ScaleReferenceQuantityValueDialogViewModel.cs │ │ ├── ScaleValueDefinitionDialogViewModel.cs │ │ ├── SimpleQuantityKindDialogViewModel.cs │ │ ├── SimpleUnitDialogViewModel.cs │ │ ├── SpecializedQuantityKindDialogViewModel.cs │ │ ├── TermDialogViewModel.cs │ │ ├── TextParameterTypeDialogViewModel.cs │ │ ├── TimeOfDayParameterTypeDialogViewModel.cs │ │ ├── UnitFactorDialogViewModel.cs │ │ └── UnitPrefixDialogViewModel.cs │ ├── FileTypeBrowserViewModel.cs │ ├── FileTypeRowViewModel.cs │ ├── GlossaryBrowserViewModel.cs │ ├── GlossaryRowViewModel.cs │ ├── MeasurementScaleRowViewModel.cs │ ├── MeasurementScalesBrowserViewModel.cs │ ├── MeasurementUnitRowViewModel.cs │ ├── MeasurementUnitsBrowserViewModel.cs │ ├── ParameterTypeRowViewModel.cs │ ├── ParameterTypesBrowserViewModel.cs │ ├── ReferenceSourceBrowserViewModel.cs │ ├── ReferenceSourceRowViewModel.cs │ ├── ReportGeneratorDialogs │ │ └── HtmlExportGlossarySelectionDialogViewModel.cs │ ├── Ribbons │ │ ├── CategoryRibbonViewModel.cs │ │ ├── ConstantBrowserRibbonViewModel.cs │ │ ├── FileTypeBrowserRibbonViewModel.cs │ │ ├── GlossaryBrowserRibbonViewModel.cs │ │ ├── MeasurementScalesRibbonViewModel.cs │ │ ├── MeasurementUnitsRibbonViewModel.cs │ │ ├── ParameterTypeRibbonViewModel.cs │ │ ├── ReferenceSourceRibbonViewModel.cs │ │ ├── RulesRibbonViewModel.cs │ │ ├── SiteRdlSelectionRibbonViewModel.cs │ │ └── UnitPrefixRibbonViewModel.cs │ ├── RuleRowViewModel.cs │ ├── RulesBrowserViewModel.cs │ ├── SiteRdlClosingDialogViewModel.cs │ ├── SiteRdlOpeningDialogViewModel.cs │ ├── SiteRdlRowViewModel.cs │ ├── SiteRdlSelectionDialogResult.cs │ ├── SiteRdlSessionRowViewModel.cs │ ├── TermRowViewModel.cs │ ├── UnitPrefixBrowserViewModel.cs │ └── UnitPrefixRowViewModel.cs └── Views │ ├── CategoryBrowser.xaml │ ├── CategoryBrowser.xaml.cs │ ├── ConstantsBrowser.xaml │ ├── ConstantsBrowser.xaml.cs │ ├── Dialogs │ ├── ArrayParameterTypeDialog.xaml │ ├── ArrayParameterTypeDialog.xaml.cs │ ├── BinaryRelationshipRuleDialog.xaml │ ├── BinaryRelationshipRuleDialog.xaml.cs │ ├── BooleanParameterTypeDialog.xaml │ ├── BooleanParameterTypeDialog.xaml.cs │ ├── CategoryDialog.xaml │ ├── CategoryDialog.xaml.cs │ ├── CompoundParameterTypeDialog.xaml │ ├── CompoundParameterTypeDialog.xaml.cs │ ├── ConstantDialog.xaml │ ├── ConstantDialog.xaml.cs │ ├── CyclicRatioScaleDialog.xaml │ ├── CyclicRatioScaleDialog.xaml.cs │ ├── DateParameterTypeDialog.xaml │ ├── DateParameterTypeDialog.xaml.cs │ ├── DateTimeParameterTypeDialog.xaml │ ├── DateTimeParameterTypeDialog.xaml.cs │ ├── DecompositionRuleDialog.xaml │ ├── DecompositionRuleDialog.xaml.cs │ ├── DerivedQuantityKindDialog.xaml │ ├── DerivedQuantityKindDialog.xaml.cs │ ├── DerivedUnitDialog.xaml │ ├── DerivedUnitDialog.xaml.cs │ ├── EnumerationParameterTypeDialog.xaml │ ├── EnumerationParameterTypeDialog.xaml.cs │ ├── EnumerationValueDefinitionDialog.xaml │ ├── EnumerationValueDefinitionDialog.xaml.cs │ ├── FileTypeDialog.xaml │ ├── FileTypeDialog.xaml.cs │ ├── GlossaryDialog.xaml │ ├── GlossaryDialog.xaml.cs │ ├── IntervalScaleDialog.xaml │ ├── IntervalScaleDialog.xaml.cs │ ├── LinearConversionUnitDialog.xaml │ ├── LinearConversionUnitDialog.xaml.cs │ ├── LogarithmicScaleDialog.xaml │ ├── LogarithmicScaleDialog.xaml.cs │ ├── MappingToReferenceScaleDialog.xaml │ ├── MappingToReferenceScaleDialog.xaml.cs │ ├── MultiRelationshipRuleDialog.xaml │ ├── MultiRelationshipRuleDialog.xaml.cs │ ├── OrdinalScaleDialog.xaml │ ├── OrdinalScaleDialog.xaml.cs │ ├── ParameterizedCategoryRuleDialog.xaml │ ├── ParameterizedCategoryRuleDialog.xaml.cs │ ├── PrefixedUnitDialog.xaml │ ├── PrefixedUnitDialog.xaml.cs │ ├── QuantityKindFactorDialog.xaml │ ├── QuantityKindFactorDialog.xaml.cs │ ├── RatioScaleDialog.xaml │ ├── RatioScaleDialog.xaml.cs │ ├── ReferencerRuleDialog.xaml │ ├── ReferencerRuleDialog.xaml.cs │ ├── SampledFunctionParameterTypeDialog.xaml │ ├── SampledFunctionParameterTypeDialog.xaml.cs │ ├── ScaleReferenceQuantityValueDialog.xaml │ ├── ScaleReferenceQuantityValueDialog.xaml.cs │ ├── ScaleValueDefinitionDialog.xaml │ ├── ScaleValueDefinitionDialog.xaml.cs │ ├── SimpleQuantityKindDialog.xaml │ ├── SimpleQuantityKindDialog.xaml.cs │ ├── SimpleUnitDialog.xaml │ ├── SimpleUnitDialog.xaml.cs │ ├── SpecializedQuantityKindDialog.xaml │ ├── SpecializedQuantityKindDialog.xaml.cs │ ├── TermDialog.xaml │ ├── TermDialog.xaml.cs │ ├── TextParameterTypeDialog.xaml │ ├── TextParameterTypeDialog.xaml.cs │ ├── TimeOfDayParameterTypeDialog.xaml │ ├── TimeOfDayParameterTypeDialog.xaml.cs │ ├── UnitFactorDialog.xaml │ ├── UnitFactorDialog.xaml.cs │ ├── UnitPrefixDialog.xaml │ └── UnitPrefixDialog.xaml.cs │ ├── FileTypeBrowser.xaml │ ├── FileTypeBrowser.xaml.cs │ ├── GlossaryBrowser.xaml │ ├── GlossaryBrowser.xaml.cs │ ├── MeasurementScalesBrowser.xaml │ ├── MeasurementScalesBrowser.xaml.cs │ ├── MeasurementUnitsBrowser.xaml │ ├── MeasurementUnitsBrowser.xaml.cs │ ├── ParameterTypesBrowser.xaml │ ├── ParameterTypesBrowser.xaml.cs │ ├── ReferenceSourceBrowser.xaml │ ├── ReferenceSourceBrowser.xaml.cs │ ├── ReportGeneratorDialogs │ ├── HtmlExportGlossarySelectionDialog.xaml │ └── HtmlExportGlossarySelectionDialog.xaml.cs │ ├── Ribbons │ ├── BasicRdlRibbon.xaml │ ├── BasicRdlRibbon.xaml.cs │ ├── CategoryRibbon.xaml │ ├── CategoryRibbon.xaml.cs │ ├── ConstantBrowserRibbon.xaml │ ├── ConstantBrowserRibbon.xaml.cs │ ├── FileTypeBrowserRibbon.xaml │ ├── FileTypeBrowserRibbon.xaml.cs │ ├── GlossaryBrowserRibbon.xaml │ ├── GlossaryBrowserRibbon.xaml.cs │ ├── MeasurementScalesRibbon.xaml │ ├── MeasurementScalesRibbon.xaml.cs │ ├── MeasurementUnitsRibbon.xaml │ ├── MeasurementUnitsRibbon.xaml.cs │ ├── ParameterTypeRibbon.xaml │ ├── ParameterTypeRibbon.xaml.cs │ ├── ReferenceSourceRibbon.xaml │ ├── ReferenceSourceRibbon.xaml.cs │ ├── RulesRibbon.xaml │ ├── RulesRibbon.xaml.cs │ ├── SiteRdlSelectionRibbon.xaml │ ├── SiteRdlSelectionRibbon.xaml.cs │ ├── UnitPrefixRibbon.xaml │ └── UnitPrefixRibbon.xaml.cs │ ├── RulesBrowser.xaml │ ├── RulesBrowser.xaml.cs │ ├── SiteRdlClosingDialog.xaml │ ├── SiteRdlClosingDialog.xaml.cs │ ├── SiteRdlOpeningDialog.xaml │ ├── SiteRdlOpeningDialog.xaml.cs │ ├── UnitPrefixBrowser.xaml │ └── UnitPrefixBrowser.xaml.cs ├── CDP4-CE.sln ├── CDP4-CE.sln.DotSettings ├── CDP4Addin.Tests ├── AddinTestFixture.cs ├── CDP4Addin.Tests.csproj ├── OfficeRibbon │ └── AddinRibbonPartTestFixture.cs ├── Properties │ └── AssemblyInfo.cs └── Utils │ └── StringExtensionTestFixture.cs ├── CDP4Addin ├── Addin.cs ├── CDP4Addin.csproj ├── CDP4AddinBootstrapper.cs ├── NLog.dll.nlog ├── OfficeRibbon │ ├── AddinRibbonPart.cs │ └── FluentRibbonManager.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── RibbonXml │ │ └── addinribbon.xml ├── Settings.StyleCop ├── Settings │ ├── AddinAppSettings.cs │ └── AddinAppSettingsService.cs ├── TaskPaneWpfHostControl.Designer.cs ├── TaskPaneWpfHostControl.cs ├── TaskPaneWpfHostControl.resx └── Utils │ ├── IdentifiableCustomTaskPane.cs │ └── StringExtension.cs ├── CDP4Budget.Tests ├── BudgetTestFixtureBase.cs ├── CDP4Budget.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── Services │ └── MassBudgetGeneratorTestFixture.cs └── ViewModel │ ├── BudgetRibbonViewModelTestFixture.cs │ └── OptionBudgetViewModelTestFixture.cs ├── CDP4BudgetViewer ├── CDP4Budget.csproj ├── CDP4BudgetModule.cs ├── Config │ ├── BudgetConfig.cs │ ├── BudgetKind.cs │ ├── BudgetParameterConfigBase.cs │ ├── BudgetParameterMarginPair.cs │ ├── ExtraMassContributionConfiguration.cs │ ├── GenericBudgetParameterConfig.cs │ ├── MassBudgetParameterConfig.cs │ ├── PowerBudgetParameterConfig.cs │ └── SubSystemDefinition.cs ├── ConfigFile │ ├── BudgetConfigDto.cs │ ├── BudgetConfigJsonConverter.cs │ ├── ExtraContributionDto.cs │ ├── GenericParameterConfigDto.cs │ ├── MassParameterConfigDto.cs │ ├── ParameterConfigDto.cs │ └── SubSystemDefinitionDto.cs ├── Converters │ ├── ListCountToTabVisibilityConverter.cs │ └── ReactiveListElementDefinitionConverter.cs ├── Exceptions │ └── BudgetComputationException.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ ├── BudgetGenerator.cs │ ├── ExtraContribution.cs │ ├── GenericBudgetGenerator.cs │ ├── ISubSystemBudgetResult.cs │ ├── ISubSystemGenericBudgetResult.cs │ ├── MassBudgetGenerator.cs │ ├── SubSystem.cs │ ├── SubSystemBudgetResult.cs │ ├── SubSystemGenericBudgetResult.cs │ ├── SubSystemGenericOfTBudgetResult.cs │ └── SubSystemMassBudgetResult.cs ├── Utils.cs ├── ViewModels │ ├── BudgetRibbonViewModel.cs │ ├── Config │ │ ├── BudgetConfigDialogResult.cs │ │ ├── BudgetConfigViewModel.cs │ │ ├── BudgetParameterConfigViewModelBase.cs │ │ ├── CategorySelectionViewModel.cs │ │ ├── ExtraMassContributionConfigurationViewModel.cs │ │ ├── GenericBudgetParameterConfigViewModel.cs │ │ ├── MassBudgetParameterConfigViewModel.cs │ │ ├── ParameterConfigViewModel.cs │ │ ├── PowerBudgetParameterConfigViewModel.cs │ │ └── SubSystemConfigViewModel.cs │ ├── SystemLevelKind.cs │ └── Viewer │ │ ├── BudgetRowViewModelBase.cs │ │ ├── BudgetSummaryViewModel.cs │ │ ├── BudgetViewerViewModel.cs │ │ ├── ColumnDefinition.cs │ │ ├── Generic │ │ ├── GenericBudgetRowViewModel.cs │ │ └── GenericBudgetSummaryViewModel.cs │ │ ├── GenericBudgetRowViewModel.cs │ │ ├── IBudgetRowViewModelBase.cs │ │ ├── Mass │ │ ├── ExtraMassContributionRowViewModel.cs │ │ ├── MassBudgetRowViewModel.cs │ │ └── MassBudgetSummaryViewModel.cs │ │ ├── OptionBudgetViewModel.cs │ │ └── OptionOverviewViewModel.cs └── Views │ ├── BudgetConfig.xaml │ ├── BudgetConfig.xaml.cs │ ├── BudgetParameterConfigDataTemplateSelector.cs │ ├── BudgetRibbon.xaml │ ├── BudgetRibbon.xaml.cs │ ├── BudgetViewer.xaml │ ├── BudgetViewer.xaml.cs │ └── BudgetViewerDataTemplateSelector.cs ├── CDP4BuiltInRules.Tests ├── CDP4BuiltInRules.Tests.csproj ├── CDP4BuiltInRulesModuleTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── Rules │ └── ElementDefinitionShortNameRuleTestFixture.cs └── ViewModels │ ├── BuiltInRuleDialogViewModelTestFixture.cs │ ├── BuiltInRuleRowViewModelTestFixture.cs │ ├── BuiltInRulesBrowserViewModelTestFixture.cs │ ├── BuiltInRulesRibbonPageViewModelTestFixture.cs │ ├── ErrorBrowserRibbonPageViewModelTestFixture.cs │ ├── ErrorBrowserRibbonViewModelTestFixture.cs │ └── ErrorBrowserViewModelTestFixture.cs ├── CDP4BuiltInRules ├── CDP4BuiltInRules.csproj ├── CDP4BuiltInRulesModule.cs ├── Properties │ └── AssemblyInfo.cs ├── Rules │ └── ElementDefinitionShortNameRule.cs ├── ViewModels │ ├── BuiltInRuleDialogViewModel.cs │ ├── BuiltInRuleRowViewModel.cs │ ├── BuiltInRulesBrowserViewModel.cs │ ├── BuiltInRulesRibbonPageViewModel.cs │ ├── ErrorBrowserRibbonViewModel.cs │ ├── ErrorBrowserViewModel.cs │ └── ErrorRowViewModel.cs └── Views │ ├── BuiltInRuleDialog.xaml │ ├── BuiltInRuleDialog.xaml.cs │ ├── BuiltInRulesBrowser.xaml │ ├── BuiltInRulesBrowser.xaml.cs │ ├── BuiltInRulesRibbonPage.xaml │ ├── BuiltInRulesRibbonPage.xaml.cs │ ├── ErrorBrowser.xaml │ ├── ErrorBrowser.xaml.cs │ ├── ErrorBrowserRibbon.xaml │ └── ErrorBrowserRibbon.xaml.cs ├── CDP4Composition.Tests ├── Attributes │ ├── CDP4CompositionAttributesTestFixture.cs │ ├── ThingDialogViewExportAttributeTestFixture.cs │ ├── ThingDialogViewModelExportAttributeTestFixture.cs │ └── ValidationOverrideAttributeTestFixture.cs ├── Builder │ └── CategoryStringBuilderTestFixture.cs ├── CDP4Composition - Backup.Tests.csproj ├── CDP4Composition.Tests.csproj ├── CommonView │ ├── Converters │ │ └── ParameterTypeToDescriptionConverterTestFixture.cs │ ├── Rows │ │ ├── BinaryRelationshipRowViewModelTestFixture.cs │ │ ├── ElementBaseRowViewModelTestFixture.cs │ │ ├── EmailAddressRowViewModelTestFixture.cs │ │ ├── FileRevisionRowViewModelTestFixture.cs │ │ ├── FileRowViewModelTestFixture.cs │ │ ├── FolderRowViewModelTestFixture.cs │ │ ├── IterationRowViewModelTestFixture.cs │ │ ├── IterationSetupRowViewModelTestFixture.cs │ │ ├── PrimitiveRowTestFixture.cs │ │ └── TermRowViewModelTestFixture.cs │ ├── UserControls │ │ └── Helpers │ │ │ └── StringRangeTestFixture.cs │ ├── ViewModels │ │ ├── AliasDialogViewModelTestFixture.cs │ │ ├── AnnotationFloatingDialogViewModelTestFixture.cs │ │ ├── CitationDialogViewModelTestFixture.cs │ │ ├── CopyConfirmationDialogViewModelTestFixture.cs │ │ ├── DefinitionDialogViewModelTestFixture.cs │ │ ├── HyperLinkDialogViewModelTestFixture.cs │ │ ├── OkDialogViewModelTestFixture.cs │ │ └── ReferenceSourceDialogViewModelTestFixture.cs │ └── ViewUtilsTestFixture.cs ├── Composition │ ├── COMETBootstrapperTestFixture.cs │ └── MefServiceLocatorTestFixture.cs ├── Converters │ ├── BooleanToFontWeightConverterTestFixture.cs │ ├── BooleanToGridUnitConverterTestFixture.cs │ ├── BooleanToVisibilityConverterTestFixture.cs │ ├── CamelCaseToSpaceConverterTestFixture.cs │ ├── CategoryListConverterTestFixture.cs │ ├── CdpVersionToEnabledConverterTestFixture.cs │ ├── CdpVersionToVersionTextConverterTestFixture.cs │ ├── CdpVersionToVisibilityConverterTestFixture.cs │ ├── DoubleToVisibilityConverterTestFixture.cs │ ├── EnumerationValueDefinitionConverterTestFixture.cs │ ├── IntegerToVisibilityConverterTestFixture.cs │ ├── NamedShortNamedThingToStringConverterTestFixture.cs │ ├── NotConverterTestFixture.cs │ ├── PanelViewConverterTestFixture.cs │ ├── ReactiveListCategoryConverterTestFixture.cs │ ├── RelationalOperatorKindConverterTestFixture.cs │ ├── ThingToIconUriConverterTestFixture.cs │ └── UnderscoreCapitalsToSpacedTitleCaseConverterTestFixture.cs ├── Diagram │ ├── Cdp4DiagramOrgChartBehaviorTestFixture.cs │ ├── DiagramContentItemParameterRowViewModelTestFixture.cs │ ├── ElementDefinitionDiagramContentItemTestFixture.cs │ └── NamedThingDiagramContentItemTestFixture.cs ├── DragDrop │ ├── DragDropKeyStatesExtensionsTestFixture.cs │ └── SelectionHelperTestFixture.cs ├── Events │ └── TaskbarNotificationEventTestFixture.cs ├── Extensions │ ├── FileExtensionMethodsTestFixture.cs │ └── FileRevisionExtensionMethodsTestFixture.cs ├── FilterOperators │ ├── CategoryFilterOperatorHandlerTestFixture.cs │ └── CustomFilterEditorDialogViewModelTestFixture.cs ├── IconCacheService │ └── IconCacheServiceIconCachServiceTestFixture.cs ├── Modularity │ ├── AppSettingsTest.json │ ├── ModuleInitializerTestFixture.cs │ ├── PluginLoaderTestFixture.cs │ └── PluginUtilitiesTestFixture.cs ├── Mvvm │ ├── Behaviours │ │ ├── CellEditBehaviorTestFixture.cs │ │ ├── ContextMenuBehaviorTestFixture.cs │ │ ├── DialogCloserTestFixture.cs │ │ └── TreeCellEditBehaviorTestFixture.cs │ ├── BrowserViewModelBaseTestFixture.cs │ ├── CDPVersionQuerierTestFixture.cs │ ├── DialogViewModelBaseTestFixture.cs │ ├── EngineeringModelMenuItemGroupViewModelTestFixture.cs │ ├── IterationMenuItemViewModelTestFixture.cs │ ├── MenuItems │ │ ├── RibbonButtonEngineeringModelSetupDependentViewModelTestFixture.cs │ │ ├── RibbonButtonOptionDependentViewModelTestFixture.cs │ │ ├── SessionEngineeringModelSetupMenuGroupViewModelTestFixture.cs │ │ └── SessionMenuGroupViewModelTestFxiture.cs │ ├── OpenSessionViewModelTestFixture.cs │ ├── ReactiveListExtensionTestFixture.cs │ ├── RowViewModelBaseTestFixture.cs │ ├── Types │ │ └── DisposableReactiveListTestFixture.cs │ └── ViewModelBaseTestFixture.cs ├── Navigation │ ├── DialogNavigationServiceTestFixture.cs │ ├── PanelNavigationServiceTestFixture.cs │ └── ThingDialogNavigationServiceTestFixture.cs ├── OfficeRibbon │ ├── FluentRibbonManagerTestFixture.cs │ └── RibbonPartTestFixture.cs ├── PluginSettingService │ ├── PluginSettingsServiceTestFixture.cs │ ├── TestSettings.cs │ └── expectedSettings.settings.json ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── RibbonXml │ │ ├── customui14.xsd │ │ └── testribbon.xml ├── Ribbon │ └── RibbonContentBuilderTextFixture.cs ├── RuleVerification │ └── RuleVerificationServiceTestFixture.cs ├── Services │ ├── DownloadFileServiceTestFixture.cs │ ├── FilterStringServiceTestFixture.cs │ └── TooltipServiceTestFixture.cs ├── SpellingChecker │ ├── DictionaryServiceTestFixture.cs │ ├── en_US.aff │ └── en_US.dic ├── StaticPanelViewModelTestFixture.cs ├── Utilities │ ├── AssemblyInformationServiceTestFixture.cs │ ├── CDP4ColorExtensionsTestFixture.cs │ └── RequirementStateOfComplianceExtensionsTestFixture.cs └── ViewModels │ ├── DockLayoutViewModelFixture.cs │ ├── ElementParameterRowControlViewModelTestFixture.cs │ ├── GenericConfirmationDialogViewModelTestFixture.cs │ ├── ParameterRowControlViewModelTestFixture.cs │ ├── ProcessedValueSetTestFixture.cs │ ├── SubmitConfirmationViewModelTestFixture.cs │ └── ThingSelectorDialogViewModelTestFixture.cs ├── CDP4Composition ├── Attributes │ ├── DescribeExportAttribute.cs │ ├── DialogViewExportAttribute.cs │ ├── DialogViewModelExportAttribute.cs │ ├── IClassKindMetaData.cs │ ├── IDescribeMetaData.cs │ ├── PanelViewModelExportAttribute.cs │ ├── ThingDialogViewExportAttribute.cs │ ├── ThingDialogViewModelExportAttribute.cs │ └── ValidationOverrideAttribute.cs ├── Builders │ └── CategoryStringBuilder.cs ├── CDP4Composition.csproj ├── CommonView │ ├── AutoGenDialogViewModel │ │ ├── ActionItemDialogViewModel.cs │ │ ├── ActualFiniteStateDialogViewModel.cs │ │ ├── ActualFiniteStateListDialogViewModel.cs │ │ ├── AliasDialogViewModel.cs │ │ ├── AndExpressionDialogViewModel.cs │ │ ├── ApprovalDialogViewModel.cs │ │ ├── ArrayParameterTypeDialogViewModel.cs │ │ ├── BinaryNoteDialogViewModel.cs │ │ ├── BinaryRelationshipDialogViewModel.cs │ │ ├── BinaryRelationshipRuleDialogViewModel.cs │ │ ├── BookDialogViewModel.cs │ │ ├── BooleanExpressionDialogViewModel.cs │ │ ├── BooleanParameterTypeDialogViewModel.cs │ │ ├── BoundsDialogViewModel.cs │ │ ├── BuiltInRuleVerificationDialogViewModel.cs │ │ ├── CategoryDialogViewModel.cs │ │ ├── ChangeProposalDialogViewModel.cs │ │ ├── ChangeRequestDialogViewModel.cs │ │ ├── CitationDialogViewModel.cs │ │ ├── ColorDialogViewModel.cs │ │ ├── CommonFileStoreDialogViewModel.cs │ │ ├── CompoundParameterTypeDialogViewModel.cs │ │ ├── ConstantDialogViewModel.cs │ │ ├── ContractChangeNoticeDialogViewModel.cs │ │ ├── ContractDeviationDialogViewModel.cs │ │ ├── ConversionBasedUnitDialogViewModel.cs │ │ ├── CyclicRatioScaleDialogViewModel.cs │ │ ├── DateParameterTypeDialogViewModel.cs │ │ ├── DateTimeParameterTypeDialogViewModel.cs │ │ ├── DecompositionRuleDialogViewModel.cs │ │ ├── DefinedThingDialogViewModel.cs │ │ ├── DefinitionDialogViewModel.cs │ │ ├── DerivedQuantityKindDialogViewModel.cs │ │ ├── DerivedUnitDialogViewModel.cs │ │ ├── DiagramCanvasDialogViewModel.cs │ │ ├── DiagramEdgeDialogViewModel.cs │ │ ├── DiagramElementContainerDialogViewModel.cs │ │ ├── DiagramElementThingDialogViewModel.cs │ │ ├── DiagramObjectDialogViewModel.cs │ │ ├── DiagramShapeDialogViewModel.cs │ │ ├── DiagramThingBaseDialogViewModel.cs │ │ ├── DiagrammingStyleDialogViewModel.cs │ │ ├── DiscussionItemDialogViewModel.cs │ │ ├── DomainFileStoreDialogViewModel.cs │ │ ├── DomainOfExpertiseDialogViewModel.cs │ │ ├── DomainOfExpertiseGroupDialogViewModel.cs │ │ ├── ElementBaseDialogViewModel.cs │ │ ├── ElementDefinitionDialogViewModel.cs │ │ ├── ElementUsageDialogViewModel.cs │ │ ├── EmailAddressDialogViewModel.cs │ │ ├── EngineeringModelDataAnnotationDialogViewModel.cs │ │ ├── EngineeringModelDataDiscussionItemDialogViewModel.cs │ │ ├── EngineeringModelDataNoteDialogViewModel.cs │ │ ├── EngineeringModelDialogViewModel.cs │ │ ├── EngineeringModelSetupDialogViewModel.cs │ │ ├── EnumerationParameterTypeDialogViewModel.cs │ │ ├── EnumerationValueDefinitionDialogViewModel.cs │ │ ├── ExclusiveOrExpressionDialogViewModel.cs │ │ ├── ExternalIdentifierMapDialogViewModel.cs │ │ ├── FileDialogViewModel.cs │ │ ├── FileRevisionDialogViewModel.cs │ │ ├── FileStoreDialogViewModel.cs │ │ ├── FileTypeDialogViewModel.cs │ │ ├── FolderDialogViewModel.cs │ │ ├── GenericAnnotationDialogViewModel.cs │ │ ├── GlossaryDialogViewModel.cs │ │ ├── GoalDialogViewModel.cs │ │ ├── HyperLinkDialogViewModel.cs │ │ ├── IdCorrespondenceDialogViewModel.cs │ │ ├── IntervalScaleDialogViewModel.cs │ │ ├── IterationDialogViewModel.cs │ │ ├── IterationSetupDialogViewModel.cs │ │ ├── LinearConversionUnitDialogViewModel.cs │ │ ├── LogarithmicScaleDialogViewModel.cs │ │ ├── MappingToReferenceScaleDialogViewModel.cs │ │ ├── MeasurementScaleDialogViewModel.cs │ │ ├── MeasurementUnitDialogViewModel.cs │ │ ├── ModelLogEntryDialogViewModel.cs │ │ ├── ModelReferenceDataLibraryDialogViewModel.cs │ │ ├── ModellingAnnotationItemDialogViewModel.cs │ │ ├── ModellingThingReferenceDialogViewModel.cs │ │ ├── MultiRelationshipDialogViewModel.cs │ │ ├── MultiRelationshipRuleDialogViewModel.cs │ │ ├── NaturalLanguageDialogViewModel.cs │ │ ├── NestedElementDialogViewModel.cs │ │ ├── NestedParameterDialogViewModel.cs │ │ ├── NotExpressionDialogViewModel.cs │ │ ├── NoteDialogViewModel.cs │ │ ├── OptionDialogViewModel.cs │ │ ├── OrExpressionDialogViewModel.cs │ │ ├── OrdinalScaleDialogViewModel.cs │ │ ├── OrganizationDialogViewModel.cs │ │ ├── OwnedStyleDialogViewModel.cs │ │ ├── PageDialogViewModel.cs │ │ ├── ParameterBaseDialogViewModel.cs │ │ ├── ParameterDialogViewModel.cs │ │ ├── ParameterGroupDialogViewModel.cs │ │ ├── ParameterOrOverrideBaseDialogViewModel.cs │ │ ├── ParameterOverrideDialogViewModel.cs │ │ ├── ParameterOverrideValueSetDialogViewModel.cs │ │ ├── ParameterSubscriptionDialogViewModel.cs │ │ ├── ParameterSubscriptionValueSetDialogViewModel.cs │ │ ├── ParameterTypeComponentDialogViewModel.cs │ │ ├── ParameterTypeDialogViewModel.cs │ │ ├── ParameterValueDialogViewModel.cs │ │ ├── ParameterValueSetBaseDialogViewModel.cs │ │ ├── ParameterValueSetDialogViewModel.cs │ │ ├── ParameterizedCategoryRuleDialogViewModel.cs │ │ ├── ParametricConstraintDialogViewModel.cs │ │ ├── ParticipantDialogViewModel.cs │ │ ├── ParticipantPermissionDialogViewModel.cs │ │ ├── ParticipantRoleDialogViewModel.cs │ │ ├── PersonDialogViewModel.cs │ │ ├── PersonPermissionDialogViewModel.cs │ │ ├── PersonRoleDialogViewModel.cs │ │ ├── PointDialogViewModel.cs │ │ ├── PossibleFiniteStateDialogViewModel.cs │ │ ├── PossibleFiniteStateListDialogViewModel.cs │ │ ├── PrefixedUnitDialogViewModel.cs │ │ ├── PublicationDialogViewModel.cs │ │ ├── QuantityKindDialogViewModel.cs │ │ ├── QuantityKindFactorDialogViewModel.cs │ │ ├── RatioScaleDialogViewModel.cs │ │ ├── ReferenceDataLibraryDialogViewModel.cs │ │ ├── ReferenceSourceDialogViewModel.cs │ │ ├── ReferencerRuleDialogViewModel.cs │ │ ├── RelationalExpressionDialogViewModel.cs │ │ ├── RelationshipDialogViewModel.cs │ │ ├── RelationshipParameterValueDialogViewModel.cs │ │ ├── RequestForDeviationDialogViewModel.cs │ │ ├── RequestForWaiverDialogViewModel.cs │ │ ├── RequirementDialogViewModel.cs │ │ ├── RequirementsContainerDialogViewModel.cs │ │ ├── RequirementsContainerParameterValueDialogViewModel.cs │ │ ├── RequirementsGroupDialogViewModel.cs │ │ ├── RequirementsSpecificationDialogViewModel.cs │ │ ├── ReviewItemDiscrepancyDialogViewModel.cs │ │ ├── RuleDialogViewModel.cs │ │ ├── RuleVerificationDialogViewModel.cs │ │ ├── RuleVerificationListDialogViewModel.cs │ │ ├── RuleViolationDialogViewModel.cs │ │ ├── ScalarParameterTypeDialogViewModel.cs │ │ ├── ScaleReferenceQuantityValueDialogViewModel.cs │ │ ├── ScaleValueDefinitionDialogViewModel.cs │ │ ├── SectionDialogViewModel.cs │ │ ├── SharedStyleDialogViewModel.cs │ │ ├── SimpleParameterValueDialogViewModel.cs │ │ ├── SimpleParameterizableThingDialogViewModel.cs │ │ ├── SimpleQuantityKindDialogViewModel.cs │ │ ├── SimpleUnitDialogViewModel.cs │ │ ├── SiteDirectoryDataAnnotationDialogViewModel.cs │ │ ├── SiteDirectoryDataDiscussionItemDialogViewModel.cs │ │ ├── SiteDirectoryDialogViewModel.cs │ │ ├── SiteDirectoryThingReferenceDialogViewModel.cs │ │ ├── SiteLogEntryDialogViewModel.cs │ │ ├── SiteReferenceDataLibraryDialogViewModel.cs │ │ ├── SolutionDialogViewModel.cs │ │ ├── SpecializedQuantityKindDialogViewModel.cs │ │ ├── StakeHolderValueMapDialogViewModel.cs │ │ ├── StakeHolderValueMapSettingsDialogViewModel.cs │ │ ├── StakeholderDialogViewModel.cs │ │ ├── StakeholderValueDialogViewModel.cs │ │ ├── TelephoneNumberDialogViewModel.cs │ │ ├── TermDialogViewModel.cs │ │ ├── TextParameterTypeDialogViewModel.cs │ │ ├── TextualNoteDialogViewModel.cs │ │ ├── ThingReferenceDialogViewModel.cs │ │ ├── TimeOfDayParameterTypeDialogViewModel.cs │ │ ├── TopContainerDialogViewModel.cs │ │ ├── UnitFactorDialogViewModel.cs │ │ ├── UnitPrefixDialogViewModel.cs │ │ ├── UserPreferenceDialogViewModel.cs │ │ ├── UserRuleVerificationDialogViewModel.cs │ │ └── ValueGroupDialogViewModel.cs │ ├── AutoGenRows │ │ ├── ActionItemRowViewModel.cs │ │ ├── ActualFiniteStateListRowViewModel.cs │ │ ├── ActualFiniteStateRowViewModel.cs │ │ ├── AliasRowViewModel.cs │ │ ├── AndExpressionRowViewModel.cs │ │ ├── ApprovalRowViewModel.cs │ │ ├── ArrayParameterTypeRowViewModel.cs │ │ ├── BinaryNoteRowViewModel.cs │ │ ├── BinaryRelationshipRowViewModel.cs │ │ ├── BinaryRelationshipRuleRowViewModel.cs │ │ ├── BookRowViewModel.cs │ │ ├── BooleanExpressionRowViewModel.cs │ │ ├── BooleanParameterTypeRowViewModel.cs │ │ ├── BoundsRowViewModel.cs │ │ ├── BuiltInRuleVerificationRowViewModel.cs │ │ ├── CategoryRowViewModel.cs │ │ ├── ChangeProposalRowViewModel.cs │ │ ├── ChangeRequestRowViewModel.cs │ │ ├── CitationRowViewModel.cs │ │ ├── ColorRowViewModel.cs │ │ ├── CommonFileStoreRowViewModel.cs │ │ ├── CompoundParameterTypeRowViewModel.cs │ │ ├── ConstantRowViewModel.cs │ │ ├── ContractChangeNoticeRowViewModel.cs │ │ ├── ContractDeviationRowViewModel.cs │ │ ├── ConversionBasedUnitRowViewModel.cs │ │ ├── CyclicRatioScaleRowViewModel.cs │ │ ├── DateParameterTypeRowViewModel.cs │ │ ├── DateTimeParameterTypeRowViewModel.cs │ │ ├── DecompositionRuleRowViewModel.cs │ │ ├── DefinedThingRowViewModel.cs │ │ ├── DefinitionRowViewModel.cs │ │ ├── DerivedQuantityKindRowViewModel.cs │ │ ├── DerivedUnitRowViewModel.cs │ │ ├── DiagramCanvasRowViewModel.cs │ │ ├── DiagramEdgeRowViewModel.cs │ │ ├── DiagramElementContainerRowViewModel.cs │ │ ├── DiagramElementThingRowViewModel.cs │ │ ├── DiagramObjectRowViewModel.cs │ │ ├── DiagramShapeRowViewModel.cs │ │ ├── DiagramThingBaseRowViewModel.cs │ │ ├── DiagrammingStyleRowViewModel.cs │ │ ├── DiscussionItemRowViewModel.cs │ │ ├── DomainFileStoreRowViewModel.cs │ │ ├── DomainOfExpertiseGroupRowViewModel.cs │ │ ├── DomainOfExpertiseRowViewModel.cs │ │ ├── ElementBaseRowViewModel.cs │ │ ├── ElementDefinitionRowViewModel.cs │ │ ├── ElementUsageRowViewModel.cs │ │ ├── EmailAddressRowViewModel.cs │ │ ├── EngineeringModelDataAnnotationRowViewModel.cs │ │ ├── EngineeringModelDataDiscussionItemRowViewModel.cs │ │ ├── EngineeringModelDataNoteRowViewModel.cs │ │ ├── EngineeringModelRowViewModel.cs │ │ ├── EngineeringModelSetupRowViewModel.cs │ │ ├── EnumerationParameterTypeRowViewModel.cs │ │ ├── EnumerationValueDefinitionRowViewModel.cs │ │ ├── ExclusiveOrExpressionRowViewModel.cs │ │ ├── ExternalIdentifierMapRowViewModel.cs │ │ ├── FileRevisionRowViewModel.cs │ │ ├── FileRowViewModel.cs │ │ ├── FileStoreRowViewModel.cs │ │ ├── FileTypeRowViewModel.cs │ │ ├── FolderRowViewModel.cs │ │ ├── GenericAnnotationRowViewModel.cs │ │ ├── GlossaryRowViewModel.cs │ │ ├── GoalRowViewModel.cs │ │ ├── HyperLinkRowViewModel.cs │ │ ├── IdCorrespondenceRowViewModel.cs │ │ ├── IntervalScaleRowViewModel.cs │ │ ├── IterationRowViewModel.cs │ │ ├── IterationSetupRowViewModel.cs │ │ ├── LinearConversionUnitRowViewModel.cs │ │ ├── LogarithmicScaleRowViewModel.cs │ │ ├── MappingToReferenceScaleRowViewModel.cs │ │ ├── MeasurementScaleRowViewModel.cs │ │ ├── MeasurementUnitRowViewModel.cs │ │ ├── ModelLogEntryRowViewModel.cs │ │ ├── ModelReferenceDataLibraryRowViewModel.cs │ │ ├── ModellingAnnotationItemRowViewModel.cs │ │ ├── ModellingThingReferenceRowViewModel.cs │ │ ├── MultiRelationshipRowViewModel.cs │ │ ├── MultiRelationshipRuleRowViewModel.cs │ │ ├── NaturalLanguageRowViewModel.cs │ │ ├── NestedElementRowViewModel.cs │ │ ├── NestedParameterRowViewModel.cs │ │ ├── NotExpressionRowViewModel.cs │ │ ├── NoteRowViewModel.cs │ │ ├── OptionRowViewModel.cs │ │ ├── OrExpressionRowViewModel.cs │ │ ├── OrdinalScaleRowViewModel.cs │ │ ├── OrganizationRowViewModel.cs │ │ ├── OwnedStyleRowViewModel.cs │ │ ├── PageRowViewModel.cs │ │ ├── ParameterBaseRowViewModel.cs │ │ ├── ParameterGroupRowViewModel.cs │ │ ├── ParameterOrOverrideBaseRowViewModel.cs │ │ ├── ParameterOverrideRowViewModel.cs │ │ ├── ParameterOverrideValueSetRowViewModel.cs │ │ ├── ParameterRowViewModel.cs │ │ ├── ParameterSubscriptionRowViewModel.cs │ │ ├── ParameterSubscriptionValueSetRowViewModel.cs │ │ ├── ParameterTypeComponentRowViewModel.cs │ │ ├── ParameterTypeRowViewModel.cs │ │ ├── ParameterValueRowViewModel.cs │ │ ├── ParameterValueSetBaseRowViewModel.cs │ │ ├── ParameterValueSetRowViewModel.cs │ │ ├── ParameterizedCategoryRuleRowViewModel.cs │ │ ├── ParametricConstraintRowViewModel.cs │ │ ├── ParticipantPermissionRowViewModel.cs │ │ ├── ParticipantRoleRowViewModel.cs │ │ ├── ParticipantRowViewModel.cs │ │ ├── PersonPermissionRowViewModel.cs │ │ ├── PersonRoleRowViewModel.cs │ │ ├── PersonRowViewModel.cs │ │ ├── PointRowViewModel.cs │ │ ├── PossibleFiniteStateListRowViewModel.cs │ │ ├── PossibleFiniteStateRowViewModel.cs │ │ ├── PrefixedUnitRowViewModel.cs │ │ ├── PublicationRowViewModel.cs │ │ ├── QuantityKindFactorRowViewModel.cs │ │ ├── QuantityKindRowViewModel.cs │ │ ├── RatioScaleRowViewModel.cs │ │ ├── ReferenceDataLibraryRowViewModel.cs │ │ ├── ReferenceSourceRowViewModel.cs │ │ ├── ReferencerRuleRowViewModel.cs │ │ ├── RelationalExpressionRowViewModel.cs │ │ ├── RelationshipParameterValueRowViewModel.cs │ │ ├── RelationshipRowViewModel.cs │ │ ├── RequestForDeviationRowViewModel.cs │ │ ├── RequestForWaiverRowViewModel.cs │ │ ├── RequirementRowViewModel.cs │ │ ├── RequirementsContainerParameterValueRowViewModel.cs │ │ ├── RequirementsContainerRowViewModel.cs │ │ ├── RequirementsGroupRowViewModel.cs │ │ ├── RequirementsSpecificationRowViewModel.cs │ │ ├── ReviewItemDiscrepancyRowViewModel.cs │ │ ├── RuleRowViewModel.cs │ │ ├── RuleVerificationListRowViewModel.cs │ │ ├── RuleVerificationRowViewModel.cs │ │ ├── RuleViolationRowViewModel.cs │ │ ├── ScalarParameterTypeRowViewModel.cs │ │ ├── ScaleReferenceQuantityValueRowViewModel.cs │ │ ├── ScaleValueDefinitionRowViewModel.cs │ │ ├── SectionRowViewModel.cs │ │ ├── SharedStyleRowViewModel.cs │ │ ├── SimpleParameterValueRowViewModel.cs │ │ ├── SimpleParameterizableThingRowViewModel.cs │ │ ├── SimpleQuantityKindRowViewModel.cs │ │ ├── SimpleUnitRowViewModel.cs │ │ ├── SiteDirectoryDataAnnotationRowViewModel.cs │ │ ├── SiteDirectoryDataDiscussionItemRowViewModel.cs │ │ ├── SiteDirectoryRowViewModel.cs │ │ ├── SiteDirectoryThingReferenceRowViewModel.cs │ │ ├── SiteLogEntryRowViewModel.cs │ │ ├── SiteReferenceDataLibraryRowViewModel.cs │ │ ├── SolutionRowViewModel.cs │ │ ├── SpecializedQuantityKindRowViewModel.cs │ │ ├── StakeHolderValueMapRowViewModel.cs │ │ ├── StakeHolderValueMapSettingsRowViewModel.cs │ │ ├── StakeholderRowViewModel.cs │ │ ├── StakeholderValueRowViewModel.cs │ │ ├── TelephoneNumberRowViewModel.cs │ │ ├── TermRowViewModel.cs │ │ ├── TextParameterTypeRowViewModel.cs │ │ ├── TextualNoteRowViewModel.cs │ │ ├── ThingReferenceRowViewModel.cs │ │ ├── TimeOfDayParameterTypeRowViewModel.cs │ │ ├── TopContainerRowViewModel.cs │ │ ├── UnitFactorRowViewModel.cs │ │ ├── UnitPrefixRowViewModel.cs │ │ ├── UserPreferenceRowViewModel.cs │ │ ├── UserRuleVerificationRowViewModel.cs │ │ └── ValueGroupRowViewModel.cs │ ├── Converters │ │ └── ParameterTypeToDescriptionConverter.cs │ ├── Diagram │ │ ├── Behaviors │ │ │ └── DiagramPortShapeBehavior.cs │ │ ├── Cdp4DiagramControl.cs │ │ ├── Cdp4DiagramHelper.cs │ │ ├── Cdp4DiagramOrgChartBehavior.cs │ │ ├── DiagramDropInfo.cs │ │ ├── Event │ │ │ └── DiagramDeleteEvent.cs │ │ ├── ICdp4DiagramContainer.cs │ │ ├── ICdp4DiagramOrgChartBehavior.cs │ │ ├── IDiagramDropInfo.cs │ │ ├── ViewModels │ │ │ ├── IDiagramConnectorViewModel.cs │ │ │ ├── IDiagramObjectViewModel.cs │ │ │ ├── IDiagramPortViewModel.cs │ │ │ ├── PortContainerDiagramContentItem.cs │ │ │ └── PortContainerShapeSide.cs │ │ └── Views │ │ │ ├── Cdp4DiagramConnector.cs │ │ │ ├── Cdp4DiagramContentItem.cs │ │ │ ├── DiagramPortShape.xaml │ │ │ └── DiagramPortShape.xaml.cs │ ├── EventAggregator │ │ ├── BaseEvent.cs │ │ ├── ConfirmationEvent.cs │ │ ├── EventPublisher.cs │ │ └── IEventPublisher.cs │ ├── HandCodedRows │ │ ├── EmailAddressRowViewModel.cs │ │ ├── ParameterBaseRowViewModel.cs │ │ ├── ParameterValueSetBaseRowViewModel.cs │ │ ├── ParticipantPermissionRowViewModel.cs │ │ ├── PersonPermissionRowViewModel.cs │ │ ├── PrimitiveRow.cs │ │ ├── TelephoneNumberRowViewModel.cs │ │ └── TermRowViewModel.cs │ ├── Items │ │ ├── AdvancedLayoutGroup.xaml │ │ ├── AdvancedLayoutGroup.xaml.cs │ │ ├── AliasDisplayLayoutItem.xaml │ │ ├── AliasDisplayLayoutItem.xaml.cs │ │ ├── AliasLayoutGroup.xaml │ │ ├── AliasLayoutGroup.xaml.cs │ │ ├── CategoryLayoutGroup.xaml │ │ ├── CategoryLayoutGroup.xaml.cs │ │ ├── CitationLayoutGroup.xaml │ │ ├── CitationLayoutGroup.xaml.cs │ │ ├── DefaultScaleLayoutItem.xaml │ │ ├── DefaultScaleLayoutItem.xaml.cs │ │ ├── DefinitionDisplayLayoutItem.xaml │ │ ├── DefinitionDisplayLayoutItem.xaml.cs │ │ ├── DefinitionLayoutGroup.xaml │ │ ├── DefinitionLayoutGroup.xaml.cs │ │ ├── ErrorMessageLayoutGroup.xaml │ │ ├── ErrorMessageLayoutGroup.xaml.cs │ │ ├── ExcludeOptionsLayoutGroup.xaml │ │ ├── ExcludeOptionsLayoutGroup.xaml.cs │ │ ├── FilteredLanguageCodeControl.xaml │ │ ├── FilteredLanguageCodeControl.xaml.cs │ │ ├── HyperLinkLayoutGroup.xaml │ │ ├── HyperLinkLayoutGroup.xaml.cs │ │ ├── InlineEditContentUserControl.xaml │ │ ├── InlineEditContentUserControl.xaml.cs │ │ ├── IsDeprecatedLayoutItem.xaml │ │ ├── IsDeprecatedLayoutItem.xaml.cs │ │ ├── IsMaximumInclusiveLayoutItem.xaml │ │ ├── IsMaximumInclusiveLayoutItem.xaml.cs │ │ ├── IsMinimumInclusiveLayoutItem.xaml │ │ ├── IsMinimumInclusiveLayoutItem.xaml.cs │ │ ├── LanguageCodeControl.xaml │ │ ├── LanguageCodeControl.xaml.cs │ │ ├── MappingToReferenceScaleGroup.xaml │ │ ├── MappingToReferenceScaleGroup.xaml.cs │ │ ├── MaximumPermissibleValueLayoutItem.xaml │ │ ├── MaximumPermissibleValueLayoutItem.xaml.cs │ │ ├── MeasurementUnitLayoutItem.xaml │ │ ├── MeasurementUnitLayoutItem.xaml.cs │ │ ├── MinimumPermissibleValueLayoutItem.xaml │ │ ├── MinimumPermissibleValueLayoutItem.xaml.cs │ │ ├── NameLayoutItem.xaml │ │ ├── NameLayoutItem.xaml.cs │ │ ├── NegativeValueConnotationLayoutItem.xaml │ │ ├── NegativeValueConnotationLayoutItem.xaml.cs │ │ ├── NumberSetLayoutItem.xaml │ │ ├── NumberSetLayoutItem.xaml.cs │ │ ├── OwnerLayoutItem.xaml │ │ ├── OwnerLayoutItem.xaml.cs │ │ ├── ParameterSubscriptionLayoutGroup.xaml │ │ ├── ParameterSubscriptionLayoutGroup.xaml.cs │ │ ├── ParameterTypeLayoutItem.xaml │ │ ├── ParameterTypeLayoutItem.xaml.cs │ │ ├── PositiveValueConnotationLayoutItem.xaml │ │ ├── PositiveValueConnotationLayoutItem.xaml.cs │ │ ├── ReferenceSourceLayoutItem.xaml │ │ ├── ReferenceSourceLayoutItem.xaml.cs │ │ ├── ScaleLayoutItem.xaml │ │ ├── ScaleLayoutItem.xaml.cs │ │ ├── SelectedParameterTypeLayoutItem.xaml │ │ ├── SelectedParameterTypeLayoutItem.xaml.cs │ │ ├── SelectedScaleLayoutItem.xaml │ │ ├── SelectedScaleLayoutItem.xaml.cs │ │ ├── ShortNameContainerLayoutItem.xaml │ │ ├── ShortNameContainerLayoutItem.xaml.cs │ │ ├── ShortNameLayoutItem.xaml │ │ ├── ShortNameLayoutItem.xaml.cs │ │ ├── StateDependenceLayoutItem.xaml │ │ ├── StateDependenceLayoutItem.xaml.cs │ │ ├── SymbolLayoutItem.xaml │ │ ├── SymbolLayoutItem.xaml.cs │ │ ├── UserValidationButtonsLayoutGroup.xaml │ │ ├── UserValidationButtonsLayoutGroup.xaml.cs │ │ ├── ValueDefinitionLayoutGroup.xaml │ │ ├── ValueDefinitionLayoutGroup.xaml.cs │ │ ├── WarningLayoutItem.xaml │ │ └── WarningLayoutItem.xaml.cs │ ├── Resources │ │ ├── CDP4Styles.xaml │ │ ├── ErrorTemplate.xaml │ │ ├── ErrorTemplate.xaml.cs │ │ ├── Markdown.Styles.Default.xaml │ │ ├── RibbonMenuItemTemplate.xaml │ │ ├── RibbonMenuItemTemplate.xaml.cs │ │ ├── ValueSetTemplates.xaml │ │ └── ValueSetTemplates.xaml.cs │ ├── UserControls │ │ ├── CDPTextBox.xaml │ │ ├── CDPTextBox.xaml.cs │ │ └── Helpers │ │ │ ├── DecorationType.cs │ │ │ ├── MultiRegexWordDecoration.cs │ │ │ ├── PointCollectionHelper.cs │ │ │ ├── StackedRectangleGeometryHelper.cs │ │ │ ├── StringDecoration.cs │ │ │ └── StringRange.cs │ ├── ViewModels │ │ ├── AliasDialogViewModel.cs │ │ ├── AnnotationFloatingDialogViewModel.cs │ │ ├── CitationDialogViewModel.cs │ │ ├── CopyConfirmationDialogViewModel.cs │ │ ├── DefinedThingDialogViewModel.cs │ │ ├── DefinitionDialogViewModel.cs │ │ ├── DiscussionItemViewModel.cs │ │ ├── HyperLinkDialogViewModel.cs │ │ ├── LanguageCodeUsage.cs │ │ ├── OkDialogViewModel.cs │ │ ├── ReferenceSourceDialogViewModel.cs │ │ ├── Rows │ │ │ └── ActiveDomainRowViewModel.cs │ │ └── YesNoDialogViewModel.cs │ ├── ViewUtils.cs │ ├── Views │ │ ├── AliasDialog.xaml │ │ ├── AliasDialog.xaml.cs │ │ ├── AnnotationFloatingDialog.xaml │ │ ├── AnnotationFloatingDialog.xaml.cs │ │ ├── AnnotationTooltip.xaml │ │ ├── AnnotationTooltip.xaml.cs │ │ ├── CitationDialog.xaml │ │ ├── CitationDialog.xaml.cs │ │ ├── CopyConfirmationDialog.xaml │ │ ├── CopyConfirmationDialog.xaml.cs │ │ ├── DefinitionDialog.xaml │ │ ├── DefinitionDialog.xaml.cs │ │ ├── HyperlinkDialog.xaml │ │ ├── HyperlinkDialog.xaml.cs │ │ ├── OkDialog.xaml │ │ ├── OkDialog.xaml.cs │ │ ├── ReferenceSourceDialog.xaml │ │ ├── ReferenceSourceDialog.xaml.cs │ │ ├── YesNoDialog.xaml │ │ └── YesNoDialog.xaml.cs │ └── markdown.xaml License.txt ├── Composition │ ├── COMETBootstrapper.cs │ ├── MefServiceLocator.cs │ └── RxAppObservableExceptionHandler.cs ├── CompositionPoints.cs ├── Converters │ ├── BooleanToFontWeightConverter.cs │ ├── BooleanToGridUnitConverter.cs │ ├── BooleanToVisibilityConverter.cs │ ├── CamelCaseToSpaceConverter.cs │ ├── CategoryListConverter.cs │ ├── CdpVersionToEnabledConverter.cs │ ├── CdpVersionToVersionTextConverter.cs │ ├── CdpVersionToVisibilityConverter.cs │ ├── ClasskindToIconConverter.cs │ ├── DoubleToVisibilityConverter.cs │ ├── EnumerationValueDefinitionConverter.cs │ ├── GenericListToObjectListConverter.cs │ ├── GenericObjectListConverter.cs │ ├── IncludeOptionListToObjectListConverter.cs │ ├── IntegerToVisibilityConverter.cs │ ├── NamedShortNamedThingToStringConverter.cs │ ├── NotConverter.cs │ ├── PanelViewConverter.cs │ ├── ReactiveCategoryToObjectListConverter.cs │ ├── ReactiveClassKindToObjectListConverter.cs │ ├── ReactiveDomainOfExpertiseToObjectListConverter.cs │ ├── ReactiveOrganizationToObjectListConverter.cs │ ├── ReactiveParameterTypeToObjectListConverter.cs │ ├── ReactiveScaleToObjectListConverter.cs │ ├── RelationalOperatorKindConverter.cs │ ├── ThingToIconUriConverter.cs │ └── UnderscoreCapitalsToSpacedTitleCaseConverter.cs ├── Diagram │ ├── DiagramContentItemParameterRowViewModel.cs │ ├── ElementDefinitionDiagramContentItem.cs │ ├── ElementDefinitionDropTarget.cs │ ├── IDiagramContainer.cs │ ├── IDiagramContentItemChild.cs │ ├── IDiagramContentItemChildren.cs │ ├── IDiagramEditorViewModel.cs │ ├── IIDropTarget.cs │ ├── IThingDiagramItem.cs │ ├── NamedThingDiagramContentItem.cs │ ├── ThingDiagramConnector.cs │ └── ThingDiagramContentItem.cs ├── DragDrop │ ├── Constants.cs │ ├── DragDropKeyStatesExtensions.cs │ ├── DragInfo.cs │ ├── DropInfo.cs │ ├── FrameworkElementDragBehavior.cs │ ├── FrameworkElementDropBehavior.cs │ ├── IDragInfo.cs │ ├── IDragSource.cs │ ├── IDropInfo.cs │ ├── IDropTarget.cs │ ├── SelectionHelper.cs │ ├── TreeListSelectionStrategyRowDragDrop.cs │ ├── TreeListViewDragDrop.cs │ └── VisualTreeExtensions.cs ├── ErrorReporting │ ├── Converters │ │ └── IconToImageSourceConverter.cs │ ├── View │ │ ├── ErrorReporter.xaml │ │ └── ErrorReporter.xaml.cs │ └── ViewModel │ │ └── ErrorReporterViewModel.cs ├── Events │ ├── ApplyFilterEvent.cs │ ├── CancelHighlightEvent.cs │ ├── ElementUsageHighlightEvent.cs │ ├── HighlightByCategoryEvent.cs │ ├── HighlightEvent.cs │ ├── IsBusyEvent.cs │ ├── TaskbarNotificationEvent.cs │ ├── ToggleDeprecatedThingEvent.cs │ └── ToggleTooltipEvent.cs ├── ExceptionHandlers │ └── FrozenIterationExceptionHandler.cs ├── Exceptions │ ├── AppSettingsException.cs │ ├── CometReflectionTypeLoadException.cs │ ├── PluginSettingsException.cs │ ├── SessionHasNoIterationsException.cs │ └── SettingsException.cs ├── Extensions │ ├── DalExtensionMethods.cs │ ├── DisposableExtensionMethods.cs │ ├── FileExtensionMethods.cs │ ├── FileRevisionExtensionMethods.cs │ ├── ISessionCreationHook.cs │ ├── StringExtensions.cs │ └── ViewModelBaseExtensionMethods.cs ├── FilterOperators │ ├── CategoryFilterOperatorHandler.cs │ ├── CustomFilterOperatorHandler.cs │ ├── CustomFilterOperatorHandlerFactory.cs │ ├── CustomFilterOperatorType.cs │ ├── ICustomFilterOperatorHandler.cs │ └── IHaveCustomFilterOperators.cs ├── FolderRowViewModel.cs ├── LayoutGroupNames.cs ├── Log │ ├── CDP4SimpleConfigurator.cs │ └── MemoryEventTarget.cs ├── MessageBus │ ├── IHaveMessageBusHandler.cs │ ├── IMessageBusEventHandler.cs │ ├── IMessageBusEventHandlerBase.cs │ ├── IMessageBusEventHandlerSubscription.cs │ ├── MessageBusEventHandler.cs │ ├── MessageBusEventHandlerDisposer.cs │ ├── MessageBusEventHandlerSubscription.cs │ ├── MessageBusHandler.cs │ ├── ObjectChangedMessageBusEventHandler.cs │ └── ObjectChangedMessageBusEventHandlerSubscription.cs ├── Modularity │ ├── IModule.cs │ ├── IModuleInitializer.cs │ ├── Manifest.cs │ ├── ModuleInitializer.cs │ ├── PluginLoader.cs │ └── PluginUtilities.cs ├── Mvvm │ ├── Behaviours │ │ ├── CellEditBehavior.cs │ │ ├── ContextMenuBehavior.cs │ │ ├── DialogCloser.cs │ │ ├── ExtendedDiagramOrgChartBehavior.cs │ │ ├── ExtendedDialogResultCloser.cs │ │ ├── FilterOperatorBehavior.cs │ │ ├── IExtendedDiagramOrgChartBehavior.cs │ │ ├── ItemsSourceHelper.cs │ │ ├── LayoutControlItemsSourceHelper.cs │ │ ├── RibbonCategoryBehavior.cs │ │ ├── TabItemsSourceHelper.cs │ │ ├── TreeCellEditBehavior.cs │ │ └── TreeCellShowingEditorBehavior.cs │ ├── BrowserViewModelBase.cs │ ├── CDPVersionQuerier.cs │ ├── DiagramItemViewModel.cs │ ├── DialogViewModelBase.cs │ ├── FloatingDialogViewModelBase.cs │ ├── IBrowserViewModelBase.cs │ ├── IDialogViewModelBase.cs │ ├── IHaveContainedModelCodes.cs │ ├── IHaveContainedRows.cs │ ├── IHaveContainerViewModel.cs │ ├── IHaveModelCode.cs │ ├── IHavePath.cs │ ├── IHaveThingStatus.cs │ ├── IOwnedThingViewModel.cs │ ├── IRowViewModelBase.cs │ ├── IView.cs │ ├── IViewModelBase.cs │ ├── MenuItems │ │ ├── ContextMenuItemViewModel.cs │ │ ├── EngineeringModelMenuGroupViewModel.cs │ │ ├── IterationMenuGroupViewModel.cs │ │ ├── MenuGroupViewModelBase.cs │ │ ├── MenuItemKind.cs │ │ ├── RibbonButtonEngineeringModelDependentViewModel.cs │ │ ├── RibbonButtonEngineeringModelSetupDependentViewModel.cs │ │ ├── RibbonButtonIterationDependentViewModel.cs │ │ ├── RibbonButtonOptionDependentViewModel.cs │ │ ├── RibbonButtonSessionDependentViewModel.cs │ │ ├── RibbonButtonSessionFavoritesDependentViewModel.cs │ │ ├── RibbonMenuItemEngineeringModelDependentViewModel.cs │ │ ├── RibbonMenuItemEngineeringModelSetupDependentViewModel.cs │ │ ├── RibbonMenuItemIterationDependentViewModel.cs │ │ ├── RibbonMenuItemOptionDependentViewModel.cs │ │ ├── RibbonMenuItemSessionDependentViewModel.cs │ │ ├── RibbonMenuItemSessionFavoritesDependentViewModel.cs │ │ ├── RibbonMenuItemViewModelBase.cs │ │ ├── SessionEngineeringModelMenuGroupViewModel.cs │ │ ├── SessionEngineeringModelSetupMenuGroupViewModel.cs │ │ └── SessionMenuGroupViewModel.cs │ ├── ModellingThingBrowserViewModelBase.cs │ ├── RowStatusKind.cs │ ├── RowViewModelBase.cs │ ├── ThingStatus.cs │ ├── Types │ │ ├── DisposableReactiveList.cs │ │ ├── ReactiveCommandCreator.cs │ │ ├── ReactiveList.cs │ │ └── TrackedReactiveList.cs │ └── ViewModelBase.cs ├── Navigation │ ├── BaseDialogResult.cs │ ├── DialogNavigationService.cs │ ├── DialogViewModelBase.cs │ ├── Events │ │ ├── HidePanelEvent.cs │ │ ├── NavigationPanelEvent.cs │ │ ├── SelectedThingChangedEvent.cs │ │ └── ViewModelChangeEvent.cs │ ├── Interfaces │ │ ├── IDeprecatableBrowserViewModel.cs │ │ ├── IDeprecatableToggleViewModel.cs │ │ ├── IDialogNavigationService.cs │ │ ├── IDialogResult.cs │ │ ├── IDialogView.cs │ │ ├── IDialogViewModel.cs │ │ ├── IFavoritesBrowserViewModel.cs │ │ ├── IFloatingDialogViewModel.cs │ │ ├── IHaveAfterOnClosingLogic.cs │ │ ├── IOpenSaveFileDialogService.cs │ │ ├── IPanelFilterableDataGridViewModel.cs │ │ ├── IPanelNavigationService.cs │ │ ├── IPanelView.cs │ │ ├── IPanelViewModel.cs │ │ ├── IThingDialogNavigationService.cs │ │ ├── IThingDialogView.cs │ │ ├── IThingDialogViewModel.cs │ │ └── IThingSelectorDialogService.cs │ ├── OpenSaveFileDialogService.cs │ ├── PanelNavigationService.cs │ ├── ThingDialogKind.cs │ ├── ThingDialogNavigationService.cs │ └── ThingSelectorDialogService.cs ├── OfficeRibbon │ ├── FluentRibbonManager.cs │ ├── IFluentRibbonCallback.cs │ ├── IFluentRibbonManager.cs │ └── RibbonPart.cs ├── ParameterTreeListNodeImageSelector.cs ├── Properties │ └── AssemblyInfo.cs ├── RegionNames.cs ├── Resources │ ├── Dictionaries │ │ ├── en_GB.aff │ │ └── en_GB.dic │ ├── Images │ │ ├── Apply_16x16.png │ │ ├── Cancel_16x16.png │ │ ├── Help_128x128.png │ │ ├── IconLicence.txt │ │ ├── Info_128x128.png │ │ ├── Log │ │ │ ├── Error_16x16.png │ │ │ ├── ExclamationRed_16x16.png │ │ │ ├── ExclamationRed_32x32.png │ │ │ ├── Info_16x16.png │ │ │ ├── Warning_16x16.png │ │ │ ├── link_16x16.png │ │ │ ├── link_32x32.png │ │ │ ├── linkgreen_16x16.png │ │ │ └── linkgreen_32x32.png │ │ ├── Thing │ │ │ ├── ActualFiniteState_48x48.png │ │ │ ├── Book.png │ │ │ ├── Organization_16x16.png │ │ │ ├── Organization_32x32.png │ │ │ ├── PossibleFiniteState_48x48.png │ │ │ ├── category_16x16.png │ │ │ ├── category_32x32.png │ │ │ ├── domainofexpertise_16x16.png │ │ │ ├── domainofexpertise_32x32.png │ │ │ ├── grayscaleIterationSetup_16x16.png │ │ │ ├── grayscaleIterationSetup_32x32.png │ │ │ ├── grayscaleParticipant_16x16.png │ │ │ ├── grayscaleParticipant_32x32.png │ │ │ ├── grayscalePerson_16x16.png │ │ │ ├── grayscalePerson_32x32.png │ │ │ ├── lock.png │ │ │ ├── measurementunit_16x16.png │ │ │ ├── measurementunit_32x32.png │ │ │ ├── naturallanguage.png │ │ │ ├── parameterComponent_32x32.png │ │ │ ├── parametertype_16x16.png │ │ │ ├── parametertype_32x32.png │ │ │ ├── requirement.png │ │ │ ├── requirementContainer.png │ │ │ ├── siteRdl_16x16.png │ │ │ └── siteRdl_32x32.png │ │ ├── Warning_128x128.png │ │ ├── blueball.gif │ │ ├── comet.ico │ │ ├── cometlogo.png │ │ ├── cometlogo_48x48.png │ │ ├── domain_switch.png │ │ ├── export_32x32.png │ │ ├── hidden_16x16.png │ │ ├── import_32x32.png │ │ ├── orangeball.jpg │ │ ├── to-left-arrow_16x16.png │ │ ├── to-up-arrow_16x16.png │ │ ├── trashcan_128x128.png │ │ ├── up-and-left-arrow_16x16.png │ │ └── whiteball.jpg │ └── RibbonXml │ │ └── customui14.xsd ├── Ribbon │ ├── ExtendedRibbonPage.cs │ ├── ExtendedRibbonPageCategory.cs │ ├── ExtendedRibbonPageGroup.cs │ ├── IRibbonContentBuilder.cs │ └── RibbonContentBuilder.cs ├── Services │ ├── AppSettingService │ │ ├── AppSettings.cs │ │ ├── AppSettingsService.cs │ │ └── IAppSettingsService.cs │ ├── CategoryApplicationValidationService.cs │ ├── DownloadFileService │ │ ├── DownloadFileService.cs │ │ ├── IDownloadFileService.cs │ │ └── IDownloadFileViewModel.cs │ ├── FavoritesService │ │ ├── FavoritesService.cs │ │ └── IFavoritesService.cs │ ├── FilterEditorService │ │ ├── FilterEditorSavedUserPreference.cs │ │ ├── ISavedUserPreference.cs │ │ ├── ISavedUserPreferenceService.cs │ │ ├── SavedUserPreference.cs │ │ └── SavedUserPreferenceService.cs │ ├── FilterStringService │ │ ├── FilterStringService.cs │ │ └── IFilterStringService.cs │ ├── GridUpdateService.cs │ ├── IImeValidationService.cs │ ├── IThingCreator.cs │ ├── IconCacheService │ │ ├── IIconCacheService.cs │ │ ├── IconCacheService.cs │ │ └── OverlayPositionKind.cs │ ├── ImageService │ │ ├── IImageService.cs │ │ └── ImageService.cs │ ├── ImeValidationService.cs │ ├── MessageBoxService │ │ ├── IMessageBoxService.cs │ │ └── MessageBoxService.cs │ ├── NestedElementTreeService │ │ ├── INestedElementTreeService.cs │ │ └── NestedElementTreeService.cs │ ├── PluginSettingService │ │ ├── IPluginSavedConfiguration.cs │ │ ├── IPluginSettingsService.cs │ │ ├── PluginSettings.cs │ │ └── PluginSettingsService.cs │ ├── RuleVerification │ │ ├── BuiltInRuleMetaDataExportAttribute.cs │ │ ├── BuiltinRule.cs │ │ ├── IBuiltInRule.cs │ │ ├── IBuiltInRuleMetaData.cs │ │ ├── IRuleVerificationService.cs │ │ └── RuleVerificationService.cs │ ├── ThingCreator.cs │ └── TooltipService.cs ├── Settings.StyleCop ├── Settings │ └── ShellAppSettings.cs ├── SpecialTerms │ ├── ISpecialTermsService.cs │ └── SpecialTermsService.cs ├── SpellingChecker │ ├── CultureInfoChangedEventArgs.cs │ ├── ISpellDictionaryService.cs │ └── SpellDictionaryService.cs ├── StaticPanelViewModel.cs ├── Utilities │ ├── AppliedTheme.cs │ ├── AssemblyInformationService.cs │ ├── CDP4ColorExtensions.cs │ ├── Cdp4Color.cs │ ├── CultureInfoUtility.cs │ ├── IAssemblyInformationService.cs │ ├── IconUtilities.cs │ ├── LockProvider.cs │ ├── LockType.cs │ ├── RequirementStateOfComplianceExtensions.cs │ ├── SingleConcurrentActionRunner.cs │ ├── SingleRunBackgroundDataLoader.cs │ ├── UriConfig.cs │ ├── UriConfigFileHandler.cs │ └── ValueSetKind.cs ├── ViewModels │ ├── CompoundParameterTypeRowViewModel.cs │ ├── ConfirmationDialogViewModel.cs │ ├── CustomFilterEditorDialogViewModel.cs │ ├── DialogResult │ │ ├── ManageConfigurationsResult.cs │ │ └── SavedConfigurationResult.cs │ ├── DockLayoutViewModel.cs │ ├── ElementParameterRowControlViewModel.cs │ ├── GenericConfirmationDialogViewModel.cs │ ├── IValueSetRow.cs │ ├── InformationDialogViewModel.cs │ ├── ManageConfigurationsDialogViewModel.cs │ ├── ManageSavedUserPreferencesDialogViewModel.cs │ ├── MessageHelper.cs │ ├── ParameterRowControlViewModel.cs │ ├── ProcessedValueSet.cs │ ├── SavedConfigurationDialogViewModel.cs │ ├── SavedUserPreferenceDialogViewModel.cs │ ├── StateDependenceRowViewModel.cs │ ├── SubmitConfirmationDialogResult.cs │ ├── SubmitConfirmationViewModel.cs │ ├── SubmitParameterRowViewModel.cs │ ├── ThingSelectorDialogViewModel.cs │ ├── ValueSetDialogViewModel.cs │ └── ValueSetValues.cs └── Views │ ├── BrowserHeader.xaml │ ├── BrowserHeader.xaml.cs │ ├── CommonThingControl.xaml │ ├── CommonThingControl.xaml.cs │ ├── ConfirmationDialog.xaml │ ├── ConfirmationDialog.xaml.cs │ ├── CustomFilterEditorDialog.xaml │ ├── CustomFilterEditorDialog.xaml.cs │ ├── ElementParameterRowControl.xaml │ ├── ElementParameterRowControl.xaml.cs │ ├── GenericConfirmationDialog.xaml │ ├── GenericConfirmationDialog.xaml.cs │ ├── InformationDialog.xaml │ ├── InformationDialog.xaml.cs │ ├── LoadingControl.xaml │ ├── LoadingControl.xaml.cs │ ├── LoadingView.xaml │ ├── LoadingView.xaml.cs │ ├── ManageConfigurationsDialog.xaml │ ├── ManageConfigurationsDialog.xaml.cs │ ├── ManageSavedUserPreferencesDialog.xaml │ ├── ManageSavedUserPreferencesDialog.xaml.cs │ ├── SavedConfigurationDialog.xaml │ ├── SavedConfigurationDialog.xaml.cs │ ├── SavedUserPreferenceDialog.xaml │ ├── SavedUserPreferenceDialog.xaml.cs │ ├── SelectedThingGroupControl.xaml │ ├── SelectedThingGroupControl.xaml.cs │ ├── SessionHeader.xaml │ ├── SessionHeader.xaml.cs │ ├── SubmitConfirmation.xaml │ ├── SubmitConfirmation.xaml.cs │ ├── SubmitRowDataTemplateSelector.cs │ ├── ThingSelectorDialog.xaml │ └── ThingSelectorDialog.xaml.cs ├── CDP4CrossViewEditor.Tests ├── Assemblers │ ├── CrossviewArrayAssemblerTestFixture.cs │ ├── CrossviewHeaderArrayAssemblerTestFixture.cs │ └── CrossviewPMeanArrayAssemblerTestFixture.cs ├── CDP4CrossViewEditor.Tests.csproj ├── CrossViewEditorModuleTestFixture.cs ├── OfficeDal │ └── CrossviewWorkbookDataDalTestFixture.cs ├── OfficeRibbon │ └── CrossViewEditorRibbonPartTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── TestData │ └── test.xlsx └── ViewModels │ ├── CrossViewDialogViewModelTestFixture.cs │ ├── ThingSelectorViewModelTestFixture.cs │ └── WorkbookRowViewModelTestFixture.cs ├── CDP4CrossViewEditor ├── Assemblers │ ├── CrossviewArrayAssembler.cs │ ├── CrossviewHeaderArrayAssembler.cs │ └── CrossviewSheetRowAssembler.cs ├── CDP4CrossViewEditor.csproj ├── CDP4CrossViewEditor.csproj.DotSettings ├── CrossViewEditorModule.cs ├── Generator │ ├── CrossviewSheetConstants.cs │ ├── CrossviewSheetGenerator.cs │ ├── CrossviewSheetPMeanUtilities.cs │ └── CrossviewSheetUtilities.cs ├── OfficeRibbon │ └── CrossViewEditorRibbonPart.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── RibbonXml │ │ └── CrossViewEditorRibbon.xml ├── RowModels │ ├── CrossviewSheet │ │ ├── ElementDefinitionExcelRow.cs │ │ ├── ElementUsageExcelRow.cs │ │ ├── ExcelRow.cs │ │ └── IExcelRow.cs │ ├── ElementDefinitionRowViewModel.cs │ └── ParameterTypeRowViewModel.cs ├── ViewModels │ ├── CrossViewDialogViewModel.cs │ ├── ElementDefinitionSelectorViewModel.cs │ ├── ParameterTypeSelectorViewModel.cs │ ├── ThingSelectorViewModel.cs │ ├── WorkbookRowViewModel.cs │ └── WorkbookSelectionDialogResult.cs ├── Views │ ├── CrossViewDialog.xaml │ ├── CrossViewDialog.xaml.cs │ └── UserControls │ │ ├── ElementThingSelector.xaml │ │ ├── ElementThingSelector.xaml.cs │ │ ├── ParameterThingSelector.xaml │ │ ├── ParameterThingSelector.xaml.cs │ │ ├── ThingSelectorControl.xaml │ │ ├── ThingSelectorControl.xaml.cs │ │ └── ThingUserControl.cs └── WorkbookOperator.cs ├── CDP4Dashboard.Tests ├── CDP4Dashboard.Tests.csproj ├── Properties │ └── AssemblyInfo.cs └── ViewModels │ ├── Charts │ ├── LineSeriesTestFixture.cs │ └── LineTestFixture.cs │ ├── DashboardBrowserRibbonViewModelTestFixture.cs │ ├── DashboardBrowserViewModelTestFixture.cs │ ├── DummyFixture.cs │ ├── IterationTrackParameterTestFixture.cs │ └── IterationTrackParameterViewModelTestFixture.cs ├── CDP4Dashboard ├── CDP4Dashboard.csproj ├── CDP4DashboardModule.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── RibbonXml │ │ └── DashboardBrowserRibbon.xml ├── ViewModels │ ├── Charts │ │ ├── IExportData.cs │ │ ├── Line.cs │ │ └── LineSeries.cs │ ├── DashboardBRowserRibbonViewModel.cs │ ├── DashboardBrowserViewModel.cs │ └── Widget │ │ ├── Base │ │ ├── WidgetBase.cs │ │ └── WidgetDetailsBase.cs │ │ ├── IIterationTrackParameterViewModel.cs │ │ ├── IterationTrackParameter.cs │ │ ├── IterationTrackParameterDetailViewModel.cs │ │ ├── IterationTrackParameterViewModel.cs │ │ └── WidgetData.cs ├── Views │ ├── DashboardBrowser.xaml │ ├── DashboardBrowser.xaml.cs │ ├── DashboardBrowserRibbon.xaml │ ├── DashboardBrowserRibbon.xaml.cs │ ├── DashboardRibbon.xaml │ ├── DashboardRibbon.xaml.cs │ └── Widget │ │ ├── DummyParameterView.xaml │ │ ├── DummyParameterView.xaml.cs │ │ ├── IterationTrackParameterDetail.xaml │ │ ├── IterationTrackParameterDetail.xaml.cs │ │ ├── IterationTrackParameterView.xaml │ │ ├── IterationTrackParameterView.xaml.cs │ │ └── SizeObserver.cs └── output.xml ├── CDP4DiagramEditor.Tests ├── CDP4DiagramEditor.Tests.csproj ├── DiagramBrowserViewModelTestFixture.cs ├── DiagramDialogViewModelTestFixture.cs ├── DiagramEditorRibbonViewModelTestFixture.cs ├── DiagramEditorViewModelTestFixture.cs ├── Helpers │ └── ClassKindConverterTestFixture.cs └── Properties │ └── AssemblyInfo.cs ├── CDP4DiagramEditor ├── CDP4DiagramEditor.csproj ├── DiagramEditorModule.cs ├── Helpers │ ├── ClassKindConverter.cs │ └── MoveGroupAction.cs ├── Properties │ └── AssemblyInfo.cs ├── ViewModels │ ├── DiagramBrowserViewModel.cs │ ├── DiagramDialogViewModel.cs │ ├── DiagramEdgeViewModel.cs │ ├── DiagramEditorRibbonViewModel.cs │ ├── DiagramEditorViewModel.cs │ ├── DiagramItemDataTemplateSelector.cs │ ├── DiagramObjectViewModel.cs │ ├── DiagramPortViewModel.cs │ └── Relation │ │ └── RuleNavBarRelationViewModel.cs └── Views │ ├── ContextualRibbonPages │ ├── DiagramRibbonPageCategory.xaml │ └── DiagramRibbonPageCategory.xaml.cs │ ├── DiagramBrowser.xaml │ ├── DiagramBrowser.xaml.cs │ ├── DiagramDialog.xaml │ ├── DiagramDialog.xaml.cs │ ├── DiagramEditor.xaml │ ├── DiagramEditor.xaml.cs │ ├── DiagramEditorRibbon.xaml │ └── DiagramEditorRibbon.xaml.cs ├── CDP4Grapher.Tests ├── Behaviors │ └── GrapherOrgChartBehaviorTestFixture.cs ├── CDP4Grapher.Tests.csproj ├── Data │ └── GrapherBaseTestData.cs ├── Properties │ └── AssemblyInfo.cs └── ViewModels │ ├── DiagramControlContextMenuViewModelTestFixture.cs │ ├── GraphElementViewModelTestFixture.cs │ ├── GrapherRibbonViewModelTestFixture.cs │ └── GrapherViewModelTestFixture.cs ├── CDP4Grapher ├── Behaviors │ ├── GrapherOrgChartBehavior.cs │ └── IGrapherOrgChartBehavior.cs ├── CDP4Grapher.csproj ├── GrapherModule.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── RibbonXml │ │ └── GrapherBrowserRibbon.xml ├── Utilities │ ├── LayoutEnumeration.cs │ └── SvgHelper.cs ├── ViewModels │ ├── DiagramControlContextMenuViewModel.cs │ ├── GraphElementViewModel.cs │ ├── GrapherRibbonViewModel.cs │ ├── GrapherViewModel.cs │ ├── IGrapherViewModel.cs │ └── IHaveContextMenu.cs └── Views │ ├── Grapher.xaml │ ├── Grapher.xaml.cs │ ├── GrapherDiagramControl.xaml │ ├── GrapherDiagramControl.xaml.cs │ ├── GrapherRibbon.xaml │ └── GrapherRibbon.xaml.cs ├── CDP4IME.Tests ├── Behaviors │ └── UpdateDownloaderInstallerBehaviorTestFixture.cs ├── COMET-CE.Tests.csproj ├── Modularity │ └── UpdateInstallerTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ └── PluginInstallerViewInvokerServiceTestFixture.cs ├── ShellViewModelTestFixture.cs ├── Test.txt ├── TextDataProviderTestFixture.cs └── ViewModels │ ├── DataSourceExportViewModelTestFixture.cs │ ├── LogDetailsViewModelTestFixture.cs │ ├── PluginManagerTestFixture.cs │ ├── PluginMockData │ ├── CDP4BasicRdl.cdp4ck │ └── CDP4BasicRdl.plugin.manifest │ ├── PluginRowViewModelTestFixture.cs │ ├── SessionViewModelTestFixture.cs │ ├── UpdateDownloaderInstallerDataSetup.cs │ └── UpdateDownloaderInstallerViewModelTestFixture.cs ├── CDP4IME ├── App.config ├── App.xaml ├── App.xaml.cs ├── Behaviors │ ├── DockOperationBehavior.cs │ ├── IUpdateDownloaderInstallerBehavior.cs │ └── UpdateDownloaderInstallerBehavior.cs ├── CDP4IMEBootstrapper.cs ├── COMET-CE.csproj ├── Icons │ ├── PrepareProcess.ico │ ├── user.ico │ └── users.ico ├── Modularity │ └── UpdateInstaller.cs ├── NLog.dll.nlog ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ └── FolderProfile.pubxml ├── Services │ ├── IProcessRunnerService.cs │ ├── IUpdateFileSystemService.cs │ ├── IViewInvokerService.cs │ ├── ProcessRunnerService.cs │ ├── UpdateFileSystemService.cs │ └── ViewInvokerService.cs ├── Settings.StyleCop ├── Settings │ ├── ImeAppSettings.cs │ └── ImeAppSettingsService.cs ├── Shell.xaml ├── Shell.xaml.cs ├── ShellViewModel.cs ├── ViewModels │ ├── AboutViewModel.cs │ ├── DataSourceExportViewModel.cs │ ├── IImeRowViewModel.cs │ ├── IPluginRowViewModel.cs │ ├── IUpdatableThingRowViewModel.cs │ ├── IUpdateDownloaderInstallerViewModel.cs │ ├── ImeRowViewModel.cs │ ├── LogDetailsRowViewModel.cs │ ├── LogDetailsViewModel.cs │ ├── PluginRowViewModel.cs │ ├── SessionViewModel.cs │ └── UpdateDownloaderInstallerViewModel.cs ├── Views │ ├── About.xaml │ ├── About.xaml.cs │ ├── DataSourceExport.xaml │ ├── DataSourceExport.xaml.cs │ ├── ImeRow.xaml │ ├── ImeRow.xaml.cs │ ├── LogDetails.xaml │ ├── LogDetails.xaml.cs │ ├── PluginRow.xaml │ ├── PluginRow.xaml.cs │ ├── SplashScreenView.xaml │ ├── SplashScreenView.xaml.cs │ ├── TextDataProvider.cs │ ├── UpdateDownloaderInstaller.xaml │ └── UpdateDownloaderInstaller.xaml.cs ├── comet.ico ├── license.rtf └── markdown.xaml License.txt ├── CDP4IMEInstaller.Tests ├── CDP4IMEInstaller.Tests.csproj ├── CDP4IMEInstallerTestFixture.cs ├── DevExpress.wxs.liquid ├── KnownAssembliesClassDrop.cs ├── RichTextStripper.cs └── WxsObject.cs ├── CDP4IMEInstaller ├── BasicRDLPlugin.wxs ├── CDP4Addin.wxs ├── CDP4Budget.wxs ├── CDP4BuiltInRules.wxs ├── CDP4CrossviewEditor.wxs ├── CDP4Dashboard.wxs ├── CDP4Grapher.wxs ├── CDP4IME.wxs ├── CDP4IMEInstaller.wixproj ├── CDP4JsonFileDalPlugin.wxs ├── CDP4LogInfoPlugin.wxs ├── CDP4ObjectBrowserPlugin.wxs ├── CDP4PropertyGridPlugin.wxs ├── CDP4ReferenceDataMapper.wxs ├── CDP4RelationshipEditor.wxs ├── CDP4RelationshipMatrix.wxs ├── CDP4Reporting.wxs ├── CDP4Scripting.wxs ├── CDP4ServicesDal.wxs ├── CDP4SiteDirectoryPlugin.wxs ├── CefRuntime.wxs ├── Dependencies.wxs ├── DevExpress.wxs ├── Directories.wxs ├── EngineeringModelPlugin.wxs ├── ParameterSheetGeneratorPlugin.wxs ├── Plugins.wxs ├── Product.wxs ├── ProductTreePlugin.wxs ├── RequirementsPlugin.wxs ├── Resources.wxs ├── Shortcuts.wxs ├── ThirdPartyLicense │ ├── AvalonEdit.txt │ ├── CDP4Common-CE.txt │ ├── CDP4Dal-CE.txt │ ├── CDP4DalCommon-CE.txt │ ├── CDP4JsonFileDal-CE.txt │ ├── CDP4JsonSerializer-CE.txt │ ├── CDP4MessagePackSerializer-CE.txt │ ├── CDP4Reporting-CE.txt │ ├── CDP4RequirementsVerification-CE.txt │ ├── CDP4ServicesDal-CE.txt │ ├── CDP4WspDal-CE.txt │ ├── CastleCore.txt │ ├── ClosedXML.txt │ ├── CommonServiceLocator.txt │ ├── CsvHelper.txt │ ├── DynamicData.txt │ ├── DynamicLanguageRuntime.txt │ ├── Hardcodet.Wpf.TaskbarNotification.txt │ ├── IronPython.txt │ ├── Markdown.Xaml.txt │ ├── Microsoft.AspNet.WebApi.Client.txt │ ├── Microsoft.Bcl.AsyncInterfaces.txt │ ├── Microsoft.Bcl.HashCode.txt │ ├── Microsoft.CSharp.txt │ ├── Microsoft.Net.Extensions.txt │ ├── Microsoft.Xaml.Behaviors.Wpf.txt │ ├── NLog.Extensions.Logging.txt │ ├── NLog.txt │ ├── NetOfficeFw.txt │ ├── Newtonsoft.Json.txt │ ├── ReactiveUI.WPF.txt │ ├── ReqIFSharp.txt │ ├── SharpZipLib.txt │ ├── Splat.txt │ ├── System.Buffers.txt │ ├── System.ComponentModel.Composition.txt │ ├── System.Memory.txt │ ├── System.Numerics.Vectors.txt │ ├── System.Reactive.txt │ ├── System.Runtime.CompilerServices.Unsafe.txt │ ├── System.Threading.Tasks.Extensions.txt │ ├── System.ValueTuple.txt │ ├── System.Xml.XmlSerializer.txt │ ├── dotliquid.txt │ └── reactiveui.txt ├── background.bmp ├── banner.bmp ├── comet.ico ├── thirdpartylicenses.wxs └── variables.wxi ├── CDP4JsonFileDal ├── CDP4JsonFileDal.csproj └── Properties │ └── AssemblyInfo.cs ├── CDP4LogInfo.Tests ├── CDP4LogInfo.Tests.csproj ├── LogLevelImageConverterTestFixture.cs ├── Properties │ └── AssemblyInfo.cs └── ViewModelTests │ ├── LogInfoControlsViewModelTestFixture.cs │ ├── LogInfoPanelViewModelTestFixture.cs │ └── LogItemDialogViewModelTestFixture.cs ├── CDP4LogInfo ├── CDP4LogInfo.csproj ├── LogInfoModule.cs ├── Properties │ └── AssemblyInfo.cs ├── Settings.StyleCop ├── ViewModels │ ├── Controls │ │ └── LogInfoControlsViewModel.cs │ ├── Dialogs │ │ └── LogItemDialogViewModel.cs │ └── Panels │ │ ├── LogInfoPanelViewModel.cs │ │ └── LogInfoRows │ │ └── LogInfoRowViewModel.cs └── Views │ ├── Dialogs │ ├── LogItemDialog.xaml │ └── LogItemDialog.xaml.cs │ ├── LogInfoControls.xaml │ ├── LogInfoControls.xaml.cs │ ├── LogInfoPanel.xaml │ ├── LogInfoPanel.xaml.cs │ └── LogLevelImageConverter.cs ├── CDP4ObjectBrowser.Tests ├── CDP4ObjectBrowser.Tests.csproj ├── NaturalLanguageRowViewModelTestFixture.cs ├── ObjectBrowserRibbonPageViewModelTestFixture.cs ├── ObjectBrowserViewModelTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── ReferenceDataLibraryRowViewModelTestFixture.cs ├── SessionRowViewModelTestFixture.cs └── SiteDirectoryRowViewModelTestFixture.cs ├── CDP4ObjectBrowser ├── AutoGen │ ├── ActionItemRowViewModel.cs │ ├── ActualFiniteStateListRowViewModel.cs │ ├── ActualFiniteStateRowViewModel.cs │ ├── AliasRowViewModel.cs │ ├── AndExpressionRowViewModel.cs │ ├── ApprovalRowViewModel.cs │ ├── ArrayParameterTypeRowViewModel.cs │ ├── BinaryNoteRowViewModel.cs │ ├── BinaryRelationshipRowViewModel.cs │ ├── BinaryRelationshipRuleRowViewModel.cs │ ├── BookRowViewModel.cs │ ├── BooleanExpressionRowViewModel.cs │ ├── BooleanParameterTypeRowViewModel.cs │ ├── BoundsRowViewModel.cs │ ├── BuiltInRuleVerificationRowViewModel.cs │ ├── CategoryRowViewModel.cs │ ├── ChangeProposalRowViewModel.cs │ ├── ChangeRequestRowViewModel.cs │ ├── CitationRowViewModel.cs │ ├── ColorRowViewModel.cs │ ├── CommonFileStoreRowViewModel.cs │ ├── CompoundParameterTypeRowViewModel.cs │ ├── ConstantRowViewModel.cs │ ├── ContractChangeNoticeRowViewModel.cs │ ├── ContractDeviationRowViewModel.cs │ ├── ConversionBasedUnitRowViewModel.cs │ ├── CyclicRatioScaleRowViewModel.cs │ ├── DateParameterTypeRowViewModel.cs │ ├── DateTimeParameterTypeRowViewModel.cs │ ├── DecompositionRuleRowViewModel.cs │ ├── DefinedThingRowViewModel.cs │ ├── DefinitionRowViewModel.cs │ ├── DerivedQuantityKindRowViewModel.cs │ ├── DerivedUnitRowViewModel.cs │ ├── DiagramCanvasRowViewModel.cs │ ├── DiagramEdgeRowViewModel.cs │ ├── DiagramElementContainerRowViewModel.cs │ ├── DiagramElementThingRowViewModel.cs │ ├── DiagramObjectRowViewModel.cs │ ├── DiagramShapeRowViewModel.cs │ ├── DiagramThingBaseRowViewModel.cs │ ├── DiagrammingStyleRowViewModel.cs │ ├── DiscussionItemRowViewModel.cs │ ├── DomainFileStoreRowViewModel.cs │ ├── DomainOfExpertiseGroupRowViewModel.cs │ ├── DomainOfExpertiseRowViewModel.cs │ ├── ElementBaseRowViewModel.cs │ ├── ElementDefinitionRowViewModel.cs │ ├── ElementUsageRowViewModel.cs │ ├── EmailAddressRowViewModel.cs │ ├── EngineeringModelDataAnnotationRowViewModel.cs │ ├── EngineeringModelDataDiscussionItemRowViewModel.cs │ ├── EngineeringModelDataNoteRowViewModel.cs │ ├── EngineeringModelRowViewModel.cs │ ├── EngineeringModelSetupRowViewModel.cs │ ├── EnumerationParameterTypeRowViewModel.cs │ ├── EnumerationValueDefinitionRowViewModel.cs │ ├── ExclusiveOrExpressionRowViewModel.cs │ ├── ExternalIdentifierMapRowViewModel.cs │ ├── FileRevisionRowViewModel.cs │ ├── FileRowViewModel.cs │ ├── FileStoreRowViewModel.cs │ ├── FileTypeRowViewModel.cs │ ├── FolderRowViewModel.cs │ ├── GenericAnnotationRowViewModel.cs │ ├── GlossaryRowViewModel.cs │ ├── GoalRowViewModel.cs │ ├── HyperLinkRowViewModel.cs │ ├── IdCorrespondenceRowViewModel.cs │ ├── IntervalScaleRowViewModel.cs │ ├── IterationRowViewModel.cs │ ├── IterationSetupRowViewModel.cs │ ├── LinearConversionUnitRowViewModel.cs │ ├── LogarithmicScaleRowViewModel.cs │ ├── MappingToReferenceScaleRowViewModel.cs │ ├── MeasurementScaleRowViewModel.cs │ ├── MeasurementUnitRowViewModel.cs │ ├── ModelLogEntryRowViewModel.cs │ ├── ModelReferenceDataLibraryRowViewModel.cs │ ├── ModellingAnnotationItemRowViewModel.cs │ ├── ModellingThingReferenceRowViewModel.cs │ ├── MultiRelationshipRowViewModel.cs │ ├── MultiRelationshipRuleRowViewModel.cs │ ├── NaturalLanguageRowViewModel.cs │ ├── NestedElementRowViewModel.cs │ ├── NestedParameterRowViewModel.cs │ ├── NotExpressionRowViewModel.cs │ ├── NoteRowViewModel.cs │ ├── ObjectBrowserRowViewTemplate.txt4 │ ├── OptionRowViewModel.cs │ ├── OrExpressionRowViewModel.cs │ ├── OrdinalScaleRowViewModel.cs │ ├── OrganizationRowViewModel.cs │ ├── OwnedStyleRowViewModel.cs │ ├── PageRowViewModel.cs │ ├── ParameterBaseRowViewModel.cs │ ├── ParameterGroupRowViewModel.cs │ ├── ParameterOrOverrideBaseRowViewModel.cs │ ├── ParameterOverrideRowViewModel.cs │ ├── ParameterOverrideValueSetRowViewModel.cs │ ├── ParameterRowViewModel.cs │ ├── ParameterSubscriptionRowViewModel.cs │ ├── ParameterSubscriptionValueSetRowViewModel.cs │ ├── ParameterTypeComponentRowViewModel.cs │ ├── ParameterTypeRowViewModel.cs │ ├── ParameterValueRowViewModel.cs │ ├── ParameterValueSetBaseRowViewModel.cs │ ├── ParameterValueSetRowViewModel.cs │ ├── ParameterizedCategoryRuleRowViewModel.cs │ ├── ParametricConstraintRowViewModel.cs │ ├── ParticipantPermissionRowViewModel.cs │ ├── ParticipantRoleRowViewModel.cs │ ├── ParticipantRowViewModel.cs │ ├── PersonPermissionRowViewModel.cs │ ├── PersonRoleRowViewModel.cs │ ├── PersonRowViewModel.cs │ ├── PointRowViewModel.cs │ ├── PossibleFiniteStateListRowViewModel.cs │ ├── PossibleFiniteStateRowViewModel.cs │ ├── PrefixedUnitRowViewModel.cs │ ├── PublicationRowViewModel.cs │ ├── QuantityKindFactorRowViewModel.cs │ ├── QuantityKindRowViewModel.cs │ ├── RatioScaleRowViewModel.cs │ ├── ReferenceDataLibraryRowViewModel.cs │ ├── ReferenceSourceRowViewModel.cs │ ├── ReferencerRuleRowViewModel.cs │ ├── RelationalExpressionRowViewModel.cs │ ├── RelationshipParameterValueRowViewModel.cs │ ├── RelationshipRowViewModel.cs │ ├── RequestForDeviationRowViewModel.cs │ ├── RequestForWaiverRowViewModel.cs │ ├── RequirementRowViewModel.cs │ ├── RequirementsContainerParameterValueRowViewModel.cs │ ├── RequirementsContainerRowViewModel.cs │ ├── RequirementsGroupRowViewModel.cs │ ├── RequirementsSpecificationRowViewModel.cs │ ├── ReviewItemDiscrepancyRowViewModel.cs │ ├── RuleRowViewModel.cs │ ├── RuleVerificationListRowViewModel.cs │ ├── RuleVerificationRowViewModel.cs │ ├── RuleViolationRowViewModel.cs │ ├── ScalarParameterTypeRowViewModel.cs │ ├── ScaleReferenceQuantityValueRowViewModel.cs │ ├── ScaleValueDefinitionRowViewModel.cs │ ├── SectionRowViewModel.cs │ ├── SharedStyleRowViewModel.cs │ ├── SimpleParameterValueRowViewModel.cs │ ├── SimpleParameterizableThingRowViewModel.cs │ ├── SimpleQuantityKindRowViewModel.cs │ ├── SimpleUnitRowViewModel.cs │ ├── SiteDirectoryDataAnnotationRowViewModel.cs │ ├── SiteDirectoryDataDiscussionItemRowViewModel.cs │ ├── SiteDirectoryRowViewModel.cs │ ├── SiteDirectoryThingReferenceRowViewModel.cs │ ├── SiteLogEntryRowViewModel.cs │ ├── SiteReferenceDataLibraryRowViewModel.cs │ ├── SolutionRowViewModel.cs │ ├── SpecializedQuantityKindRowViewModel.cs │ ├── StakeHolderValueMapRowViewModel.cs │ ├── StakeHolderValueMapSettingsRowViewModel.cs │ ├── StakeholderRowViewModel.cs │ ├── StakeholderValueRowViewModel.cs │ ├── TelephoneNumberRowViewModel.cs │ ├── TermRowViewModel.cs │ ├── TextParameterTypeRowViewModel.cs │ ├── TextualNoteRowViewModel.cs │ ├── ThingReferenceRowViewModel.cs │ ├── TimeOfDayParameterTypeRowViewModel.cs │ ├── TopContainerRowViewModel.cs │ ├── UnitFactorRowViewModel.cs │ ├── UnitPrefixRowViewModel.cs │ ├── UserPreferenceRowViewModel.cs │ ├── UserRuleVerificationRowViewModel.cs │ └── ValueGroupRowViewModel.cs ├── CDP4ObjectBrowser.csproj ├── HandCoded │ ├── ActualFiniteStateListRowViewModel.cs │ ├── ActualFiniteStateRowViewModel.cs │ ├── AliasRowViewModel.cs │ ├── BookRowViewModel.cs │ ├── BooleanExpressionRowViewModel.cs │ ├── CitationRowViewModel.cs │ ├── ContractDeviationRowViewModel.cs │ ├── ConversionBasedUnitRowViewModel.cs │ ├── DefinedThingRowViewModel.cs │ ├── DefinitionRowViewModel.cs │ ├── DiagrammingThingRowViewModel.cs │ ├── ElementBaseRowViewModel.cs │ ├── EmailAddressRowViewModel.cs │ ├── EngineeringModelRowViewModel.cs │ ├── ExternalIdentifierMapRowViewModel.cs │ ├── FileRevisionRowViewModel.cs │ ├── FileRowViewModel.cs │ ├── FileStoreRowViewModel.cs │ ├── FolderRowViewModel.cs │ ├── HyperlinkRowViewModel.cs │ ├── IdCorrespondenceRowViewModel.cs │ ├── IterationRowViewModel.cs │ ├── IterationSetupRowViewModel.cs │ ├── MappingToReferenceScaleRowViewModel.cs │ ├── MeasurementScaleRowViewModel.cs │ ├── MeasurementUnitRowViewModel.cs │ ├── ModelLogEntryRowViewModel.cs │ ├── ModellingAnnotationItemRowViewModel.cs │ ├── NaturalLanguageRowViewModel.cs │ ├── NestedElementRowViewModel.cs │ ├── NestedParameterRowViewModel.cs │ ├── NoteRowViewModel.cs │ ├── OrganizationRowViewModel.cs │ ├── PageRowViewModel.cs │ ├── ParameterBaseRowViewModel.cs │ ├── ParameterGroupRowViewModel.cs │ ├── ParameterOrOverrideBaseRowViewModel.cs │ ├── ParameterSubscriptionValueSetRowViewModel.cs │ ├── ParameterTypeComponentRowViewModel.cs │ ├── ParameterTypeRowViewModel.cs │ ├── ParameterValueSetBaseRowViewModel.cs │ ├── ParametricConstraintRowViewModel.cs │ ├── ParticipantPermissionRowViewModel.cs │ ├── ParticipentRowViewModel.cs │ ├── PersonPermissionRowViewModel.cs │ ├── PersonRowViewModel.cs │ ├── PublicationRowViewModel.cs │ ├── QuantityKindFactorRowViewModel.cs │ ├── QuantityKindRowViewModel.cs │ ├── ReferenceDataLibraryRowViewModel.cs │ ├── RelationshipRowViewModel.cs │ ├── RequirementsContainerRowViewModel.cs │ ├── RuleRowViewModel.cs │ ├── RuleVerificationRowViewModel.cs │ ├── RuleViolationRowViewModel.cs │ ├── ScalarParameterTypeRowViewModel.cs │ ├── SectionRowViewModel.cs │ ├── SimpleParameterValueRowViewModel.cs │ ├── SimpleParameterizableThingRowViewModel.cs │ ├── SiteDirectoryRowViewModel.cs │ ├── SiteLogEntryRowViewModel.cs │ ├── TelephoneNumberRowViewModel.cs │ ├── UnitFactorRowViewModel.cs │ └── UserPreferenceRowViewModel.cs ├── Interface │ ├── IBooleanExpressionRowViewModel.cs │ ├── IContractDeviationRowViewModel.cs │ ├── IConversionBasedUnitRowViewModel.cs │ ├── IDefinedThingRowViewModel.cs │ ├── IDiagramElementContainerRowViewModel.cs │ ├── IDiagramElementThingRowViewModel.cs │ ├── IDiagramShapeRowViewModel.cs │ ├── IDiagramThingBaseRowViewModel.cs │ ├── IDiagrammingStyleRowViewModel.cs │ ├── IDiscussionItemRowViewModel.cs │ ├── IElementBaseRowViewModel.cs │ ├── IEngineeringModelDataAnnotationRowViewModel.cs │ ├── IFileStoreRowViewModel.cs │ ├── IGenericAnnotationRowViewModel.cs │ ├── IMeasurementScaleRowViewModel.cs │ ├── IMeasurementUnitRowViewModel.cs │ ├── IModellingAnnotationItemRowViewModel.cs │ ├── INoteRowViewModel.cs │ ├── IParameterBaseRowViewModel.cs │ ├── IParameterOrOverrideBaseRowViewModel.cs │ ├── IParameterTypeRowViewModel.cs │ ├── IParameterValueRowViewModel.cs │ ├── IParameterValueSetBaseRowViewModel.cs │ ├── IQuantityKindRowViewModel.cs │ ├── IReferenceDataLibraryRowViewModel.cs │ ├── IRelationshipRowViewModel.cs │ ├── IRequirementsContainerRowViewModel.cs │ ├── IRuleRowViewModel.cs │ ├── IRuleVerificationRowViewModel.cs │ ├── IScalarParameterTypeRowViewModel.cs │ ├── ISimpleParameterizableThingRowViewModel.cs │ ├── IThingReferenceRowViewModel.cs │ ├── ITopContainerRowViewModel.cs │ └── ObjectBrowserRowViewTemplate.txt4 ├── ObjectBrowserModule.cs ├── ObjectBrowserRibbonPageViewModel.cs ├── ObjectBrowserRowViewModel.cs ├── ObjectBrowserViewModel.cs ├── Properties │ └── AssemblyInfo.cs ├── SessionRowViewModel.cs ├── Settings.StyleCop └── Views │ ├── ObjectBrowser.xaml │ ├── ObjectBrowser.xaml.cs │ ├── ObjectBrowserAutoGen.xaml │ ├── ObjectBrowserRibbonPage.xaml │ ├── ObjectBrowserRibbonPage.xaml.cs │ └── ObjectBrowserXamlGenerator.txt4 ├── CDP4OfficeInfrastructure.Tests ├── CDP4OfficeInfrastructure.Tests.csproj ├── Converter │ └── ParameterValueConverterTestFixture.cs ├── Excel │ └── ExcelErrorsTestFixture.cs ├── Formatting │ └── ExcelNumberFormatProviderTestFixture.cs ├── Generator │ └── SheetGeneratorTestFixture.cs ├── NumberFormatTestFixture.cs ├── OfficeDal │ ├── CrossviewWorkbookDataTestFixture.cs │ ├── GeneratorCustomXmlTestFixture.cs │ ├── WorkbookDataDtoFactoryTestFixture.cs │ └── WorkbookDataTestFixture.cs └── Properties │ └── AssemblyInfo.cs ├── CDP4OfficeInfrastructure ├── Assemblers │ └── AbstractHeaderArrayAssembler.cs ├── CDP4OfficeInfrastructure.csproj ├── Converter │ └── ParameterValueConverter.cs ├── Events │ └── WorkbookActivatedEvent.cs ├── Excel │ ├── ExcelErrors.cs │ └── WorkbookExtensions.cs ├── Formatting │ ├── ExcelNumberFormatProvider.cs │ └── NumberFormat.cs ├── Generator │ └── SheetGenerator.cs ├── IOfficeApplicationWrapper.cs ├── OfficeApplicationWrapper.cs ├── OfficeDal │ ├── CrossviewWorkbookData.cs │ ├── CrossviewWorkbookDataDal.cs │ ├── CustomOfficeData.cs │ ├── CustomOfficeDataDal.cs │ ├── GeneratorCustomXml.cs │ ├── ICustomXmlRead.cs │ ├── WorkbookData.cs │ ├── WorkbookDataDal.cs │ ├── WorkbookDataDtoFactory.cs │ ├── WorkbookSession.cs │ └── WorkbookSessionDal.cs ├── OfficeRibbon │ ├── ExcelQuery.cs │ └── IExcelQuery.cs └── Properties │ └── AssemblyInfo.cs ├── CDP4ParameterSheetGenerator.Tests ├── ArrayAssemblers │ ├── OptionSheet │ │ ├── HeaderArrayAssemblerTestFixture.cs │ │ └── OptionSheetRowAssemblerTestFixture.cs │ └── ParameterSheet │ │ ├── HeaderArrayAssemblerTestFixture.cs │ │ └── ParameterArrayAssemblerTestFixture.cs ├── Assemblers │ └── OptionSheet │ │ └── OptionSheetRowAssemblerTestFixture.cs ├── CDP4ParameterSheetGenerator.Tests.csproj ├── Generator │ ├── OptionSheetRowAssemblerTestFixture.cs │ ├── ParameterSheetRowAssemblerTestFixture.cs │ └── ParameterSheetUtilitiesTestFixture.cs ├── ICategorizableExtensionsTestFixture.cs ├── OfficeDal │ ├── WorkbookDataDalTestFixture.cs │ └── WorkbookSessionDalTestFixture.cs ├── OfficeRibbon │ └── ParameterSheetGeneratorRibbonPartTestFixture.cs ├── ParameterSheetGeneratorModuleTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── RowModels │ ├── NestedParameterExcelRowTestFixture.cs │ └── ParameterSheet │ │ └── PropertyHelperTestFixture.cs ├── TestData │ └── test.xlsx └── ViewModels │ ├── WorkbookRebuildViewModelTestFixture.cs │ └── WorkbookSelectionViewModelTestFixture.cs ├── CDP4ParameterSheetGenerator ├── Assemblers │ ├── HeaderArrayAssembler.cs │ ├── OptionSheet │ │ ├── HeaderArrayAssembler.cs │ │ ├── NestedElementParameterArrayAssembler.cs │ │ └── OptionSheetRowAssembler.cs │ └── ParameterSheet │ │ ├── HeaderArrayAssembler.cs │ │ ├── ParameterArrayAssembler.cs │ │ └── ParameterSheetRowAssembler.cs ├── CDP4ParameterSheetGenerator.csproj ├── CDP4ParameterSheetGenerator.csproj.DotSettings ├── Generator │ ├── OptionSheet │ │ ├── OptionSheetConstants.cs │ │ └── OptionSheetGenerator.cs │ ├── ParameterSheet │ │ ├── ParameterSheetConstants.cs │ │ ├── ParameterSheetGenerator.cs │ │ ├── ParameterSheetProcessor.cs │ │ ├── ParameterSheetRowHighligter.cs │ │ └── RebuildKind.cs │ └── ParameterSheetUtilities.cs ├── OfficeRibbon │ └── ParameterSheetGeneratorRibbonPart.cs ├── ParameterSheetGeneratorModule.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── RibbonXml │ │ └── parametersheetgeneratorribbon.xml ├── RowModels │ ├── ExcelRowBase.cs │ ├── IExcelRow.cs │ ├── IValueSetRow.cs │ ├── OptionSheet │ │ ├── NestedElementExcelRow.cs │ │ └── NestedParameterExcelRow.cs │ └── ParameterSheet │ │ ├── ComponentExcelRow.cs │ │ ├── ElementDefinitionExcelRow.cs │ │ ├── ElementUsageExcelRow.cs │ │ ├── ParameterExcelRow.cs │ │ ├── ParameterGroupExcelRow.cs │ │ ├── ParameterOverrideExcelRow.cs │ │ ├── ParameterOverrideValueSetExcelRow.cs │ │ ├── ParameterSubscriptionExcelRow.cs │ │ ├── ParameterSubscriptionValuesetExcelRow.cs │ │ ├── ParameterValueSetExcelRow.cs │ │ └── PropertyHelper.cs ├── Validation │ └── ValueValidator.cs ├── ViewModels │ ├── WorkbookRebuildDialogResult.cs │ ├── WorkbookRebuildViewModel.cs │ ├── WorkbookRowViewModel.cs │ ├── WorkbookSelectionDialogResult.cs │ └── WorkbookSelectionViewModel.cs ├── Views │ ├── WorkbookRebuild.xaml │ ├── WorkbookRebuild.xaml.cs │ ├── WorkbookSelection.xaml │ └── WorkbookSelection.xaml.cs └── WorkbookOperator.cs ├── CDP4PluginPackager.Tests ├── CDP4PluginPackager.Tests.csproj └── SdkPluginPackagerTestFixture.cs ├── CDP4PluginPackager ├── BasePluginPackager.cs ├── CDP4PluginPackager.csproj ├── Models │ ├── Manifest.cs │ └── Sdk │ │ ├── PropertyGroup.cs │ │ └── SdkcsprojectFile.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── SdkPluginPackager.cs ├── CDP4PropertyGrid.Tests ├── CDP4PropertyGrid.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── PropertyGridViewModelTestFixture.cs └── ViewRibbonControlsViewModelTestFixture.cs ├── CDP4PropertyGrid ├── CDP4PropertyGrid.csproj ├── Properties │ └── AssemblyInfo.cs ├── PropertyGridModule.cs ├── Settings.StyleCop ├── ViewModels │ ├── PropertyGridViewModel.cs │ ├── ThingViewModel.cs │ └── ViewRibbonControlViewModel.cs └── Views │ ├── PropertyGrid.xaml │ ├── PropertyGrid.xaml.cs │ ├── ViewRibbonControl.xaml │ └── ViewRibbonControl.xaml.cs ├── CDP4ReferenceDataMapper.Tests ├── CDP4ReferenceDataMapper.Tests.csproj ├── Managers │ └── DataSourceManagerTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── ReferenceDataMapperModuleTestFixture.cs └── ViewModels │ ├── StateToParameterTypeMapperBrowserViewModelTestFixture.cs │ └── StateToParameterTypeMapperRibbonViewModelTestFixture.cs ├── CDP4ReferenceDataMapper ├── Behaviors │ └── MappingCellReadOnlyBehavior.cs ├── CDP4ReferenceDataMapper.csproj ├── Converters │ ├── MappingRowItemsSourceConverter.cs │ └── TreeListCellValueChangedEventArgsConverter.cs ├── Data │ ├── ParameterToStateMapping.cs │ └── SourceParameter.cs ├── DataTemplateSelectors │ └── StateToParameterTypeMapperTemplateSelector.cs ├── GridColumns │ ├── ActualStateDataGridColumn.cs │ └── DataGridColumn.cs ├── Managers │ ├── DataSourceManager.cs │ └── SaveMappingResult.cs ├── Properties │ └── AssemblyInfo.cs ├── ReferenceDataMapperModule.cs ├── Settings.StyleCop ├── ViewModels │ ├── DummyToolTipRowViewModel.cs │ ├── StateToParameterTypeMapperBrowserViewModel.cs │ └── StateToParameterTypeMapperRibbonViewModel.cs └── Views │ ├── StateToParameterTypeMapperBrowser.xaml │ ├── StateToParameterTypeMapperBrowser.xaml.cs │ ├── StateToParameterTypeMapperRibbon.xaml │ └── StateToParameterTypeMapperRibbon.xaml.cs ├── CDP4RelationshipEditor.Tests ├── CDP4RelationshipEditor.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── RelationshipEditorViewModelTestFixture.cs └── ViewModels │ └── RelationshipEditorRibbonViewModelTestFixture.cs ├── CDP4RelationshipEditor ├── CDP4RelationshipEditor.csproj ├── Controls │ ├── BinaryRelationshipDiagramConnector.cs │ └── MultiRelationshipDiagramConnector.cs ├── Helpers │ └── RuleNavBarItemComparerAscending.cs ├── Properties │ └── AssemblyInfo.cs ├── RelationshipEditorModule.cs ├── ViewModels │ ├── RelationshipEditorRibbonViewModel.cs │ ├── RelationshipEditorViewModel.cs │ └── RuleNavBarItemViewModel.cs └── Views │ ├── RelationshipEditor.xaml │ ├── RelationshipEditor.xaml.cs │ ├── RelationshipEditorRibbon.xaml │ └── RelationshipEditorRibbon.xaml.cs ├── CDP4Reporting.Tests ├── Behaviour │ ├── ReportDesignerBehaviourTextFixture.cs │ └── RibbonCategoryBehaviorTextFixture.cs ├── CDP4Reporting.Tests.csproj ├── CDP4ReportingModuleTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── Ribbon │ └── ExtendedRibbonPageCategoryTextFixture.cs ├── Utilities │ └── ProcessedValueSetGeneratorTestFixture.cs └── ViewModels │ ├── ReportDesignerViewModelTextFixture.cs │ └── ReportingRibbonViewModelTextFixture.cs ├── CDP4Reporting ├── Behaviours │ └── ReportDesignerBehaviour.cs ├── CDP4Reporting.csproj ├── CDP4ReportingModule.cs ├── DynamicTableChecker │ └── DynamicTableChecker.cs ├── Properties │ └── AssemblyInfo.cs ├── SubmittableParameterValues │ ├── ISubmittableParameterValuesCollector.cs │ ├── SubmittableParameterValue.cs │ └── SubmittableParameterValuesCollector.cs ├── Utilities │ ├── DebugUtilities.cs │ ├── ProcessedValueSetGenerator.cs │ └── XtraReportHandler.cs ├── ViewModels │ ├── CodeDomCodeCompiler.cs │ ├── ReportDesignerRibbonViewModel.cs │ └── ReportDesignerViewModel.cs └── Views │ ├── ReportDesigner.xaml │ ├── ReportDesigner.xaml.cs │ ├── ReportDesignerRibbon.xaml │ ├── ReportDesignerRibbon.xaml.cs │ ├── ReportingRibbonPageCategory.xaml │ └── ReportingRibbonPageCategory.xaml.cs ├── CDP4Scripting.Tests ├── CDP4Scripting.Tests.csproj ├── CDP4ScriptingModuleTestFixture.cs ├── DispatcherTestFixture.cs ├── Helpers │ ├── AvalonEditExtensionsTestFixture.cs │ ├── EditorCompletionDataTestFixture.cs │ └── ScriptingProxyTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── ViewModels │ ├── PythonScriptPanelViewModelTestFixture.cs │ ├── ScriptPanelViewModelTestFixture.cs │ ├── ScriptingEngineRibbonPageGroupTestFixture.cs │ └── TextScriptPanelViewModelTestFixture.cs └── sample │ └── CDP4 python-script-2.py ├── CDP4Scripting ├── Attributes │ └── DocumentationAttribute.cs ├── CDP4Scripting.csproj ├── CDP4ScriptingModule.cs ├── Events │ ├── EventingMemoryStream.cs │ └── ScriptPanelEvent.cs ├── Helpers │ ├── AvalonEditExtensions.cs │ ├── EditorCompletionData.cs │ ├── InputTerminal.cs │ ├── OutputTerminal.cs │ ├── ScriptingLaguageKindSupported.cs │ └── ScriptingProxy.cs ├── Interfaces │ ├── IScriptPanelViewModel.cs │ └── IScriptingProxy.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── EditorSearchPanel.xaml │ ├── Images │ │ ├── ClearWindowContent_16x.png │ │ ├── CollapseChevronDown_16x.png │ │ ├── CollapseChevronUp_16x.png │ │ ├── ShowWhitespace_16x.png │ │ ├── Stop_16x.png │ │ └── VSO_Close_16x.png │ └── SyntaxHighlightingSheets │ │ └── Python.xshd ├── ViewModels │ ├── PythonScriptPanelViewModel.cs │ ├── ScriptPanelViewModel.cs │ ├── ScriptingEngineRibbonPageGroupViewModel.cs │ └── TextScriptPanelViewModel.cs └── Views │ ├── PythonScriptPanel.cs │ ├── ScriptPanel.xaml │ ├── ScriptPanel.xaml.cs │ ├── ScriptingEngineRibbon.xaml │ ├── ScriptingEngineRibbon.xaml.cs │ └── TextScriptPanel.cs ├── CDP4ServicesDal ├── CDP4ServicesDal.csproj └── Properties │ └── AssemblyInfo.cs ├── CDP4ShellDialogs ├── App.config ├── CDP4ShellDialogs.csproj ├── Properties │ └── AssemblyInfo.cs ├── Proxy │ ├── ProxyServerConfiguration.cs │ └── ProxyServerConfigurationManager.cs ├── Resources │ └── cdp4logo_brand_textonly.png ├── Settings.StyleCop ├── Utils.cs ├── ViewModels │ ├── DataSourceSelectionViewModel.cs │ ├── DialogResult │ │ ├── DataSourceSelectionResult.cs │ │ └── ExternalAuthenticationResult.cs │ ├── ExternalAuthenticationDialogViewModel.cs │ ├── ModelClosingDialogViewModel.cs │ ├── ModelIterationDomainSwitchDialogViewModel.cs │ ├── ModelOpeningDialogViewModel.cs │ ├── ModelSelectionEngineeringModelSetupRowViewModel.cs │ ├── ModelSelectionIterationSetupRowViewModel.cs │ ├── ModelSelectionSessionRowViewModel.cs │ ├── PluginManagerViewModel.cs │ ├── PluginRowViewModel.cs │ ├── ProxyServerViewModel.cs │ ├── SwitchDomainEngineeringModelSetupRowViewModel.cs │ ├── SwitchDomainIterationSetupRowViewModel.cs │ ├── SwitchDomainSessionRowViewModel.cs │ ├── UriManagerViewModel.cs │ └── UriRowViewModel.cs ├── Views │ ├── DataSourceSelection.xaml │ ├── DataSourceSelection.xaml.cs │ ├── ExternalAuthenticationDialog.xaml │ ├── ExternalAuthenticationDialog.xaml.cs │ ├── ModelClosingDialog.xaml │ ├── ModelClosingDialog.xaml.cs │ ├── ModelIterationDomainSwitchDialog.xaml │ ├── ModelIterationDomainSwitchDialog.xaml.cs │ ├── ModelOpeningDialog.xaml │ ├── ModelOpeningDialog.xaml.cs │ ├── PluginManager.xaml │ ├── PluginManager.xaml.cs │ ├── ProxyServer.xaml │ ├── ProxyServer.xaml.cs │ ├── UriManager.xaml │ └── UriManager.xaml.cs └── app.manifest ├── CDP4ShellDialogsTestFixture ├── CDP4ShellDialogs.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── Proxy │ └── ProxyServerConfigurationManagerTestFixture.cs ├── TestData │ └── uris.json ├── UtilsTestFixture.cs └── ViewModels │ ├── DataSourceSelectionViewModelTestFixture.cs │ ├── ModelClosingDialogViewModelTestFixture.cs │ ├── ModelIterationDomainSwitchDialogViewModelTestFixture.cs │ ├── ModelOpeningDialogViewModelTestFixture.cs │ ├── ModelSelectionEngineeringModelSetupRowViewModelTestFixture.cs │ ├── ModelSelectionSessionTestFixture.cs │ ├── ProxyServerViewModelTestFixture.cs │ ├── SwitchDomainSessionTextFixture.cs │ └── UriManagerViewModelTestFixture.cs ├── CDP4SiteDirectory.Tests ├── CDP4SiteDirectory.Tests.csproj ├── Converters │ └── DomainListToObjectListConverterTestFixture.cs ├── Dialogs │ ├── DomainOfExpertiseDialogViewModelTestFixture.cs │ ├── EmailAddressDialogViewModelTestFixture.cs │ ├── EngineeringModelSetupSelectionDialogViewModelTestFixture.cs │ ├── IterationSetupDialogViewModelTestFixture.cs │ ├── NaturalLanguageDialogViewModelTestFixture.cs │ ├── OrganizationDialogViewModelTestFixture.cs │ ├── ParticipantDialogViewModelTestFixture.cs │ ├── ParticipantRoleDialogViewModelTestFixture.cs │ ├── PersonDialogViewModelTestFixture.cs │ ├── PersonRoleDialogViewModelTestFixture.cs │ ├── Row │ │ └── IterationSetupListBoxItemTestFixture.cs │ ├── SiteReferenceDataLibraryDialogViewModelTestFixture.cs │ ├── TelephoneNumberDialogViewModelTestFixture.cs │ └── TelephoneNumberRowViewModelTestFixture.cs ├── DomainOfExpertiseBrowser │ ├── DomainOfExpertiseBrowserViewModelTestFixture.cs │ ├── DomainOfExpertiseRibbonViewModelTestFixture.cs │ └── DomainOfExpertiseRowViewModelTestFixture.cs ├── ModelBrowser │ ├── ModelBrowserViewModelTestFixture.cs │ └── Rows │ │ └── DomainOfExpertiseRowViewModelTestFixture.cs ├── NaturalLanguage │ ├── NaturalLanguageBrowserViewModelTestFixture.cs │ ├── NaturalLanguageRibbonViewModelTestFixture.cs │ └── NaturalLanguageRowViewModelTestFixture.cs ├── OfficeRibbon │ └── SiteDirectoryRibbonPartTestFixture.cs ├── OrganizationBrowser │ ├── OrganizationBrowserRibbonViewModelTestFixture.cs │ ├── OrganizationBrowserViewModelTestFixture.cs │ └── PersonRowViewModelTestFixture.cs ├── PersonBrowser │ ├── PersonBrowserRibbonViewModelTestFixture.cs │ ├── PersonBrowserViewModelTestFixture.cs │ └── PersonRowViewModelTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── RoleBrowser │ ├── ParticipantPermissionRowViewModelTestFixture.cs │ ├── ParticipantRoleRowViewModelTestFixture.cs │ ├── PersonPermissionRowViewModelTestFixture.cs │ ├── PersonRoleRowViewModelTestFixture.cs │ ├── RoleBrowserRibbonViewModelTestFixture.cs │ └── RoleBrowserViewModelTestFixture.cs ├── ShowDeprecatedRibbonViewModelTestFixture.cs ├── SiteRdlBrowser │ ├── SiteRdlBrowserRibbonViewModelTestFixture.cs │ ├── SiteRdlBrowserViewModelTestFixture.cs │ └── SiteRdlRowViewModelTestFixture.cs └── TeamComposition │ ├── TeamCompositionBrowserRibbonViewModelTestFixture.cs │ ├── TeamCompositionBrowserViewModelTestFixture.cs │ ├── TeamCompositionCardViewModelTestFixture.cs │ └── TeamCompositionDisconnectViewModelTestFixture.cs ├── CDP4SiteDirectory ├── CDP4SiteDirectory.csproj ├── Comparer │ └── DomainRowComparer.cs ├── Converters │ ├── DomainListToObjectListConverter.cs │ └── VCardTypeConverter.cs ├── OfficeRibbon │ └── SiteDirectoryRibbonPart.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── RibbonXml │ │ └── SiteDirectoryRibbon.xml ├── Settings.StyleCop ├── SiteDirectoryModule.cs ├── ViewModels │ ├── Dialogs │ │ ├── DomainOfExpertiseDialogViewModel.cs │ │ ├── EmailAddressDialogViewModel.cs │ │ ├── EngineeringModelSetupSelectionDialogViewModel.cs │ │ ├── EngineeringModelSetupSelectionResult.cs │ │ ├── IterationSetupDialogViewModel.cs │ │ ├── NaturalLanguageDialogViewModel.cs │ │ ├── OrganizationDialogViewModel.cs │ │ ├── ParticipantDialogViewModel.cs │ │ ├── ParticipantRoleDialogViewModel.cs │ │ ├── PersonDialogViewModel.cs │ │ ├── PersonRoleDialogViewModel.cs │ │ ├── Row │ │ │ ├── IterationSetupListBoxItem.cs │ │ │ └── TelephoneNumberRowViewModel.cs │ │ ├── SiteReferenceDataLibraryDialogViewModel.cs │ │ ├── TelephoneNumberDialogViewModel.cs │ │ └── UserPreferenceDialogViewModel.cs │ ├── DomainOfExpertiseBrowser │ │ ├── DomainOfExpertiseBrowserViewModel.cs │ │ └── DomainOfExpertiseRibbonViewModel.cs │ ├── HighlightingRibbonViewModel.cs │ ├── ModelBrowser │ │ ├── ModelBrowserViewModel.cs │ │ ├── ModelRibbonViewModel.cs │ │ └── Rows │ │ │ ├── DomainOfExpertiseRowViewModel.cs │ │ │ ├── EngineeringModelSetupRowViewModel.cs │ │ │ ├── IterationSetupRowViewModel.cs │ │ │ ├── ModelParticipantRowViewModel.cs │ │ │ └── OrganizationalParticipationRowViewModel.cs │ ├── NaturalLanguages │ │ ├── NaturalLanguageBrowserViewModel.cs │ │ └── NaturalLanguageRibbonViewModel.cs │ ├── OrganizationBrowser │ │ ├── OrganizationBrowserRibbonViewModel.cs │ │ ├── OrganizationBrowserViewModel.cs │ │ └── PersonRowViewModel.cs │ ├── PersonBrowser │ │ ├── ParticipantRowViewModel.cs │ │ ├── PersonBrowserRibbonViewModel.cs │ │ ├── PersonBrowserViewModel.cs │ │ └── PersonRowViewModel.cs │ ├── RoleBrowser │ │ ├── ParticipantPermissionRowViewModel.cs │ │ ├── ParticipantRoleRowViewModel.cs │ │ ├── PersonPermissionRowViewModel.cs │ │ ├── PersonRoleRowViewModel.cs │ │ ├── RoleBrowserRibbonViewModel.cs │ │ └── RoleBrowserViewModel.cs │ ├── ShowDeprecatedRibbonViewModel.cs │ ├── ShowTooltipRibbonViewModel.cs │ ├── SiteRdlBrowser │ │ ├── SiteRdlBrowserRibbonViewModel.cs │ │ ├── SiteRdlBrowserViewModel.cs │ │ └── SiteRdlRowViewModel.cs │ └── TeamComposition │ │ ├── TeamCompositionBrowserRibbonViewModel.cs │ │ ├── TeamCompositionBrowserViewModel.cs │ │ └── TeamCompositionCardViewModel.cs └── Views │ ├── Dialogs │ ├── DomainOfExpertiseDialog.xaml │ ├── DomainOfExpertiseDialog.xaml.cs │ ├── EmailAddressDialog.xaml │ ├── EmailAddressDialog.xaml.cs │ ├── EngineeringModelSetupSelectionDialog.xaml │ ├── EngineeringModelSetupSelectionDialog.xaml.cs │ ├── IterationSetupDialog.xaml │ ├── IterationSetupDialog.xaml.cs │ ├── NaturalLanguageDialog.xaml │ ├── NaturalLanguageDialog.xaml.cs │ ├── OrganizationDialog.xaml │ ├── OrganizationDialog.xaml.cs │ ├── ParticipantDialog.xaml │ ├── ParticipantDialog.xaml.cs │ ├── ParticipantRoleDialog.xaml │ ├── ParticipantRoleDialog.xaml.cs │ ├── PersonDialog.xaml │ ├── PersonDialog.xaml.cs │ ├── PersonRoleDialog.xaml │ ├── PersonRoleDialog.xaml.cs │ ├── SiteReferenceDataLibraryDialog.xaml │ ├── SiteReferenceDataLibraryDialog.xaml.cs │ ├── TelephoneNumberDialog.xaml │ ├── TelephoneNumberDialog.xaml.cs │ ├── UserPreferenceDialog.xaml │ └── UserPreferenceDialog.xaml.cs │ ├── DomainOfExpertiseBrowser │ ├── DomainOfExpertiseBrowser.xaml │ ├── DomainOfExpertiseBrowser.xaml.cs │ ├── DomainOfExpertiseRibbon.xaml │ └── DomainOfExpertiseRibbon.xaml.cs │ ├── HighlightingRibbon.xaml │ ├── HighlightingRibbon.xaml.cs │ ├── ModelBrowser │ ├── ModelBrowser.xaml │ ├── ModelBrowser.xaml.cs │ ├── ModelRibbon.xaml │ └── ModelRibbon.xaml.cs │ ├── NaturalLanguages │ ├── NaturalLanguageBrowser.xaml │ ├── NaturalLanguageBrowser.xaml.cs │ ├── NaturalLanguageRibbon.xaml │ └── NaturalLanguageRibbon.xaml.cs │ ├── OrganizationBrowser │ ├── OrganizationBrowser.xaml │ ├── OrganizationBrowser.xaml.cs │ ├── OrganizationBrowserRibbon.xaml │ └── OrganizationBrowserRibbon.xaml.cs │ ├── PersonBrowser │ ├── PersonBrowser.xaml │ ├── PersonBrowser.xaml.cs │ ├── PersonBrowserRibbon.xaml │ └── PersonBrowserRibbon.xaml.cs │ ├── RoleBrowser │ ├── RoleBrowser.xaml │ ├── RoleBrowser.xaml.cs │ ├── RoleBrowserRibbon.xaml │ └── RoleBrowserRibbon.xaml.cs │ ├── ShowDeprecatedRibbon.xaml │ ├── ShowDeprecatedRibbon.xaml.cs │ ├── ShowTooltipRibbon.xaml │ ├── ShowTooltipRibbon.xaml.cs │ ├── SiteDirectoryRibbon.xaml │ ├── SiteDirectoryRibbon.xaml.cs │ ├── SiteRdlBrowser │ ├── SiteRdlBrowser.xaml │ ├── SiteRdlBrowser.xaml.cs │ ├── SiteRdlBrowserRibbon.xaml │ └── SiteRdlBrowserRibbon.xaml.cs │ ├── TeamComposition │ ├── TeamCompositionBrowser.xaml │ ├── TeamCompositionBrowser.xaml.cs │ ├── TeamCompositionBrowserRibbon.xaml │ └── TeamCompositionBrowserRibbon.xaml.cs │ ├── UserManagementRibbonControls.xaml │ └── UserManagementRibbonControls.xaml.cs ├── CDP4UpdateServerDal.Tests ├── CDP4UpdateServerDal.Tests.csproj ├── Json │ ├── ConsolidateImeResponse.json │ └── consolidatePluginResponse.json └── UpdateServerClientTestFixture.cs ├── CDP4UpdateServerDal ├── BaseClient.cs ├── CDP4UpdateServerDal.csproj ├── Command │ ├── ConsolidateIMECommand.cs │ ├── ConsolidatePluginCommand.cs │ ├── IConsolidateIMECommand.cs │ └── IConsolidatePluginCommand.cs ├── Dto │ ├── ClientIMEDto.cs │ ├── ClientPluginDto.cs │ ├── IMEDto.cs │ ├── IMEVersionDto.cs │ ├── IMEVersionPlatformDto.cs │ ├── PluginDto.cs │ └── PluginVersionDto.cs ├── Enumerators │ ├── HttpVerbs.cs │ └── Platform.cs ├── IUpdateServerClient.cs └── UpdateServerClient.cs ├── CLA ├── Corporate Contributor License Agreement.pdf └── Individual Contributor License Agreement.pdf ├── CODE_OF_CONDUCT.md ├── COMET-Community-Edition.jpg ├── EngineeringModel.Tests ├── Comparers │ ├── ElementBaseChildRowComparerTestFixture.cs │ └── ParameterGroupChildRowComparerTestFixture.cs ├── Dialogs │ ├── ActualFiniteStateDialogViewModelTestFixture.cs │ ├── ActualFiniteStateListDialogViewModelTestFixture.cs │ ├── BinaryRelationshipDialogViewModelTestFixture.cs │ ├── BuiltInRuleVerificationDialogViewModelTestFixture.cs │ ├── CategoryDomainParameterTypeSelectorDialogViewModelTestFixture.cs │ ├── ChangeOwnerShipSelectionDialogViewModelTestFixture.cs │ ├── ElementDefinitionDialogViewModelTestFixture.cs │ ├── ElementUsageDialogViewModelTestFixture.cs │ ├── ModelClosingDialogViewModelTestFixture.cs │ ├── ModelOpeningDialogViewModelTestFixture.cs │ ├── MultiRelationshipDialogViewModelTestFixture.cs │ ├── OptionDialogViewModelTestFixture.cs │ ├── ParameterDialogViewModelTestFixture.cs │ ├── ParameterGroupDialogViewModelTestFixture.cs │ ├── ParameterOverrideDialogViewModelTestFixture.cs │ ├── ParameterSubscriptionDialogViewModelTestFixture.cs │ ├── PossibleFiniteStateDialogViewModelTestFixture.cs │ ├── PossibleFiniteStateListDialogViewModelTestFixture.cs │ ├── Rows │ │ ├── CategoryRowViewModelTestFixture.cs │ │ ├── ParameterBaseRowViewModelTestFixture.cs │ │ ├── ParameterComponentValueRowViewModelTestFixture.cs │ │ ├── ParameterOverrideRowViewModelTestFixture.cs │ │ ├── ParameterRowViewModelTestFixture.cs │ │ ├── ParameterSubscriptionRowViewModelTestFixture.cs │ │ └── RelatedThingDialogRowViewModelTestFixture.cs │ ├── RuleVerificationListDialogViewModelTestFixture.cs │ └── UserRuleVerificationDialogViewModelTestFixture.cs ├── EngineeringModel.Tests.csproj ├── EngineeringModelModuleTestFixture.cs ├── OfficeRibbon │ └── EngineeringModelRibbonPartTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── RibbonControls │ └── ViewRibbonTestFixture.cs ├── Services │ ├── ChangeOwnerShipBatchServiceTestFixture.cs │ ├── ParameterActualFiniteStateListApplicationBatchServiceTestFixture.cs │ └── ParameterSubscriptionBatchServiceTestFixture.cs ├── Utilities │ ├── CopyElementDefinitionCreatorTestFixture.cs │ ├── ParameterValueValidatorTestFixture.cs │ └── ThingCreatorTestFixture.cs ├── ViewModels │ ├── Dialogs │ │ ├── CommonFileStoreDialogViewModelTestFixture.cs │ │ ├── DomainFileStoreDialogViewModelTestFixture.cs │ │ ├── EngineeringModelSetupDialogViewModelTestFixture.cs │ │ ├── FileDialogViewModelTestFixture.cs │ │ ├── FileRevisionDialogViewModelTestFixture.cs │ │ └── FolderDialogViewModelTestFixture.cs │ ├── ElementDefinitionTreeRows │ │ ├── ElementDefinitionRowViewModelTestFixture.cs │ │ ├── ElementDefinitionRowViewModelsTestFixtureBis.cs │ │ ├── ElementUsageRowViewModelTestFixture.cs │ │ ├── MessageBusContainerCases.cs │ │ ├── ParameterBaseRowViewModelTestFixture.cs │ │ ├── ParameterComponentValueRowViewModelTestFixture.cs │ │ ├── ParameterGroupRowViewModelTestFixture.cs │ │ ├── ParameterOptionRowViewModelTestFixture.cs │ │ ├── ParameterOverrideRowViewModelTestFixture.cs │ │ ├── ParameterRowViewModelTestFixture.cs │ │ └── ParameterSubscriptionRowViewModelTestFixture.cs │ ├── ElementDefinitionsBrowser │ │ ├── ElementDefinitionBrowserViewModelTestFixture.cs │ │ └── ElementDefinitionRibbonViewModelTestFixture.cs │ ├── FileStoreBrowsers │ │ ├── CommonFileStoreBrowserRibbonViewModelTestFixture.cs │ │ ├── CommonFileStoreBrowserViewModelTestFixture.cs │ │ ├── DomainFileStoreBrowserRibbonViewModelTestFixture.cs │ │ ├── DomainFileStoreBrowserViewModelTestFixture.cs │ │ ├── DomainFileStoreRowViewModelTestFixture.cs │ │ ├── FileRowViewModelTestFixture.cs │ │ ├── FileStoreFileAndFolderHandlerTestFixture.cs │ │ └── FolderRowViewModelTestFixture.cs │ ├── FiniteStateBrowser │ │ ├── ActualFiniteStateListRowViewModelTestFixture.cs │ │ ├── FiniteStateBrowserRibbonViewModelTestFixture.cs │ │ ├── FiniteStateBrowserViewModelTestFixture.cs │ │ └── PossibleFiniteStateListRowViewModelTestFixture.cs │ ├── OptionBrowser │ │ ├── OptionBrowserRibbonViewModelTestFixture.cs │ │ └── OptionBrowserViewModelTestFixture.cs │ ├── PublicationBrowser │ │ ├── PublicationBrowserRibbonViewModelTestFixture.cs │ │ └── PublicationBrowserViewModelTestFixture.cs │ ├── RelationshipBrowser │ │ └── RelationshipBrowserViewModelTestFixture.cs │ └── RuleVerificationListBrowser │ │ ├── RuleVerificationListRibbonViewModelTestFixture.cs │ │ ├── RuleVerificationListRowViewModelTestFixture.cs │ │ └── RuleVerificationListViewModelTestFixture.cs └── converters │ ├── DataTypeConverterTestFixture.cs │ └── ElementDefinitionBrowserIconConverterTestFixture.cs ├── EngineeringModel ├── Converters │ ├── BaseFileRevisionViewModelConverter.cs │ ├── DataTypeConverter.cs │ ├── ElementUsageOptionsConverter.cs │ ├── ElementUsageTypeToVisibilityConverter.cs │ ├── FileRevisionBackgroundConverter.cs │ ├── FileRevisionOpacityConverter.cs │ ├── ReactiveActiveDomainToObjectListConverter.cs │ └── ReactiveDomainToObjectListConverter.cs ├── EngineeringModel.csproj ├── EngineeringModelModule.cs ├── OfficeRibbon │ └── EngineeringModelRibbonPart.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── RibbonXml │ │ └── engineeringmodelribbon.xml ├── Selectors │ └── ElementDefinitionTreeListNodeImageSelector.cs ├── Services │ ├── ChangeOwnerShipBatchService.cs │ ├── ElementDefinitionService.cs │ ├── IChangeOwnerShipBatchService.cs │ ├── IObfuscationService.cs │ ├── IParameterActualFiniteStateListApplicationBatchService.cs │ ├── IParameterSubscriptionBatchService .cs │ ├── ObfuscationService.cs │ ├── ParameterActualFiniteStateListApplicationBatchService.cs │ └── ParameterSubscriptionBatchService.cs ├── Settings.StyleCop ├── Utilities │ ├── CopyCreator.cs │ └── CopyElementDefinitionCreator.cs ├── ViewModels │ ├── Dialogs │ │ ├── ActualFiniteStateDialogViewModel.cs │ │ ├── ActualFiniteStateListDialogViewModel.cs │ │ ├── BinaryRelationshipDialogViewModel.cs │ │ ├── BuiltInRuleVerificationDialogViewModel.cs │ │ ├── CategoryDomainParameterTypeSelectorDialogViewModel.cs │ │ ├── CategoryDomainParameterTypeSelectorResult.cs │ │ ├── ChangeOwnerShipSelectionDialogViewModel.cs │ │ ├── ChangeOwnerShipSelectionResult.cs │ │ ├── CommonFileStoreDialogViewModel.cs │ │ ├── DomainFileStoreDialogViewModel.cs │ │ ├── ElementDefinitionDialogViewModel.cs │ │ ├── ElementUsageDialogViewModel.cs │ │ ├── EngineeringModelSetupDialogViewModel.cs │ │ ├── FileDialogViewModel.cs │ │ ├── FileRevisionDialogViewModel.cs │ │ ├── FolderDialogViewModel.cs │ │ ├── MultiRelationshipDialogViewModel.cs │ │ ├── OptionDialogViewModel.cs │ │ ├── ParameterDialogViewModel.cs │ │ ├── ParameterGroupDialogViewModel.cs │ │ ├── ParameterOverrideDialogViewModel.cs │ │ ├── ParameterSubscriptionDialogViewModel.cs │ │ ├── ParameterTypeAllocationColumn.cs │ │ ├── PossibleFiniteStateDialogViewModel.cs │ │ ├── PossibleFiniteStateListDialogViewModel.cs │ │ ├── Rows │ │ │ ├── ActualFiniteStateRowViewModel.cs │ │ │ ├── CategoryRowViewModel.cs │ │ │ ├── DomainOfExpertiseRowViewModel.cs │ │ │ ├── GroupSelectionViewModel.cs │ │ │ ├── IDialogValueSetRow.cs │ │ │ ├── ParameterBaseRowViewModel.cs │ │ │ ├── ParameterComponentValueRowViewModel.cs │ │ │ ├── ParameterOptionRowViewModel.cs │ │ │ ├── ParameterOrOverrideBaseRowViewModel.cs │ │ │ ├── ParameterOverrideRowViewModel.cs │ │ │ ├── ParameterRowViewModel.cs │ │ │ ├── ParameterStateRowViewModel.cs │ │ │ ├── ParameterSubscriptionRowViewModel.cs │ │ │ ├── ParameterValueBaseRowViewModel.cs │ │ │ ├── PossibleFiniteStateListRowViewModel.cs │ │ │ ├── RelatedThingDialogRowViewModel.cs │ │ │ └── ValueSetRowViewModel.cs │ │ ├── RuleVerificationListDialogViewModel.cs │ │ ├── SampledFunctionParameterTypeValueSetGridViewModel.cs │ │ └── UserRuleVerificationDialogViewModel.cs │ ├── ElementDefinitionBrowser │ │ ├── Comparers │ │ │ ├── ElementBaseChildRowComparer.cs │ │ │ ├── ElementDefinitionBrowserChildComparer.cs │ │ │ └── ParameterGroupChildRowComparer.cs │ │ ├── ElementDefinitionTreeRows │ │ │ ├── ElementBaseRowViewModel.cs │ │ │ ├── ElementDefinitionRowViewModel.cs │ │ │ ├── ElementUsageRowViewModel.cs │ │ │ ├── IElementBaseRowViewModel.cs │ │ │ ├── IObfuscatedRowViewModel.cs │ │ │ ├── ParameterBaseRowViewModel.cs │ │ │ ├── ParameterComponentValueRowViewModel.cs │ │ │ ├── ParameterGroupRowViewModel.cs │ │ │ ├── ParameterOptionRowViewModel.cs │ │ │ ├── ParameterOrOverrideBaseRowViewModel.cs │ │ │ ├── ParameterOverrideRowViewModel.cs │ │ │ ├── ParameterRowViewModel.cs │ │ │ ├── ParameterStateRowViewModel.cs │ │ │ ├── ParameterSubscriptionRowViewModel.cs │ │ │ └── ParameterValueBaseRowViewModel.cs │ │ └── ElementDefinitionsBrowserViewModel.cs │ ├── FileStoreBrowsers │ │ ├── CommonFileStoreBrowserRibbonViewModel.cs │ │ ├── CommonFileStoreBrowserViewModel.cs │ │ ├── CommonFileStoreRowViewModel.cs │ │ ├── DomainFileStoreBrowserRibbonViewModel.cs │ │ ├── DomainFileStoreBrowserViewModel.cs │ │ ├── DomainFileStoreRowViewModel.cs │ │ ├── FileRowViewModel.cs │ │ ├── FileStoreFileAndFolderHandler.cs │ │ ├── FolderRowViewModel.cs │ │ ├── IFileStoreFileAndFolderHandler.cs │ │ └── IFileStoreRow.cs │ ├── FiniteStateBrowser │ │ ├── ActualFiniteStateListRowViewModel.cs │ │ ├── ActualFiniteStateRowViewModel.cs │ │ ├── FiniteStateBrowserRibbonViewModel.cs │ │ ├── FiniteStateBrowserViewModel.cs │ │ ├── PossibleFiniteStateListRowViewModel.cs │ │ └── PossibleFiniteStateRowViewModel.cs │ ├── OptionBrowser │ │ ├── OptionBrowserRibbonViewModel.cs │ │ ├── OptionBrowserViewModel.cs │ │ └── OptionRowViewModel.cs │ ├── PublicationBrowser │ │ ├── Comparers │ │ │ └── PublicationChildRowComparer.cs │ │ ├── IPublishableRow.cs │ │ ├── PublicationBrowserRibbonViewModel.cs │ │ ├── PublicationBrowserViewModel.cs │ │ ├── PublicationDomainOfExpertiseRowViewModel.cs │ │ ├── PublicationParameterOrOverrideRowViewModel.cs │ │ └── PublicationRowViewModel.cs │ ├── RelationshipBrowser │ │ ├── BinaryRelationshipRowViewModel.cs │ │ ├── Creator │ │ │ ├── BinaryRelationshipCreatorViewModel.cs │ │ │ ├── CategoryListConverter.cs │ │ │ ├── IRelationshipCreatorViewModel.cs │ │ │ ├── MultiRelationshipCreatorViewModel.cs │ │ │ ├── RelatedThingRowViewModel.cs │ │ │ ├── RelatedThingViewModel.cs │ │ │ └── RelationshipCreatorMainViewModel.cs │ │ ├── MultiRelationshipRowViewModel.cs │ │ ├── RelationshipBrowserRibbonViewModel.cs │ │ └── RelationshipBrowserViewModel.cs │ ├── Ribbon Controls │ │ └── ElementDefinitionRibbonViewModel.cs │ └── RuleVerificationListBrowser │ │ ├── BuiltInRuleVerificationRowViewModel.cs │ │ ├── RuleVerificationListBrowserViewModel.cs │ │ ├── RuleVerificationListRibbonViewModel.cs │ │ ├── RuleVerificationListRowViewModel.cs │ │ ├── RuleVerificationRowViewModel.cs │ │ └── UserRuleVerificationRowViewModel.cs └── Views │ ├── Dialogs │ ├── ActualFiniteStateDialog.xaml │ ├── ActualFiniteStateDialog.xaml.cs │ ├── ActualFiniteStateListDialog.xaml │ ├── ActualFiniteStateListDialog.xaml.cs │ ├── BinaryRelationshipDialog.xaml │ ├── BinaryRelationshipDialog.xaml.cs │ ├── BuiltInRuleVerificationDialog.xaml │ ├── BuiltInRuleVerificationDialog.xaml.cs │ ├── CategoryDomainParameterTypeSelectorDialog.xaml │ ├── CategoryDomainParameterTypeSelectorDialog.xaml.cs │ ├── ChangeOwnerShipSelectionDialog.xaml │ ├── ChangeOwnerShipSelectionDialog.xaml.cs │ ├── CommonFileStoreDialog.xaml │ ├── CommonFileStoreDialog.xaml.cs │ ├── DomainFileStoreDialog.xaml │ ├── DomainFileStoreDialog.xaml.cs │ ├── ElementDefinitionDialog.xaml │ ├── ElementDefinitionDialog.xaml.cs │ ├── ElementUsageDialog.xaml │ ├── ElementUsageDialog.xaml.cs │ ├── EngineeringModelSetupDialog.xaml │ ├── EngineeringModelSetupDialog.xaml.cs │ ├── FileDialog.xaml │ ├── FileDialog.xaml.cs │ ├── FileRevisionDialog.xaml │ ├── FileRevisionDialog.xaml.cs │ ├── FolderDialog.xaml │ ├── FolderDialog.xaml.cs │ ├── GroupSelectionLookUpEdit.xaml │ ├── GroupSelectionLookUpEdit.xaml.cs │ ├── MultiRelationshipDialog.xaml │ ├── MultiRelationshipDialog.xaml.cs │ ├── OptionDialog.xaml │ ├── OptionDialog.xaml.cs │ ├── ParameterDialog.xaml │ ├── ParameterDialog.xaml.cs │ ├── ParameterGroupDialog.xaml │ ├── ParameterGroupDialog.xaml.cs │ ├── ParameterOverrideDialog.xaml │ ├── ParameterOverrideDialog.xaml.cs │ ├── ParameterSubscriptionDialog.xaml │ ├── ParameterSubscriptionDialog.xaml.cs │ ├── PossibleFiniteStateDialog.xaml │ ├── PossibleFiniteStateDialog.xaml.cs │ ├── PossibleFiniteStateListDialog.xaml │ ├── PossibleFiniteStateListDialog.xaml.cs │ ├── RuleVerificationListDialog.xaml │ ├── RuleVerificationListDialog.xaml.cs │ ├── UserRuleVerificationDialog.xaml │ └── UserRuleVerificationDialog.xaml.cs │ ├── ElementDefinitionBrowser │ ├── ElementDefinitionRibbon.xaml │ ├── ElementDefinitionRibbon.xaml.cs │ ├── ElementDefinitionsBrowser.xaml │ └── ElementDefinitionsBrowser.xaml.cs │ ├── FileStoreBrowsers │ ├── CommonFileStoreBrowser.xaml │ ├── CommonFileStoreBrowser.xaml.cs │ ├── CommonFileStoreBrowserRibbon.xaml │ ├── CommonFileStoreBrowserRibbon.xaml.cs │ ├── DomainFileStoreBrowser.xaml │ ├── DomainFileStoreBrowser.xaml.cs │ ├── DomainFileStoreBrowserRibbon.xaml │ └── DomainFileStoreBrowserRibbon.xaml.cs │ ├── FiniteStateBrowser │ ├── FiniteStateBrowser.xaml │ ├── FiniteStateBrowser.xaml.cs │ ├── FiniteStateBrowserRibbon.xaml │ └── FiniteStateBrowserRibbon.xaml.cs │ ├── Items │ ├── ParameterValueSetLayoutItem.xaml │ ├── ParameterValueSetLayoutItem.xaml.cs │ ├── SampledFunctionValueGridLayoutItem.xaml │ └── SampledFunctionValueGridLayoutItem.xaml.cs │ ├── OptionBrowser │ ├── OptionBrowser.xaml │ ├── OptionBrowser.xaml.cs │ ├── OptionBrowserRibbon.xaml │ └── OptionBrowserRibbon.xaml.cs │ ├── OptionCellTemplateSelector.cs │ ├── PublicationBrowser │ ├── PublicationBrowser.xaml │ ├── PublicationBrowser.xaml.cs │ ├── PublicationBrowserRibbon.xaml │ └── PublicationBrowserRibbon.xaml.cs │ ├── RelationshipBrowser │ ├── RelationshipBrowser.xaml │ ├── RelationshipBrowser.xaml.cs │ ├── RelationshipBrowserRibbon.xaml │ ├── RelationshipBrowserRibbon.xaml.cs │ └── RelationshipCreatorTemplateSelector.cs │ └── RuleVerificationListBrowser │ ├── RuleVerificationListBrowser.xaml │ ├── RuleVerificationListBrowser.xaml.cs │ ├── RuleVerificationListRibbon.xaml │ └── RuleVerificationListRibbon.xaml.cs ├── LICENSE ├── NOTICE ├── Nuget.Config ├── Plugin.target ├── ProductTree.Tests ├── Comparers │ ├── ElementDefinitionChildRowComparerTestFixture.cs │ └── ElementUsageChildRowComparerTestFixture.cs ├── Converters │ └── ProductTreeIconUriConverterTestFixture.cs ├── OfficeRibbon │ └── ProductTreeRibbonPartTestFixture.cs ├── ProductTree.Tests.csproj ├── ProductTreeRows │ ├── ElementDefinitionRowViewModelTestFixture.cs │ ├── ElementUsageRowViewModelTestFixture.cs │ ├── MessageBusContainerCases.cs │ ├── ParameterGroupRowViewModelTestFixture.cs │ ├── ParameterOrOverrideBaseRowViewModelTestFixture.cs │ └── ParameterStateRowViewModelTestFixture.cs ├── ProductTreeViewModelTestFixture.cs ├── Properties │ └── AssemblyInfo.cs └── Ribbon │ └── ProductTreeRibbonViewModelTestFixture.cs ├── ProductTree ├── Comparers │ ├── ElementDefinitionChildRowComparer.cs │ ├── ElementUsageChildRowComparer.cs │ └── ParameterGroupChildRowComparer.cs ├── Converters │ └── ProductTreeIconUriConverter.cs ├── OfficeRibbon │ └── ProductTreeRibbonPart.cs ├── ProductTree.csproj ├── ProductTreeModule.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── RibbonXml │ │ └── ProductTreeRibbon.xml ├── Selectors │ └── ProductTreeListNodeImageSelector.cs ├── Settings.StyleCop ├── ViewModels │ ├── ProductTreeRibbonViewModel.cs │ ├── ProductTreeRows │ │ ├── ElementDefinitionRowViewModel.cs │ │ ├── ElementUsageRowViewModel.cs │ │ ├── IParameterRowContainer.cs │ │ ├── ParameterGroupRowViewModel.cs │ │ ├── ParameterOrOverrideBaseRowViewModel.cs │ │ ├── ParameterOverrideRowViewModel.cs │ │ ├── ParameterRowViewModel.cs │ │ ├── ParameterStateRowViewModel.cs │ │ ├── ParameterTypeComponentRowViewModel.cs │ │ └── ParameterUsageKind.cs │ └── ProductTreeViewModel.cs └── Views │ ├── ProductTree.xaml │ ├── ProductTree.xaml.cs │ ├── ProductTreeRibbon.xaml │ └── ProductTreeRibbon.xaml.cs ├── README.md ├── RelationshipMatrix.Tests ├── CDP4RelationshipMatrix.Tests.csproj ├── Converters │ ├── ColumnFixedConverterTestFixture.cs │ ├── ColumnWidthConverterTestFixture.cs │ ├── NameContentConverterTestFixture.cs │ ├── OrderedCategoryListConverterTestFixture.cs │ └── OrderedDomainOfExpertiseListConverterTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── RelationshipMatrixModuleTestFixture.cs ├── Ribbon │ └── RelationshipMatrixRibbonViewModelTestFixture.cs ├── Settings │ ├── RelationshipMatrixPluginSettingsTestFixture.cs │ └── expectedSettings.settings.json └── ViewModel │ ├── ManageConfigurationsDialogViewModelTestFixture.cs │ ├── MatrixViewModelTestFixture.cs │ ├── RelationshipConfigurationViewModelTestFixture.cs │ ├── RelationshipMatrixRibbonViewModelTestFixture.cs │ ├── RelationshipMatrixViewModelTestFixture.cs │ ├── SavedConfigurationDialogViewModelTestFixture.cs │ ├── SourceConfigurationViewModelTestFixture.cs │ └── ViewModelTestBase.cs ├── RelationshipMatrix ├── Behaviour │ ├── CellSelectionBehavior.cs │ └── TableViewMenuBehavior.cs ├── CDP4RelationshipMatrix.csproj ├── Converters │ ├── BaseMatrixCellViewModelConverter.cs │ ├── BooleanToHighlightConverter.cs │ ├── ColumnFixedConverter.cs │ ├── ColumnWidthConverter.cs │ ├── DeprecatedBackgroundConverter.cs │ ├── DeprecatedOpacityConverter.cs │ ├── MarkupExtensionBase.cs │ ├── NameBackgroundConverter.cs │ ├── NameContentConverter.cs │ ├── OrderedCategoryListConverter.cs │ ├── OrderedDomainOfExpertiseListConverter.cs │ ├── PreviewMouseDownArgsConverter.cs │ ├── RowDoubleClickEventArgsConverter.cs │ └── TooltipConverter.cs ├── DataTypes │ └── MatrixAddress.cs ├── Helpers │ └── MatrixExcelExporter.cs ├── Properties │ └── AssemblyInfo.cs ├── RelationshipMatrixModule.cs ├── Resources │ └── Images │ │ ├── bidir.png │ │ ├── nodir.png │ │ ├── xtoy.png │ │ └── ytox.png ├── Settings │ ├── CategoryBooleanOperatorKind.cs │ ├── DisplayKind.cs │ ├── RelationshipConfiguration.cs │ ├── RelationshipMatrixPluginSettings.cs │ ├── SavedConfiguration.cs │ ├── SortOrder.cs │ └── SourceConfiguration.cs ├── ViewModels │ ├── ColumnDefinition.cs │ ├── MatrixCellViewModel.cs │ ├── MatrixConfigurationViewModelBase.cs │ ├── MatrixViewModel.cs │ ├── RelationshipConfigurationViewModel.cs │ ├── RelationshipMatrixRibbonViewModel.cs │ ├── RelationshipMatrixViewModel.cs │ └── SourceConfigurationViewModel.cs └── Views │ ├── HeaderDataTemplateSelector.cs │ ├── MatrixCellDataTemplateSelector.cs │ ├── RelationshipMatrix.xaml │ ├── RelationshipMatrix.xaml.cs │ ├── RelationshipMatrixRibbon.xaml │ └── RelationshipMatrixRibbon.xaml.cs ├── RemoveObjAndBin.ps1 ├── Requirements.Tests ├── Assemblers │ ├── HeaderArrayAssemblerTestFixture.cs │ └── RequirementArrayAssemblerTestFixture.cs ├── Controls │ ├── ReqIfRibbonViewModelTestFixture.cs │ └── RequirementViewRibbonViewModelTestFixture.cs ├── Dialogs │ ├── BooleanExpressionDialogViewModelTestFixture.cs │ ├── ParametricConstraintDialogViewModelTestFixture.cs │ ├── RelationalExpressionDialogViewModelTestFixture.cs │ ├── ReqIfExportDialogViewModelTestFixture.cs │ ├── RequirementDialogViewModelTestFixture.cs │ ├── RequirementsContainerParameterValueDialogViewModelTestFixture.cs │ ├── RequirementsGroupDialogViewModelTestFixture.cs │ ├── RequirementsSpecificationDialogViewModelTestFixture.cs │ └── SimpleParameterValueDialogViewModelTestFixture.cs ├── Extensions │ └── BooleanExpressionExtensionsTestFixture.cs ├── HtmlReport │ ├── HtmlExportRequirementsSpecificationSelectionDialogViewModelTestFixture.cs │ ├── HtmlExportRibbonViewModelTestFixture.cs │ └── HtmlReportGeneratorTestFixture.cs ├── OfficeRibbon │ └── RequirementRibbonPartTestFixture.cs ├── Properties │ └── AssemblyInfo.cs ├── ReqIF │ ├── ParameterTypeMappingDialogTestFixture.cs │ ├── RelationGroupTypeMappingDialogTestFixture.cs │ ├── ReqIFBuilderTestFixture.cs │ ├── ReqIFThingFactoryTestFixture.cs │ ├── ReqIfImportDialogViewModelTestFixture.cs │ ├── ReqIfImportMappingManagerTestFixture.cs │ ├── SpecObjectTypeMappingDialogTestFixture.cs │ ├── SpecRelationTypeMappingDialogTestFixture.cs │ ├── SpecificationTypeMappingDialogTestFixture.cs │ └── testreq.reqif ├── RequirementBrowser │ ├── RelationalExpressionRowViewModelTestFixture .cs │ ├── RequirementContainerChildComparerTestFixture.cs │ ├── RequirementGroupRowViewModelTestFixture.cs │ ├── RequirementRibbonViewModelTestFixture.cs │ ├── RequirementRowViewModelTestFixture.cs │ ├── RequirementsBrowserViewModelTestFixture.cs │ ├── RequirementsSpecificationRowViewModelTestFixture.cs │ └── SimpleParameterValueRowViewModelTestFixture.cs ├── Requirements.Tests.csproj ├── Requirements.Tests.csproj.DotSettings ├── RequirementsModuleTestFixture.cs ├── RequirementsSpecificationEditor │ ├── BreadCrumbComputerTestFixture.cs │ ├── RequirementRowViewModelTestFixture.cs │ ├── RequirementSpecificationContentComparerTestFixture.cs │ └── RequirementsSpecificationEditorViewModelTestFixture.cs ├── Services │ ├── OrderHandlerServiceTestFixtureBase.cs │ ├── RequirementOrderHandlerServiceTestFixture.cs │ ├── RequirementsGroupHandlerServiceTestFixture.cs │ └── RequirementsSpecificationHandlerServiceTestFixture.cs ├── Settings │ ├── RequirementModuleSettingsTestFixture.cs │ └── testreq.reqif └── ViewModels │ ├── RequirementSpecificationMappingDialogViewModelTestFixture.cs │ └── Rows │ └── RequirementVerificationViewModelsTestFixture.cs ├── Requirements ├── Assemblers │ ├── HeaderArrayAssembler.cs │ └── RequirementArrayAssembler.cs ├── Converters │ ├── BinaryRulesListToObjectListConverter.cs │ ├── CategoryViewModelListToObjectListConverter.cs │ ├── ReactiveBooleanExpressionToObjectListConverter.cs │ ├── RequirementStateOfComplianceColorConverter.cs │ ├── RequirementStateOfComplianceToVisibilityConverter.cs │ └── RulesListToObjectListConverter.cs ├── Extensions │ ├── BooleanExpressionExtensions.cs │ ├── ContainerViewModelExtensions.cs │ └── WritableRequirementStateOfComplianceExtensions.cs ├── Generator │ └── RequirementSheetGenerator.cs ├── OfficeRibbon │ └── RequirementRibbonPart.cs ├── Properties │ └── AssemblyInfo.cs ├── ReqIFDal │ ├── Cdp4ModelValidationFailureHandler.cs │ ├── ImportMap │ │ ├── AttributeDefinitionMap.cs │ │ ├── AttributeDefinitionMapKind.cs │ │ ├── DatatypeDefinitionMap.cs │ │ ├── RelationGroupTypeMap.cs │ │ ├── SpecObjectTypeMap.cs │ │ ├── SpecRelationTypeMap.cs │ │ └── SpecTypeMap.cs │ ├── ReqIFBuilder.cs │ ├── ReqIfImportMappingManager.cs │ ├── ThingFactory.cs │ └── ThingToReqIfMapper.cs ├── Requirements.csproj ├── RequirementsModule.cs ├── Resources │ ├── DotLiquidTemplate │ │ └── RequirementsSpecificationReportTemplate.liquid │ └── RibbonXml │ │ └── RequirementRibbon.xml ├── Selectors │ └── RequirementsTreeListNodeImageSelector.cs ├── Settings.StyleCop ├── Settings │ ├── ImportMappingConfiguration.cs │ ├── JsonConverters │ │ ├── DataTypeDefinitionMapConverter.cs │ │ ├── RelationGroupTypeMapConverter.cs │ │ ├── ReqIfJsonConverter.cs │ │ ├── ReqIfJsonConverterUtility.cs │ │ ├── SpecObjectTypeMapConverter.cs │ │ ├── SpecRelationTypeMapConverter.cs │ │ └── SpecificationTypeMapConverter.cs │ ├── OrderSettings.cs │ └── RequirementsModuleSettings.cs ├── Utils │ ├── BreadCrumbComparer.cs │ ├── BreadCrumbComputer.cs │ ├── IBreadCrumb.cs │ ├── OrderHandlerService.cs │ ├── RequirementOrderHandlerService.cs │ ├── RequirementsContainerOrderHandlerService.cs │ ├── RequirementsGroupOrderHandlerService.cs │ ├── RequirementsSpecificationContentComparer.cs │ └── RequirementsSpecificationOrderHandlerService.cs ├── ViewModels │ ├── Dialogs │ │ ├── AndExpressionDialogViewModel.cs │ │ ├── ExclusiveOrExpressionDialogViewModel.cs │ │ ├── NotExpressionDialogViewModel.cs │ │ ├── OrExpressionDialogViewModel.cs │ │ ├── ParametricConstraintDialogViewModel.cs │ │ ├── RelationalExpressionDialogViewModel.cs │ │ ├── RequirementContainerParameterValueDialogViewModel.cs │ │ ├── RequirementDialogViewModel.cs │ │ ├── RequirementsContainerParameterValueRowViewModel.cs │ │ ├── RequirementsGroupDialogViewModel.cs │ │ ├── RequirementsSpecificationDialogViewModel.cs │ │ ├── SimpleParameterValueDialogViewModel.cs │ │ └── SimpleParameterValueRowViewModel.cs │ ├── HtmlReport │ │ ├── HtmlExportRequirementsSpecificationSelectionDialogViewModel.cs │ │ ├── HtmlExportRibbonViewModel.cs │ │ ├── HtmlReportContentComparer.cs │ │ ├── HtmlReportGenerator.cs │ │ ├── RequirementsGroupViewModel.cs │ │ └── RequirementsSpecificationViewModel.cs │ ├── ReqIF │ │ ├── DialogResults │ │ │ ├── MappingDialogNavigationResult.cs │ │ │ ├── ParameterTypeMappingDialogResult.cs │ │ │ ├── RelationshipGroupMappingDialogResult.cs │ │ │ ├── RelationshipMappingDialogResult.cs │ │ │ ├── ReqIfImportResult.cs │ │ │ ├── RequirementTypeMappingDialogResult.cs │ │ │ └── SpecificationTypeMappingDialogResult.cs │ │ ├── ParameterTypeMappingDialogViewModel.cs │ │ ├── RelationGroupTypeMappingDialogViewModel.cs │ │ ├── ReqIfExportDialogViewModel.cs │ │ ├── ReqIfImportDialogViewModel.cs │ │ ├── ReqIfMappingDialogViewModelBase.cs │ │ ├── ReqIfRibbonViewModel.cs │ │ ├── RequirementSpecificationMappingDialogViewModel.cs │ │ ├── Rows │ │ │ ├── Import │ │ │ │ ├── AttributeDefinitionMappingRowViewModel.cs │ │ │ │ ├── CategoryComboBoxItemViewModel.cs │ │ │ │ ├── DatatypeDefinitionMappingRowViewModel.cs │ │ │ │ ├── EnumValueMappingRowViewModel.cs │ │ │ │ ├── IMappingRowViewModelBase.cs │ │ │ │ ├── ISpecTypeRowViewModel.cs │ │ │ │ ├── MappingRowViewModelBase.cs │ │ │ │ ├── RelationGroupMappingRowViewModel.cs │ │ │ │ ├── SpecObjectTypeRowViewModel.cs │ │ │ │ ├── SpecRelationMappingRowViewModel.cs │ │ │ │ ├── SpecTypeRowViewModel.cs │ │ │ │ └── SpecificationTypeRowViewModel.cs │ │ │ └── ReqIfExportIterationRowViewModel.cs │ │ ├── SpecObjectTypesMappingDialogViewModel.cs │ │ ├── SpecRelationTypeMappingDialogViewModel.cs │ │ └── SpecificationTypeMappingDialogViewModel.cs │ ├── RequirementBrowser │ │ ├── Comparers │ │ │ ├── RequirementContainerChildRowComparer.cs │ │ │ └── RequirementsSpecificationComparer.cs │ │ ├── IHaveWritableRequirementStateOfCompliance.cs │ │ ├── IRequirementBrowserDisplaySettings.cs │ │ ├── RequirementRibbonViewModel.cs │ │ ├── RequirementsBrowserViewModel.cs │ │ └── Rows │ │ │ ├── BinaryRelationshipRowViewModel.cs │ │ │ ├── ParametricConstraintsFolderRowViewModel.cs │ │ │ ├── RelationshipParameterValueRowViewModel.cs │ │ │ ├── RequirementContainerRowViewModel.cs │ │ │ ├── RequirementRowViewModel.cs │ │ │ ├── RequirementsContainerParameterValueRowViewModel.cs │ │ │ ├── RequirementsGroupRowViewModel.cs │ │ │ ├── RequirementsSpecificationRowViewModel.cs │ │ │ └── SimpleParameterValueRowViewModel.cs │ ├── RequirementsSpecificationEditor │ │ ├── RequirementRowViewModel.cs │ │ ├── RequirementSpecificationContentComparer.cs │ │ ├── RequirementsGroupRowViewModel.cs │ │ ├── RequirementsSpecificationEditorTemplateSelector.cs │ │ ├── RequirementsSpecificationEditorViewModel.cs │ │ └── RequirementsSpecificationRowViewModel.cs │ └── Rows │ │ ├── AndExpressionRowViewModel.cs │ │ ├── ExclusiveOrExpressionRowViewModel.cs │ │ ├── NotExpressionRowViewModel.cs │ │ ├── OrExpressionRowViewModel.cs │ │ ├── ParametricConstraintRowViewModel.cs │ │ ├── RelationalExpressionRowViewModel.cs │ │ └── RelationalExpressionValueRowViewModel.cs └── Views │ ├── Dialogs │ ├── AndExpressionDialog.xaml │ ├── AndExpressionDialog.xaml.cs │ ├── ExclusiveOrExpressionDialog.xaml │ ├── ExclusiveOrExpressionDialog.xaml.cs │ ├── NotExpressionDialog.xaml │ ├── NotExpressionDialog.xaml.cs │ ├── OrExpressionDialog.xaml │ ├── OrExpressionDialog.xaml.cs │ ├── ParametricConstraintDialog.xaml │ ├── ParametricConstraintDialog.xaml.cs │ ├── RelationalExpressionDialog.xaml │ ├── RelationalExpressionDialog.xaml.cs │ ├── RequirementDialog.xaml │ ├── RequirementDialog.xaml.cs │ ├── RequirementsContainerParameterValueDialog.xaml │ ├── RequirementsContainerParameterValueDialog.xaml.cs │ ├── RequirementsGroupDialog.xaml │ ├── RequirementsGroupDialog.xaml.cs │ ├── RequirementsSpecificationDialog.xaml │ ├── RequirementsSpecificationDialog.xaml.cs │ ├── SimpleParameterValueDialog.xaml │ └── SimpleParameterValueDialog.xaml.cs │ ├── HtmlExportRibbon.xaml │ ├── HtmlExportRibbon.xaml.cs │ ├── HtmlReport │ ├── HtmlExportRequirementsSpecificationSelectionDialog.xaml │ └── HtmlExportRequirementsSpecificationSelectionDialog.xaml.cs │ ├── ReqIf │ ├── AttributeDefMapCellTemplateSelector.cs │ ├── CategorizableThingCellTemplateSelector.cs │ ├── CategoryCellTemplateSelector.cs │ ├── IsRequirementTextCellTemplateSelector.cs │ ├── ParameterTypeMappingDialog.xaml │ ├── ParameterTypeMappingDialog.xaml.cs │ ├── RelationGroupTypeMappingDialog.xaml │ ├── RelationGroupTypeMappingDialog.xaml.cs │ ├── ReqIfExportDialog.xaml │ ├── ReqIfExportDialog.xaml.cs │ ├── ReqIfImportDialog.xaml │ ├── ReqIfImportDialog.xaml.cs │ ├── RequirementSpecificationMappingDialog.xaml │ ├── RequirementSpecificationMappingDialog.xaml.cs │ ├── RuleCellTemplateSelector.cs │ ├── ScaleCellTemplateSelector.cs │ ├── SpecObjectTypeKindTemplateSelector.cs │ ├── SpecObjectTypesMappingDialog.xaml │ ├── SpecObjectTypesMappingDialog.xaml.cs │ ├── SpecRelationTypeMappingDialog.xaml │ ├── SpecRelationTypeMappingDialog.xaml.cs │ ├── SpecificationTypeMappingDialog.xaml │ └── SpecificationTypeMappingDialog.xaml.cs │ ├── ReqIfRibbon.xaml │ ├── ReqIfRibbon.xaml.cs │ ├── RequirementBrowserRibbon.xaml │ ├── RequirementBrowserRibbon.xaml.cs │ ├── RequirementsBrowser.xaml │ ├── RequirementsBrowser.xaml.cs │ ├── RequirementsRibbon.xaml │ ├── RequirementsRibbon.xaml.cs │ ├── RequirementsSpecificationEditor.xaml │ ├── RequirementsSpecificationEditor.xaml.cs │ └── UserControls │ ├── LoadingControl.xaml │ └── LoadingControl.xaml.cs ├── Sdk.Plugin.target ├── Switcher.json ├── cdp4ime-tests.nunit ├── release.bat └── setreferencecopylocal.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/CodeQuality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/.github/workflows/CodeQuality.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /BasicRdl.Tests/BasicRdl.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl.Tests/BasicRdl.Tests.csproj -------------------------------------------------------------------------------- /BasicRdl.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BasicRdl/BasicRdl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/BasicRdl.csproj -------------------------------------------------------------------------------- /BasicRdl/BasicRdlModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/BasicRdlModule.cs -------------------------------------------------------------------------------- /BasicRdl/OfficeRibbon/BasicRdlRibbonPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/OfficeRibbon/BasicRdlRibbonPart.cs -------------------------------------------------------------------------------- /BasicRdl/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BasicRdl/Resources/RibbonXml/rdlribbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Resources/RibbonXml/rdlribbon.xml -------------------------------------------------------------------------------- /BasicRdl/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Settings.StyleCop -------------------------------------------------------------------------------- /BasicRdl/ViewModels/CategoryBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/CategoryBrowserViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/CategoryRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/CategoryRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/ConstantRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/ConstantRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/ConstantsBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/ConstantsBrowserViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/Dialogs/TermDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/Dialogs/TermDialogViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/FileTypeBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/FileTypeBrowserViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/FileTypeRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/FileTypeRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/GlossaryBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/GlossaryBrowserViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/GlossaryRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/GlossaryRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/MeasurementScaleRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/MeasurementScaleRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/MeasurementUnitRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/MeasurementUnitRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/ParameterTypeRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/ParameterTypeRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/ReferenceSourceRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/ReferenceSourceRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/Ribbons/RulesRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/Ribbons/RulesRibbonViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/RuleRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/RuleRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/RulesBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/RulesBrowserViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/SiteRdlRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/SiteRdlRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/SiteRdlSelectionDialogResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/SiteRdlSelectionDialogResult.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/SiteRdlSessionRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/SiteRdlSessionRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/TermRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/TermRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/UnitPrefixBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/UnitPrefixBrowserViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/ViewModels/UnitPrefixRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/ViewModels/UnitPrefixRowViewModel.cs -------------------------------------------------------------------------------- /BasicRdl/Views/CategoryBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/CategoryBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/CategoryBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/CategoryBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/ConstantsBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/ConstantsBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/ConstantsBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/ConstantsBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/CategoryDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/CategoryDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/CategoryDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/CategoryDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/ConstantDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/ConstantDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/ConstantDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/ConstantDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/CyclicRatioScaleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/CyclicRatioScaleDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/DateParameterTypeDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/DateParameterTypeDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/DecompositionRuleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/DecompositionRuleDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/DerivedUnitDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/DerivedUnitDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/DerivedUnitDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/DerivedUnitDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/FileTypeDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/FileTypeDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/FileTypeDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/FileTypeDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/GlossaryDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/GlossaryDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/GlossaryDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/GlossaryDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/IntervalScaleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/IntervalScaleDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/IntervalScaleDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/IntervalScaleDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/LogarithmicScaleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/LogarithmicScaleDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/OrdinalScaleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/OrdinalScaleDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/OrdinalScaleDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/OrdinalScaleDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/PrefixedUnitDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/PrefixedUnitDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/PrefixedUnitDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/PrefixedUnitDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/RatioScaleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/RatioScaleDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/RatioScaleDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/RatioScaleDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/ReferencerRuleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/ReferencerRuleDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/ReferencerRuleDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/ReferencerRuleDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/SimpleUnitDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/SimpleUnitDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/SimpleUnitDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/SimpleUnitDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/TermDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/TermDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/TermDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/TermDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/TextParameterTypeDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/TextParameterTypeDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/UnitFactorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/UnitFactorDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/UnitFactorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/UnitFactorDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/UnitPrefixDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/UnitPrefixDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Dialogs/UnitPrefixDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Dialogs/UnitPrefixDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/FileTypeBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/FileTypeBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/FileTypeBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/FileTypeBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/GlossaryBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/GlossaryBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/GlossaryBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/GlossaryBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/MeasurementScalesBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/MeasurementScalesBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/MeasurementScalesBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/MeasurementScalesBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/MeasurementUnitsBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/MeasurementUnitsBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/MeasurementUnitsBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/MeasurementUnitsBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/ParameterTypesBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/ParameterTypesBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/ParameterTypesBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/ParameterTypesBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/ReferenceSourceBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/ReferenceSourceBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/ReferenceSourceBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/ReferenceSourceBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/BasicRdlRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/BasicRdlRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/BasicRdlRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/BasicRdlRibbon.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/CategoryRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/CategoryRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/CategoryRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/CategoryRibbon.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/ConstantBrowserRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/ConstantBrowserRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/FileTypeBrowserRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/FileTypeBrowserRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/GlossaryBrowserRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/GlossaryBrowserRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/MeasurementScalesRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/MeasurementScalesRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/MeasurementUnitsRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/MeasurementUnitsRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/ParameterTypeRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/ParameterTypeRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/ParameterTypeRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/ParameterTypeRibbon.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/ReferenceSourceRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/ReferenceSourceRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/RulesRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/RulesRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/RulesRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/RulesRibbon.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/SiteRdlSelectionRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/SiteRdlSelectionRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/UnitPrefixRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/UnitPrefixRibbon.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/Ribbons/UnitPrefixRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/Ribbons/UnitPrefixRibbon.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/RulesBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/RulesBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/RulesBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/RulesBrowser.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/SiteRdlClosingDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/SiteRdlClosingDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/SiteRdlClosingDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/SiteRdlClosingDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/SiteRdlOpeningDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/SiteRdlOpeningDialog.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/SiteRdlOpeningDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/SiteRdlOpeningDialog.xaml.cs -------------------------------------------------------------------------------- /BasicRdl/Views/UnitPrefixBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/UnitPrefixBrowser.xaml -------------------------------------------------------------------------------- /BasicRdl/Views/UnitPrefixBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/BasicRdl/Views/UnitPrefixBrowser.xaml.cs -------------------------------------------------------------------------------- /CDP4-CE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4-CE.sln -------------------------------------------------------------------------------- /CDP4-CE.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4-CE.sln.DotSettings -------------------------------------------------------------------------------- /CDP4Addin.Tests/AddinTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin.Tests/AddinTestFixture.cs -------------------------------------------------------------------------------- /CDP4Addin.Tests/CDP4Addin.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin.Tests/CDP4Addin.Tests.csproj -------------------------------------------------------------------------------- /CDP4Addin.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Addin.Tests/Utils/StringExtensionTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin.Tests/Utils/StringExtensionTestFixture.cs -------------------------------------------------------------------------------- /CDP4Addin/Addin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Addin.cs -------------------------------------------------------------------------------- /CDP4Addin/CDP4Addin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/CDP4Addin.csproj -------------------------------------------------------------------------------- /CDP4Addin/CDP4AddinBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/CDP4AddinBootstrapper.cs -------------------------------------------------------------------------------- /CDP4Addin/NLog.dll.nlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/NLog.dll.nlog -------------------------------------------------------------------------------- /CDP4Addin/OfficeRibbon/AddinRibbonPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/OfficeRibbon/AddinRibbonPart.cs -------------------------------------------------------------------------------- /CDP4Addin/OfficeRibbon/FluentRibbonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/OfficeRibbon/FluentRibbonManager.cs -------------------------------------------------------------------------------- /CDP4Addin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Addin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CDP4Addin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Properties/Resources.resx -------------------------------------------------------------------------------- /CDP4Addin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CDP4Addin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Properties/Settings.settings -------------------------------------------------------------------------------- /CDP4Addin/Resources/RibbonXml/addinribbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Resources/RibbonXml/addinribbon.xml -------------------------------------------------------------------------------- /CDP4Addin/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4Addin/Settings/AddinAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Settings/AddinAppSettings.cs -------------------------------------------------------------------------------- /CDP4Addin/Settings/AddinAppSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Settings/AddinAppSettingsService.cs -------------------------------------------------------------------------------- /CDP4Addin/TaskPaneWpfHostControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/TaskPaneWpfHostControl.Designer.cs -------------------------------------------------------------------------------- /CDP4Addin/TaskPaneWpfHostControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/TaskPaneWpfHostControl.cs -------------------------------------------------------------------------------- /CDP4Addin/TaskPaneWpfHostControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/TaskPaneWpfHostControl.resx -------------------------------------------------------------------------------- /CDP4Addin/Utils/IdentifiableCustomTaskPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Utils/IdentifiableCustomTaskPane.cs -------------------------------------------------------------------------------- /CDP4Addin/Utils/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Addin/Utils/StringExtension.cs -------------------------------------------------------------------------------- /CDP4Budget.Tests/BudgetTestFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Budget.Tests/BudgetTestFixtureBase.cs -------------------------------------------------------------------------------- /CDP4Budget.Tests/CDP4Budget.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Budget.Tests/CDP4Budget.Tests.csproj -------------------------------------------------------------------------------- /CDP4Budget.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Budget.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/CDP4Budget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/CDP4Budget.csproj -------------------------------------------------------------------------------- /CDP4BudgetViewer/CDP4BudgetModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/CDP4BudgetModule.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Config/BudgetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Config/BudgetConfig.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Config/BudgetKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Config/BudgetKind.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Config/SubSystemDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Config/SubSystemDefinition.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/ConfigFile/BudgetConfigDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/ConfigFile/BudgetConfigDto.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/ConfigFile/ExtraContributionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/ConfigFile/ExtraContributionDto.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/ConfigFile/ParameterConfigDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/ConfigFile/ParameterConfigDto.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Services/BudgetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Services/BudgetGenerator.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Services/ExtraContribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Services/ExtraContribution.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Services/GenericBudgetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Services/GenericBudgetGenerator.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Services/ISubSystemBudgetResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Services/ISubSystemBudgetResult.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Services/MassBudgetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Services/MassBudgetGenerator.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Services/SubSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Services/SubSystem.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Services/SubSystemBudgetResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Services/SubSystemBudgetResult.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Utils.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/ViewModels/SystemLevelKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/ViewModels/SystemLevelKind.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Views/BudgetConfig.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Views/BudgetConfig.xaml -------------------------------------------------------------------------------- /CDP4BudgetViewer/Views/BudgetConfig.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Views/BudgetConfig.xaml.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Views/BudgetRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Views/BudgetRibbon.xaml -------------------------------------------------------------------------------- /CDP4BudgetViewer/Views/BudgetRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Views/BudgetRibbon.xaml.cs -------------------------------------------------------------------------------- /CDP4BudgetViewer/Views/BudgetViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Views/BudgetViewer.xaml -------------------------------------------------------------------------------- /CDP4BudgetViewer/Views/BudgetViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BudgetViewer/Views/BudgetViewer.xaml.cs -------------------------------------------------------------------------------- /CDP4BuiltInRules.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4BuiltInRules/CDP4BuiltInRules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/CDP4BuiltInRules.csproj -------------------------------------------------------------------------------- /CDP4BuiltInRules/CDP4BuiltInRulesModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/CDP4BuiltInRulesModule.cs -------------------------------------------------------------------------------- /CDP4BuiltInRules/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4BuiltInRules/ViewModels/ErrorRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/ViewModels/ErrorRowViewModel.cs -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/BuiltInRuleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/BuiltInRuleDialog.xaml -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/BuiltInRuleDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/BuiltInRuleDialog.xaml.cs -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/BuiltInRulesBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/BuiltInRulesBrowser.xaml -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/BuiltInRulesBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/BuiltInRulesBrowser.xaml.cs -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/BuiltInRulesRibbonPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/BuiltInRulesRibbonPage.xaml -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/ErrorBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/ErrorBrowser.xaml -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/ErrorBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/ErrorBrowser.xaml.cs -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/ErrorBrowserRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/ErrorBrowserRibbon.xaml -------------------------------------------------------------------------------- /CDP4BuiltInRules/Views/ErrorBrowserRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4BuiltInRules/Views/ErrorBrowserRibbon.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition.Tests/CDP4Composition.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition.Tests/CDP4Composition.Tests.csproj -------------------------------------------------------------------------------- /CDP4Composition.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Composition.Tests/SpellingChecker/en_US.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition.Tests/SpellingChecker/en_US.aff -------------------------------------------------------------------------------- /CDP4Composition.Tests/SpellingChecker/en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition.Tests/SpellingChecker/en_US.dic -------------------------------------------------------------------------------- /CDP4Composition/Attributes/IClassKindMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Attributes/IClassKindMetaData.cs -------------------------------------------------------------------------------- /CDP4Composition/Attributes/IDescribeMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Attributes/IDescribeMetaData.cs -------------------------------------------------------------------------------- /CDP4Composition/Builders/CategoryStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Builders/CategoryStringBuilder.cs -------------------------------------------------------------------------------- /CDP4Composition/CDP4Composition.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/CDP4Composition.csproj -------------------------------------------------------------------------------- /CDP4Composition/CommonView/ViewUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/CommonView/ViewUtils.cs -------------------------------------------------------------------------------- /CDP4Composition/CommonView/Views/AliasDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/CommonView/Views/AliasDialog.xaml -------------------------------------------------------------------------------- /CDP4Composition/CommonView/Views/OkDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/CommonView/Views/OkDialog.xaml -------------------------------------------------------------------------------- /CDP4Composition/CommonView/Views/OkDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/CommonView/Views/OkDialog.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/CommonView/Views/YesNoDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/CommonView/Views/YesNoDialog.xaml -------------------------------------------------------------------------------- /CDP4Composition/Composition/COMETBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Composition/COMETBootstrapper.cs -------------------------------------------------------------------------------- /CDP4Composition/Composition/MefServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Composition/MefServiceLocator.cs -------------------------------------------------------------------------------- /CDP4Composition/CompositionPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/CompositionPoints.cs -------------------------------------------------------------------------------- /CDP4Composition/Converters/CategoryListConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Converters/CategoryListConverter.cs -------------------------------------------------------------------------------- /CDP4Composition/Converters/NotConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Converters/NotConverter.cs -------------------------------------------------------------------------------- /CDP4Composition/Converters/PanelViewConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Converters/PanelViewConverter.cs -------------------------------------------------------------------------------- /CDP4Composition/Diagram/IDiagramContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Diagram/IDiagramContainer.cs -------------------------------------------------------------------------------- /CDP4Composition/Diagram/IDiagramContentItemChild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Diagram/IDiagramContentItemChild.cs -------------------------------------------------------------------------------- /CDP4Composition/Diagram/IDiagramEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Diagram/IDiagramEditorViewModel.cs -------------------------------------------------------------------------------- /CDP4Composition/Diagram/IIDropTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Diagram/IIDropTarget.cs -------------------------------------------------------------------------------- /CDP4Composition/Diagram/IThingDiagramItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Diagram/IThingDiagramItem.cs -------------------------------------------------------------------------------- /CDP4Composition/Diagram/ThingDiagramConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Diagram/ThingDiagramConnector.cs -------------------------------------------------------------------------------- /CDP4Composition/Diagram/ThingDiagramContentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Diagram/ThingDiagramContentItem.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/Constants.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/DragInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/DragInfo.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/DropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/DropInfo.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/IDragInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/IDragInfo.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/IDragSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/IDragSource.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/IDropInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/IDropInfo.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/IDropTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/IDropTarget.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/SelectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/SelectionHelper.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/TreeListViewDragDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/TreeListViewDragDrop.cs -------------------------------------------------------------------------------- /CDP4Composition/DragDrop/VisualTreeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/DragDrop/VisualTreeExtensions.cs -------------------------------------------------------------------------------- /CDP4Composition/Events/ApplyFilterEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Events/ApplyFilterEvent.cs -------------------------------------------------------------------------------- /CDP4Composition/Events/CancelHighlightEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Events/CancelHighlightEvent.cs -------------------------------------------------------------------------------- /CDP4Composition/Events/HighlightByCategoryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Events/HighlightByCategoryEvent.cs -------------------------------------------------------------------------------- /CDP4Composition/Events/HighlightEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Events/HighlightEvent.cs -------------------------------------------------------------------------------- /CDP4Composition/Events/IsBusyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Events/IsBusyEvent.cs -------------------------------------------------------------------------------- /CDP4Composition/Events/TaskbarNotificationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Events/TaskbarNotificationEvent.cs -------------------------------------------------------------------------------- /CDP4Composition/Events/ToggleTooltipEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Events/ToggleTooltipEvent.cs -------------------------------------------------------------------------------- /CDP4Composition/Exceptions/AppSettingsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Exceptions/AppSettingsException.cs -------------------------------------------------------------------------------- /CDP4Composition/Exceptions/SettingsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Exceptions/SettingsException.cs -------------------------------------------------------------------------------- /CDP4Composition/Extensions/DalExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Extensions/DalExtensionMethods.cs -------------------------------------------------------------------------------- /CDP4Composition/Extensions/FileExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Extensions/FileExtensionMethods.cs -------------------------------------------------------------------------------- /CDP4Composition/Extensions/ISessionCreationHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Extensions/ISessionCreationHook.cs -------------------------------------------------------------------------------- /CDP4Composition/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /CDP4Composition/FolderRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/FolderRowViewModel.cs -------------------------------------------------------------------------------- /CDP4Composition/LayoutGroupNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/LayoutGroupNames.cs -------------------------------------------------------------------------------- /CDP4Composition/Log/CDP4SimpleConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Log/CDP4SimpleConfigurator.cs -------------------------------------------------------------------------------- /CDP4Composition/Log/MemoryEventTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Log/MemoryEventTarget.cs -------------------------------------------------------------------------------- /CDP4Composition/MessageBus/MessageBusHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/MessageBus/MessageBusHandler.cs -------------------------------------------------------------------------------- /CDP4Composition/Modularity/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Modularity/IModule.cs -------------------------------------------------------------------------------- /CDP4Composition/Modularity/IModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Modularity/IModuleInitializer.cs -------------------------------------------------------------------------------- /CDP4Composition/Modularity/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Modularity/Manifest.cs -------------------------------------------------------------------------------- /CDP4Composition/Modularity/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Modularity/ModuleInitializer.cs -------------------------------------------------------------------------------- /CDP4Composition/Modularity/PluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Modularity/PluginLoader.cs -------------------------------------------------------------------------------- /CDP4Composition/Modularity/PluginUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Modularity/PluginUtilities.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/Behaviours/CellEditBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/Behaviours/CellEditBehavior.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/Behaviours/DialogCloser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/Behaviours/DialogCloser.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/BrowserViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/BrowserViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/CDPVersionQuerier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/CDPVersionQuerier.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/DiagramItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/DiagramItemViewModel.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/DialogViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/DialogViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/FloatingDialogViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/FloatingDialogViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IBrowserViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IBrowserViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IDialogViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IDialogViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IHaveContainedModelCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IHaveContainedModelCodes.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IHaveContainedRows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IHaveContainedRows.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IHaveContainerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IHaveContainerViewModel.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IHaveModelCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IHaveModelCode.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IHavePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IHavePath.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IHaveThingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IHaveThingStatus.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IOwnedThingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IOwnedThingViewModel.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IRowViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IRowViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IView.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/IViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/IViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/MenuItems/MenuItemKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/MenuItems/MenuItemKind.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/RowStatusKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/RowStatusKind.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/RowViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/RowViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/ThingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/ThingStatus.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/Types/ReactiveList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/Types/ReactiveList.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/Types/TrackedReactiveList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/Types/TrackedReactiveList.cs -------------------------------------------------------------------------------- /CDP4Composition/Mvvm/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Mvvm/ViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Navigation/BaseDialogResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Navigation/BaseDialogResult.cs -------------------------------------------------------------------------------- /CDP4Composition/Navigation/DialogViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Navigation/DialogViewModelBase.cs -------------------------------------------------------------------------------- /CDP4Composition/Navigation/Events/HidePanelEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Navigation/Events/HidePanelEvent.cs -------------------------------------------------------------------------------- /CDP4Composition/Navigation/Interfaces/IPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Navigation/Interfaces/IPanelView.cs -------------------------------------------------------------------------------- /CDP4Composition/Navigation/ThingDialogKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Navigation/ThingDialogKind.cs -------------------------------------------------------------------------------- /CDP4Composition/OfficeRibbon/FluentRibbonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/OfficeRibbon/FluentRibbonManager.cs -------------------------------------------------------------------------------- /CDP4Composition/OfficeRibbon/RibbonPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/OfficeRibbon/RibbonPart.cs -------------------------------------------------------------------------------- /CDP4Composition/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Composition/RegionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/RegionNames.cs -------------------------------------------------------------------------------- /CDP4Composition/Resources/Dictionaries/en_GB.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Dictionaries/en_GB.aff -------------------------------------------------------------------------------- /CDP4Composition/Resources/Dictionaries/en_GB.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Dictionaries/en_GB.dic -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Apply_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Apply_16x16.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Cancel_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Cancel_16x16.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Help_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Help_128x128.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/IconLicence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/IconLicence.txt -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Info_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Info_128x128.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Log/Info_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Log/Info_16x16.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Log/link_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Log/link_16x16.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Log/link_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Log/link_32x32.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Thing/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Thing/Book.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/Thing/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/Thing/lock.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/blueball.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/blueball.gif -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/comet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/comet.ico -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/cometlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/cometlogo.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/domain_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/domain_switch.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/export_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/export_32x32.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/hidden_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/hidden_16x16.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/import_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/import_32x32.png -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/orangeball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/orangeball.jpg -------------------------------------------------------------------------------- /CDP4Composition/Resources/Images/whiteball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/Images/whiteball.jpg -------------------------------------------------------------------------------- /CDP4Composition/Resources/RibbonXml/customui14.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Resources/RibbonXml/customui14.xsd -------------------------------------------------------------------------------- /CDP4Composition/Ribbon/ExtendedRibbonPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Ribbon/ExtendedRibbonPage.cs -------------------------------------------------------------------------------- /CDP4Composition/Ribbon/ExtendedRibbonPageGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Ribbon/ExtendedRibbonPageGroup.cs -------------------------------------------------------------------------------- /CDP4Composition/Ribbon/IRibbonContentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Ribbon/IRibbonContentBuilder.cs -------------------------------------------------------------------------------- /CDP4Composition/Ribbon/RibbonContentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Ribbon/RibbonContentBuilder.cs -------------------------------------------------------------------------------- /CDP4Composition/Services/GridUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Services/GridUpdateService.cs -------------------------------------------------------------------------------- /CDP4Composition/Services/IImeValidationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Services/IImeValidationService.cs -------------------------------------------------------------------------------- /CDP4Composition/Services/IThingCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Services/IThingCreator.cs -------------------------------------------------------------------------------- /CDP4Composition/Services/ImeValidationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Services/ImeValidationService.cs -------------------------------------------------------------------------------- /CDP4Composition/Services/ThingCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Services/ThingCreator.cs -------------------------------------------------------------------------------- /CDP4Composition/Services/TooltipService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Services/TooltipService.cs -------------------------------------------------------------------------------- /CDP4Composition/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4Composition/Settings/ShellAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Settings/ShellAppSettings.cs -------------------------------------------------------------------------------- /CDP4Composition/SpecialTerms/SpecialTermsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/SpecialTerms/SpecialTermsService.cs -------------------------------------------------------------------------------- /CDP4Composition/StaticPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/StaticPanelViewModel.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/AppliedTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/AppliedTheme.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/CDP4ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/CDP4ColorExtensions.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/Cdp4Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/Cdp4Color.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/CultureInfoUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/CultureInfoUtility.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/IconUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/IconUtilities.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/LockProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/LockProvider.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/LockType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/LockType.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/UriConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/UriConfig.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/UriConfigFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/UriConfigFileHandler.cs -------------------------------------------------------------------------------- /CDP4Composition/Utilities/ValueSetKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Utilities/ValueSetKind.cs -------------------------------------------------------------------------------- /CDP4Composition/ViewModels/DockLayoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/ViewModels/DockLayoutViewModel.cs -------------------------------------------------------------------------------- /CDP4Composition/ViewModels/IValueSetRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/ViewModels/IValueSetRow.cs -------------------------------------------------------------------------------- /CDP4Composition/ViewModels/MessageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/ViewModels/MessageHelper.cs -------------------------------------------------------------------------------- /CDP4Composition/ViewModels/ProcessedValueSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/ViewModels/ProcessedValueSet.cs -------------------------------------------------------------------------------- /CDP4Composition/ViewModels/ValueSetValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/ViewModels/ValueSetValues.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/BrowserHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/BrowserHeader.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/BrowserHeader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/BrowserHeader.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/CommonThingControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/CommonThingControl.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/CommonThingControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/CommonThingControl.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/ConfirmationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/ConfirmationDialog.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/ConfirmationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/ConfirmationDialog.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/CustomFilterEditorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/CustomFilterEditorDialog.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/InformationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/InformationDialog.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/InformationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/InformationDialog.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/LoadingControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/LoadingControl.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/LoadingControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/LoadingControl.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/LoadingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/LoadingView.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/LoadingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/LoadingView.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/SavedConfigurationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/SavedConfigurationDialog.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/SessionHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/SessionHeader.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/SessionHeader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/SessionHeader.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/SubmitConfirmation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/SubmitConfirmation.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/SubmitConfirmation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/SubmitConfirmation.xaml.cs -------------------------------------------------------------------------------- /CDP4Composition/Views/ThingSelectorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/ThingSelectorDialog.xaml -------------------------------------------------------------------------------- /CDP4Composition/Views/ThingSelectorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Composition/Views/ThingSelectorDialog.xaml.cs -------------------------------------------------------------------------------- /CDP4CrossViewEditor.Tests/TestData/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4CrossViewEditor.Tests/TestData/test.xlsx -------------------------------------------------------------------------------- /CDP4CrossViewEditor/CDP4CrossViewEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4CrossViewEditor/CDP4CrossViewEditor.csproj -------------------------------------------------------------------------------- /CDP4CrossViewEditor/CrossViewEditorModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4CrossViewEditor/CrossViewEditorModule.cs -------------------------------------------------------------------------------- /CDP4CrossViewEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4CrossViewEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4CrossViewEditor/Views/CrossViewDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4CrossViewEditor/Views/CrossViewDialog.xaml -------------------------------------------------------------------------------- /CDP4CrossViewEditor/Views/CrossViewDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4CrossViewEditor/Views/CrossViewDialog.xaml.cs -------------------------------------------------------------------------------- /CDP4CrossViewEditor/WorkbookOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4CrossViewEditor/WorkbookOperator.cs -------------------------------------------------------------------------------- /CDP4Dashboard.Tests/CDP4Dashboard.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard.Tests/CDP4Dashboard.Tests.csproj -------------------------------------------------------------------------------- /CDP4Dashboard.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Dashboard.Tests/ViewModels/DummyFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard.Tests/ViewModels/DummyFixture.cs -------------------------------------------------------------------------------- /CDP4Dashboard/CDP4Dashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/CDP4Dashboard.csproj -------------------------------------------------------------------------------- /CDP4Dashboard/CDP4DashboardModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/CDP4DashboardModule.cs -------------------------------------------------------------------------------- /CDP4Dashboard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Dashboard/ViewModels/Charts/IExportData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/ViewModels/Charts/IExportData.cs -------------------------------------------------------------------------------- /CDP4Dashboard/ViewModels/Charts/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/ViewModels/Charts/Line.cs -------------------------------------------------------------------------------- /CDP4Dashboard/ViewModels/Charts/LineSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/ViewModels/Charts/LineSeries.cs -------------------------------------------------------------------------------- /CDP4Dashboard/ViewModels/Widget/Base/WidgetBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/ViewModels/Widget/Base/WidgetBase.cs -------------------------------------------------------------------------------- /CDP4Dashboard/ViewModels/Widget/WidgetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/ViewModels/Widget/WidgetData.cs -------------------------------------------------------------------------------- /CDP4Dashboard/Views/DashboardBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Views/DashboardBrowser.xaml -------------------------------------------------------------------------------- /CDP4Dashboard/Views/DashboardBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Views/DashboardBrowser.xaml.cs -------------------------------------------------------------------------------- /CDP4Dashboard/Views/DashboardBrowserRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Views/DashboardBrowserRibbon.xaml -------------------------------------------------------------------------------- /CDP4Dashboard/Views/DashboardBrowserRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Views/DashboardBrowserRibbon.xaml.cs -------------------------------------------------------------------------------- /CDP4Dashboard/Views/DashboardRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Views/DashboardRibbon.xaml -------------------------------------------------------------------------------- /CDP4Dashboard/Views/DashboardRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Views/DashboardRibbon.xaml.cs -------------------------------------------------------------------------------- /CDP4Dashboard/Views/Widget/DummyParameterView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Views/Widget/DummyParameterView.xaml -------------------------------------------------------------------------------- /CDP4Dashboard/Views/Widget/SizeObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/Views/Widget/SizeObserver.cs -------------------------------------------------------------------------------- /CDP4Dashboard/output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Dashboard/output.xml -------------------------------------------------------------------------------- /CDP4DiagramEditor.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4DiagramEditor/CDP4DiagramEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/CDP4DiagramEditor.csproj -------------------------------------------------------------------------------- /CDP4DiagramEditor/DiagramEditorModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/DiagramEditorModule.cs -------------------------------------------------------------------------------- /CDP4DiagramEditor/Helpers/ClassKindConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Helpers/ClassKindConverter.cs -------------------------------------------------------------------------------- /CDP4DiagramEditor/Helpers/MoveGroupAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Helpers/MoveGroupAction.cs -------------------------------------------------------------------------------- /CDP4DiagramEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4DiagramEditor/Views/DiagramBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Views/DiagramBrowser.xaml -------------------------------------------------------------------------------- /CDP4DiagramEditor/Views/DiagramBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Views/DiagramBrowser.xaml.cs -------------------------------------------------------------------------------- /CDP4DiagramEditor/Views/DiagramDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Views/DiagramDialog.xaml -------------------------------------------------------------------------------- /CDP4DiagramEditor/Views/DiagramDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Views/DiagramDialog.xaml.cs -------------------------------------------------------------------------------- /CDP4DiagramEditor/Views/DiagramEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Views/DiagramEditor.xaml -------------------------------------------------------------------------------- /CDP4DiagramEditor/Views/DiagramEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Views/DiagramEditor.xaml.cs -------------------------------------------------------------------------------- /CDP4DiagramEditor/Views/DiagramEditorRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Views/DiagramEditorRibbon.xaml -------------------------------------------------------------------------------- /CDP4DiagramEditor/Views/DiagramEditorRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4DiagramEditor/Views/DiagramEditorRibbon.xaml.cs -------------------------------------------------------------------------------- /CDP4Grapher.Tests/CDP4Grapher.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher.Tests/CDP4Grapher.Tests.csproj -------------------------------------------------------------------------------- /CDP4Grapher.Tests/Data/GrapherBaseTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher.Tests/Data/GrapherBaseTestData.cs -------------------------------------------------------------------------------- /CDP4Grapher.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Grapher/Behaviors/GrapherOrgChartBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Behaviors/GrapherOrgChartBehavior.cs -------------------------------------------------------------------------------- /CDP4Grapher/Behaviors/IGrapherOrgChartBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Behaviors/IGrapherOrgChartBehavior.cs -------------------------------------------------------------------------------- /CDP4Grapher/CDP4Grapher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/CDP4Grapher.csproj -------------------------------------------------------------------------------- /CDP4Grapher/GrapherModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/GrapherModule.cs -------------------------------------------------------------------------------- /CDP4Grapher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Grapher/Utilities/LayoutEnumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Utilities/LayoutEnumeration.cs -------------------------------------------------------------------------------- /CDP4Grapher/Utilities/SvgHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Utilities/SvgHelper.cs -------------------------------------------------------------------------------- /CDP4Grapher/ViewModels/GraphElementViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/ViewModels/GraphElementViewModel.cs -------------------------------------------------------------------------------- /CDP4Grapher/ViewModels/GrapherRibbonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/ViewModels/GrapherRibbonViewModel.cs -------------------------------------------------------------------------------- /CDP4Grapher/ViewModels/GrapherViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/ViewModels/GrapherViewModel.cs -------------------------------------------------------------------------------- /CDP4Grapher/ViewModels/IGrapherViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/ViewModels/IGrapherViewModel.cs -------------------------------------------------------------------------------- /CDP4Grapher/ViewModels/IHaveContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/ViewModels/IHaveContextMenu.cs -------------------------------------------------------------------------------- /CDP4Grapher/Views/Grapher.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Views/Grapher.xaml -------------------------------------------------------------------------------- /CDP4Grapher/Views/Grapher.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Views/Grapher.xaml.cs -------------------------------------------------------------------------------- /CDP4Grapher/Views/GrapherDiagramControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Views/GrapherDiagramControl.xaml -------------------------------------------------------------------------------- /CDP4Grapher/Views/GrapherDiagramControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Views/GrapherDiagramControl.xaml.cs -------------------------------------------------------------------------------- /CDP4Grapher/Views/GrapherRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Views/GrapherRibbon.xaml -------------------------------------------------------------------------------- /CDP4Grapher/Views/GrapherRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Grapher/Views/GrapherRibbon.xaml.cs -------------------------------------------------------------------------------- /CDP4IME.Tests/COMET-CE.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME.Tests/COMET-CE.Tests.csproj -------------------------------------------------------------------------------- /CDP4IME.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4IME.Tests/ShellViewModelTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME.Tests/ShellViewModelTestFixture.cs -------------------------------------------------------------------------------- /CDP4IME.Tests/Test.txt: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /CDP4IME.Tests/TextDataProviderTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME.Tests/TextDataProviderTestFixture.cs -------------------------------------------------------------------------------- /CDP4IME/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/App.config -------------------------------------------------------------------------------- /CDP4IME/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/App.xaml -------------------------------------------------------------------------------- /CDP4IME/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/App.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/Behaviors/DockOperationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Behaviors/DockOperationBehavior.cs -------------------------------------------------------------------------------- /CDP4IME/CDP4IMEBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/CDP4IMEBootstrapper.cs -------------------------------------------------------------------------------- /CDP4IME/COMET-CE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/COMET-CE.csproj -------------------------------------------------------------------------------- /CDP4IME/Icons/PrepareProcess.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Icons/PrepareProcess.ico -------------------------------------------------------------------------------- /CDP4IME/Icons/user.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Icons/user.ico -------------------------------------------------------------------------------- /CDP4IME/Icons/users.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Icons/users.ico -------------------------------------------------------------------------------- /CDP4IME/Modularity/UpdateInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Modularity/UpdateInstaller.cs -------------------------------------------------------------------------------- /CDP4IME/NLog.dll.nlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/NLog.dll.nlog -------------------------------------------------------------------------------- /CDP4IME/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4IME/Services/IProcessRunnerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Services/IProcessRunnerService.cs -------------------------------------------------------------------------------- /CDP4IME/Services/IUpdateFileSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Services/IUpdateFileSystemService.cs -------------------------------------------------------------------------------- /CDP4IME/Services/IViewInvokerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Services/IViewInvokerService.cs -------------------------------------------------------------------------------- /CDP4IME/Services/ProcessRunnerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Services/ProcessRunnerService.cs -------------------------------------------------------------------------------- /CDP4IME/Services/UpdateFileSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Services/UpdateFileSystemService.cs -------------------------------------------------------------------------------- /CDP4IME/Services/ViewInvokerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Services/ViewInvokerService.cs -------------------------------------------------------------------------------- /CDP4IME/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4IME/Settings/ImeAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Settings/ImeAppSettings.cs -------------------------------------------------------------------------------- /CDP4IME/Settings/ImeAppSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Settings/ImeAppSettingsService.cs -------------------------------------------------------------------------------- /CDP4IME/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Shell.xaml -------------------------------------------------------------------------------- /CDP4IME/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Shell.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ShellViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/DataSourceExportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/DataSourceExportViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/IImeRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/IImeRowViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/IPluginRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/IPluginRowViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/IUpdatableThingRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/IUpdatableThingRowViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/ImeRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/ImeRowViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/LogDetailsRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/LogDetailsRowViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/LogDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/LogDetailsViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/PluginRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/PluginRowViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/ViewModels/SessionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/ViewModels/SessionViewModel.cs -------------------------------------------------------------------------------- /CDP4IME/Views/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/About.xaml -------------------------------------------------------------------------------- /CDP4IME/Views/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/About.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/Views/DataSourceExport.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/DataSourceExport.xaml -------------------------------------------------------------------------------- /CDP4IME/Views/DataSourceExport.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/DataSourceExport.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/Views/ImeRow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/ImeRow.xaml -------------------------------------------------------------------------------- /CDP4IME/Views/ImeRow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/ImeRow.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/Views/LogDetails.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/LogDetails.xaml -------------------------------------------------------------------------------- /CDP4IME/Views/LogDetails.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/LogDetails.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/Views/PluginRow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/PluginRow.xaml -------------------------------------------------------------------------------- /CDP4IME/Views/PluginRow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/PluginRow.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/Views/SplashScreenView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/SplashScreenView.xaml -------------------------------------------------------------------------------- /CDP4IME/Views/SplashScreenView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/SplashScreenView.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/Views/TextDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/TextDataProvider.cs -------------------------------------------------------------------------------- /CDP4IME/Views/UpdateDownloaderInstaller.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/UpdateDownloaderInstaller.xaml -------------------------------------------------------------------------------- /CDP4IME/Views/UpdateDownloaderInstaller.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/Views/UpdateDownloaderInstaller.xaml.cs -------------------------------------------------------------------------------- /CDP4IME/comet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/comet.ico -------------------------------------------------------------------------------- /CDP4IME/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/license.rtf -------------------------------------------------------------------------------- /CDP4IME/markdown.xaml License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IME/markdown.xaml License.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller.Tests/DevExpress.wxs.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller.Tests/DevExpress.wxs.liquid -------------------------------------------------------------------------------- /CDP4IMEInstaller.Tests/KnownAssembliesClassDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller.Tests/KnownAssembliesClassDrop.cs -------------------------------------------------------------------------------- /CDP4IMEInstaller.Tests/RichTextStripper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller.Tests/RichTextStripper.cs -------------------------------------------------------------------------------- /CDP4IMEInstaller.Tests/WxsObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller.Tests/WxsObject.cs -------------------------------------------------------------------------------- /CDP4IMEInstaller/BasicRDLPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/BasicRDLPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4Addin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4Addin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4Budget.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4Budget.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4BuiltInRules.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4BuiltInRules.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4CrossviewEditor.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4CrossviewEditor.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4Dashboard.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4Dashboard.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4Grapher.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4Grapher.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4IME.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4IME.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4IMEInstaller.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4IMEInstaller.wixproj -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4JsonFileDalPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4JsonFileDalPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4LogInfoPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4LogInfoPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4ObjectBrowserPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4ObjectBrowserPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4PropertyGridPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4PropertyGridPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4ReferenceDataMapper.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4ReferenceDataMapper.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4RelationshipEditor.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4RelationshipEditor.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4RelationshipMatrix.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4RelationshipMatrix.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4Reporting.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4Reporting.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4Scripting.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4Scripting.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4ServicesDal.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4ServicesDal.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CDP4SiteDirectoryPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CDP4SiteDirectoryPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/CefRuntime.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/CefRuntime.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/Dependencies.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/Dependencies.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/DevExpress.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/DevExpress.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/Directories.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/Directories.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/EngineeringModelPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/EngineeringModelPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/ParameterSheetGeneratorPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ParameterSheetGeneratorPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/Plugins.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/Plugins.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/Product.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/ProductTreePlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ProductTreePlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/RequirementsPlugin.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/RequirementsPlugin.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/Resources.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/Resources.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/Shortcuts.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/Shortcuts.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/AvalonEdit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/AvalonEdit.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/CDP4Dal-CE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/CDP4Dal-CE.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/CastleCore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/CastleCore.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/ClosedXML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/ClosedXML.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/CsvHelper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/CsvHelper.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/DynamicData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/DynamicData.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/IronPython.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/IronPython.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/NLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/NLog.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/NetOfficeFw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/NetOfficeFw.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/ReqIFSharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/ReqIFSharp.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/SharpZipLib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/SharpZipLib.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/Splat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/Splat.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/dotliquid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/dotliquid.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/ThirdPartyLicense/reactiveui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/ThirdPartyLicense/reactiveui.txt -------------------------------------------------------------------------------- /CDP4IMEInstaller/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/background.bmp -------------------------------------------------------------------------------- /CDP4IMEInstaller/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/banner.bmp -------------------------------------------------------------------------------- /CDP4IMEInstaller/comet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/comet.ico -------------------------------------------------------------------------------- /CDP4IMEInstaller/thirdpartylicenses.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/thirdpartylicenses.wxs -------------------------------------------------------------------------------- /CDP4IMEInstaller/variables.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4IMEInstaller/variables.wxi -------------------------------------------------------------------------------- /CDP4JsonFileDal/CDP4JsonFileDal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4JsonFileDal/CDP4JsonFileDal.csproj -------------------------------------------------------------------------------- /CDP4JsonFileDal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4JsonFileDal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4LogInfo.Tests/CDP4LogInfo.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo.Tests/CDP4LogInfo.Tests.csproj -------------------------------------------------------------------------------- /CDP4LogInfo.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4LogInfo/CDP4LogInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/CDP4LogInfo.csproj -------------------------------------------------------------------------------- /CDP4LogInfo/LogInfoModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/LogInfoModule.cs -------------------------------------------------------------------------------- /CDP4LogInfo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4LogInfo/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4LogInfo/Views/Dialogs/LogItemDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Views/Dialogs/LogItemDialog.xaml -------------------------------------------------------------------------------- /CDP4LogInfo/Views/Dialogs/LogItemDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Views/Dialogs/LogItemDialog.xaml.cs -------------------------------------------------------------------------------- /CDP4LogInfo/Views/LogInfoControls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Views/LogInfoControls.xaml -------------------------------------------------------------------------------- /CDP4LogInfo/Views/LogInfoControls.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Views/LogInfoControls.xaml.cs -------------------------------------------------------------------------------- /CDP4LogInfo/Views/LogInfoPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Views/LogInfoPanel.xaml -------------------------------------------------------------------------------- /CDP4LogInfo/Views/LogInfoPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Views/LogInfoPanel.xaml.cs -------------------------------------------------------------------------------- /CDP4LogInfo/Views/LogLevelImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4LogInfo/Views/LogLevelImageConverter.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/ActionItemRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/ActionItemRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/AliasRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/AliasRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/ApprovalRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/ApprovalRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/BinaryNoteRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/BinaryNoteRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/BookRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/BookRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/BoundsRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/BoundsRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/CategoryRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/CategoryRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/CitationRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/CitationRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/ColorRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/ColorRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/ConstantRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/ConstantRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/DefinitionRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/DefinitionRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/FileRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/FileRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/FileStoreRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/FileStoreRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/FileTypeRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/FileTypeRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/FolderRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/FolderRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/GlossaryRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/GlossaryRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/GoalRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/GoalRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/HyperLinkRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/HyperLinkRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/NoteRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/NoteRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/ObjectBrowserRowViewTemplate.txt4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/OptionRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/OptionRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/PageRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/PageRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/PersonRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/PersonRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/PointRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/PointRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/RuleRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/RuleRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/SectionRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/SectionRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/AutoGen/TermRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/AutoGen/TermRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/CDP4ObjectBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/CDP4ObjectBrowser.csproj -------------------------------------------------------------------------------- /CDP4ObjectBrowser/HandCoded/AliasRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/HandCoded/AliasRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/HandCoded/BookRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/HandCoded/BookRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/HandCoded/FileRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/HandCoded/FileRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/HandCoded/NoteRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/HandCoded/NoteRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/HandCoded/PageRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/HandCoded/PageRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/HandCoded/RuleRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/HandCoded/RuleRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/Interface/INoteRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/Interface/INoteRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/Interface/IRuleRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/Interface/IRuleRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/Interface/ObjectBrowserRowViewTemplate.txt4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CDP4ObjectBrowser/ObjectBrowserModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/ObjectBrowserModule.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/ObjectBrowserRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/ObjectBrowserRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/ObjectBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/ObjectBrowserViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/SessionRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/SessionRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4ObjectBrowser/Views/ObjectBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/Views/ObjectBrowser.xaml -------------------------------------------------------------------------------- /CDP4ObjectBrowser/Views/ObjectBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ObjectBrowser/Views/ObjectBrowser.xaml.cs -------------------------------------------------------------------------------- /CDP4ObjectBrowser/Views/ObjectBrowserXamlGenerator.txt4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CDP4OfficeInfrastructure/Excel/ExcelErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4OfficeInfrastructure/Excel/ExcelErrors.cs -------------------------------------------------------------------------------- /CDP4ParameterSheetGenerator/WorkbookOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ParameterSheetGenerator/WorkbookOperator.cs -------------------------------------------------------------------------------- /CDP4PluginPackager/BasePluginPackager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PluginPackager/BasePluginPackager.cs -------------------------------------------------------------------------------- /CDP4PluginPackager/CDP4PluginPackager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PluginPackager/CDP4PluginPackager.csproj -------------------------------------------------------------------------------- /CDP4PluginPackager/Models/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PluginPackager/Models/Manifest.cs -------------------------------------------------------------------------------- /CDP4PluginPackager/Models/Sdk/PropertyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PluginPackager/Models/Sdk/PropertyGroup.cs -------------------------------------------------------------------------------- /CDP4PluginPackager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PluginPackager/Program.cs -------------------------------------------------------------------------------- /CDP4PluginPackager/SdkPluginPackager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PluginPackager/SdkPluginPackager.cs -------------------------------------------------------------------------------- /CDP4PropertyGrid/CDP4PropertyGrid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/CDP4PropertyGrid.csproj -------------------------------------------------------------------------------- /CDP4PropertyGrid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4PropertyGrid/PropertyGridModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/PropertyGridModule.cs -------------------------------------------------------------------------------- /CDP4PropertyGrid/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4PropertyGrid/ViewModels/ThingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/ViewModels/ThingViewModel.cs -------------------------------------------------------------------------------- /CDP4PropertyGrid/Views/PropertyGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/Views/PropertyGrid.xaml -------------------------------------------------------------------------------- /CDP4PropertyGrid/Views/PropertyGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/Views/PropertyGrid.xaml.cs -------------------------------------------------------------------------------- /CDP4PropertyGrid/Views/ViewRibbonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/Views/ViewRibbonControl.xaml -------------------------------------------------------------------------------- /CDP4PropertyGrid/Views/ViewRibbonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4PropertyGrid/Views/ViewRibbonControl.xaml.cs -------------------------------------------------------------------------------- /CDP4ReferenceDataMapper/Data/SourceParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ReferenceDataMapper/Data/SourceParameter.cs -------------------------------------------------------------------------------- /CDP4ReferenceDataMapper/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ReferenceDataMapper/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4Reporting.Tests/CDP4Reporting.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting.Tests/CDP4Reporting.Tests.csproj -------------------------------------------------------------------------------- /CDP4Reporting.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Reporting/CDP4Reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/CDP4Reporting.csproj -------------------------------------------------------------------------------- /CDP4Reporting/CDP4ReportingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/CDP4ReportingModule.cs -------------------------------------------------------------------------------- /CDP4Reporting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Reporting/Utilities/DebugUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/Utilities/DebugUtilities.cs -------------------------------------------------------------------------------- /CDP4Reporting/Utilities/XtraReportHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/Utilities/XtraReportHandler.cs -------------------------------------------------------------------------------- /CDP4Reporting/ViewModels/CodeDomCodeCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/ViewModels/CodeDomCodeCompiler.cs -------------------------------------------------------------------------------- /CDP4Reporting/Views/ReportDesigner.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/Views/ReportDesigner.xaml -------------------------------------------------------------------------------- /CDP4Reporting/Views/ReportDesigner.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/Views/ReportDesigner.xaml.cs -------------------------------------------------------------------------------- /CDP4Reporting/Views/ReportDesignerRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/Views/ReportDesignerRibbon.xaml -------------------------------------------------------------------------------- /CDP4Reporting/Views/ReportDesignerRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Reporting/Views/ReportDesignerRibbon.xaml.cs -------------------------------------------------------------------------------- /CDP4Scripting.Tests/CDP4Scripting.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting.Tests/CDP4Scripting.Tests.csproj -------------------------------------------------------------------------------- /CDP4Scripting.Tests/DispatcherTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting.Tests/DispatcherTestFixture.cs -------------------------------------------------------------------------------- /CDP4Scripting.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Scripting/CDP4Scripting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/CDP4Scripting.csproj -------------------------------------------------------------------------------- /CDP4Scripting/CDP4ScriptingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/CDP4ScriptingModule.cs -------------------------------------------------------------------------------- /CDP4Scripting/Events/EventingMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Events/EventingMemoryStream.cs -------------------------------------------------------------------------------- /CDP4Scripting/Events/ScriptPanelEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Events/ScriptPanelEvent.cs -------------------------------------------------------------------------------- /CDP4Scripting/Helpers/AvalonEditExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Helpers/AvalonEditExtensions.cs -------------------------------------------------------------------------------- /CDP4Scripting/Helpers/EditorCompletionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Helpers/EditorCompletionData.cs -------------------------------------------------------------------------------- /CDP4Scripting/Helpers/InputTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Helpers/InputTerminal.cs -------------------------------------------------------------------------------- /CDP4Scripting/Helpers/OutputTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Helpers/OutputTerminal.cs -------------------------------------------------------------------------------- /CDP4Scripting/Helpers/ScriptingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Helpers/ScriptingProxy.cs -------------------------------------------------------------------------------- /CDP4Scripting/Interfaces/IScriptingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Interfaces/IScriptingProxy.cs -------------------------------------------------------------------------------- /CDP4Scripting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4Scripting/Resources/EditorSearchPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Resources/EditorSearchPanel.xaml -------------------------------------------------------------------------------- /CDP4Scripting/Resources/Images/Stop_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Resources/Images/Stop_16x.png -------------------------------------------------------------------------------- /CDP4Scripting/Resources/Images/VSO_Close_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Resources/Images/VSO_Close_16x.png -------------------------------------------------------------------------------- /CDP4Scripting/ViewModels/ScriptPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/ViewModels/ScriptPanelViewModel.cs -------------------------------------------------------------------------------- /CDP4Scripting/Views/PythonScriptPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Views/PythonScriptPanel.cs -------------------------------------------------------------------------------- /CDP4Scripting/Views/ScriptPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Views/ScriptPanel.xaml -------------------------------------------------------------------------------- /CDP4Scripting/Views/ScriptPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Views/ScriptPanel.xaml.cs -------------------------------------------------------------------------------- /CDP4Scripting/Views/ScriptingEngineRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Views/ScriptingEngineRibbon.xaml -------------------------------------------------------------------------------- /CDP4Scripting/Views/TextScriptPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4Scripting/Views/TextScriptPanel.cs -------------------------------------------------------------------------------- /CDP4ServicesDal/CDP4ServicesDal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ServicesDal/CDP4ServicesDal.csproj -------------------------------------------------------------------------------- /CDP4ServicesDal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ServicesDal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4ShellDialogs/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/App.config -------------------------------------------------------------------------------- /CDP4ShellDialogs/CDP4ShellDialogs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/CDP4ShellDialogs.csproj -------------------------------------------------------------------------------- /CDP4ShellDialogs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4ShellDialogs/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4ShellDialogs/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Utils.cs -------------------------------------------------------------------------------- /CDP4ShellDialogs/ViewModels/UriRowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/ViewModels/UriRowViewModel.cs -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/DataSourceSelection.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/DataSourceSelection.xaml -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/ModelClosingDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/ModelClosingDialog.xaml -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/ModelOpeningDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/ModelOpeningDialog.xaml -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/PluginManager.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/PluginManager.xaml -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/PluginManager.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/PluginManager.xaml.cs -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/ProxyServer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/ProxyServer.xaml -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/ProxyServer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/ProxyServer.xaml.cs -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/UriManager.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/UriManager.xaml -------------------------------------------------------------------------------- /CDP4ShellDialogs/Views/UriManager.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/Views/UriManager.xaml.cs -------------------------------------------------------------------------------- /CDP4ShellDialogs/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogs/app.manifest -------------------------------------------------------------------------------- /CDP4ShellDialogsTestFixture/TestData/uris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogsTestFixture/TestData/uris.json -------------------------------------------------------------------------------- /CDP4ShellDialogsTestFixture/UtilsTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4ShellDialogsTestFixture/UtilsTestFixture.cs -------------------------------------------------------------------------------- /CDP4SiteDirectory/CDP4SiteDirectory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4SiteDirectory/CDP4SiteDirectory.csproj -------------------------------------------------------------------------------- /CDP4SiteDirectory/Comparer/DomainRowComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4SiteDirectory/Comparer/DomainRowComparer.cs -------------------------------------------------------------------------------- /CDP4SiteDirectory/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4SiteDirectory/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CDP4SiteDirectory/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4SiteDirectory/Settings.StyleCop -------------------------------------------------------------------------------- /CDP4SiteDirectory/SiteDirectoryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4SiteDirectory/SiteDirectoryModule.cs -------------------------------------------------------------------------------- /CDP4SiteDirectory/Views/HighlightingRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4SiteDirectory/Views/HighlightingRibbon.xaml -------------------------------------------------------------------------------- /CDP4SiteDirectory/Views/ShowTooltipRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4SiteDirectory/Views/ShowTooltipRibbon.xaml -------------------------------------------------------------------------------- /CDP4SiteDirectory/Views/SiteDirectoryRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4SiteDirectory/Views/SiteDirectoryRibbon.xaml -------------------------------------------------------------------------------- /CDP4UpdateServerDal/BaseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/BaseClient.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/CDP4UpdateServerDal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/CDP4UpdateServerDal.csproj -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Dto/ClientIMEDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Dto/ClientIMEDto.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Dto/ClientPluginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Dto/ClientPluginDto.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Dto/IMEDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Dto/IMEDto.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Dto/IMEVersionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Dto/IMEVersionDto.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Dto/IMEVersionPlatformDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Dto/IMEVersionPlatformDto.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Dto/PluginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Dto/PluginDto.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Dto/PluginVersionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Dto/PluginVersionDto.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Enumerators/HttpVerbs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Enumerators/HttpVerbs.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/Enumerators/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/Enumerators/Platform.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/IUpdateServerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/IUpdateServerClient.cs -------------------------------------------------------------------------------- /CDP4UpdateServerDal/UpdateServerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CDP4UpdateServerDal/UpdateServerClient.cs -------------------------------------------------------------------------------- /CLA/Corporate Contributor License Agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CLA/Corporate Contributor License Agreement.pdf -------------------------------------------------------------------------------- /CLA/Individual Contributor License Agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CLA/Individual Contributor License Agreement.pdf -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMET-Community-Edition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/COMET-Community-Edition.jpg -------------------------------------------------------------------------------- /EngineeringModel/Converters/DataTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Converters/DataTypeConverter.cs -------------------------------------------------------------------------------- /EngineeringModel/EngineeringModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/EngineeringModel.csproj -------------------------------------------------------------------------------- /EngineeringModel/EngineeringModelModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/EngineeringModelModule.cs -------------------------------------------------------------------------------- /EngineeringModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EngineeringModel/Services/IObfuscationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Services/IObfuscationService.cs -------------------------------------------------------------------------------- /EngineeringModel/Services/ObfuscationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Services/ObfuscationService.cs -------------------------------------------------------------------------------- /EngineeringModel/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Settings.StyleCop -------------------------------------------------------------------------------- /EngineeringModel/Utilities/CopyCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Utilities/CopyCreator.cs -------------------------------------------------------------------------------- /EngineeringModel/Views/Dialogs/FileDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Views/Dialogs/FileDialog.xaml -------------------------------------------------------------------------------- /EngineeringModel/Views/Dialogs/FolderDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Views/Dialogs/FolderDialog.xaml -------------------------------------------------------------------------------- /EngineeringModel/Views/Dialogs/OptionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/EngineeringModel/Views/Dialogs/OptionDialog.xaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/NOTICE -------------------------------------------------------------------------------- /Nuget.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Nuget.Config -------------------------------------------------------------------------------- /Plugin.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Plugin.target -------------------------------------------------------------------------------- /ProductTree.Tests/ProductTree.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree.Tests/ProductTree.Tests.csproj -------------------------------------------------------------------------------- /ProductTree.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProductTree/ProductTree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/ProductTree.csproj -------------------------------------------------------------------------------- /ProductTree/ProductTreeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/ProductTreeModule.cs -------------------------------------------------------------------------------- /ProductTree/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProductTree/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/Settings.StyleCop -------------------------------------------------------------------------------- /ProductTree/ViewModels/ProductTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/ViewModels/ProductTreeViewModel.cs -------------------------------------------------------------------------------- /ProductTree/Views/ProductTree.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/Views/ProductTree.xaml -------------------------------------------------------------------------------- /ProductTree/Views/ProductTree.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/Views/ProductTree.xaml.cs -------------------------------------------------------------------------------- /ProductTree/Views/ProductTreeRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/Views/ProductTreeRibbon.xaml -------------------------------------------------------------------------------- /ProductTree/Views/ProductTreeRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/ProductTree/Views/ProductTreeRibbon.xaml.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/README.md -------------------------------------------------------------------------------- /RelationshipMatrix/CDP4RelationshipMatrix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/CDP4RelationshipMatrix.csproj -------------------------------------------------------------------------------- /RelationshipMatrix/DataTypes/MatrixAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/DataTypes/MatrixAddress.cs -------------------------------------------------------------------------------- /RelationshipMatrix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RelationshipMatrix/RelationshipMatrixModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/RelationshipMatrixModule.cs -------------------------------------------------------------------------------- /RelationshipMatrix/Resources/Images/bidir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/Resources/Images/bidir.png -------------------------------------------------------------------------------- /RelationshipMatrix/Resources/Images/nodir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/Resources/Images/nodir.png -------------------------------------------------------------------------------- /RelationshipMatrix/Resources/Images/xtoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/Resources/Images/xtoy.png -------------------------------------------------------------------------------- /RelationshipMatrix/Resources/Images/ytox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/Resources/Images/ytox.png -------------------------------------------------------------------------------- /RelationshipMatrix/Settings/DisplayKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/Settings/DisplayKind.cs -------------------------------------------------------------------------------- /RelationshipMatrix/Settings/SortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/Settings/SortOrder.cs -------------------------------------------------------------------------------- /RelationshipMatrix/ViewModels/MatrixViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/ViewModels/MatrixViewModel.cs -------------------------------------------------------------------------------- /RelationshipMatrix/Views/RelationshipMatrix.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RelationshipMatrix/Views/RelationshipMatrix.xaml -------------------------------------------------------------------------------- /RemoveObjAndBin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/RemoveObjAndBin.ps1 -------------------------------------------------------------------------------- /Requirements.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Requirements.Tests/ReqIF/testreq.reqif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements.Tests/ReqIF/testreq.reqif -------------------------------------------------------------------------------- /Requirements.Tests/Requirements.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements.Tests/Requirements.Tests.csproj -------------------------------------------------------------------------------- /Requirements.Tests/Settings/testreq.reqif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements.Tests/Settings/testreq.reqif -------------------------------------------------------------------------------- /Requirements/Assemblers/HeaderArrayAssembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Assemblers/HeaderArrayAssembler.cs -------------------------------------------------------------------------------- /Requirements/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Requirements/ReqIFDal/ImportMap/SpecTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/ReqIFDal/ImportMap/SpecTypeMap.cs -------------------------------------------------------------------------------- /Requirements/ReqIFDal/ReqIFBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/ReqIFDal/ReqIFBuilder.cs -------------------------------------------------------------------------------- /Requirements/ReqIFDal/ThingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/ReqIFDal/ThingFactory.cs -------------------------------------------------------------------------------- /Requirements/ReqIFDal/ThingToReqIfMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/ReqIFDal/ThingToReqIfMapper.cs -------------------------------------------------------------------------------- /Requirements/Requirements.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Requirements.csproj -------------------------------------------------------------------------------- /Requirements/RequirementsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/RequirementsModule.cs -------------------------------------------------------------------------------- /Requirements/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Settings.StyleCop -------------------------------------------------------------------------------- /Requirements/Settings/OrderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Settings/OrderSettings.cs -------------------------------------------------------------------------------- /Requirements/Utils/BreadCrumbComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Utils/BreadCrumbComparer.cs -------------------------------------------------------------------------------- /Requirements/Utils/BreadCrumbComputer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Utils/BreadCrumbComputer.cs -------------------------------------------------------------------------------- /Requirements/Utils/IBreadCrumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Utils/IBreadCrumb.cs -------------------------------------------------------------------------------- /Requirements/Utils/OrderHandlerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Utils/OrderHandlerService.cs -------------------------------------------------------------------------------- /Requirements/Views/HtmlExportRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/HtmlExportRibbon.xaml -------------------------------------------------------------------------------- /Requirements/Views/HtmlExportRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/HtmlExportRibbon.xaml.cs -------------------------------------------------------------------------------- /Requirements/Views/ReqIf/ReqIfExportDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/ReqIf/ReqIfExportDialog.xaml -------------------------------------------------------------------------------- /Requirements/Views/ReqIf/ReqIfImportDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/ReqIf/ReqIfImportDialog.xaml -------------------------------------------------------------------------------- /Requirements/Views/ReqIfRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/ReqIfRibbon.xaml -------------------------------------------------------------------------------- /Requirements/Views/ReqIfRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/ReqIfRibbon.xaml.cs -------------------------------------------------------------------------------- /Requirements/Views/RequirementBrowserRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/RequirementBrowserRibbon.xaml -------------------------------------------------------------------------------- /Requirements/Views/RequirementsBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/RequirementsBrowser.xaml -------------------------------------------------------------------------------- /Requirements/Views/RequirementsBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/RequirementsBrowser.xaml.cs -------------------------------------------------------------------------------- /Requirements/Views/RequirementsRibbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/RequirementsRibbon.xaml -------------------------------------------------------------------------------- /Requirements/Views/RequirementsRibbon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Requirements/Views/RequirementsRibbon.xaml.cs -------------------------------------------------------------------------------- /Sdk.Plugin.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Sdk.Plugin.target -------------------------------------------------------------------------------- /Switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/Switcher.json -------------------------------------------------------------------------------- /cdp4ime-tests.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/cdp4ime-tests.nunit -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/release.bat -------------------------------------------------------------------------------- /setreferencecopylocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/STARIONGROUP/COMET-IME-Community-Edition/HEAD/setreferencecopylocal.ps1 --------------------------------------------------------------------------------