├── .gitignore ├── Design └── mfractor.bmpr ├── LICENSE ├── MFractor ├── .editorconfig ├── Libraries │ ├── MFractor.Android │ │ ├── AndroidManifestResolver.cs │ │ ├── Commands │ │ │ ├── CopyPackageNameToClipboardCommand.cs │ │ │ └── OpenAndroidManifestCommand.cs │ │ ├── Data │ │ │ ├── DatabaseSchema.cs │ │ │ ├── Models │ │ │ │ ├── IdentifierDefinition.cs │ │ │ │ ├── IdentifierUsage.cs │ │ │ │ ├── Manifest │ │ │ │ │ ├── PackageDetails.cs │ │ │ │ │ └── Permission.cs │ │ │ │ ├── StyleDefinition.cs │ │ │ │ └── StyleItem.cs │ │ │ ├── Repositories │ │ │ │ └── Manifest │ │ │ │ │ └── PackageDetailsRepository.cs │ │ │ ├── RepositoryCollection.cs │ │ │ └── Synchronisers │ │ │ │ ├── AndroidManifestSynchroniser.cs │ │ │ │ ├── DrawableSynchroniser.cs │ │ │ │ ├── LayoutSynchroniser.cs │ │ │ │ └── ValuesSynchroniser.cs │ │ ├── Helpers │ │ │ └── AndroidResourceNameHelper.cs │ │ ├── IAndroidManifestResolver.cs │ │ ├── MFractor.Android.csproj │ │ ├── Properties.cs │ │ ├── Resources │ │ │ ├── AndroidResourceTypeInfo │ │ │ │ ├── AccessibilityService.ati.xml │ │ │ │ ├── AccountAuthenticator.ati.xml │ │ │ │ ├── AppWidget.ati.xml │ │ │ │ ├── ColorStateList.ati.xml │ │ │ │ ├── Controls.ati.xml │ │ │ │ ├── DeviceAdmin.ati.xml │ │ │ │ ├── Drawable.ati.xml │ │ │ │ ├── FullBackupContent.ati.xml │ │ │ │ ├── InputExtras.ati.xml │ │ │ │ ├── InputMethod.ati.xml │ │ │ │ ├── Interpolators.ati.xml │ │ │ │ ├── Keyboard.ati.xml │ │ │ │ ├── LayoutAnimationControllers.ati.xml │ │ │ │ ├── LayoutMergeInclude.ati.xml │ │ │ │ ├── LayoutParams.ati.xml │ │ │ │ ├── Manifest.ati.xml │ │ │ │ ├── Menu.ati.xml │ │ │ │ ├── NFC.ati.xml │ │ │ │ ├── PreferenceHeaders.ati.xml │ │ │ │ ├── Preferences.ati.xml │ │ │ │ ├── PropertyAnimation.ati.xml │ │ │ │ ├── Searchable.ati.xml │ │ │ │ ├── ShapeDrawable.ati.xml │ │ │ │ ├── SpellChecker.ati.xml │ │ │ │ ├── Styleable.ati.xml │ │ │ │ ├── Styles.ati.xml │ │ │ │ ├── SyncAdapter.ati.xml │ │ │ │ ├── Transition.ati.xml │ │ │ │ ├── Tween Animation.ati.xml │ │ │ │ ├── Values.ati.xml │ │ │ │ ├── VectorDrawable.ati.xml │ │ │ │ ├── View.ati.xml │ │ │ │ ├── ViewGroup.ati.xml │ │ │ │ ├── ViewGroupControls.ati.xml │ │ │ │ └── ViewSchemas.ati.xml │ │ │ └── Snippets │ │ │ │ └── Environment.txt │ │ └── Scaffolding │ │ │ ├── Components │ │ │ ├── ActivityScaffolder.cs │ │ │ ├── ApplicationScaffolder.cs │ │ │ ├── BroadcastReceiverScaffolder.cs │ │ │ ├── ContentProviderScaffolder.cs │ │ │ ├── FragmentScaffolder.cs │ │ │ └── ServiceScaffolder.cs │ │ │ └── Resources │ │ │ ├── AnimScaffolder.cs │ │ │ ├── DrawableScaffolder.cs │ │ │ ├── MenuScaffolder.cs │ │ │ └── StringsResourceScaffolder.cs │ ├── MFractor.CSharp │ │ ├── Analysis │ │ │ └── MEF │ │ │ │ ├── ClassDoesNotDeriveFromExportedInterface.cs │ │ │ │ └── ClassIsMissingImportingConstructor.cs │ │ ├── CSharpFeatureContextFactory.cs │ │ ├── Code Actions │ │ │ ├── Generate │ │ │ │ ├── CreateImmutableConstructor.cs │ │ │ │ ├── CreateLazyFieldAccesor.cs │ │ │ │ ├── GenerateInterfaceImplementation.cs │ │ │ │ └── ImplementMissingBaseTypeMembers.cs │ │ │ ├── MEF │ │ │ │ ├── ExportInterfaceImplementation.cs │ │ │ │ └── MakeImportingConstructor.cs │ │ │ ├── Misc │ │ │ │ ├── ConvertToInterpolatedString.cs │ │ │ │ ├── CopyVarTypeToClipboard.cs │ │ │ │ ├── LocateClassFileInSolutionExplorer.cs │ │ │ │ └── SelectStringSpan.cs │ │ │ └── Refactor │ │ │ │ ├── AlignNamespaceToFolderPath.cs │ │ │ │ ├── ConvertInlineEventHandlerSubscriptionToLocalFunction.cs │ │ │ │ ├── ConvertNullEqualityToIsNull.cs │ │ │ │ ├── ConvertToNamedDelegate.cs │ │ │ │ ├── InvertEventHandler.cs │ │ │ │ ├── ReduceFullyQualifiedTypeName.cs │ │ │ │ ├── ReplaceWithEnumerableEmpty.cs │ │ │ │ └── SimplifyTypesInFile.cs │ │ ├── Code Generation │ │ │ ├── AssignmentExpressionGenerator.cs │ │ │ ├── AttributeDeclarationGenerator.cs │ │ │ ├── AttributeUsageAnnotationGenerator.cs │ │ │ ├── BaseConstructorGenerator.cs │ │ │ ├── Class From Clipboard │ │ │ │ ├── ClassFromStringContentGenerator.cs │ │ │ │ ├── CreateClassFromClipboardOptions.cs │ │ │ │ ├── IClassFromStringContentGenerator.cs │ │ │ │ └── NamespaceMode.cs │ │ │ ├── ClassDeclarationGenerator.cs │ │ │ ├── ConstructorGenerator.cs │ │ │ ├── EventArgsDeclarationGenerator.cs │ │ │ ├── EventHandlerDeclarationGenerator.cs │ │ │ ├── EventHandlerMethodGenerator.cs │ │ │ ├── ExceptionHandlerGenerator.cs │ │ │ ├── IAttributeDeclarationGenerator.cs │ │ │ ├── IAttributeUsageAnnotationGenerator.cs │ │ │ ├── IBaseConstructorGenerator.cs │ │ │ ├── IClassDeclarationGenerator.cs │ │ │ ├── IConstructorGenerator.cs │ │ │ ├── IEventArgsDeclarationGenerator.cs │ │ │ ├── IEventHandlerDeclarationGenerator.cs │ │ │ ├── IEventHandlerMethodGenerator.cs │ │ │ ├── IExceptionHandlerGenerator.cs │ │ │ ├── IInstancePropertyGenerator.cs │ │ │ ├── IInterfaceDeclarationGenerator.cs │ │ │ ├── IInterfaceImplementationGenerator.cs │ │ │ ├── IMemberAssignmentGenerator.cs │ │ │ ├── IMemberFieldGenerator.cs │ │ │ ├── IMemberInitialiserGenerator.cs │ │ │ ├── IMethodGenerator.cs │ │ │ ├── INamespaceDeclarationGenerator.cs │ │ │ ├── InstancePropertyGenerator.cs │ │ │ ├── InterfaceDeclarationGenerator.cs │ │ │ ├── InterfaceImplementationGenerator.cs │ │ │ ├── MemberFieldGenerator.cs │ │ │ ├── MemberInitialiserGenerator.cs │ │ │ ├── MethodGenerator.cs │ │ │ └── NamespaceDeclarationGenerator.cs │ │ ├── ColorEvalautionResult.cs │ │ ├── ColorEvaluationService.cs │ │ ├── Commands │ │ │ ├── ConvertProjectToCSharp9Command.cs │ │ │ └── CreateClassFromClipboardCommand.cs │ │ ├── ContextualBaseClassResolver.cs │ │ ├── DateTimeFormatValidator.cs │ │ ├── DebugWatchExpressionService.cs │ │ ├── IColorEvaluationService.cs │ │ ├── IContextualBaseClassResolver.cs │ │ ├── IDateTimeFormatValidator.cs │ │ ├── IDebugWatchExpressionService.cs │ │ ├── IImplementationFinder.cs │ │ ├── ITypeSyntaxSimplifier.cs │ │ ├── ImplementationFinder.cs │ │ ├── MFractor.CSharp.csproj │ │ ├── MemberDeclaration.cs │ │ ├── MemberType.cs │ │ ├── MethodParameter.cs │ │ ├── Models │ │ │ └── LangVersionProperty.cs │ │ ├── Properties.cs │ │ ├── Resources │ │ │ ├── Documentation │ │ │ │ └── generate_interface_implementation.md │ │ │ └── Snippets │ │ │ │ ├── AttributeDeclaration.txt │ │ │ │ ├── EventArgsDeclaration.txt │ │ │ │ ├── EventHandlerDeclaration.txt │ │ │ │ ├── EventHandlerDeclarationWithArgs.txt │ │ │ │ ├── EventHandlerMethod.txt │ │ │ │ ├── InterfaceDeclaration.txt │ │ │ │ ├── Property.txt │ │ │ │ ├── ReadOnlyProperty.txt │ │ │ │ └── WriteOnlyProperty.txt │ │ ├── Scaffolding │ │ │ ├── AttributeDeclarationScaffolder.cs │ │ │ ├── Class Declaration │ │ │ │ ├── ClassDeclarationScaffolder.cs │ │ │ │ ├── GenerateClassUsingContextualBaseClass.cs │ │ │ │ └── HelperClassScaffolder.cs │ │ │ ├── EventArgsDeclarationScaffolder.cs │ │ │ └── Interface Declaration │ │ │ │ ├── InterfaceDeclarationScaffolder.cs │ │ │ │ └── InterfaceDeclarationWithImplementationScaffolder.cs │ │ ├── Services │ │ │ ├── ConvertProjectToCSharp9Service.cs │ │ │ └── IConvertProjectToCSharp9Service.cs │ │ ├── TypeSyntaxSimplifier.cs │ │ ├── Utilities │ │ │ ├── AccessibilityHelper.cs │ │ │ └── MemberDeclarationHelper.cs │ │ ├── Work Units │ │ │ ├── AlignFileNamespacesToFolderPathWorkUnit.cs │ │ │ ├── CreateClassFromContentWorkUnit.cs │ │ │ └── SimplifyTypesInFileWorkUnit.cs │ │ └── app.config │ ├── MFractor.Code │ │ ├── Analysis │ │ │ ├── AnalyserSuppression.cs │ │ │ ├── AnalyserSuppressionService.cs │ │ │ ├── AnalysisResultsStore.cs │ │ │ ├── CodeAnalyser.cs │ │ │ ├── CodeAnalyserExecutionFilter.cs │ │ │ ├── CodeAnalyserRepository.cs │ │ │ ├── CodeAnalysisOptions.cs │ │ │ ├── CodeAnalysisPreprocessorProviderRepository.cs │ │ │ ├── CodeAnalysisStateChangedEventArgs.cs │ │ │ ├── CodeIssue.cs │ │ │ ├── IAnalyser.cs │ │ │ ├── IAnalyserSuppressionService.cs │ │ │ ├── IAnalysisResultStore.cs │ │ │ ├── ICodeAnalyserRepository.cs │ │ │ ├── ICodeAnalysisOptions.cs │ │ │ ├── ICodeAnalysisPreProcessor.cs │ │ │ ├── ICodeAnalysisPreprocessorProvider.cs │ │ │ ├── ICodeAnalysisPreprocessorProviderRepository.cs │ │ │ ├── ICodeIssue.cs │ │ │ ├── IIssue.cs │ │ │ ├── IXmlDocumentAnalyser.cs │ │ │ ├── IXmlSyntaxCodeAnalyser.cs │ │ │ ├── IssueClassification.cs │ │ │ ├── Solution Analysis │ │ │ │ ├── IDocumentAnalyser.cs │ │ │ │ ├── IDocumentAnalyserRepository.cs │ │ │ │ ├── IProjectAnalyser.cs │ │ │ │ ├── IProjectAnalyserRepository.cs │ │ │ │ ├── ISolutionAnalyser.cs │ │ │ │ └── ISolutionAnalysisService.cs │ │ │ └── XmlDocumentAnalyser.cs │ │ ├── CSharpSyntaxReducer.cs │ │ ├── Code Actions │ │ │ ├── CSharpCodeAction.cs │ │ │ ├── CSharpCodeActionExecutionFilters.cs │ │ │ ├── CSharpCodeActionProvider.cs │ │ │ ├── CodeAction.cs │ │ │ ├── CodeActionAnalyticsActionOperation.cs │ │ │ ├── CodeActionCategory.cs │ │ │ ├── CodeActionChoice.cs │ │ │ ├── CodeActionEngine.cs │ │ │ ├── CodeActionExecutionType.cs │ │ │ ├── CodeActionRepository.cs │ │ │ ├── CodeActionSuggestion.cs │ │ │ ├── CodeActionSuggestionProvider.cs │ │ │ ├── CommonCodeActionAttribute.cs │ │ │ ├── DocumentChangeAction.cs │ │ │ ├── ICodeAction.cs │ │ │ ├── ICodeActionChoice.cs │ │ │ ├── ICodeActionEngine.cs │ │ │ ├── ICodeActionRepository.cs │ │ │ ├── ICodeActionSuggestion.cs │ │ │ ├── ICodeActionSuggestionProvider.cs │ │ │ ├── IFixCodeAction.cs │ │ │ ├── WorkUnitEngineCodeAction.cs │ │ │ ├── WorkUnitEngineCodeActionOperation.cs │ │ │ └── XmlCodeAction.cs │ │ ├── Code Generation │ │ │ ├── CSharp │ │ │ │ ├── CSharpCodeGenerator.cs │ │ │ │ ├── IUsingDirectiveGenerator.cs │ │ │ │ └── UsingDirectiveGenerator.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── Fody │ │ │ │ ├── FodyWeaversGenerator.cs │ │ │ │ └── IFodyWeaversGenerator.cs │ │ │ ├── ICodeGenerator.cs │ │ │ ├── ICodeGeneratorParameter.cs │ │ │ ├── InsertionLocation.cs │ │ │ └── Options │ │ │ │ ├── CodeGenerationOptionValidationResult.cs │ │ │ │ ├── ICodeGenerationOption.cs │ │ │ │ ├── ICodeGenerationOptionSet.cs │ │ │ │ └── ICodeGenerationOptionValidator.cs │ │ ├── CodeFeatureSetDiagnostics.cs │ │ ├── DocumentExecutionFilter.cs │ │ ├── Documents │ │ │ ├── IParsedCSharpDocument.cs │ │ │ ├── IParsedDocument.cs │ │ │ ├── IParsedXmlDocument.cs │ │ │ ├── ParsedCSharpDocument.cs │ │ │ ├── ParsedDocument.cs │ │ │ └── ParsedXmlDocument.cs │ │ ├── FeatureContext.cs │ │ ├── FeatureContextFactoryRepository.cs │ │ ├── Formatting │ │ │ ├── ICSharpFormattingPolicy.cs │ │ │ └── ICodeFormattingPolicyService.cs │ │ ├── ICSharpSyntaxReducer.cs │ │ ├── IFeatureContext.cs │ │ ├── IFeatureContextFactory.cs │ │ ├── IFeatureContextFactoryRepository.cs │ │ ├── MFractor.Code.csproj │ │ ├── Properties.cs │ │ ├── Resources │ │ │ └── Snippets │ │ │ │ └── FodyWeavers.txt │ │ ├── Scaffolding │ │ │ ├── IScaffolder.cs │ │ │ ├── IScaffolderConfiguration.cs │ │ │ ├── IScaffolderRepository.cs │ │ │ ├── IScaffolderState.cs │ │ │ ├── IScaffoldingContext.cs │ │ │ ├── IScaffoldingInput.cs │ │ │ ├── IScaffoldingMatch.cs │ │ │ ├── IScaffoldingSuggestion.cs │ │ │ ├── Scaffolder.cs │ │ │ ├── ScaffolderCommand.cs │ │ │ ├── ScaffolderRepository.cs │ │ │ ├── ScaffolderState.cs │ │ │ ├── Scaffolders │ │ │ │ ├── CreateFileWithExtensionScaffolder.cs │ │ │ │ ├── CreateFolderPathScaffolder.cs │ │ │ │ └── FodyWeaversScaffolder.cs │ │ │ ├── ScaffoldingContext.cs │ │ │ ├── ScaffoldingInput.cs │ │ │ └── ScaffoldingSuggestion.cs │ │ ├── Type Inferment │ │ │ ├── ITypeInfermentConfiguration.cs │ │ │ ├── ITypeInfermentService.cs │ │ │ ├── TypeInfermentConfiguration.cs │ │ │ └── TypeInfermentService.cs │ │ ├── Work Unit Handlers │ │ │ ├── DeleteXmlSyntaxWorkUnitHandler.cs │ │ │ ├── EncapsulateXmlSyntaxWorkUnitHandler.cs │ │ │ ├── InsertSyntaxNodeWorkUnitHandler.cs │ │ │ ├── InsertXmlSyntaxWorkUnitHandler.cs │ │ │ └── ReplaceXmlSyntaxWorkUnitHandler.cs │ │ ├── Work Units │ │ │ ├── DeleteXmlSyntaxWorkUnit.cs │ │ │ ├── EncapsulateXmlSyntaxWorkUnit.cs │ │ │ ├── InsertSyntaxNodesWorkUnit.cs │ │ │ ├── InsertXmlSyntaxWorkUnit.cs │ │ │ ├── ParameterisedCodeGenerationWorkUnit.cs │ │ │ ├── ReplaceXmlSyntaxWorkUnit.cs │ │ │ ├── ScaffolderWorkUnit.cs │ │ │ └── SetBuildActionWorkUnit.cs │ │ └── XmlExecutionFilters.cs │ ├── MFractor.Editor │ │ ├── Adornments │ │ │ ├── ColorTag.cs │ │ │ ├── EscapedCharacterTag.cs │ │ │ ├── GridIndexTag.cs │ │ │ ├── IntratextAdornmentProvider.cs │ │ │ └── ThicknessTag.cs │ │ ├── CSharp │ │ │ └── Tooltips │ │ │ │ ├── ColorTooltipsQuickInfoSource.cs │ │ │ │ ├── ColorTooltipsQuickInfoSourceProvider.cs │ │ │ │ ├── DateTimeFormatPreviewTooltipsQuickInfoSource.cs │ │ │ │ ├── DateTimeFormatPreviewTooltipsQuickInfoSourceProvider.cs │ │ │ │ ├── ImageTooltipsQuickInfoSource.cs │ │ │ │ ├── ImageTooltipsQuickInfoSourceProvider.cs │ │ │ │ ├── LocalisationTooltipQuickInfoSource.cs │ │ │ │ └── LocalisationTooltipQuickInfoSourceProvider.cs │ │ ├── EditorTextProviderService.cs │ │ ├── GlobalTextViewCreationListener.cs │ │ ├── IMutableTextViewService.cs │ │ ├── ITextViewService.cs │ │ ├── IntelliSenseAnalyticsTracker.cs │ │ ├── MFractor.Editor.projitems │ │ ├── MFractor.Editor.shproj │ │ ├── TextViewBinding.cs │ │ ├── TextViewEventArgs.cs │ │ ├── Tooltips │ │ │ ├── CodeIssueTooltipModel.cs │ │ │ ├── ColorTooltipModel.cs │ │ │ ├── FontGlyphTooltipModel.cs │ │ │ ├── FontPreviewTooltipModel.cs │ │ │ ├── ImageTooltipModel.cs │ │ │ ├── TextContentTooltipModel.cs │ │ │ ├── ThicknessTooltipModel.cs │ │ │ └── TooltipModelExtensions.cs │ │ ├── Utilities │ │ │ ├── CompletionHelper.cs │ │ │ ├── TextBufferHelper.cs │ │ │ └── TextEditorHelper.cs │ │ └── XAML │ │ │ ├── Adornments │ │ │ ├── Colors │ │ │ │ ├── ColorAdornmentTagger.cs │ │ │ │ ├── ColorAdornmentTaggerProvider.cs │ │ │ │ ├── ColorTagger.cs │ │ │ │ └── ColorTaggerProvider.cs │ │ │ ├── Escaped Xaml Characters │ │ │ │ ├── EscapedXamlCharacterAdornmentTagger.cs │ │ │ │ ├── EscapedXamlCharacterAdornmentTaggerProvider.cs │ │ │ │ ├── EscapedXamlCharacterTagger.cs │ │ │ │ └── EscapedXamlCharacterTaggerProvider.cs │ │ │ ├── Grids │ │ │ │ ├── GridIndexAdornmentTagger.cs │ │ │ │ ├── GridIndexAdornmentTaggerProvider.cs │ │ │ │ ├── GridIndexTagger.cs │ │ │ │ └── GridIndexTaggerProvider.cs │ │ │ └── Thickness │ │ │ │ ├── ThicknessAdornmentTagger.cs │ │ │ │ ├── ThicknessAdornmentTaggerProvider.cs │ │ │ │ ├── ThicknessTagger.cs │ │ │ │ └── ThicknessTaggerProvider.cs │ │ │ ├── Analysis │ │ │ ├── XamlAnalysisDebouncer.cs │ │ │ ├── XamlAnalysisQuickInfoSource.cs │ │ │ ├── XamlAnalysisQuickInfoSourceProvider.cs │ │ │ ├── XamlAnalysisTagger.cs │ │ │ └── XamlAnalysisTaggerProvider.cs │ │ │ ├── Code Actions │ │ │ ├── XamlCodeActionSuggestion.cs │ │ │ ├── XamlCodeActionsSource.cs │ │ │ ├── XamlCodeActionsSourceProvider.cs │ │ │ └── XamlRefactoringProvider.cs │ │ │ ├── Completion │ │ │ ├── Async Integration │ │ │ │ ├── XamlAsyncCompletionSource .cs │ │ │ │ ├── XamlAsyncCompletionSourceProvider.cs │ │ │ │ ├── XamlCompletionCommitManager.cs │ │ │ │ └── XamlCompletionCommitManagerProvider.cs │ │ │ ├── AsyncXamlCompletionServiceRepository.cs │ │ │ ├── CompletionSuggestion.cs │ │ │ ├── IAsyncXamlCompletionService.cs │ │ │ ├── IAsyncXamlCompletionServiceRepository.cs │ │ │ ├── ICompletionSuggestion.cs │ │ │ ├── IXamlCompletionService.cs │ │ │ ├── IXamlCompletionServiceRepository.cs │ │ │ ├── IconIds.cs │ │ │ ├── Services │ │ │ │ ├── Binding Context │ │ │ │ │ └── XReferenceBindingContextShortHandCompletionService.cs │ │ │ │ ├── Colors │ │ │ │ │ └── ColorCompletionService.cs │ │ │ │ ├── Data Binding │ │ │ │ │ ├── DataBindingCompletionService.cs │ │ │ │ │ └── DataBindingExpressionCompletionService.cs │ │ │ │ ├── Dynamic Resources │ │ │ │ │ └── DynamicResourceCompletionService.cs │ │ │ │ ├── EventHandlerCompletionService.cs │ │ │ │ ├── Fonts │ │ │ │ │ ├── EmbeddedFontCompletionService.cs │ │ │ │ │ ├── FontAssetOnPlatformShorthandCompletionService.cs │ │ │ │ │ ├── FontGlyphCompletionService.cs │ │ │ │ │ └── ImportFontAssetCompletionService.cs │ │ │ │ ├── Grids │ │ │ │ │ ├── GridBoilerplateCompletionService.cs │ │ │ │ │ ├── GridLocationCompletionService.cs │ │ │ │ │ ├── GridUnitCompletionService.cs │ │ │ │ │ ├── RowColumnShorthandCompletionService.cs │ │ │ │ │ └── StarAutoShorthandCompletionService.cs │ │ │ │ ├── IDataBindingCompletionService.cs │ │ │ │ ├── IDynamicResourceCompletionService.cs │ │ │ │ ├── IStaticResourceCompletionService.cs │ │ │ │ ├── Images │ │ │ │ │ ├── IImageAssetCompletionService.cs │ │ │ │ │ └── ImageAssetCompletionService.cs │ │ │ │ ├── Microsoft Keywords │ │ │ │ │ ├── CodeBehindFieldNameCompletionService.cs │ │ │ │ │ ├── FieldModifierCompletionService.cs │ │ │ │ │ └── KeyAttributeCompletionService.cs │ │ │ │ ├── OnPlatform │ │ │ │ │ └── PlatformShorthandCompletionService.cs │ │ │ │ ├── PropertyCompletionService.cs │ │ │ │ ├── SetterShorthandCompletionService.cs │ │ │ │ ├── SetterValuesCompletionService.cs │ │ │ │ ├── Stack Layouts │ │ │ │ │ ├── RepeaterViewBoilerplateCompletionService.cs │ │ │ │ │ ├── StackLayoutBoilerplateCompetionService.cs │ │ │ │ │ └── StackLayoutOrientationShorthandCompletionService.cs │ │ │ │ ├── StaticResourceCompletionService.cs │ │ │ │ ├── Thicknesses │ │ │ │ │ └── ThicknessAttributeCompletionService.cs │ │ │ │ ├── Triggers │ │ │ │ │ └── DataTriggerBindingShorthandCompletionService.cs │ │ │ │ └── XamlExpressionCompletionService.cs │ │ │ ├── Sync Integration │ │ │ │ ├── XamlCompletionSource.cs │ │ │ │ └── XamlCompletionSourceProvider.cs │ │ │ ├── XamlCompletionItemPropertyKeys.cs │ │ │ └── XamlCompletionServiceRepository.cs │ │ │ ├── Services │ │ │ ├── XmlSyntaxTreeCache.cs │ │ │ └── XmlSyntaxTreeService.cs │ │ │ └── Tooltips │ │ │ ├── XamlTooltipsQuickInfoSource.cs │ │ │ └── XamlTooltipsQuickInfoSourceProvider.cs │ ├── MFractor.Fonts │ │ ├── Code Generation │ │ │ ├── FontCharacterCodeClassGenerator.cs │ │ │ ├── FontCharacterCodePropertyGenerator.cs │ │ │ ├── IFontCharacterCodeClassGenerator.cs │ │ │ └── IFontCharacterCodePropertyGenerator.cs │ │ ├── Commands │ │ │ ├── GenerateFontGlyphClassCOmmand.cs │ │ │ ├── ImportFontCommand.cs │ │ │ └── ViewFontCommand.cs │ │ ├── Data │ │ │ ├── DatabaseSchema.cs │ │ │ ├── Models │ │ │ │ ├── FontFileAsset.cs │ │ │ │ └── FontGlyphClassBinding.cs │ │ │ ├── Repositories │ │ │ │ ├── FontFileAssetRepository.cs │ │ │ │ └── FontGlyphClassBindingRepository.cs │ │ │ ├── RepositoryCollection.cs │ │ │ └── Synchronisation │ │ │ │ └── FontAssetSynchroniser.cs │ │ ├── Font.cs │ │ ├── FontAsset.cs │ │ ├── FontAssetCache.cs │ │ ├── FontAssetResolver.cs │ │ ├── FontGlyph.cs │ │ ├── FontImporter.cs │ │ ├── FontService.cs │ │ ├── FontTypeface.cs │ │ ├── GlyphCollection.cs │ │ ├── GlyphResolver.cs │ │ ├── IFont.cs │ │ ├── IFontAsset.cs │ │ ├── IFontAssetCache.cs │ │ ├── IFontAssetResolver.cs │ │ ├── IFontGlyph.cs │ │ ├── IFontImporter.cs │ │ ├── IFontService.cs │ │ ├── IFontTypeface.cs │ │ ├── IGlyphCollection.cs │ │ ├── IGlyphResolver.cs │ │ ├── MFractor.Fonts.csproj │ │ ├── Properties.cs │ │ ├── Rendering │ │ │ ├── FontRenderingPaths.cs │ │ │ └── IFontRenderingPaths.cs │ │ ├── Resources │ │ │ └── Snippets │ │ │ │ ├── FontCharacterCodeClass.txt │ │ │ │ └── FontCharacterCodeProperty.txt │ │ ├── Tooltips │ │ │ ├── FontSummaryTooltipRenderer.cs │ │ │ └── IFontSummaryTooltipRenderer.cs │ │ ├── Typography.OpenFont │ │ │ ├── AdditionalInfo │ │ │ │ ├── AdobeGlyphList.cs │ │ │ │ ├── AdobeGlyphListForNewFont.cs │ │ │ │ ├── MacPostFormat1.cs │ │ │ │ └── OS2_IBMFontClassParameters.cs │ │ │ ├── Bounds.cs │ │ │ ├── CharacterMap.cs │ │ │ ├── Geometry.cs │ │ │ ├── Glyph.cs │ │ │ ├── IGlyphTranslator.cs │ │ │ ├── IO │ │ │ │ └── ByteOrderSwappingBinaryReader.cs │ │ │ ├── OpenFontReader.cs │ │ │ ├── README.MD │ │ │ ├── Tables.AdvancedLayout │ │ │ │ ├── AttachmentListTable.cs │ │ │ │ ├── Base.cs │ │ │ │ ├── COLR.cs │ │ │ │ ├── CPAL.cs │ │ │ │ ├── ClassDefTable.cs │ │ │ │ ├── CoverageTable.cs │ │ │ │ ├── FeatureInfo.cs │ │ │ │ ├── FeatureList.cs │ │ │ │ ├── GDEF.cs │ │ │ │ ├── GPOS.Others.cs │ │ │ │ ├── GPOS.cs │ │ │ │ ├── GSUB.cs │ │ │ │ ├── GlyphShapingTableEntry.cs │ │ │ │ ├── IGlyphIndexList.cs │ │ │ │ ├── JustificationTable.cs │ │ │ │ ├── LigatureCaretListTable.cs │ │ │ │ ├── MathTable.cs │ │ │ │ ├── ScriptLang.cs │ │ │ │ ├── ScriptList.cs │ │ │ │ └── ScriptTable.cs │ │ │ ├── Tables.BitmapAndSvgFonts │ │ │ │ ├── BitmapFontCommons.cs │ │ │ │ ├── BitmapFontGlyphSource.cs │ │ │ │ ├── CBDT.cs │ │ │ │ ├── CBLC.cs │ │ │ │ ├── EBDT.cs │ │ │ │ ├── EBLC.cs │ │ │ │ ├── EBSC.cs │ │ │ │ └── SvgTable.cs │ │ │ ├── Tables.CFF │ │ │ │ ├── CFF.cs │ │ │ │ ├── CFFTable.cs │ │ │ │ ├── CffEvaluationEngine.cs │ │ │ │ └── Type2CharStringParser.cs │ │ │ ├── Tables.Others │ │ │ │ ├── EBLCTable.cs │ │ │ │ ├── HorizontalDeviceMetrics.cs │ │ │ │ ├── Kern.cs │ │ │ │ ├── LinearThreashold.cs │ │ │ │ ├── Merge.cs │ │ │ │ ├── Meta.cs │ │ │ │ ├── STAT.cs │ │ │ │ ├── VerticalDeviceMetrics.cs │ │ │ │ ├── VerticalMetrics.cs │ │ │ │ └── VerticalMetricsHeader.cs │ │ │ ├── Tables.TrueType │ │ │ │ ├── Cvt_Programs.cs │ │ │ │ ├── Gasp.cs │ │ │ │ ├── Glyf.cs │ │ │ │ └── GlyphLocations.cs │ │ │ ├── Tables.Variations │ │ │ │ ├── AVar.cs │ │ │ │ ├── CVar.cs │ │ │ │ ├── Common.ItemVariationStore.cs │ │ │ │ ├── Common.TupleVariationStore.cs │ │ │ │ ├── FVar.cs │ │ │ │ ├── GVar.cs │ │ │ │ ├── HVar.cs │ │ │ │ ├── MVar.cs │ │ │ │ └── VVar.cs │ │ │ ├── Tables │ │ │ │ ├── Cmap.cs │ │ │ │ ├── Head.cs │ │ │ │ ├── HorizontalHeader.cs │ │ │ │ ├── HorizontalMetrics.cs │ │ │ │ ├── MaxProfile.cs │ │ │ │ ├── NameEntry.cs │ │ │ │ ├── OS2.cs │ │ │ │ ├── Post.cs │ │ │ │ ├── TableEntry.cs │ │ │ │ ├── TableEntryCollection.cs │ │ │ │ ├── TableHeader.cs │ │ │ │ └── Utils.cs │ │ │ ├── TextLayout │ │ │ │ ├── GlyphIndexList.cs │ │ │ │ ├── GlyphLayout.cs │ │ │ │ ├── GlyphSetPosition.cs │ │ │ │ ├── GlyphSubstitution.cs │ │ │ │ └── UserCodePointToGlyphIndex.cs │ │ │ ├── TrueTypeInterperter │ │ │ │ ├── ForNet20.cs │ │ │ │ ├── Interpreter.cs │ │ │ │ └── InvalidFontException.cs │ │ │ ├── Typeface.cs │ │ │ └── WebFont │ │ │ │ ├── Woff2Reader.cs │ │ │ │ └── WoffReader.cs │ │ ├── Utilities │ │ │ ├── FontAssetHelper.cs │ │ │ └── FontGlyphCodeHelper.cs │ │ └── Work Units │ │ │ ├── FontImportResult.cs │ │ │ ├── FontViewerWorkUnit.cs │ │ │ └── ImportFontWorkUnit.cs │ ├── MFractor.IDE │ │ ├── Commands │ │ │ ├── CopyResourceIDToClipboard.cs │ │ │ ├── DocumentCommandContext.cs │ │ │ ├── IDocumentCommandContext.cs │ │ │ ├── ISolutionPadCommandContext.cs │ │ │ ├── Navigation │ │ │ │ ├── GoToRelationalDefinitionCodeBehindCommand.cs │ │ │ │ ├── GoToRelationalDefinitionCommand.cs │ │ │ │ └── GoToRelationalImplementationCommand.cs │ │ │ ├── ResyncSolutionResources.cs │ │ │ ├── Solution Pad │ │ │ │ ├── CleanAndCompressCommand.cs │ │ │ │ ├── DeleteOutputFoldersCommand.cs │ │ │ │ └── EditSharedProjectItemsCommand.cs │ │ │ └── SolutionPadCommandContext.cs │ │ ├── Configuration │ │ │ └── ConfigurationSynchronisationService.cs │ │ ├── Delete Output Folders │ │ │ ├── DeleteOutputFoldersConfigurationService.cs │ │ │ ├── DeleteOutputFoldersService.cs │ │ │ ├── IDeleteOutputFoldersConfiguration.cs │ │ │ ├── IDeleteOutputFoldersConfigurationService.cs │ │ │ ├── IDeleteOutputFoldersOptions.cs │ │ │ ├── IDeleteOutputFoldersService.cs │ │ │ └── Models │ │ │ │ ├── DeleteOutputFoldersConfiguration.cs │ │ │ │ └── DeleteOutputFoldersOptions.cs │ │ ├── FileCreationPostProcessorRepository.cs │ │ ├── IActiveDocument.cs │ │ ├── IFileCreationPostProcessor.cs │ │ ├── IFileCreationPostProcessorRepository.cs │ │ ├── IIdeFeatureSettings.cs │ │ ├── IIdeImageManager.cs │ │ ├── ISolutionPad.cs │ │ ├── IdeFeatureSettings.cs │ │ ├── ImageEntry.cs │ │ ├── InstallProceduralColors.cs │ │ ├── MFractor.IDE.csproj │ │ ├── Navigation │ │ │ ├── INavigationContext.cs │ │ │ ├── INavigationHandler.cs │ │ │ ├── INavigationHandlerRepository.cs │ │ │ ├── INavigationService.cs │ │ │ ├── INavigationSuggestion.cs │ │ │ ├── IRelationalNavigationHandler.cs │ │ │ ├── IRelationalNavigationHandlerRepository.cs │ │ │ ├── IRelationalNavigationService.cs │ │ │ ├── NavigationContext.cs │ │ │ ├── NavigationHandler.cs │ │ │ ├── NavigationHandlerRepository.cs │ │ │ ├── NavigationService.cs │ │ │ ├── NavigationSuggestion.cs │ │ │ ├── RelationalNavigationContextType.cs │ │ │ ├── RelationalNavigationResolverRepository.cs │ │ │ └── RelationalNavigationService.cs │ │ ├── Properties.cs │ │ ├── Resources │ │ │ └── colors │ │ │ │ ├── color-aliceblue.png │ │ │ │ ├── color-antiquewhite.png │ │ │ │ ├── color-aqua.png │ │ │ │ ├── color-aquamarine.png │ │ │ │ ├── color-azure.png │ │ │ │ ├── color-beige.png │ │ │ │ ├── color-bisque.png │ │ │ │ ├── color-black.png │ │ │ │ ├── color-blanchedalmond.png │ │ │ │ ├── color-blue.png │ │ │ │ ├── color-blueviolet.png │ │ │ │ ├── color-brown.png │ │ │ │ ├── color-burlywood.png │ │ │ │ ├── color-cadetblue.png │ │ │ │ ├── color-chartreuse.png │ │ │ │ ├── color-chocolate.png │ │ │ │ ├── color-coral.png │ │ │ │ ├── color-cornflowerblue.png │ │ │ │ ├── color-cornsilk.png │ │ │ │ ├── color-crimson.png │ │ │ │ ├── color-cyan.png │ │ │ │ ├── color-darkblue.png │ │ │ │ ├── color-darkcyan.png │ │ │ │ ├── color-darkgoldenrod.png │ │ │ │ ├── color-darkgray.png │ │ │ │ ├── color-darkgreen.png │ │ │ │ ├── color-darkkhaki.png │ │ │ │ ├── color-darkmagenta.png │ │ │ │ ├── color-darkolivegreen.png │ │ │ │ ├── color-darkorange.png │ │ │ │ ├── color-darkorchid.png │ │ │ │ ├── color-darkred.png │ │ │ │ ├── color-darksalmon.png │ │ │ │ ├── color-darkseagreen.png │ │ │ │ ├── color-darkslateblue.png │ │ │ │ ├── color-darkslategray.png │ │ │ │ ├── color-darkturquoise.png │ │ │ │ ├── color-darkviolet.png │ │ │ │ ├── color-deeppink.png │ │ │ │ ├── color-deepskyblue.png │ │ │ │ ├── color-dimgray.png │ │ │ │ ├── color-dodgerblue.png │ │ │ │ ├── color-firebrick.png │ │ │ │ ├── color-floralwhite.png │ │ │ │ ├── color-forestgreen.png │ │ │ │ ├── color-fuchsia.png │ │ │ │ ├── color-gainsboro.png │ │ │ │ ├── color-ghostwhite.png │ │ │ │ ├── color-gold.png │ │ │ │ ├── color-goldenrod.png │ │ │ │ ├── color-gray.png │ │ │ │ ├── color-green.png │ │ │ │ ├── color-greenyellow.png │ │ │ │ ├── color-honeydew.png │ │ │ │ ├── color-hotpink.png │ │ │ │ ├── color-indianred.png │ │ │ │ ├── color-indigo.png │ │ │ │ ├── color-ivory.png │ │ │ │ ├── color-khaki.png │ │ │ │ ├── color-lavender.png │ │ │ │ ├── color-lavenderblush.png │ │ │ │ ├── color-lawngreen.png │ │ │ │ ├── color-lemonchiffon.png │ │ │ │ ├── color-lightblue.png │ │ │ │ ├── color-lightcoral.png │ │ │ │ ├── color-lightcyan.png │ │ │ │ ├── color-lightgoldenrodyellow.png │ │ │ │ ├── color-lightgray.png │ │ │ │ ├── color-lightgreen.png │ │ │ │ ├── color-lightpink.png │ │ │ │ ├── color-lightsalmon.png │ │ │ │ ├── color-lightseagreen.png │ │ │ │ ├── color-lightskyblue.png │ │ │ │ ├── color-lightslategray.png │ │ │ │ ├── color-lightsteelblue.png │ │ │ │ ├── color-lightyellow.png │ │ │ │ ├── color-lime.png │ │ │ │ ├── color-limegreen.png │ │ │ │ ├── color-linen.png │ │ │ │ ├── color-magenta.png │ │ │ │ ├── color-maroon.png │ │ │ │ ├── color-mediumaquamarine.png │ │ │ │ ├── color-mediumblue.png │ │ │ │ ├── color-mediumorchid.png │ │ │ │ ├── color-mediumpurple.png │ │ │ │ ├── color-mediumseagreen.png │ │ │ │ ├── color-mediumslateblue.png │ │ │ │ ├── color-mediumspringgreen.png │ │ │ │ ├── color-mediumturquoise.png │ │ │ │ ├── color-mediumvioletred.png │ │ │ │ ├── color-midnightblue.png │ │ │ │ ├── color-mintcream.png │ │ │ │ ├── color-mistyrose.png │ │ │ │ ├── color-moccasin.png │ │ │ │ ├── color-navajowhite.png │ │ │ │ ├── color-navy.png │ │ │ │ ├── color-oldlace.png │ │ │ │ ├── color-olive.png │ │ │ │ ├── color-olivedrab.png │ │ │ │ ├── color-orange.png │ │ │ │ ├── color-orangered.png │ │ │ │ ├── color-orchid.png │ │ │ │ ├── color-palegoldenrod.png │ │ │ │ ├── color-palegreen.png │ │ │ │ ├── color-paleturquoise.png │ │ │ │ ├── color-palevioletred.png │ │ │ │ ├── color-papayawhip.png │ │ │ │ ├── color-peachpuff.png │ │ │ │ ├── color-peru.png │ │ │ │ ├── color-pink.png │ │ │ │ ├── color-plum.png │ │ │ │ ├── color-powderblue.png │ │ │ │ ├── color-purple.png │ │ │ │ ├── color-red.png │ │ │ │ ├── color-rosybrown.png │ │ │ │ ├── color-royalblue.png │ │ │ │ ├── color-saddlebrown.png │ │ │ │ ├── color-salmon.png │ │ │ │ ├── color-sandybrown.png │ │ │ │ ├── color-seagreen.png │ │ │ │ ├── color-seashell.png │ │ │ │ ├── color-sienna.png │ │ │ │ ├── color-silver.png │ │ │ │ ├── color-skyblue.png │ │ │ │ ├── color-slateblue.png │ │ │ │ ├── color-slategray.png │ │ │ │ ├── color-snow.png │ │ │ │ ├── color-springgreen.png │ │ │ │ ├── color-steelblue.png │ │ │ │ ├── color-tan.png │ │ │ │ ├── color-teal.png │ │ │ │ ├── color-thistle.png │ │ │ │ ├── color-tomato.png │ │ │ │ ├── color-transparent.png │ │ │ │ ├── color-turquoise.png │ │ │ │ ├── color-violet.png │ │ │ │ ├── color-wheat.png │ │ │ │ ├── color-white.png │ │ │ │ ├── color-whitesmoke.png │ │ │ │ ├── color-yellow.png │ │ │ │ └── color-yellowgreen.png │ │ ├── Work Unit Handlers │ │ │ └── BaseCreateProjectFileWorkUnitHandler.cs │ │ └── Work Units │ │ │ ├── DeleteOutputFoldersWorkUnit.cs │ │ │ ├── NavigateToFileSpanWorkUnit.cs │ │ │ ├── NavigateToFileSpansWorkUnit.cs │ │ │ ├── NavigateToSymbolWorkUnit.cs │ │ │ └── SelectFileInProjectPadWorkUnit.cs │ ├── MFractor.Images │ │ ├── AndroidImageDensities.cs │ │ ├── AppleUnifiedImageDensities.cs │ │ ├── Attributes │ │ │ └── ImageDensityNameAttribute.cs │ │ ├── Commands │ │ │ ├── DeleteImageAssetCommand.cs │ │ │ ├── ILaunchImageManagerCommand.cs │ │ │ ├── ImportIconWizardCommand.cs │ │ │ ├── ImportImageAssetCommand.cs │ │ │ └── LaunchImageManagerCommand.cs │ │ ├── Data │ │ │ ├── DatabaseSchema.cs │ │ │ ├── ImageAssetSynchroniser.cs │ │ │ ├── Models │ │ │ │ ├── ImageAssetDefinition.cs │ │ │ │ ├── ImageAssetFile.cs │ │ │ │ └── ImageAssetFileKind.cs │ │ │ ├── Repositories │ │ │ │ ├── ImageAssetDefinitionRepository.cs │ │ │ │ └── ImageAssetFileRepository.cs │ │ │ ├── RepositoryCollection.cs │ │ │ └── Synchronisers │ │ │ │ ├── AndroidImageAssetSynchroniser.cs │ │ │ │ ├── AppleUnifiedAppIconSynchroniser.cs │ │ │ │ ├── AppleUnifiedBundleResourceSynchroniser.cs │ │ │ │ └── AppleUnifiedImageSetSynchroniser.cs │ │ ├── Deletion │ │ │ ├── IImageDeletionService.cs │ │ │ └── ImageDeletionService.cs │ │ ├── Extensions │ │ │ └── ImageScaleExtensions.cs │ │ ├── IImageAsset.cs │ │ ├── IImageAssetCollection.cs │ │ ├── IImageAssetService.cs │ │ ├── IImageAssetUsage.cs │ │ ├── IImageAssetUsageFinder.cs │ │ ├── IImageAssetUsageFinderRepository.cs │ │ ├── IImageAssetUsageService.cs │ │ ├── Image Manager │ │ │ ├── Commands │ │ │ │ ├── CopyFilePathToClipboardCommand.cs │ │ │ │ ├── CopyNameToClipboardCommand.cs │ │ │ │ ├── DeleteImageAssetCommand.cs │ │ │ │ ├── OpenFileCommand.cs │ │ │ │ ├── OptimiseImageAssetCommand.cs │ │ │ │ ├── RevealInFinderCommand.cs │ │ │ │ ├── RevealInSolutionPadCommand.cs │ │ │ │ └── SearchForUsagesCommand.cs │ │ │ ├── IImageManagerCommand.cs │ │ │ ├── IImageManagerCommandContext.cs │ │ │ ├── IImageManagerCommandRepository.cs │ │ │ ├── IImageManagerController.cs │ │ │ ├── IImageManagerOptions.cs │ │ │ ├── ImageManagerCommand.cs │ │ │ ├── ImageManagerCommandContext.cs │ │ │ ├── ImageManagerCommandRepository.cs │ │ │ └── ImageManagerOptions.cs │ │ ├── ImageAsset.cs │ │ ├── ImageAssetCollection.cs │ │ ├── ImageAssetFormat.cs │ │ ├── ImageAssetHelper.cs │ │ ├── ImageAssetKind.cs │ │ ├── ImageAssetService.cs │ │ ├── ImageAssetUsage.cs │ │ ├── ImageAssetUsageFinderRepository.cs │ │ ├── ImageAssetUsageKind.cs │ │ ├── ImageAssetUsageService.cs │ │ ├── ImageCatalogAssetProjectFile.cs │ │ ├── ImageCatalogContentsJsonProjectFile.cs │ │ ├── ImageDensity.cs │ │ ├── ImageDensityHelper.cs │ │ ├── ImageDescriptor.cs │ │ ├── ImageImportDescriptor.cs │ │ ├── ImageKind.cs │ │ ├── ImageNameHelper.cs │ │ ├── ImageResourceType.cs │ │ ├── ImportImageOperation.cs │ │ ├── Importing │ │ │ ├── AppIconImport.cs │ │ │ ├── Generators │ │ │ │ ├── AndroidAdaptiveIconGenerator.cs │ │ │ │ ├── AndroidAppIconFilenameGenerator.cs │ │ │ │ ├── AppIconFilenameGeneratorExtensions.cs │ │ │ │ ├── CarPlayAppIconFilenameGenerator.cs │ │ │ │ ├── IAndroidAdaptiveIconGenerator.cs │ │ │ │ ├── IAppIconFilenameGenerator.cs │ │ │ │ └── IOSAppIconFilenameGenerator.cs │ │ │ ├── IAddImageMSbuildEntryGenerator.cs │ │ │ ├── IIconImporterService.cs │ │ │ ├── IImageImporterService.cs │ │ │ ├── IWorkspaceProjectService.cs │ │ │ ├── IconImporterService.cs │ │ │ ├── ImageImporterService.cs │ │ │ └── ImportUtils.cs │ │ ├── MFractor.Images.csproj │ │ ├── MauiImageDensities.cs │ │ ├── Models │ │ │ ├── AppIconImportTarget.cs │ │ │ ├── AppIconSet.cs │ │ │ ├── IOSAssetCatalogMetadata.cs │ │ │ ├── IOSImageSetEntry.cs │ │ │ ├── IOSImageSetInfo.cs │ │ │ ├── IconIdiom.cs │ │ │ ├── IconImage.cs │ │ │ ├── IconSet.cs │ │ │ ├── ImageScale.cs │ │ │ └── ScaleUnit.cs │ │ ├── Optimisation │ │ │ ├── IImageOptimisationService.cs │ │ │ ├── ImageOptimisationService.cs │ │ │ └── OptimisationResult.cs │ │ ├── Preview │ │ │ ├── IImageAssetPreviewRenderer.cs │ │ │ ├── IImageAssetPreviewRendererRepository.cs │ │ │ ├── IImageAssetPreviewService.cs │ │ │ ├── ImageAssetPreviewRendererRepository.cs │ │ │ ├── ImageAssetPreviewService.cs │ │ │ └── Preview Renderers │ │ │ │ ├── BitmapPreviewRenderer.cs │ │ │ │ ├── PdfPreviewRenderer.cs │ │ │ │ └── SvgPreviewRenderer.cs │ │ ├── Properties.cs │ │ ├── Resources │ │ │ └── Android │ │ │ │ ├── icon.txt │ │ │ │ └── icon_round.txt │ │ ├── Settings │ │ │ ├── IImageFeatureSettings.cs │ │ │ └── ImageFeatureSettings.cs │ │ ├── UnifiedImageDensity.cs │ │ ├── Utilities │ │ │ ├── ImageAssetProjectFileExtensions.cs │ │ │ └── ImageDownsamplingHelper.cs │ │ ├── Work Unit Handlers │ │ │ └── ViewImageAssetWorkUnitHandler.cs │ │ └── Work Units │ │ │ ├── DeleteImageAssetWorkUnit.cs │ │ │ ├── ImageAssetOptimisationKind.cs │ │ │ ├── MigrateiOSImageAssetsWorkUnit.cs │ │ │ ├── OpenImageManagerWorkUnit.cs │ │ │ ├── OptimiseImageAssetWorkUnit.cs │ │ │ └── ViewImageAssetWorkUnit.cs │ ├── MFractor.Linker │ │ ├── Code Actions │ │ │ ├── ExcludeSymbolFromLinker.cs │ │ │ └── GoToLinkerSymbol.cs │ │ ├── Code Completion │ │ │ └── LinkerConfigurationCodeComposer.cs │ │ ├── Code Generation │ │ │ ├── ILinkerEntryGenerator.cs │ │ │ ├── ILinkerFileGenerator.cs │ │ │ ├── LinkerEntryGenerator.cs │ │ │ ├── LinkerFileData.cs │ │ │ ├── LinkerFileGenerator.cs │ │ │ ├── LinkerMemberEntryMode.cs │ │ │ └── LinkerTypeMembersPreserveMode.cs │ │ ├── Helpers │ │ │ └── LinkerSignatureHelper.cs │ │ ├── LinkerKeywords.cs │ │ ├── MFractor.Linker.csproj │ │ ├── Properties.cs │ │ ├── Resources │ │ │ └── Snippets │ │ │ │ └── linker.txt │ │ └── app.config │ ├── MFractor.Localisation │ │ ├── Code Actions │ │ │ └── LocaliseStringLiteral.cs │ │ ├── Code Generation │ │ │ ├── IResXEntryGenerator.cs │ │ │ ├── IResXFileGenerator.cs │ │ │ ├── IResXLookupGenerator.cs │ │ │ ├── ResXEntryGenerator.cs │ │ │ ├── ResXFileGenerator.cs │ │ │ └── ResXLookupGenerator.cs │ │ ├── Commands │ │ │ └── LocalisationWizardCommand.cs │ │ ├── Configuration │ │ │ ├── DefaultResourceFile.cs │ │ │ └── IDefaultResourceFile.cs │ │ ├── Data │ │ │ ├── DatabaseSchema.cs │ │ │ ├── GarbageCollectionEvents.cs │ │ │ ├── Models │ │ │ │ ├── ResXLocalisationDefinition.cs │ │ │ │ └── ResXLocalisationEntry.cs │ │ │ ├── Repositories │ │ │ │ ├── ResXLocalisationDefinitionRepository.cs │ │ │ │ └── ResXLocalisationEntryRepository.cs │ │ │ ├── RepositoryCollection.cs │ │ │ └── Sychronisers │ │ │ │ └── ResXDocumentSynchroniser.cs │ │ ├── Exporting │ │ │ ├── ILocalisationExporter.cs │ │ │ ├── ILocalisationExporterRepository.cs │ │ │ └── LocalisationExporterRepository.cs │ │ ├── ILocalisableString.cs │ │ ├── ILocalisationDeclaration.cs │ │ ├── ILocalisationDeclarationCollection.cs │ │ ├── ILocalisationFile.cs │ │ ├── ILocalisationNavigationService.cs │ │ ├── ILocalisationResolver.cs │ │ ├── ILocalisationService.cs │ │ ├── ILocalisationValue.cs │ │ ├── LocalisableString.cs │ │ ├── LocalisationDeclaration.cs │ │ ├── LocalisationDeclarationCollection.cs │ │ ├── LocalisationFile.cs │ │ ├── LocalisationImportSource.cs │ │ ├── LocalisationNavigationService.cs │ │ ├── LocalisationResolver.cs │ │ ├── LocalisationService.cs │ │ ├── LocalisationUsage.cs │ │ ├── LocalisationValue.cs │ │ ├── Localiser Refactorings │ │ │ ├── CSharpLocaliserRefactoring.cs │ │ │ ├── ILocaliserRefactoring.cs │ │ │ ├── ILocaliserRefactoringRepository.cs │ │ │ └── LocaliserRefactoringRepository.cs │ │ ├── MFractor.Localisation.csproj │ │ ├── Navigation │ │ │ └── CSharpToResxNavigationHandler.cs │ │ ├── Properties.cs │ │ ├── Reporting │ │ │ └── ILocalisationUsageReporter.cs │ │ ├── Resources │ │ │ └── Snippets │ │ │ │ ├── ResxDesignerTemplate.txt │ │ │ │ └── ResxTemplate.txt │ │ ├── Scaffolding │ │ │ └── ResxScaffolder.cs │ │ ├── Strings Providers │ │ │ ├── CSharpLocalisableStringsProvider.cs │ │ │ ├── ILocalisableStringsProvider.cs │ │ │ ├── ILocalisableStringsProviderRepository.cs │ │ │ └── LocalisableStringsProviderRepository.cs │ │ ├── Tooltips │ │ │ ├── ILocalisationTooltipRenderer.cs │ │ │ └── LocalisationTooltipRenderer.cs │ │ ├── Translation │ │ │ ├── GoogleTranslator.cs │ │ │ └── ITranslator.cs │ │ ├── Utilities │ │ │ └── ResxFileHelper.cs │ │ ├── Value Providers │ │ │ ├── ILocalisationValuesProvider.cs │ │ │ ├── ILocalisationValuesProviderRepository.cs │ │ │ ├── IResXLocalisationImporter.cs │ │ │ ├── LocalisationValuesProviderRepository.cs │ │ │ └── ResXLocalisationImporter.cs │ │ ├── Work Units │ │ │ ├── LocalisationOperation.cs │ │ │ └── LocaliseDocumentWorkUnit.cs │ │ └── app.config │ ├── MFractor.MSBuild │ │ ├── IItemGroupFinder.cs │ │ ├── IProjectFileEntryFinder.cs │ │ ├── ItemGroupFinder.cs │ │ ├── MFractor.MSBuild.csproj │ │ ├── ProjectFileEntryFinder.cs │ │ └── Todo.txt │ ├── MFractor.Maui │ │ ├── Analysis │ │ │ ├── AutomationId │ │ │ │ ├── DuplicateAutomationIdsAnalysis.cs │ │ │ │ └── EmptyAutomationIdDeclaration.cs │ │ │ ├── Code Behind Field │ │ │ │ ├── CodeBehindFieldNameContainsInvalidCharactersAnalysis.cs │ │ │ │ ├── DuplicateCodeBehindFieldNameAnalysis.cs │ │ │ │ └── EmptyCodeBehindFieldDeclarationAnalysis.cs │ │ │ ├── CollectionView │ │ │ │ ├── CellUsageWithinCollectionViewItemTemplate.cs │ │ │ │ └── CollectionViewRequiresIsGrouped.cs │ │ │ ├── Colors │ │ │ │ ├── ColorValueCanBeConsolidated.cs │ │ │ │ ├── ColorValueCanBeReplacedWithStaticResource.cs │ │ │ │ ├── ColorValueCanBeReplacedWithStaticResourceBundle.cs │ │ │ │ ├── ColorValueCloselyMatchesAvailableStaticResource.cs │ │ │ │ ├── ColorValueCloselyMatchesNamedColor.cs │ │ │ │ ├── ColorValueCloselyMatchesNamedColorBundle.cs │ │ │ │ ├── DuplicatedColorValuesInDocument.cs │ │ │ │ ├── DuplicatedColorValuesInDocumentBundle.cs │ │ │ │ ├── HexadecimalValueMatchesNamedColor.cs │ │ │ │ └── MalformedHexadecimalColorValue.cs │ │ │ ├── ContentPage │ │ │ │ └── ContentPageHasMultipleChildrenAnalysis.cs │ │ │ ├── ContentView │ │ │ │ └── ContentViewHasMultipleChildrenAnalysis.cs │ │ │ ├── Data Binding │ │ │ │ ├── BindingAnalysisBundle.cs │ │ │ │ ├── BindingExpressionDoesNotReturnAPropertyAnalysis.cs │ │ │ │ ├── BindingExpressionIsAgainstNonPublicProperty.cs │ │ │ │ ├── BindingExpressionPropertyBundle.cs │ │ │ │ ├── BindingExpressionResolveAnalysis.cs │ │ │ │ └── BindingExpressionReturnTypeDoesNotMatchExpectedTypeAnalysis.cs │ │ │ ├── Data Templates │ │ │ │ └── DataTemplateExpected.cs │ │ │ ├── Dynamic Resources │ │ │ │ └── NoKeyProvidedToDynamicResourceExpression.cs │ │ │ ├── ElementDoesNotHaveAttachedPropertyAnalysis.cs │ │ │ ├── EmptyValueAssignmentAnalysis.cs │ │ │ ├── Event Handlers │ │ │ │ ├── EmptyEventHandlerAssignment.cs │ │ │ │ ├── EventHandlerDoesNotExistInCodeBehindAnalysis.cs │ │ │ │ ├── EventHandlerDoesNotExistInCodeBehindBundle.cs │ │ │ │ └── EventHandlerSignatureMatchesAnalysis.cs │ │ │ ├── ExpressionTreeAnalysisRoutine.cs │ │ │ ├── ExpressionTypeAnalysisRoutine.cs │ │ │ ├── Expressions │ │ │ │ ├── CodeBehindFieldReferenceDoesNotResolveAnalysis.cs │ │ │ │ ├── ConverterInputTypeMismatchAnalysis.cs │ │ │ │ ├── ConverterOuputTypeMismatchAnalysis.cs │ │ │ │ ├── DotNetSymbolComponentBundle.cs │ │ │ │ ├── DotNetSymbolComponentDoesNotResolveAnalysis.cs │ │ │ │ └── DotNetSymbolNamespaceResolvesAnalysis.cs │ │ │ ├── Fonts │ │ │ │ ├── FontReferenceIsNotEmbeddedResource.cs │ │ │ │ ├── GlyphDoesNotExistInFont.cs │ │ │ │ ├── InvalidNamedFontSizeAnalysis.cs │ │ │ │ └── UnknownEmbeddedFontReference.cs │ │ │ ├── Generics │ │ │ │ ├── GenericIsMissingTypeArgumentsAnalysis.cs │ │ │ │ ├── TypeArgumentsMisuseAnalysis.cs │ │ │ │ └── UnknownTypeProvidedToGenericAnalysis.cs │ │ │ ├── Grid │ │ │ │ ├── ColumnIsOutsideGridBoundaryAnalysis.cs │ │ │ │ ├── ColumnSpanIsOutsideGridBoundaryAnalysis.cs │ │ │ │ ├── ColumnSpanIsZero.cs │ │ │ │ ├── ElementMissingGridPosition.cs │ │ │ │ ├── GridAxisDefinitionsCanBeSimplifiedBundle.cs │ │ │ │ ├── GridElementDefinitionsCanBeSimplified.cs │ │ │ │ ├── GridRowColumnSetterIsNotANumber.cs │ │ │ │ ├── RedundantColumnPropertyAnalysis.cs │ │ │ │ ├── RedundantColumnSpanPropertyAnalysis.cs │ │ │ │ ├── RedundantRowPropertyAnalysis.cs │ │ │ │ ├── RedundantRowSpanPropertyAnalysis.cs │ │ │ │ ├── RowIsOutsideGridBoundaryAnalysis.cs │ │ │ │ ├── RowSpanIsOutsideGridBoundaryAnalysis.cs │ │ │ │ └── RowSpanIsZero.cs │ │ │ ├── IXamlAnalyser.cs │ │ │ ├── Images │ │ │ │ ├── MissingImageResourceAnalysis.cs │ │ │ │ └── MissingImageResourceBundle.cs │ │ │ ├── ObsoletePropertyUsedAnalysis.cs │ │ │ ├── OnIdiom │ │ │ │ └── OnIdiomReturnTypeMismatchAnalysis.cs │ │ │ ├── OnPlatform │ │ │ │ ├── OnPlatformReturnTypeMistmatchAnalysis.cs │ │ │ │ └── UnknownOnPlatformValue.cs │ │ │ ├── Preprocessors │ │ │ │ ├── ExportedFontPreprocessor.cs │ │ │ │ ├── FontTypefacePreprocessor.cs │ │ │ │ ├── ImageResourceAnalysisPreprocessor.cs │ │ │ │ ├── StaticResourceAnalysisPreprocessor.cs │ │ │ │ ├── StyleAnalysisPreprocessor.cs │ │ │ │ └── XamlAnalysisPreprocessorProvider.cs │ │ │ ├── Property Initialiser │ │ │ │ ├── PropertySetterAttributeDoesNotExistInParentAnalysis.cs │ │ │ │ ├── PropertySetterAttributeDoesNotExistInParentBundle.cs │ │ │ │ ├── PropertySetterNodeDoesNotExistInParent.cs │ │ │ │ ├── PropertySetterNodeMisuse.cs │ │ │ │ └── PropertySetterNodeTypeMismatch.cs │ │ │ ├── RefreshView │ │ │ │ └── RefreshViewContentShouldBeScrollableLayout.cs │ │ │ ├── Resource Dictionary │ │ │ │ ├── DuplicateResourceDictionaryKey.cs │ │ │ │ ├── MissingResourceDictionaryKey.cs │ │ │ │ └── ResourceKeyConflict.cs │ │ │ ├── Schemas │ │ │ │ └── MissingMicrosoftXamlSchema.cs │ │ │ ├── ScrollView │ │ │ │ └── ScrollViewHasMultipleDirectChildrenAnalysis.cs │ │ │ ├── Setter │ │ │ │ ├── SetterAttachedPropertyExists.cs │ │ │ │ ├── SetterPropertyExists.cs │ │ │ │ └── StyleOrTriggerHasDuplicateSetters.cs │ │ │ ├── Shell │ │ │ │ ├── DuplicateShellItemRoute.cs │ │ │ │ ├── EmptyShellRouteScheme.cs │ │ │ │ ├── MultipleVisualElementsDefinedInShellContent.cs │ │ │ │ └── ShellRequiresAtLeastOneShellItem.cs │ │ │ ├── Sliders │ │ │ │ └── SliderMinimumIsSetBeforeMaximum.cs │ │ │ ├── StackLayout │ │ │ │ └── StackLayoutCanBeChangedToTypedOrientation.cs │ │ │ ├── Static Resources │ │ │ │ ├── AmbiguousStaticResourceReference.cs │ │ │ │ ├── NoKeyProvidedToStaticResourceExpression.cs │ │ │ │ ├── StaticResourceReturnTypeMismatchAnalysis.cs │ │ │ │ ├── StaticResourceStyleTargetTypeIsIncompatible.cs │ │ │ │ ├── StaticSymbolTypeDoesNotMatchExpectedTypeAnalysis.cs │ │ │ │ ├── UndefinedStaticResourceAnalysis.cs │ │ │ │ └── UndefinedStaticResourceBundle.cs │ │ │ ├── Strings │ │ │ │ └── UnescapedNewlineInStringLiteral.cs │ │ │ ├── Styles │ │ │ │ ├── ElementCanUseAvailableStyle.cs │ │ │ │ ├── ElementCanUseAvailableStyleBundle.cs │ │ │ │ ├── PropertyValueIsAlreadyAppliedByStyle.cs │ │ │ │ ├── PropertyValueIsAlreadyAppliedByStyleBundle.cs │ │ │ │ ├── StyleIsMissingTargetTypeAnalysis.cs │ │ │ │ ├── StylePropertySetterDoesNotExistAnalysis.cs │ │ │ │ └── StyleTargetTypeDoesNotMatchBasedOnTargetType.cs │ │ │ ├── Thickness │ │ │ │ ├── InvalidThicknessAttributeValue.cs │ │ │ │ ├── ThicknessCanBeConsolidated.cs │ │ │ │ ├── ThicknessValueCanBeReplacedByStaticResource.cs │ │ │ │ ├── ThicknessValueCanBeReplacedByStaticResourceBundle.cs │ │ │ │ ├── ThicknessValueCanBeSimplified.cs │ │ │ │ └── ThicknessValueCanBeSimplifiedBundle.cs │ │ │ ├── Triggers │ │ │ │ ├── TriggerIsMissingTargetType.cs │ │ │ │ └── TriggerTargetTypeDoesNotMatchParent.cs │ │ │ ├── UnknownFieldModifier.cs │ │ │ ├── UnknownStaticPropertyValue.cs │ │ │ ├── ValueTypeInputNotValid.cs │ │ │ ├── Visual States │ │ │ │ ├── VisualStateSetterPropertyDoesNotExist.cs │ │ │ │ ├── VisualStateSetterTargetNameDoesNotExist.cs │ │ │ │ ├── VisualStateSetterTargetNameDoesNotExistBundle.cs │ │ │ │ └── VisualStateSetterTypeMismatch.cs │ │ │ ├── Xaml Namespaces │ │ │ │ ├── DuplicateNamespaceAssemblyReferenceAnalysis.cs │ │ │ │ ├── XmlNamespaceDoesNotExistAnalysis.cs │ │ │ │ └── XmlnsAssemblyDoesNotResolveAnalysis.cs │ │ │ ├── XamlAnalyser.cs │ │ │ ├── XamlAnalysisResultEventArgs.cs │ │ │ ├── XamlCodeAnalyser.cs │ │ │ ├── XamlCodeAnalysisExecutionFilters.cs │ │ │ ├── XamlExpressionAnalysisRoutine.cs │ │ │ └── XamlNodeDoesNotResolveAnalysis.cs │ │ ├── Attributes │ │ │ └── TargetXamlPlatformAttribute.cs │ │ ├── BindingContextResolver.cs │ │ ├── Code Actions │ │ │ ├── DisableAnalyserCodeAction.cs │ │ │ ├── Fix │ │ │ │ ├── Attributes │ │ │ │ │ ├── AutoCorrectMemberFix.cs │ │ │ │ │ └── CreateMissingPropertyForClassFix.cs │ │ │ │ ├── Code Behind Field │ │ │ │ │ └── CorrectCodeBehindFieldName.cs │ │ │ │ ├── Colors │ │ │ │ │ ├── ConsolidateColors.cs │ │ │ │ │ ├── FixMalformedColorUsingColorEditor.cs │ │ │ │ │ ├── ReplaceColorValueWithCloseNamedColor.cs │ │ │ │ │ ├── ReplaceColorValueWithStaticResource.cs │ │ │ │ │ ├── ReplaceHexValueWithNamedColor.cs │ │ │ │ │ └── ViewColorsForConsolidation.cs │ │ │ │ ├── ContentPage │ │ │ │ │ ├── EncapsulateContentPageChildrenWithGridFix.cs │ │ │ │ │ └── EncapsulateContentPageChildrenWithStackLayoutFix.cs │ │ │ │ ├── ElementDoesNotHaveAttachedPropertyFix.cs │ │ │ │ ├── Event Handlers │ │ │ │ │ ├── CorrectNameToMatchingCallbackHandler.cs │ │ │ │ │ └── GenerateEventHandlerInCodeBehindFix.cs │ │ │ │ ├── Expressions │ │ │ │ │ ├── AutoCorrectCSharpSymbolComponentFix.cs │ │ │ │ │ ├── AutoCorrectNearlyNamedPropertyBinding.cs │ │ │ │ │ ├── BindingExpressionDoesNotReturnAPropertyFix.cs │ │ │ │ │ ├── CSharpSymbolNamespaceResolvesFix.cs │ │ │ │ │ ├── CorrectCSharpSymbolNameFix.cs │ │ │ │ │ ├── CreateResolvingValueConverterFix.cs │ │ │ │ │ ├── GenerateBindingCommandStubFix.cs │ │ │ │ │ ├── GenerateBindingPropertyFix.cs │ │ │ │ │ └── ImportResolvingValueConverterFix.cs │ │ │ │ ├── Fonts │ │ │ │ │ ├── AutocorrectEmbeddedFontReference.cs │ │ │ │ │ ├── AutocorrectInvalidFontSizeFix.cs │ │ │ │ │ └── SetFontBuildActionToEmbeddedResource.cs │ │ │ │ ├── Generics │ │ │ │ │ └── CreateTypeArgumentsAttributeFix.cs │ │ │ │ ├── Grids │ │ │ │ │ ├── MoveGridPropertiesToParent.cs │ │ │ │ │ ├── RemoveRedundantGridProperties.cs │ │ │ │ │ └── SimplifyGridAxisDefinition.cs │ │ │ │ ├── IGeneratePropertyInParentTypeFix.cs │ │ │ │ ├── Icon │ │ │ │ │ └── ReplaceIconWithIconImageSource.cs │ │ │ │ ├── Images │ │ │ │ │ ├── CorrectImageName.cs │ │ │ │ │ └── ImportMissingImageResource.cs │ │ │ │ ├── Missing Class │ │ │ │ │ ├── GenerateMissingClassAsCSharpViewFix.cs │ │ │ │ │ ├── GenerateMissingClassAsValueConverterFix.cs │ │ │ │ │ └── GenerateMissingClassAsXamlViewFix.cs │ │ │ │ ├── OnPlatform │ │ │ │ │ └── AutocorrectUnknownOnPlatformValue.cs │ │ │ │ ├── RefreshView │ │ │ │ │ └── LearnMoreAboutRefreshViewContentShouldBeScrollableLayout.cs │ │ │ │ ├── Resource Dictionary │ │ │ │ │ └── GenerateResourceDictionaryKeyFix.cs │ │ │ │ ├── Schemas │ │ │ │ │ └── AddMissingMicrosoftSchema.cs │ │ │ │ ├── ScrollView │ │ │ │ │ ├── EncapsulateScrollViewChildrenWithGridFix.cs │ │ │ │ │ └── EncapsulateScrollViewChildrenWithStackLayoutFix.cs │ │ │ │ ├── Setters │ │ │ │ │ ├── FixSetterPropertyName.cs │ │ │ │ │ └── RemoveDuplicateSetter.cs │ │ │ │ ├── Sliders │ │ │ │ │ ├── LearnMoreAboutSliderMaximumBeforeMinimum.cs │ │ │ │ │ └── PlaceSlideMaximumBeforeMinimum.cs │ │ │ │ ├── StackLayout │ │ │ │ │ └── ChangeStackLayoutToOrientationTypedLayout.cs │ │ │ │ ├── Static Resources │ │ │ │ │ ├── CorrectStaticResourceNameFix.cs │ │ │ │ │ ├── CreateMissingStyleFix.cs │ │ │ │ │ └── ImportResourceDictionaryFix.cs │ │ │ │ ├── Strings │ │ │ │ │ └── EscapeNewlineCharacter.cs │ │ │ │ ├── Styles │ │ │ │ │ ├── ElementCanUseAvailableStyleFix.cs │ │ │ │ │ ├── RemoveRedundantStylePropertyInitialisation.cs │ │ │ │ │ ├── ReplaceStyleSetterPropertyWithAutocorrectionFix.cs │ │ │ │ │ └── StyleIsMissingTargetTypeFix.cs │ │ │ │ ├── Thickness │ │ │ │ │ ├── ConsolidateThicknesses.cs │ │ │ │ │ ├── ReplaceThicknessValueWithStaticResource.cs │ │ │ │ │ ├── SimplifyThicknessValue.cs │ │ │ │ │ └── ViewThicknessesForConsolidation.cs │ │ │ │ ├── Triggers │ │ │ │ │ ├── AddTriggerTargetType.cs │ │ │ │ │ └── FixTriggerTargetType.cs │ │ │ │ ├── UnknownStaticPropertyValueFix.cs │ │ │ │ ├── Unresolved Xaml Node │ │ │ │ │ ├── CreateXmlNamespaceFix.cs │ │ │ │ │ ├── ImportReferenceFix.cs │ │ │ │ │ └── ImportUnresolvedReferenceFix.cs │ │ │ │ ├── XReferenceDoesNotResolveFix.cs │ │ │ │ ├── Xaml Namespaces │ │ │ │ │ └── MultipleNamespaceAssemblyReferenceFix.cs │ │ │ │ └── XmlNamespaceDoesNotExistFix.cs │ │ │ ├── FixCodeAction.cs │ │ │ ├── Generate │ │ │ │ ├── AddResourceDictionary.cs │ │ │ │ ├── AddRowAndColumnDefinitions.cs │ │ │ │ ├── CreateStaticResourceLookupInCodeBehind.cs │ │ │ │ ├── GenerateCustomRenderers.cs │ │ │ │ ├── GenerateNewViewModel.cs │ │ │ │ ├── GeneratePlatformEffectFromXaml.cs │ │ │ │ ├── GenerateValueConverterForTypeFlow.cs │ │ │ │ ├── ImplementMissingMembers.cs │ │ │ │ ├── InsertAttachedProperty.cs │ │ │ │ ├── InsertBindableProperty.cs │ │ │ │ └── InsertViewModelCommand.cs │ │ │ ├── GenerateXamlCodeAction.cs │ │ │ ├── Misc │ │ │ │ └── ViewBindingContextResolutionDocs.cs │ │ │ ├── NavigateXamlCodeAction.cs │ │ │ ├── OrganiseXamlCodeAction.cs │ │ │ ├── Refactor │ │ │ │ ├── Colors │ │ │ │ │ ├── AddTransparencyChannelToColor.cs │ │ │ │ │ ├── ConvertNamedColorToHexadecimal.cs │ │ │ │ │ └── EditColor.cs │ │ │ │ ├── ExtractIntoPropertyBinding.cs │ │ │ │ ├── ExtractResourceDictionary.cs │ │ │ │ ├── ExtractXamlIntoControl.cs │ │ │ │ ├── Grids │ │ │ │ │ ├── ConvertBetweenGridAutoStar.cs │ │ │ │ │ ├── ConvertGridRowColumnsToAttributeFormat.cs │ │ │ │ │ ├── ConvertGridRowColumnsToNodeFormat.cs │ │ │ │ │ ├── ConvertStackLayoutToGrid.cs │ │ │ │ │ ├── DeleteColumnAndUpdate.cs │ │ │ │ │ ├── DeleteRowAndUpdate.cs │ │ │ │ │ ├── InsertColumnAndUpdate.cs │ │ │ │ │ └── InsertRowAndUpdate.cs │ │ │ │ ├── Layouts │ │ │ │ │ ├── ConvertContentViewToAlternativeLayout.cs │ │ │ │ │ └── EncapsulateElementWithLayout.cs │ │ │ │ ├── Pages │ │ │ │ │ └── ChangePageKind.cs │ │ │ │ ├── Properties │ │ │ │ │ └── MoveAttributeToParent.cs │ │ │ │ ├── ReplaceWithLocalisationLookup.cs │ │ │ │ ├── Static Resources │ │ │ │ │ ├── MergeStaticResourceValueIntoAttribute.cs │ │ │ │ │ ├── MoveStaticResourceDefinitionToAppXaml.cs │ │ │ │ │ └── MoveValueToResourceEntry.cs │ │ │ │ └── Styles │ │ │ │ │ └── ExtractStyle.cs │ │ │ ├── RefactorXamlCodeAction.cs │ │ │ └── XamlCodeAction.cs │ │ ├── Code Generation │ │ │ ├── Attached Properties │ │ │ │ ├── AttachedPropertyGenerator.cs │ │ │ │ └── IAttachedPropertyGenerator.cs │ │ │ ├── Bindable Properties │ │ │ │ ├── BindablePropertyGenerator.cs │ │ │ │ └── IBindablePropertyGenerator.cs │ │ │ ├── Colors │ │ │ │ ├── ColorUsageConsolidator.cs │ │ │ │ └── IColorUsageConsolidator.cs │ │ │ ├── Commands │ │ │ │ ├── CommandImplementationGenerator.cs │ │ │ │ └── ICommandImplementationGenerator.cs │ │ │ ├── Custom Renderers │ │ │ │ ├── CustomRendererGenerator.cs │ │ │ │ └── ICustomRendererGenerator.cs │ │ │ ├── Data Templates │ │ │ │ ├── DataTemplateSelectorGenerator.cs │ │ │ │ └── IDataTemplateSelectorGenerator.cs │ │ │ ├── DesignTimeBindingContextAttributeGenerator.cs │ │ │ ├── Effects │ │ │ │ ├── IPlatformEffectGenerator.cs │ │ │ │ └── PlatformEffectGenerator.cs │ │ │ ├── Fonts │ │ │ │ ├── ExportFontDeclarationGenerator.cs │ │ │ │ ├── FontFamilyOnPlatformGenerator.cs │ │ │ │ ├── IExportFontDeclarationGenerator.cs │ │ │ │ └── IFontFamilyOnPlatformGenerator.cs │ │ │ ├── Grids │ │ │ │ ├── DeleteGridRowColumnGenerator.cs │ │ │ │ ├── GridColumnDefinitionGenerator.cs │ │ │ │ ├── GridGenerator.cs │ │ │ │ ├── GridRowDefinitionGenerator.cs │ │ │ │ ├── IDeleteGridRowColumnGenerator.cs │ │ │ │ ├── IGridColumnDefinitionGenerator.cs │ │ │ │ ├── IGridGenerator.cs │ │ │ │ ├── IGridRowDefinitionGenerator.cs │ │ │ │ ├── IInsertGridRowColumnGenerator.cs │ │ │ │ └── InsertGridRowColumnGenerator.cs │ │ │ ├── IDesignTimeBindingContextAttributeGenerator.cs │ │ │ ├── Mvvm │ │ │ │ ├── IViewViewModelGenerator.cs │ │ │ │ ├── ViewAndViewModelGenerator.cs │ │ │ │ └── ViewViewModelGenerationOptions.cs │ │ │ ├── Properties │ │ │ │ ├── IViewModelPropertyGenerator.cs │ │ │ │ └── ViewModelPropertyGenerator.cs │ │ │ ├── Resource Dictionaries │ │ │ │ ├── IImportResourceDictionaryGenerator.cs │ │ │ │ └── ImportResourceDictionaryGenerator.cs │ │ │ ├── Resources │ │ │ │ ├── IInsertResourceEntryGenerator.cs │ │ │ │ └── InsertResourceEntryGenerator.cs │ │ │ ├── Static Binding │ │ │ │ ├── IStaticBindingExpressionGenerator.cs │ │ │ │ └── StaticBindingExpressionGenerator.cs │ │ │ ├── Style Sheets │ │ │ │ ├── IStyleSheetGenerator.cs │ │ │ │ └── StyleSheetGenerator.cs │ │ │ ├── Styles │ │ │ │ ├── IStyleGenerator.cs │ │ │ │ └── StyleGenerator.cs │ │ │ ├── Thickness │ │ │ │ ├── IThicknessUsageConsolidator.cs │ │ │ │ └── ThicknessUsageConsolidator.cs │ │ │ ├── Value Conversion │ │ │ │ ├── IValueConversionAttributeImplementationGenerator.cs │ │ │ │ ├── IValueConversionSettings.cs │ │ │ │ ├── IValueConverterGenerator.cs │ │ │ │ ├── ValueConversionAttributeImplementationGenerator.cs │ │ │ │ ├── ValueConversionSettings.cs │ │ │ │ ├── ValueConverterGenerationOptions.cs │ │ │ │ └── ValueConverterGenerator.cs │ │ │ ├── Views │ │ │ │ ├── IXamlViewWithCodeBehindGenerator.cs │ │ │ │ └── XamlViewWithCodeBehindGenerator.cs │ │ │ ├── Xaml │ │ │ │ ├── IRenameXamlNamespaceGenerator.cs │ │ │ │ ├── IRenameXmlNodeGenerator.cs │ │ │ │ ├── IXamlNamespaceImportGenerator.cs │ │ │ │ ├── RenameXamlNamespaceGenerator.cs │ │ │ │ ├── RenameXmlNodeGenerator.cs │ │ │ │ └── XamlNamespaceImportGenerator.cs │ │ │ └── XamlCodeGenerator.cs │ │ ├── Commands │ │ │ ├── Fonts │ │ │ │ ├── AddExportFontDeclarationCommand.cs │ │ │ │ └── CopyFontFamilyXamlToClipboardCommand.cs │ │ │ ├── Navigation │ │ │ │ └── GoToXamlSymbolCommand.cs │ │ │ └── Wizards │ │ │ │ ├── MVVMWizardCommand.cs │ │ │ │ └── ValueConverterWizardCommand.cs │ │ ├── Configuration │ │ │ ├── AndroidCustomRendererConfiguration.cs │ │ │ ├── AppXamlConfiguration.cs │ │ │ ├── BehaviorsConfiguration.cs │ │ │ ├── CustomControlsConfiguration.cs │ │ │ ├── IAndroidCustomRendererConfiguration.cs │ │ │ ├── IAppXamlConfiguration.cs │ │ │ ├── IBehaviorsConfiguration.cs │ │ │ ├── ICustomControlsConfiguration.cs │ │ │ ├── IIOSCustomRendererConfiguration.cs │ │ │ ├── IOSCustomRendererConfiguration.cs │ │ │ ├── IValueConverterTypeInfermentConfiguration.cs │ │ │ ├── IViewModelGenerationConfiguration.cs │ │ │ └── ValueConverterTypeInfermentConfiguration.cs │ │ ├── Custom Renderers │ │ │ ├── CustomRendererAssocation.cs │ │ │ ├── CustomRendererTypeMapping.cs │ │ │ ├── CustomRendererTypeMappingService.cs │ │ │ ├── ICustomRendererTypeMappingService.cs │ │ │ └── RendererCodeSnippetArguments.cs │ │ ├── Data │ │ │ ├── DatabaseSchema.cs │ │ │ ├── GarbageCollectionEvents.cs │ │ │ ├── Indexes │ │ │ │ ├── ColorDefinitionsByColorIndex.cs │ │ │ │ ├── ColorUsageColorIntegerIndex.cs │ │ │ │ ├── StaticResourcesByNameIndex.cs │ │ │ │ ├── StyleDefinitionStaticResourceIndex.cs │ │ │ │ ├── StyleSetterStyleDefinitionIndex.cs │ │ │ │ ├── StyleStaticResourceDefinitionsIndex.cs │ │ │ │ ├── ThicknessDefinitionFormattedValueIndex.cs │ │ │ │ └── ThicknessUsageFormattedValueIndex.cs │ │ │ ├── Models │ │ │ │ ├── AppThemeColorDefinition.cs │ │ │ │ ├── AutomationIdDeclaration.cs │ │ │ │ ├── ClassDeclaration.cs │ │ │ │ ├── ColorDefinition.cs │ │ │ │ ├── ColorUsage.cs │ │ │ │ ├── DesignTimeBindingContextDefinition.cs │ │ │ │ ├── DictionaryReferenceKind.cs │ │ │ │ ├── DynamicResourceDefinition.cs │ │ │ │ ├── ExportFontDeclaration.cs │ │ │ │ ├── OnPlatformDeclaration.cs │ │ │ │ ├── ResourceDictionaryReference.cs │ │ │ │ ├── StaticResourceDefinition.cs │ │ │ │ ├── StringResourceDefinition.cs │ │ │ │ ├── StyleDefinition.cs │ │ │ │ ├── StyleSetter.cs │ │ │ │ ├── ThicknessDefinition.cs │ │ │ │ └── ThicknessUsage.cs │ │ │ ├── Repositories │ │ │ │ ├── AppThemeColorDefinitionRepository.cs │ │ │ │ ├── AutomationIdDeclarationRepository.cs │ │ │ │ ├── ClassDeclarationRepository.cs │ │ │ │ ├── ColorDefinitionRepository.cs │ │ │ │ ├── ColorUsageRepository.cs │ │ │ │ ├── DesignTimeBindingContextDefinitionRepository.cs │ │ │ │ ├── DynamicResourceDefinitionRepository.cs │ │ │ │ ├── OnPlatformDeclarationRepository.cs │ │ │ │ ├── ResourceDictionaryReferenceRepository.cs │ │ │ │ ├── StaticResourceDefinitionRepository.cs │ │ │ │ ├── StringResourceDefinitionRepository.cs │ │ │ │ ├── StyleDefinitionRepository.cs │ │ │ │ ├── StyleSetterRepository.cs │ │ │ │ ├── ThicknessDefinitionRepository.cs │ │ │ │ └── ThicknessUsageRepository.cs │ │ │ ├── RepositoryCollection.cs │ │ │ └── Synchronisation │ │ │ │ ├── CSharpDocumentSynchroniser.cs │ │ │ │ └── XamlDocumentSynchroniser.cs │ │ ├── DynamicResourceResolver.cs │ │ ├── DynamicResourceResult.cs │ │ ├── ExpressionParserRepository.cs │ │ ├── Font Sizes │ │ │ ├── FontSize.cs │ │ │ ├── FontSizeConfigurationService.cs │ │ │ ├── IFontSize.cs │ │ │ └── IFontSizeConfigurationService.cs │ │ ├── Fonts │ │ │ ├── EmbeddedFont.cs │ │ │ ├── EmbeddedFontsResolver.cs │ │ │ ├── FontFamilyResolver.cs │ │ │ ├── IEmbeddedFont.cs │ │ │ ├── IEmbeddedFontsResolver.cs │ │ │ └── IFontFamilyResolver.cs │ │ ├── Grids │ │ │ ├── GridAxisDefinition.cs │ │ │ ├── GridAxisDefinitionFormat.cs │ │ │ ├── GridAxisResolver.cs │ │ │ ├── IGridAxisDefinition.cs │ │ │ └── IGridAxisResolver.cs │ │ ├── IBindingContextResolver.cs │ │ ├── IDynamicResourceResolver.cs │ │ ├── IExpressionParserRepository.cs │ │ ├── IMarkupExpressionEvaluater.cs │ │ ├── IParsedXamlDocument.cs │ │ ├── IParsedXamlDocumentFactory.cs │ │ ├── ITargetTypeSymbolResolver.cs │ │ ├── IValueConverterTypeInferenceService.cs │ │ ├── IXamlFeatureContext.cs │ │ ├── IXamlFeatureContextService.cs │ │ ├── Images │ │ │ ├── CSharpFormsImageUsage.cs │ │ │ ├── CSharpFormsImageUsageFinder.cs │ │ │ ├── XamlImageAssetUsage.cs │ │ │ └── XamlImageUsageFinder.cs │ │ ├── Keywords.cs │ │ ├── Localisation │ │ │ ├── IXamlStringLocalisationGenerator.cs │ │ │ ├── XamlLocalisableStringsProvider.cs │ │ │ └── XamlStringLocaliserRefactoring.cs │ │ ├── MFractor.Maui.csproj │ │ ├── MarkupExpressionEvaluater.cs │ │ ├── Mvvm │ │ │ ├── BaseViewModelInferenceService.cs │ │ │ ├── Binding Context Connectors │ │ │ │ ├── BindingContextConnector.cs │ │ │ │ ├── CodeBehindBindingContextConnector.cs │ │ │ │ ├── DefaultBindingContextConnector.cs │ │ │ │ ├── IBindingContextConnector.cs │ │ │ │ ├── PrismApplicationBindingContextConnector.cs │ │ │ │ └── XamlViewBindingContextConnector.cs │ │ │ ├── BindingContextConnectorService.cs │ │ │ ├── IBaseViewModelInferenceService.cs │ │ │ ├── IBindingContextConnectorService.cs │ │ │ ├── IMvvmResolutionSettings.cs │ │ │ ├── IMvvmResolver.cs │ │ │ ├── IProjectMvvmSettingsService.cs │ │ │ ├── MvvmResolutionSettings.cs │ │ │ ├── MvvmResolver.cs │ │ │ ├── ProjectMvvmSettings.cs │ │ │ └── ProjectMvvmSettingsService.cs │ │ ├── Navigation │ │ │ └── XamlNavigationHandler.cs │ │ ├── ParsedXamlDocument.cs │ │ ├── ParsedXamlDocumentFactory.cs │ │ ├── Properties.cs │ │ ├── Relational Navigation │ │ │ └── XamlRelationalNavigationHandler.cs │ │ ├── Resources │ │ │ ├── Configuration │ │ │ │ ├── CustomRendererTypeMapping.xml │ │ │ │ └── FontSizeMapping.xml │ │ │ └── Snippets │ │ │ │ ├── Android │ │ │ │ ├── CellRenderer.txt │ │ │ │ ├── ControlRenderer.txt │ │ │ │ └── CustomRenderer.txt │ │ │ │ ├── AttachedProperty.txt │ │ │ │ ├── BindableProperty.txt │ │ │ │ ├── BindableProperty_PropertyChanged.txt │ │ │ │ ├── CodeBehindClass.txt │ │ │ │ ├── Command.txt │ │ │ │ ├── DataTemplateSelectorTemplate.txt │ │ │ │ ├── DesignTimeBindingContextAnnotation.txt │ │ │ │ ├── DesignTimeBindingContextAttribute.txt │ │ │ │ ├── ExportFont.txt │ │ │ │ ├── FodyWeavers.txt │ │ │ │ ├── PlatformEffectTemplate.txt │ │ │ │ ├── RoutingEffectTemplate.txt │ │ │ │ ├── StyleSheet.txt │ │ │ │ ├── ValueConversionAttribute.txt │ │ │ │ ├── ValueConverter.txt │ │ │ │ ├── View.xaml.txt │ │ │ │ ├── ViewModelProperty.txt │ │ │ │ ├── ViewModelPropertyWithValue.txt │ │ │ │ └── iOS │ │ │ │ ├── CellRenderer.txt │ │ │ │ ├── ControlRenderer.txt │ │ │ │ └── CustomRenderer.txt │ │ ├── Scaffolding │ │ │ ├── DataTemplateSelectorScaffolder.cs │ │ │ ├── DesignTimeBindingContextAttributeScaffolder.cs │ │ │ ├── ResourceDictionaryScaffolder.cs │ │ │ ├── ValueConversionAttributeScaffolder.cs │ │ │ ├── XamlControlScaffolder.cs │ │ │ ├── XamlPageScaffolder.cs │ │ │ └── XamlViewUsingContextualBaseClass.cs │ │ ├── Semantics │ │ │ ├── CodeBehindFieldCollection.cs │ │ │ ├── ICodeBehindField.cs │ │ │ ├── ICodeBehindFieldCollection.cs │ │ │ ├── IXamlSemanticModel.cs │ │ │ ├── IXamlSemanticModelFactory.cs │ │ │ ├── XamlSemanticModel.cs │ │ │ └── XamlSemanticModelFactory.cs │ │ ├── Static Resources │ │ │ ├── IStaticResourceCollection.cs │ │ │ ├── IStaticResourceResolver.cs │ │ │ ├── StaticResourceCollection.cs │ │ │ ├── StaticResourceResolver.cs │ │ │ └── StaticResourceResult.cs │ │ ├── Styles │ │ │ ├── ApplyStyleRefactoring.cs │ │ │ ├── IApplyStyleRefactoring.cs │ │ │ ├── ILiteralStylePropertyValue.cs │ │ │ ├── IStyle.cs │ │ │ ├── IStyleProperty.cs │ │ │ ├── IStylePropertyCollection.cs │ │ │ ├── IStylePropertyFinder.cs │ │ │ ├── IStylePropertyValue.cs │ │ │ ├── IStyleResolver.cs │ │ │ ├── LiteralStylePropertyValue.cs │ │ │ ├── Style.cs │ │ │ ├── StyleProperty.cs │ │ │ ├── StylePropertyCollection.cs │ │ │ ├── StylePropertyFinder.cs │ │ │ └── StyleResolver.cs │ │ ├── Symbols │ │ │ ├── IXamlSymbolResolver.cs │ │ │ ├── IXamlTypeResolver.cs │ │ │ ├── XamlSymbolInfo.cs │ │ │ ├── XamlSymbolKind.cs │ │ │ ├── XamlSymbolResolver.cs │ │ │ └── XamlTypeResolver.cs │ │ ├── Syntax │ │ │ ├── AssignmentSyntax.cs │ │ │ ├── ContentSyntax.cs │ │ │ ├── ElementSyntax.cs │ │ │ ├── ErrorSyntax.cs │ │ │ ├── ExpressionFactory.cs │ │ │ ├── ExpressionParserState.cs │ │ │ ├── ExpressionSyntax.cs │ │ │ ├── Expressions │ │ │ │ ├── BindingExpression.cs │ │ │ │ ├── BindingModeExpression.cs │ │ │ │ ├── BindingModeValueExpression.cs │ │ │ │ ├── ConverterExpression.cs │ │ │ │ ├── ConverterParameterExpression.cs │ │ │ │ ├── DefaultMarkupExtensionExpression.cs │ │ │ │ ├── DotNetTypeSymbolExpression.cs │ │ │ │ ├── DynamicResourceExpression.cs │ │ │ │ ├── Expression.cs │ │ │ │ ├── ExpressionComponent.cs │ │ │ │ ├── ExpressionParserHelper.cs │ │ │ │ ├── LiteralValueExpression.cs │ │ │ │ ├── MarkupExtensionExpression.cs │ │ │ │ ├── NameExpression.cs │ │ │ │ ├── PathExpression.cs │ │ │ │ ├── PropertyAssignmentExpression.cs │ │ │ │ ├── PropertyExpression.cs │ │ │ │ ├── ReferenceExpression.cs │ │ │ │ ├── SourceExpression.cs │ │ │ │ ├── StaticBindingExpression.cs │ │ │ │ ├── StaticResourceExpression.cs │ │ │ │ ├── StringFormatExpression.cs │ │ │ │ ├── StringFormatValueExpression.cs │ │ │ │ └── ValueExpression.cs │ │ │ ├── MemberAccessExpressionSyntax.cs │ │ │ ├── MemberNameSyntax.cs │ │ │ ├── NameSyntax.cs │ │ │ ├── NamespaceSyntax.cs │ │ │ ├── ParserCharacterMode.cs │ │ │ ├── Parsers │ │ │ │ ├── AssignmentExpressionParser.cs │ │ │ │ ├── BindingExpressionParser.cs │ │ │ │ ├── BindingModeExpressionParser.cs │ │ │ │ ├── ConverterExpressionParser.cs │ │ │ │ ├── ConverterParameterExpressionParser.cs │ │ │ │ ├── DefaultMarkupExtensionExpressionParser.cs │ │ │ │ ├── DynamicResourceExpressionParser.cs │ │ │ │ ├── ExpressionParser.cs │ │ │ │ ├── IExpressionParser.cs │ │ │ │ ├── MarkupExtensionExpressionParser.cs │ │ │ │ ├── NameExpressionParser.cs │ │ │ │ ├── PathExpressionParser.cs │ │ │ │ ├── ReferenceExpressionParser.cs │ │ │ │ ├── SourceExpressionParser.cs │ │ │ │ ├── StaticBindingExpressionParser.cs │ │ │ │ ├── StaticResourceExpressionParser.cs │ │ │ │ └── StringFormatExpressionParser.cs │ │ │ ├── PropertySyntax.cs │ │ │ ├── StringValueSyntax.cs │ │ │ ├── SymbolSyntax.cs │ │ │ ├── TypeNameSyntax.cs │ │ │ ├── ValueSyntax.cs │ │ │ ├── XamlExpressionParser.cs │ │ │ ├── XamlExpressionSyntaxKind.cs │ │ │ ├── XamlExpressionSyntaxNode.cs │ │ │ └── XamlMarkupExtensionNames.cs │ │ ├── TargetTypeSymbolResolver.cs │ │ ├── TargetTypeSymbolResult.cs │ │ ├── Thickness │ │ │ ├── ThicknessDimension.cs │ │ │ └── ThicknessValue.cs │ │ ├── Tooltips │ │ │ ├── AutomationIdTooltipRenderer.cs │ │ │ ├── DynamicResourceTooltipRenderer.cs │ │ │ ├── GridTooltipRenderer.cs │ │ │ ├── IAutomationIdTooltipRenderer.cs │ │ │ ├── IDynamicResourceTooltipRenderer.cs │ │ │ ├── IGridTooltipRenderer.cs │ │ │ ├── IMarginTooltipRenderer.cs │ │ │ ├── IStaticResourceTooltipRenderer.cs │ │ │ ├── StaticResourceTooltipRenderer.cs │ │ │ └── ThicknessTooltipRenderer.cs │ │ ├── Utilities │ │ │ ├── DesignTimeBindingContextHelper.cs │ │ │ ├── FormsSymbolHelper.cs │ │ │ ├── PrefixHelper.cs │ │ │ ├── Syntax Walkers │ │ │ │ └── DesignTimeBindingContextSyntaxWalker.cs │ │ │ ├── ThicknessHelper.cs │ │ │ ├── ValueConverterHelper.cs │ │ │ ├── Visitors │ │ │ │ └── TypedValueConverterVisitor.cs │ │ │ └── XamlSyntaxHelper.cs │ │ ├── ValueConverterTypeInferance.cs │ │ ├── ValueConverterTypeInferenceService.cs │ │ ├── ViewModels │ │ │ ├── DataBindingGatherer.cs │ │ │ └── IDataBindingGatherer.cs │ │ ├── Work Units │ │ │ ├── ConfigureProjectMvvmSettingsWorkUnit.cs │ │ │ ├── MVVMWizardWorkUnit.cs │ │ │ ├── ValueConverterWizardWorkUnit.cs │ │ │ └── XamlStyleEditorWorkUnit.cs │ │ ├── Xaml Platforms │ │ │ ├── ITypeDefinition.cs │ │ │ ├── IXamlPlatform.cs │ │ │ ├── IXamlPlatformRepository.cs │ │ │ ├── Maui │ │ │ │ └── MauiXamlPlatform.cs │ │ │ ├── TypeDefinition.cs │ │ │ ├── XamarinForms │ │ │ │ └── XamarinFormsXamlPlatform.cs │ │ │ ├── XamlPlatformFeature.cs │ │ │ └── XamlPlatformRepository.cs │ │ ├── XamlFeatureContext.cs │ │ ├── XamlFeatureContextService.cs │ │ ├── XamlPlatform.cs │ │ ├── Xmlns │ │ │ ├── AssemblyDeclaration.cs │ │ │ ├── ClrNamespaceDeclaration.cs │ │ │ ├── IXamlNamespace.cs │ │ │ ├── IXamlNamespaceCollection.cs │ │ │ ├── IXamlNamespaceParser.cs │ │ │ ├── IXamlSchema.cs │ │ │ ├── IXmlnsDefinition.cs │ │ │ ├── IXmlnsDefinitionCollection.cs │ │ │ ├── IXmlnsDefinitionResolver.cs │ │ │ ├── IXmlnsNamespaceSymbolResolver.cs │ │ │ ├── TargetPlatformDeclaration.cs │ │ │ ├── XamlNamespace.cs │ │ │ ├── XamlNamespaceCollection.cs │ │ │ ├── XamlNamespaceParser.cs │ │ │ ├── XamlSchema.cs │ │ │ ├── XamlSchemaHelper.cs │ │ │ ├── XamlSchemas.cs │ │ │ ├── XmlnsDefinition.cs │ │ │ ├── XmlnsDefinitionCollection.cs │ │ │ ├── XmlnsDefinitionResolver.cs │ │ │ └── XmlnsNamespaceSymbolResolver.cs │ │ └── app.config │ ├── MFractor.Views │ │ ├── About │ │ │ ├── AboutDialog.cs │ │ │ └── AboutDialogWorkUnitHandler.cs │ │ ├── Activation │ │ │ ├── ActivationControl.cs │ │ │ ├── ActivationDialog.cs │ │ │ └── ActivationDialogWorkUnitHandler.cs │ │ ├── Android Keytool │ │ │ ├── AndroidKeytoolControl.cs │ │ │ └── AndroidKeytoolDialog.cs │ │ ├── App Icon Importer │ │ │ ├── AppIconImagePreview.cs │ │ │ ├── AppIconImporterDialog.cs │ │ │ ├── AppIconImporterWorkUnitHandler.cs │ │ │ ├── Controls │ │ │ │ ├── ImageCollectionPanel.cs │ │ │ │ ├── ImagePreviewGroup.cs │ │ │ │ └── ImageSelectionPreview.cs │ │ │ ├── IconIdiomPreview.cs │ │ │ ├── IconItemPreview.cs │ │ │ ├── IconSetPreview.cs │ │ │ └── SelectTargetProjectsList.cs │ │ ├── Branding │ │ │ ├── BrandedFooter.cs │ │ │ └── BrandingHelper.cs │ │ ├── Class From Clipboard │ │ │ ├── CreateClassFromContentDialog.cs │ │ │ └── CreateClassFromContentWorkUnitHandler.cs │ │ ├── Code Snippets │ │ │ ├── CodeArgumentControl.cs │ │ │ ├── InsertCodeSnippetDialog.cs │ │ │ ├── InsertCodeSnippetEventArgs.cs │ │ │ └── InsertCodeSnippetWorkUnitHandler.cs │ │ ├── Colors │ │ │ ├── ColorChannelSelector.cs │ │ │ ├── ColorEditorDialog.cs │ │ │ ├── ColorInputWorkUnitHandler.cs │ │ │ └── ColorPickerControl.cs │ │ ├── Context Menu │ │ │ ├── ContextMenu.cs │ │ │ ├── ContextMenuElement.cs │ │ │ ├── ContextMenuElementKind.cs │ │ │ ├── ContextMenuService.cs │ │ │ └── IContextMenuService.cs │ │ ├── Controls │ │ │ ├── BoldCenteredLabel.cs │ │ │ ├── CenteredLabel.cs │ │ │ ├── CollapsibleContentView.cs │ │ │ ├── Collection │ │ │ │ ├── CollectionView.cs │ │ │ │ ├── CollectionViewItemDragEventArgs.cs │ │ │ │ ├── CollectionViewItemInteractionEventArgs.cs │ │ │ │ ├── CollectionViewItemSelectedEventArgs.cs │ │ │ │ ├── CollectionViewOptions.cs │ │ │ │ ├── ICollectionItem.cs │ │ │ │ ├── ICollectionViewDragOperationHandler.cs │ │ │ │ └── ProjectSelectionCollectionITem.cs │ │ │ ├── ColorPreviewControl.cs │ │ │ ├── ConfigurablePropertyContainer.cs │ │ │ ├── EmailEntry.cs │ │ │ ├── ImagePreviewControl.cs │ │ │ ├── LabelModifiers.cs │ │ │ ├── SearchTextEntry.cs │ │ │ ├── TitleLabel.cs │ │ │ └── WorkUnitPreviewControl.cs │ │ ├── Delete Output Folders │ │ │ ├── DeleteOutputFolderWorkUnitHandler.cs │ │ │ ├── DeleteOutputFoldersConfigurationDialog.cs │ │ │ └── MutableDeleteOutputFoldersOptions.cs │ │ ├── File Preview │ │ │ └── FilePreviewPanel.cs │ │ ├── Font Importer │ │ │ ├── FontImportResultEventArgs.cs │ │ │ ├── FontImporterDialog.cs │ │ │ └── ImportFontWorkUnitHandler.cs │ │ ├── Generate Code Files │ │ │ ├── GenerateCodeFileWorkUnitHandler.cs │ │ │ ├── GenerateCodeFilesDialog.cs │ │ │ └── GenerateCodeFilesEventArgs.cs │ │ ├── IImagePicker.cs │ │ ├── IRootWindowService.cs │ │ ├── ITextEditor.cs │ │ ├── ITextEditorFactory.cs │ │ ├── Image Cleanup Tool │ │ │ └── TODO.txt │ │ ├── Image Deletion Tool │ │ │ ├── DeleteImageAssetControl.cs │ │ │ ├── DeleteImageAssetWorkUnitHandler.cs │ │ │ ├── DeleteImagesDialog.cs │ │ │ └── ImagesDeletedEventArgs.cs │ │ ├── Image Importer │ │ │ ├── DownscaleResultEventArgs.cs │ │ │ ├── IImageImportOperation.cs │ │ │ ├── ImageImportTargetProject.cs │ │ │ ├── ImageImporterDialog.cs │ │ │ ├── Preview │ │ │ │ ├── ImageImportOperationPreviewControl.cs │ │ │ │ └── OutputImageSummary.cs │ │ │ ├── ProjectSelection.cs │ │ │ └── SourceImage.cs │ │ ├── Image Manager │ │ │ ├── ImageAssetCollectionItem.cs │ │ │ ├── ImageManagerControl.cs │ │ │ ├── ImageManagerDialog.cs │ │ │ └── ProjectFileCollectionItem.cs │ │ ├── Image Optimiser │ │ │ ├── ImageOptimisationResultDialog.cs │ │ │ └── OptimiseImageAssetWorkUnitHandler.cs │ │ ├── ImageSizeUtilities.cs │ │ ├── Licensing │ │ │ ├── LicenseDialog.cs │ │ │ ├── LicenseDialogWorkUnitHandler.cs │ │ │ ├── LicenseWidget.cs │ │ │ ├── LicenseWidgetOptions.cs │ │ │ ├── SerialKeyActivationWidget.cs │ │ │ └── SerialKeyEntry.cs │ │ ├── Localisation │ │ │ ├── FileLocalisationWizardDialog.cs │ │ │ └── LocaliseDocumentWorkUnitHandler.cs │ │ ├── MFractor.Views.projitems │ │ ├── MFractor.Views.shproj │ │ ├── MVVM Wizard │ │ │ ├── MVVMWizardDialog.cs │ │ │ ├── MVVMWizardResultEventArgs.cs │ │ │ ├── MVVMWizardWorkUnitHandler.cs │ │ │ └── Settings │ │ │ │ ├── ConfigureProjectMvvmSettingsWorkUnitHandler.cs │ │ │ │ ├── ProjectMvvmSettingsControl.cs │ │ │ │ ├── ProjectMvvmSettingsDialog.cs │ │ │ │ └── ProjectMvvmSettingsSavedEventArgs.cs │ │ ├── Name Value Input │ │ │ ├── NameValueInputControl.cs │ │ │ ├── NameValueInputDialog.cs │ │ │ └── NameValueInputWorkUnitHandler.cs │ │ ├── Onboarding │ │ │ ├── Footer │ │ │ │ ├── OnboardingFooterElement.cs │ │ │ │ └── OnboardingProgressFooter.cs │ │ │ ├── IOnboardingPanel.cs │ │ │ ├── OnboardingControl.cs │ │ │ ├── OnboardingDialog.cs │ │ │ ├── OnboardingDialogWorkUnitHandler.cs │ │ │ └── Panels │ │ │ │ ├── Activation │ │ │ │ ├── ActivateLiteControl.cs │ │ │ │ ├── ChooseActivationMethodControl.cs │ │ │ │ ├── IActivationPanel.cs │ │ │ │ └── ImportLicenseControl.cs │ │ │ │ ├── ActivationPanel.cs │ │ │ │ ├── GettingStartedPanel.cs │ │ │ │ ├── LicenseAgreementPanel.cs │ │ │ │ └── WelcomePanel.cs │ │ ├── Picker │ │ │ ├── PickerDialog.cs │ │ │ ├── PickerSelectionEventArgs.cs │ │ │ └── PickerWorkUnitHandler.cs │ │ ├── Progress │ │ │ ├── ProgressDialog.cs │ │ │ └── ProgressMonitorControl.cs │ │ ├── Project Selection │ │ │ ├── MultiProjectSelectionDialog.cs │ │ │ ├── ProjectSelectionEventArgs.cs │ │ │ ├── ProjectSelectorWorkUnitHandler.cs │ │ │ └── SingleProjectSelectionDialog.cs │ │ ├── Request Trial │ │ │ ├── RequestTrialDialog.cs │ │ │ └── RequestTrialPromptWorkUnitHandler.cs │ │ ├── Resources │ │ │ ├── check-green.png │ │ │ ├── chevron-left.png │ │ │ ├── chevron-right.png │ │ │ ├── cross.png │ │ │ ├── end-user-license.txt │ │ │ ├── exclamation-blue.png │ │ │ ├── exclamation-yellow.png │ │ │ ├── exclamation.png │ │ │ ├── feather-image-16.png │ │ │ ├── file-image.png │ │ │ ├── image-placeholder.png │ │ │ ├── mfractor_logo.png │ │ │ ├── mfractor_logo_32.png │ │ │ ├── mfractor_logo_grayscale.png │ │ │ └── wand.png │ │ ├── Scaffolding │ │ │ ├── ScaffolderControl.cs │ │ │ ├── ScaffolderDialog.cs │ │ │ ├── ScaffolderWorkUnitHandler.cs │ │ │ ├── ScaffoldingResult.cs │ │ │ └── ScaffoldingResultEventArgs.cs │ │ ├── Settings │ │ │ ├── CodeAnalysisWidget.cs │ │ │ ├── Commands │ │ │ │ ├── CodeAnalysisPreferencesCommand.cs │ │ │ │ ├── DeleteOutputOptionsPreferencesCommand.cs │ │ │ │ ├── FormattingOptionsPreferencesCommand.cs │ │ │ │ ├── PreferencesCommand.cs │ │ │ │ └── SettingsPreferencesCommand.cs │ │ │ ├── DeleteOutputFoldersOptionsWidget.cs │ │ │ ├── FormattingOptionsWidget.cs │ │ │ ├── IOptionsWidget.cs │ │ │ ├── PreferencesDialog.cs │ │ │ ├── SettingsDialog.cs │ │ │ └── SettingsWidget.cs │ │ ├── Text Input │ │ │ ├── TextEntryCompleteEventArgs.cs │ │ │ ├── TextInputDialog.cs │ │ │ └── TextInputWorkUnitHandler.cs │ │ ├── Type Simplification Wizard │ │ │ ├── SimplifyFileWorkUnitHandler.cs │ │ │ ├── TypeSimpificationWizardControl.cs │ │ │ ├── TypeSimplificationEventArgs.cs │ │ │ └── TypeSimplificationWizardDialog.cs │ │ ├── Value Converter Wizard │ │ │ ├── ValueConverterGenerationEventArgs.cs │ │ │ ├── ValueConverterWizard.cs │ │ │ ├── ValueConverterWizardControl.cs │ │ │ └── ValueConverterWizardWorkUnitHandler.cs │ │ ├── ViewModels │ │ │ ├── AsyncMvvmCommand.cs │ │ │ ├── IconImporterViewModel.cs │ │ │ ├── MvvmCommand.cs │ │ │ ├── ProjectItemViewModel.cs │ │ │ └── TargetProjectViewModel.cs │ │ └── XAML Style Editor │ │ │ ├── XamlStyleEditedEventArgs.cs │ │ │ ├── XamlStyleEditorDialog.cs │ │ │ └── XamlStyleEditorWorkUnitHandler.cs │ ├── MFractor.Workspace │ │ ├── AdHocProjectFile.cs │ │ ├── Data │ │ │ ├── Garbage Collection │ │ │ │ ├── IProjectFileDatabaseGarbageCollectionService.cs │ │ │ │ └── ProjectFileDatabaseGarbageCollectionService.cs │ │ │ ├── IProjectResourcesDatabase.cs │ │ │ ├── IResourcesDatabaseEngine.cs │ │ │ ├── Indexes │ │ │ │ ├── EntityByProjectFileIndex.cs │ │ │ │ └── ProjectFileByFilePathIndex.cs │ │ │ ├── Models │ │ │ │ ├── ProjectFile.cs │ │ │ │ └── ProjectFileOwnedEntity.cs │ │ │ ├── ProjectResourcesDatabase.cs │ │ │ ├── ProjectSynchronisationPassCompletedEventArgs.cs │ │ │ ├── Repositories │ │ │ │ ├── ProjectFileRepository.cs │ │ │ │ └── WorkspaceRepositoryProvider.cs │ │ │ ├── ResourcesDatabaseEngine.cs │ │ │ ├── Schemas │ │ │ │ └── WorkspaceSchema.cs │ │ │ ├── SolutionSynchronisationStatusEventArgs.cs │ │ │ └── Synchronisation │ │ │ │ ├── AssetResourceSynchroniserRepository.cs │ │ │ │ ├── IAssetResourceSynchroniser.cs │ │ │ │ ├── IAssetResourceSynchroniserRepository.cs │ │ │ │ ├── ITextResourceSynchroniser.cs │ │ │ │ ├── ITextResourceSynchroniserRepository.cs │ │ │ │ └── TextResourceSynchroniserRepository.cs │ │ ├── IMutableWorkspaceService.cs │ │ ├── IProjectFile.cs │ │ ├── IProjectFileChangeSet.cs │ │ ├── IProjectFolder.cs │ │ ├── IProjectService.cs │ │ ├── ISharedAssetsProject.cs │ │ ├── IWorkspaceProjectService.cs │ │ ├── IWorkspaceService.cs │ │ ├── MFractor.Workspace.csproj │ │ ├── ProjectFileChangeSet.cs │ │ ├── Properties.cs │ │ ├── Utilities │ │ │ ├── ProjectFolderExtensions.cs │ │ │ ├── ProjectIdentifierExtensions.cs │ │ │ └── VirtualFilePathHelper.cs │ │ ├── Work Units │ │ │ ├── CreateProjectFileWorkUnit.cs │ │ │ └── CreateProjectFolderWorkUnit.cs │ │ └── WorkspaceService.cs │ ├── MFractor.Xml │ │ ├── Code Actions │ │ │ ├── CollapseAttributesOntoSameLine.cs │ │ │ ├── CollapseNodeClosingTag.cs │ │ │ ├── ExpandAttributesOntoNewLines.cs │ │ │ ├── ExpandNodeWithClosingTag.cs │ │ │ ├── FormatXmlDocument.cs │ │ │ └── SortAttributes.cs │ │ ├── Code Generation │ │ │ ├── ISortedAttributeGenerator.cs │ │ │ └── SortedAttributeGenerator.cs │ │ ├── IXmlFormattingSettings.cs │ │ ├── MFractor.Xml.csproj │ │ ├── XmlFormattingSettings.cs │ │ └── app.config │ ├── MFractor.i18n │ │ ├── ICultureProvider.cs │ │ ├── IInternationalisationService.cs │ │ ├── MFractor.i18n.csproj │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── MFractor.iOS │ │ ├── Commands │ │ │ ├── AddFontPlistEntryCommand.cs │ │ │ ├── CopyBundleIdToClipboardCommand.cs │ │ │ └── StartAccessibilityInspectorCommand.cs │ │ ├── Data │ │ │ ├── DatabaseSchema.cs │ │ │ ├── Models │ │ │ │ └── BundleDetails.cs │ │ │ ├── Repositories │ │ │ │ └── BundleDetailsRepository.cs │ │ │ ├── RepositoryCollection.cs │ │ │ └── Synchronizers │ │ │ │ └── BundleDetailsSynchronizer.cs │ │ ├── Fonts │ │ │ ├── FontPlistEntryGenerator.cs │ │ │ ├── FontPlistEntryKind.cs │ │ │ └── IFontPlistEntryGenerator.cs │ │ ├── Idiom.cs │ │ ├── Images │ │ │ ├── AssetCatalogue.cs │ │ │ ├── AssetCatalogueInfo.cs │ │ │ ├── AssetCatalogueReader.cs │ │ │ ├── AssetCatalogueWriter.cs │ │ │ ├── IAssetCatalogueReader.cs │ │ │ ├── IAssetCatalogueWriter.cs │ │ │ ├── ImageCatalogueAsset.cs │ │ │ └── Usage Finders │ │ │ │ ├── CSharpImageUsageFinder.cs │ │ │ │ ├── InfoPlistImageUsageFinder.cs │ │ │ │ └── XIBImageUsageFinder.cs │ │ ├── MFractor.iOS.csproj │ │ ├── Properties.cs │ │ ├── Services │ │ │ └── IApplicationIconService.cs │ │ └── app.config │ └── MFractor │ │ ├── Analytics │ │ ├── ApplicationInsightsAnalyticsService.cs │ │ ├── IAnalyticsFeature.cs │ │ └── IAnalyticsService.cs │ │ ├── ApiConfig.cs │ │ ├── ApplicationLifecycleHandlerRepository.cs │ │ ├── ApplicationPaths.cs │ │ ├── AssemblyInfo.cs │ │ ├── Attributes │ │ ├── ApplicationLifecyclePriorityAttribute.cs │ │ ├── DescriptionAttribute.cs │ │ ├── ExportNameAttribute.cs │ │ └── ScaleFactorAttribute.cs │ │ ├── Bootstrapper.cs │ │ ├── Clipboard.cs │ │ ├── Code Snippets │ │ ├── CodeSnippedArgument.cs │ │ ├── CodeSnippet.cs │ │ ├── CodeSnippetFactory.cs │ │ ├── CodeSnippetsExtensions.cs │ │ ├── EmptyCodeSnippetArgumentMode.cs │ │ ├── Exceptions │ │ │ └── CodeSnippetResourceNotFoundException.cs │ │ ├── ICodeSnippet.cs │ │ ├── ICodeSnippetArgument.cs │ │ ├── ICodeSnippetFactory.cs │ │ ├── ICodeSnippetService.cs │ │ └── ReservedCodeSnippetArgumentName.cs │ │ ├── Commands │ │ ├── CodeActionCommand.cs │ │ ├── CommandRepository.cs │ │ ├── CommandState.cs │ │ ├── Composite Commands │ │ │ ├── InternalToolsCompositeCommand.cs │ │ │ ├── ToolsCompositeCommand.cs │ │ │ └── WizardsCompositeCommand.cs │ │ ├── CompositeCommand.cs │ │ ├── DefaultCommandContext.cs │ │ ├── DelegateCommand.cs │ │ ├── IAsyncCommand.cs │ │ ├── ICommand.cs │ │ ├── ICommandContext.cs │ │ ├── ICommandRepository.cs │ │ ├── ICommandState.cs │ │ ├── IInternalToolCommand.cs │ │ ├── ILinkCommand.cs │ │ ├── ILinkCommandFactory.cs │ │ ├── IToolCommand.cs │ │ ├── IWizardCommand.cs │ │ ├── LinkCommand.cs │ │ ├── LinkCommandFactory.cs │ │ ├── Main Menu │ │ │ ├── About │ │ │ │ ├── AboutCompositeCommand.cs │ │ │ │ ├── AboutProductCommand.cs │ │ │ │ ├── ActivationCommand.cs │ │ │ │ ├── OnboardingCommand.cs │ │ │ │ └── ViewReleaseNotesCommand.cs │ │ │ ├── Legal │ │ │ │ ├── EndUserLicenseCommand.cs │ │ │ │ ├── LegalCompositeCommand.cs │ │ │ │ ├── PrivacyPolicyCommand.cs │ │ │ │ └── ThirdPartyAttributionCommand.cs │ │ │ ├── LicenseSummaryCommand.cs │ │ │ ├── PreferencesCommand.cs │ │ │ ├── PurchaseCommand.cs │ │ │ ├── RecoverLicenseCommand.cs │ │ │ ├── Support │ │ │ │ ├── DocumentationSupportCommand.cs │ │ │ │ ├── EmailSupportCommand.cs │ │ │ │ ├── GitterSupportCommand.cs │ │ │ │ ├── SlackSupportCommand.cs │ │ │ │ ├── SubmitFeedbackCommand.cs │ │ │ │ ├── SupportCompositeCommand.cs │ │ │ │ └── TwitterSupportCommand.cs │ │ │ ├── VersionSummaryCommand.cs │ │ │ └── ViewLicenseCommand.cs │ │ ├── RequiresLicenseAttribute.cs │ │ ├── ResponseCommand.cs │ │ └── SeparatorCommand.cs │ │ ├── Concurrency │ │ ├── ConcurrentValue.cs │ │ └── TaskedBackgroundWorkerQueue.cs │ │ ├── Configuration │ │ ├── Attributes │ │ │ ├── CodeSnippetArgumentAttribute.cs │ │ │ ├── CodeSnippetDefaultValueAttribute.cs │ │ │ ├── CodeSnippetResourceAttribute.cs │ │ │ ├── ExportPropertyAttribute.cs │ │ │ └── SuppressConfigurationAttribute.cs │ │ ├── Configurable.cs │ │ ├── ConfigurablePartRepository.cs │ │ ├── ConfigurableProperty.cs │ │ ├── ConfigurablePropertyContainer.cs │ │ ├── ConfigurableRepository.cs │ │ ├── ConfigurationEngine.cs │ │ ├── ConfigurationEngineInitialiser.cs │ │ ├── ConfigurationId.cs │ │ ├── ConfigurationParser.cs │ │ ├── ConfigurationRepository.cs │ │ ├── ConfigurationScope.cs │ │ ├── FileExtensions.cs │ │ ├── IConfigurable.cs │ │ ├── IConfigurablePartRepository.cs │ │ ├── IConfigurableProperty.cs │ │ ├── IConfigurableRepository.cs │ │ ├── IConfigurationEngine.cs │ │ ├── IConfigurationParser.cs │ │ ├── IConfigurationPropertyConverter.cs │ │ ├── IConfigurationRepository.cs │ │ ├── IConfigurationRule.cs │ │ ├── IConfigurationSource.cs │ │ ├── IPropertySetting.cs │ │ ├── IUserOptions.cs │ │ ├── IUserOptionsTransaction.cs │ │ ├── JsonUserOptions.cs │ │ ├── JsonUserOptionsHelper.cs │ │ ├── Mocks │ │ │ ├── MockConfigurableProperty.cs │ │ │ ├── MockConfigurationSource.cs │ │ │ └── MockPropertySetting.cs │ │ ├── Property Converters │ │ │ ├── BooleanPropertyConverter.cs │ │ │ ├── CodeSnippetPropertyConverter.cs │ │ │ ├── DefaultPropertyConverter.cs │ │ │ ├── DoublePropertyConverter.cs │ │ │ ├── EnumPropertyConverter.cs │ │ │ ├── FileInfoPropertyConverter.cs │ │ │ ├── IntPropertyConverter.cs │ │ │ ├── PropertyConverter.cs │ │ │ ├── StringPropertyConverter.cs │ │ │ └── TypedPropertyConverter.cs │ │ ├── PropertyAssignmentType.cs │ │ └── UserOptionChangedEventArgs.cs │ │ ├── ContentTypes.cs │ │ ├── Data │ │ ├── Database.cs │ │ ├── DictionaryExtensions.cs │ │ ├── Entity.cs │ │ ├── Garbage Collection │ │ │ ├── DatabaseGarbageCollector.cs │ │ │ ├── GarbageCollectionEventsRepository.cs │ │ │ ├── IDatabaseGarbageCollector.cs │ │ │ ├── IGarbageCollectionEvents.cs │ │ │ └── IGarbageCollectionEventsRepository.cs │ │ ├── IDatabase.cs │ │ ├── Models │ │ │ └── GCEntity.cs │ │ ├── Repositories │ │ │ ├── EntityRepository.cs │ │ │ ├── IEntityIndex.cs │ │ │ ├── IEntityRepository.cs │ │ │ ├── IRepository.cs │ │ │ ├── IRepositoryCollection.cs │ │ │ ├── IRepositoryCollectionRepository.cs │ │ │ └── RepositoryCollectionRepository.cs │ │ └── Schemas │ │ │ ├── ISchema.cs │ │ │ ├── ISchemaRepository.cs │ │ │ ├── Schema.cs │ │ │ └── SchemaRepository.cs │ │ ├── DesktopPlatform.cs │ │ ├── Documentation │ │ ├── FeatureDocumentation.cs │ │ ├── FeatureDocumentationService.cs │ │ ├── IAmDocumented.cs │ │ ├── IFeatureDocumentation.cs │ │ └── IFeatureDocumentationService.cs │ │ ├── EnvironmentDetailsService.cs │ │ ├── FileLocation.cs │ │ ├── Heartbeat │ │ ├── IProductHeartbeat.cs │ │ ├── ProductHeartbeat.cs │ │ └── ProductHeartbeatEventArgs.cs │ │ ├── IApiConfig.cs │ │ ├── IApplicationLifeCycleHandlerRepository.cs │ │ ├── IApplicationLifecycleHandler.cs │ │ ├── IApplicationPaths.cs │ │ ├── IBootstrapper.cs │ │ ├── IClipboard.cs │ │ ├── IDialogsService.cs │ │ ├── IDispatcher.cs │ │ ├── IEnvironmentDetailsService.cs │ │ ├── IImageSizeUtilities.cs │ │ ├── IMailingListService.cs │ │ ├── IMetaDataObject.cs │ │ ├── IOC │ │ ├── AssemblyCompositionExportResolver.cs │ │ ├── BaseExportResolver.cs │ │ ├── DeclareExportResolverAttribute.cs │ │ ├── DependencyHelper.cs │ │ ├── ExportAssemblyAttribute.cs │ │ ├── ExternalPartComponentCatalog.cs │ │ ├── IExportResolver.cs │ │ ├── IExternalPartRegistrar.cs │ │ ├── IPartRepository.cs │ │ ├── IPartResolver.cs │ │ ├── PartRepository.cs │ │ ├── PartResolver.cs │ │ └── Resolver.cs │ │ ├── IOpenFileService.cs │ │ ├── IPlatformService.cs │ │ ├── IProductInformation.cs │ │ ├── IReleaseNotesService.cs │ │ ├── ISharedHttpClient.cs │ │ ├── ISupportUrls.cs │ │ ├── IThemeService.cs │ │ ├── IUrlLauncher.cs │ │ ├── ImageSize.cs │ │ ├── InteractionLocation.cs │ │ ├── LanguageMimeTypes.cs │ │ ├── Licensing │ │ ├── Activation │ │ │ ├── ILicenseActivationService.cs │ │ │ ├── ILicenseRequestFactory.cs │ │ │ ├── ILicenseRequestResult.cs │ │ │ ├── LicenseActivationService.cs │ │ │ ├── LicenseRequest.cs │ │ │ ├── LicenseRequestFactory.cs │ │ │ └── LicenseRequestResult.cs │ │ ├── Consumer │ │ │ ├── LicenseConsumer.cs │ │ │ ├── LicenseValidationFailure.cs │ │ │ └── Validations │ │ │ │ ├── InvalidCustomerValidation.cs │ │ │ │ ├── InvalidProductValidation.cs │ │ │ │ └── LicenseExpiredValidation.cs │ │ ├── DocumentUsage.cs │ │ ├── ILicenseSigningInformation.cs │ │ ├── ILicenseStatus.cs │ │ ├── ILicensingService.cs │ │ ├── IMutableLicensingService.cs │ │ ├── LicenseActivatedEventArgs.cs │ │ ├── LicenseConfig.cs │ │ ├── LicenseDetails.cs │ │ ├── LicenseKind.cs │ │ ├── LicenseRemovedEventArgs.cs │ │ ├── LicenseStatus.cs │ │ ├── LicenseStatusMessage.cs │ │ ├── LicenseStatusMessageKind.cs │ │ ├── LicensedUserInformation.cs │ │ ├── LicensingInitializer.cs │ │ ├── LicensingService.cs │ │ ├── Machine Identification │ │ │ ├── IMachineIdentificationService.cs │ │ │ └── MachineId.cs │ │ ├── PaidFeatureUsageEventArgs.cs │ │ ├── ProductLicensingInfo.cs │ │ └── Recovery │ │ │ ├── ILicenseRecoveryResult.cs │ │ │ ├── ILicenseRecoveryService.cs │ │ │ ├── LicenseRecoveryRequest.cs │ │ │ ├── LicenseRecoveryResult.cs │ │ │ └── LicenseRecoveryService.cs │ │ ├── Logging │ │ ├── ApplicationLogger.cs │ │ ├── ApplicationLoggerFactory.cs │ │ ├── BaseLogger.cs │ │ ├── ConsoleLogger.cs │ │ ├── ConsoleLoggerFactory.cs │ │ ├── ILogFileProvider.cs │ │ ├── ILogger.cs │ │ ├── ILoggerFactory.cs │ │ ├── IMinimumLogLevelPreferences.cs │ │ ├── LogFileWriter.cs │ │ ├── LogFilesCleaner.cs │ │ ├── LogFormatter.cs │ │ ├── LogLevel.cs │ │ ├── Logger.cs │ │ ├── LoggingConstants.cs │ │ ├── MinimumLogLevelChangedEventArgs.cs │ │ └── MinimumLogLevelPreferences.cs │ │ ├── MFractor.csproj │ │ ├── MailingListService.cs │ │ ├── MetaDataKeys.cs │ │ ├── MetaDataObject.cs │ │ ├── Microsoft.Language.Xml │ │ ├── Blender.cs │ │ ├── Buffer.cs │ │ ├── Classification │ │ │ ├── ClassificationTypeNames.cs │ │ │ ├── ClassifierVisitor.cs │ │ │ └── XmlClassificationTypes.cs │ │ ├── Comments │ │ │ └── CommentUtilities.cs │ │ ├── DiagnosticInfo.cs │ │ ├── ErrorFactory.cs │ │ ├── Extensions.cs │ │ ├── InternalSyntax │ │ │ ├── GreenNode.cs │ │ │ ├── GreenNodeExtensions.cs │ │ │ ├── NodeFlags.cs │ │ │ ├── SeparatedSyntaxList.cs │ │ │ ├── SeparatedSyntaxListBuilder.cs │ │ │ ├── SyntaxFactory.cs │ │ │ ├── SyntaxList.cs │ │ │ ├── SyntaxListBuilder.cs │ │ │ ├── SyntaxListBuilder`1.cs │ │ │ ├── SyntaxList`1.cs │ │ │ ├── SyntaxRewriter.cs │ │ │ ├── SyntaxVisitor.cs │ │ │ └── TriviaInfo.cs │ │ ├── Parser.cs │ │ ├── PooledStringBuilder.cs │ │ ├── Scanner.cs │ │ ├── ScannerState.cs │ │ ├── StringBuffer.cs │ │ ├── Structure │ │ │ ├── INamedXmlNode.cs │ │ │ └── IXmlElement.cs │ │ ├── Syntax │ │ │ ├── BadTokenSyntax.cs │ │ │ ├── ChildSyntaxList.cs │ │ │ ├── ERRID.cs │ │ │ ├── IXmlElementSyntax.cs │ │ │ ├── KeywordSyntax.cs │ │ │ ├── PunctuationSyntax.cs │ │ │ ├── SeparatedSyntaxListBuilder`1.cs │ │ │ ├── SeparatedSyntaxList`1.cs │ │ │ ├── SkippedTokensTriviaSyntax.cs │ │ │ ├── SkippedTriviaBuilder.cs │ │ │ ├── SyntaxAnnotation.cs │ │ │ ├── SyntaxDiffer.cs │ │ │ ├── SyntaxFactory.cs │ │ │ ├── SyntaxKind.cs │ │ │ ├── SyntaxList.cs │ │ │ ├── SyntaxListBuilder.cs │ │ │ ├── SyntaxListBuilderExtensions.cs │ │ │ ├── SyntaxListBuilder`1.cs │ │ │ ├── SyntaxListPool.cs │ │ │ ├── SyntaxList`1.cs │ │ │ ├── SyntaxNode.Enumerators.cs │ │ │ ├── SyntaxNode.cs │ │ │ ├── SyntaxNodeExtensions.cs │ │ │ ├── SyntaxNodeRemover.cs │ │ │ ├── SyntaxReplacer.cs │ │ │ ├── SyntaxRewriter.cs │ │ │ ├── SyntaxSubKind.cs │ │ │ ├── SyntaxToken.cs │ │ │ ├── SyntaxTrivia.cs │ │ │ ├── SyntaxTriviaList.cs │ │ │ ├── SyntaxTriviaListBuilder.cs │ │ │ ├── SyntaxVisitor.cs │ │ │ ├── XmlAttributeSyntax.cs │ │ │ ├── XmlCDataSectionSyntax.cs │ │ │ ├── XmlCommentSyntax.cs │ │ │ ├── XmlContentExtensions.cs │ │ │ ├── XmlContext.cs │ │ │ ├── XmlDeclarationOptionSyntax.cs │ │ │ ├── XmlDeclarationSyntax.cs │ │ │ ├── XmlDocumentSyntax.cs │ │ │ ├── XmlElementEndTagSyntax.cs │ │ │ ├── XmlElementStartTagSyntax.cs │ │ │ ├── XmlElementSyntax.cs │ │ │ ├── XmlEmptyElementSyntax.cs │ │ │ ├── XmlEntityTokenSyntax.cs │ │ │ ├── XmlNameSyntax.cs │ │ │ ├── XmlNameTokenSyntax.cs │ │ │ ├── XmlNodeSyntax.cs │ │ │ ├── XmlPrefixSyntax.cs │ │ │ ├── XmlProcessingInstructionSyntax.cs │ │ │ ├── XmlStringSyntax.cs │ │ │ ├── XmlTextSyntax.cs │ │ │ └── XmlTextTokenSyntax.cs │ │ ├── TextChange.cs │ │ ├── TextChangeRange.cs │ │ ├── TextSpan.cs │ │ ├── Utilities │ │ │ ├── ArrayBuilder.cs │ │ │ ├── ArrayElement.cs │ │ │ ├── FirstTokenReplacer.cs │ │ │ ├── HashFunctions.cs │ │ │ ├── LastTokenReplacer.cs │ │ │ ├── ObjectPool.cs │ │ │ ├── SpecializedCollections.cs │ │ │ ├── StringTable.cs │ │ │ ├── SyntaxLocator.cs │ │ │ ├── SyntaxNodeCache.cs │ │ │ └── TextKeyedCache.cs │ │ ├── XmlCharType.cs │ │ └── XmlExtensions.cs │ │ ├── Models │ │ └── ObservableBase.cs │ │ ├── OpenFileInBrowserService.cs │ │ ├── PlatformFramework.cs │ │ ├── PlatformService.cs │ │ ├── Product.cs │ │ ├── Progress │ │ ├── DelegateProgressMonitor.cs │ │ ├── IProgressMonitor.cs │ │ ├── ISearchProgressService.cs │ │ ├── ProgressStatus.cs │ │ └── StubProgressMonitor.cs │ │ ├── ProjectIdentifier.cs │ │ ├── Properties.cs │ │ ├── Question.cs │ │ ├── ReleaseNotesService.cs │ │ ├── SharedHttpClient.cs │ │ ├── Text │ │ ├── CachedFileSystemTextProvider.cs │ │ ├── FileSystemTextProvider.cs │ │ ├── ILine.cs │ │ ├── ILineCollection.cs │ │ ├── ILineCollectionFactory.cs │ │ ├── ITextProvider.cs │ │ ├── ITextProviderService.cs │ │ ├── ITextReplacement.cs │ │ ├── ITextReplacementService.cs │ │ ├── LineCollection.cs │ │ ├── LineCollectionFactory.cs │ │ ├── StringTextProvider.cs │ │ ├── TextProviderService.cs │ │ ├── TextProviderStrategy.cs │ │ ├── TextReplacement.cs │ │ └── TextReplacementService.cs │ │ ├── Theme.cs │ │ ├── ToolBarAction.cs │ │ ├── Utilities │ │ ├── AssemblyHelper.cs │ │ ├── AttributeHelper.cs │ │ ├── Base64Helper.cs │ │ ├── BashRunner.cs │ │ ├── CSharpNameHelper.cs │ │ ├── Clipboards │ │ │ ├── LinuxClipboard.cs │ │ │ ├── OsxClipboard.cs │ │ │ └── WindowsClipboard.cs │ │ ├── ColorHelper.cs │ │ ├── ConfigurationDependencyHelper.cs │ │ ├── CsvHelper.cs │ │ ├── EmailValidationHelper.cs │ │ ├── EnumHelper.cs │ │ ├── EnumerableHelper.cs │ │ ├── EquatableExtensions.cs │ │ ├── FileLocationHelper.cs │ │ ├── FileSizeHelper.cs │ │ ├── ImageHelper.cs │ │ ├── LevenshteinDistanceHelper.cs │ │ ├── LineHelper.cs │ │ ├── LinqExtensions.cs │ │ ├── MD5Helper.cs │ │ ├── PathHelper.cs │ │ ├── Profiler.cs │ │ ├── ProjectAndSolutionExtensions.cs │ │ ├── ProjectOutputHelper.cs │ │ ├── ResourcesHelper.cs │ │ ├── SHA1Helper.cs │ │ ├── String Matchers │ │ │ ├── BacktrackingStringMatcher.cs │ │ │ ├── LaneStringMatcher.cs │ │ │ └── StringMatcher.cs │ │ ├── StringExtensions.cs │ │ ├── SuggestionHelper.cs │ │ ├── Symbol Visitors │ │ │ ├── DerivedSymbolVisitor.cs │ │ │ ├── FindNamedTypeChildrenVisitor.cs │ │ │ ├── FindNamedTypeVisitor.cs │ │ │ ├── FindTypeByNameVisitor.cs │ │ │ ├── NamedTypeChildSymbolVisitor.cs │ │ │ ├── NamedTypeVisitor.cs │ │ │ └── NamespaceVisitor.cs │ │ ├── SymbolHelper.cs │ │ ├── Syntax Visitors │ │ │ ├── NamespaceVisitor.cs │ │ │ └── UsingDirectiveVisitor.cs │ │ ├── Syntax Walkers │ │ │ ├── ClassDeclarationSyntaxWalker.cs │ │ │ ├── MemberDeclarationSyntaxWalker.cs │ │ │ ├── StringSyntaxWalker.cs │ │ │ └── TypeDeclarationSyntaxWalker.cs │ │ ├── WorkingPathHelper.cs │ │ ├── XmlFormattingHelper.cs │ │ └── XmlSerializationHelper.cs │ │ ├── Versioning │ │ ├── SemanticVersion.cs │ │ ├── VersionUpdateStatus.cs │ │ └── VersionUpgradeHandler.cs │ │ ├── Work │ │ ├── FileCreation.cs │ │ ├── IWorkExecutionResult.cs │ │ ├── IWorkUnit.cs │ │ ├── IWorkUnitEngine.cs │ │ ├── IWorkUnitHandler.cs │ │ ├── IWorkUnitHandlerRepository.cs │ │ ├── Work Unit Handlers │ │ │ ├── CopyFileWorkUnitHandler.cs │ │ │ ├── CopyValueToClipboardWorkUnitHandler.cs │ │ │ ├── DeleteFileWorkUnitHandler.cs │ │ │ ├── InsertTextWorkUnitHandler.cs │ │ │ ├── OpenFileInExplorerWorkUnitHandler.cs │ │ │ ├── OpenUrlWorkUnitHandler.cs │ │ │ ├── ReplaceTextResponseHandler.cs │ │ │ └── StatusBarMessageWorkUnitHandler.cs │ │ ├── Work Units │ │ │ ├── AboutDialogWorkUnit.cs │ │ │ ├── ActivationDialogWorkUnit.cs │ │ │ ├── AppIconImporterWorkUnit.cs │ │ │ ├── CodeFileWorkUnit.cs │ │ │ ├── ColorEditorWorkUnit.cs │ │ │ ├── CopyFileWorkUnit.cs │ │ │ ├── CopyValueToClipboardWorkUnit.cs │ │ │ ├── DeleteFileWorkUnit.cs │ │ │ ├── GenerateCodeFilesWorkUnit.cs │ │ │ ├── ImportIconWizardWorkUnit.cs │ │ │ ├── ImportImageAssetWorkUnit.cs │ │ │ ├── InsertCodeSnippetWorkUnit.cs │ │ │ ├── InsertTextWorkUnit.cs │ │ │ ├── LicenseDialogWorkUnit.cs │ │ │ ├── NameValueInputWorkUnit.cs │ │ │ ├── OnboardingDialogWorkUnit.cs │ │ │ ├── OpenFileInExplorerWorkUnit.cs │ │ │ ├── OpenFileWorkUnit.cs │ │ │ ├── OpenPreferencesWorkUnit.cs │ │ │ ├── OpenUrlWorkUnit.cs │ │ │ ├── PickerWorkUnit.cs │ │ │ ├── ProjectSelectorWorkUnit.cs │ │ │ ├── ReplaceTextWorkUnit.cs │ │ │ ├── RequestTrialPromptWorkUnit.cs │ │ │ ├── StatusBarMessageWorkUnit.cs │ │ │ ├── TextInputWorkUnit.cs │ │ │ └── XmlWorkUnit.cs │ │ ├── WorkEngine.cs │ │ ├── WorkExecutionResult.cs │ │ ├── WorkUnit.cs │ │ ├── WorkUnitEventArgs.cs │ │ ├── WorkUnitHandler.cs │ │ └── WorkUnitHandlerRepository.cs │ │ ├── Xml │ │ ├── DefaultXmlFormattingPolicy.cs │ │ ├── IXmlAttribute.cs │ │ ├── IXmlAttributeValue.cs │ │ ├── IXmlFormattingPolicy.cs │ │ ├── IXmlFormattingPolicyService.cs │ │ ├── IXmlName.cs │ │ ├── IXmlNode.cs │ │ ├── IXmlSyntax.cs │ │ ├── IXmlSyntaxFinder.cs │ │ ├── IXmlSyntaxParser.cs │ │ ├── IXmlSyntaxTree.cs │ │ ├── IXmlSyntaxTreeService.cs │ │ ├── IXmlSyntaxWriter.cs │ │ ├── OverloadableXmlFormattingPolicy.cs │ │ ├── XmlAttribute.cs │ │ ├── XmlAttributeValue.cs │ │ ├── XmlComment.cs │ │ ├── XmlName.cs │ │ ├── XmlNode.cs │ │ ├── XmlSyntax.cs │ │ ├── XmlSyntaxFinder.cs │ │ ├── XmlSyntaxKind.cs │ │ ├── XmlSyntaxParser.cs │ │ ├── XmlSyntaxTree.cs │ │ ├── XmlSyntaxTreeEventArgs.cs │ │ └── XmlSyntaxWriter.cs │ │ └── app.config ├── Licensing │ ├── MFractor.Licensing.Issuer │ │ ├── LicenseIssuer.cs │ │ ├── LicenseKeyPairGenerator.cs │ │ ├── MFractor.Licensing.Issuer.csproj │ │ ├── Models │ │ │ ├── LicenseConfig.cs │ │ │ └── LicenseSigningConfig.cs │ │ └── Utils.cs │ ├── MFractor.Portable.Licensing │ │ ├── AssemblyBuildDateAttribute.cs │ │ ├── Customer.cs │ │ ├── IFluentInterface.cs │ │ ├── ILicenseBuilder.cs │ │ ├── License.cs │ │ ├── LicenseAttributes.cs │ │ ├── LicenseBuilder.cs │ │ ├── LicenseType.cs │ │ ├── MFractor.Portable.Licensing.csproj │ │ ├── Security │ │ │ └── Cryptography │ │ │ │ ├── KeyFactory.cs │ │ │ │ ├── KeyGenerator.cs │ │ │ │ └── KeyPair.cs │ │ └── Validation │ │ │ ├── GeneralValidationFailure.cs │ │ │ ├── IAddAdditionalValidationChain.cs │ │ │ ├── IAssertValidation.cs │ │ │ ├── ICompleteValidationChain.cs │ │ │ ├── ILicenseValidator.cs │ │ │ ├── IStartValidationChain.cs │ │ │ ├── IValidationChain.cs │ │ │ ├── IValidationChainCondition.cs │ │ │ ├── IValidationFailure.cs │ │ │ ├── InvalidSignatureValidationFailure.cs │ │ │ ├── LicenseExpiredValidationFailure.cs │ │ │ ├── LicenseValidationExtensions.cs │ │ │ ├── LicenseValidator.cs │ │ │ └── ValidationChainBuilder.cs │ ├── MFractor.SigningKeyGenerator │ │ ├── MFractor.SigningKeyGenerator.csproj │ │ └── Program.cs │ └── README.md ├── MFractor.Mac.sln ├── MFractor.VS.Mac │ ├── Adornments │ │ ├── ColorAdornment.cs │ │ ├── GridIndexAdornment.cs │ │ └── LabelAdornment.cs │ ├── Assets │ │ ├── Thumbs.db │ │ ├── android-icon-mini.png │ │ ├── android-icon.png │ │ ├── box-dynamic-resource-16.png │ │ ├── code-16.png │ │ ├── color-picker-16.png │ │ ├── copy-16.png │ │ ├── crosshairs-16.png │ │ ├── css-16.png │ │ ├── exchange-16.png │ │ ├── eye-16.png │ │ ├── feather-box-16.png │ │ ├── feather-image-16.png │ │ ├── font-icon-16.png │ │ ├── grid-column-16.png │ │ ├── grid-row-16.png │ │ ├── logo-16.png │ │ ├── logo_prefs.png │ │ ├── pencil.png │ │ └── wand-16.png │ ├── Commands │ │ ├── ActiveDocumentCommandAdapter.cs │ │ ├── Add File │ │ │ ├── AddAppIconCommandAdapter.cs │ │ │ ├── AddFontCommandAdapter.cs │ │ │ └── AddImageCommandAdapter.cs │ │ ├── Code Actions │ │ │ ├── CodeActionCategoryCommand.cs │ │ │ └── ScaffolderCommandAdapter.cs │ │ ├── IdeCommandAdapter.cs │ │ ├── Internal │ │ │ ├── InspectExtensionPointHierachyCommand.cs │ │ │ └── InspectMefPartsCommand.cs │ │ ├── Main Menu │ │ │ ├── AboutCommandAdapter.cs │ │ │ ├── ActionsPadCommandAdapter.cs │ │ │ ├── BuyMFractorCommandAdapter.cs │ │ │ ├── Import │ │ │ │ ├── AddAppIconCommandAdapter.cs │ │ │ │ ├── AddFontCommandAdapter.cs │ │ │ │ └── AddImageCommandAdapter.cs │ │ │ ├── InternalToolsCommandAdapter.cs │ │ │ ├── LaunchImageManagerCommandAdapter.cs │ │ │ ├── LegalCommandAdapter.cs │ │ │ ├── LicenseDescriptionCommand.cs │ │ │ ├── Preferences │ │ │ │ ├── CodeAnalysisPreferencesCommandAdapter.cs │ │ │ │ ├── DeleteOutputOptionsPreferencesCommandAdapter.cs │ │ │ │ ├── FormattingOptionsPreferencesCommandAdapter.cs │ │ │ │ └── SettingsPreferencesCommandAdapter.cs │ │ │ ├── RecoverLicenseCommandAdapter.cs │ │ │ ├── StartAccessibilityInspectorCommandAdapter.cs │ │ │ ├── SupportCommandAdapter.cs │ │ │ ├── VersionSummaryCommandAdapter.cs │ │ │ ├── ViewLicenseCommandAdapter.cs │ │ │ ├── ViewReleaseNotesCommandAdapter.cs │ │ │ └── WizardsCommandAdapter.cs │ │ ├── Navigation │ │ │ ├── GoToRelationalDefinitionCodeBehindCommandAdapter.cs │ │ │ ├── GoToRelationalDefinitionCommandAdapter.cs │ │ │ └── GoToRelationalImplementationCommandAdapter.cs │ │ ├── Solution Pad │ │ │ ├── AddExportFontDeclarationCommandAdapter.cs │ │ │ ├── AddFontPlistEntryCommandAdapter.cs │ │ │ ├── Android │ │ │ │ └── OpenAndroidManifestCommandAdapter.cs │ │ │ ├── CleanAndCompressCommand.cs │ │ │ ├── ConvertProjectToCSharp9CommandAdapter.cs │ │ │ ├── CopyBundleIdToClipboardCommandAdapter.cs │ │ │ ├── CopyFontFamilyXamlToClipboardCommandAdapater.cs │ │ │ ├── CopyPackageNameToClipboardCommandAdapter.cs │ │ │ ├── CopyResourceIDToClipboardCommandAdapter.cs │ │ │ ├── CreateClassFromClipboardCommandAdapter.cs │ │ │ ├── DeleteImageAssetCommandAdapter.cs │ │ │ ├── DeleteOutputFoldersCommandAdapter.cs │ │ │ ├── EditSharedProjectItemsCommandAdapter.cs │ │ │ ├── GenerateFontGlyphClassCommandAdapter.cs │ │ │ ├── ManageImageAssetsCommandAdapter.cs │ │ │ ├── ResyncSolutionResourcesCommandAdapter.cs │ │ │ └── ScaffolderCommandAdapter.cs │ │ ├── SolutionPadCommandAdapter.cs │ │ └── XAML │ │ │ └── XamlGoToSymbolCommandAdapter.cs │ ├── Display Bindings │ │ └── ImageManagerDisplayBinding.cs │ ├── GlobalSuppressions.cs │ ├── IdeDispatcher.cs │ ├── IdeExportResolver.cs │ ├── IdeStartupCommand.cs │ ├── IdeWorkEngine.cs │ ├── MFractor.VS.Mac.csproj │ ├── Progress │ │ └── IdeProgressMonitor.cs │ ├── Properties │ │ ├── Manifest.addin.xml │ │ └── ProductInfo.cs │ ├── Search │ │ ├── Commands │ │ │ ├── CommandSearch.cs │ │ │ └── CommandSearchResult.cs │ │ ├── Localisation │ │ │ ├── ResXLocalisationSearch.cs │ │ │ └── ResXLocalisationSearchResult.cs │ │ └── Xaml │ │ │ ├── AutomationIdSearch.cs │ │ │ ├── AutomationIdSearchResult.cs │ │ │ ├── DynamicResourceSearch.cs │ │ │ ├── DynamicResourceSearchResult.cs │ │ │ ├── StaticResourceSearch.cs │ │ │ └── StaticResourceSearchResult.cs │ ├── Services │ │ ├── ActiveDocument.cs │ │ ├── CodeSnippetService.cs │ │ ├── DialogsService.cs │ │ ├── FormattingPolicyService.cs │ │ ├── IdeImageImporterService.cs │ │ ├── IdeImageManager.cs │ │ ├── IdeLogFileProvider.cs │ │ ├── IdeProjectFile.cs │ │ ├── IdeProjectFolder.cs │ │ ├── IdeSharedAssetsProject.cs │ │ ├── IdeSolutionPad.cs │ │ ├── IdeTextReplacementService.cs │ │ ├── IdeUserOptions.cs │ │ ├── IdeWorkspaceService.cs │ │ ├── IdeXmlFormattingPolicy.cs │ │ ├── LicenseSigningInformation.cs │ │ ├── MachineIdentificationService.cs │ │ ├── ProductInformation.cs │ │ ├── ProjectService.cs │ │ ├── RootWindowService.cs │ │ ├── SearchProgressService.cs │ │ ├── TextEditorFactory.cs │ │ ├── ThemeService.cs │ │ ├── UrlLauncher.cs │ │ └── XmlFormattingPolicyService.cs │ ├── SkiaSharp.dll │ ├── Tooltips │ │ ├── CodeIssueTooltipViewElementFactory.cs │ │ ├── ColorTooltipViewElementFactory.cs │ │ ├── FontGlyphTooltipViewElementFactory.cs │ │ ├── FontPreviewTooltipViewElementFactory.cs │ │ ├── ImageTooltipViewElementFactory.cs │ │ ├── TextContentTooltipViewElementFactory.cs │ │ └── ThicknessTooltipViewElementFactory.cs │ ├── Utilities │ │ ├── ExtensionPointHelper.cs │ │ ├── SolutionHelper.cs │ │ ├── TextEditorHelper.cs │ │ └── TooltipHelper.cs │ ├── Views │ │ ├── AppKitHelper.cs │ │ ├── ClickableLabel.cs │ │ ├── CodeIssueView.cs │ │ ├── ColorTooltipView.cs │ │ ├── FontTooltipView.cs │ │ ├── ImageFileTooltipView.cs │ │ ├── ImageTooltipView.cs │ │ ├── NSBrandedFooter.cs │ │ ├── TextContentTooltipView.cs │ │ └── ThicknessPreviewView.cs │ ├── Work Unit Handlers │ │ ├── CreateProjectFolderWorkUnitHandler.cs │ │ ├── IdeCreateProjectFileWorkUnitHandler.cs │ │ ├── ImportIconWizardWorkUnitHandler.cs │ │ ├── ImportImageAssetWorkUnitHandler.cs │ │ ├── NavigateToFileSpanWorkUnitHandler.cs │ │ ├── NavigateToFileSpansWorkUnitHandler.cs │ │ ├── NavigateToSymbolResponseHandler.cs │ │ ├── OpenFileWorkUnitHandler.cs │ │ ├── OpenImageManagerWorkUnitHandler.cs │ │ ├── OpenPreferencesWorkUnitHandler.cs │ │ ├── SelectFileInProjectPadWorkUnitHandler.cs │ │ └── SetBuildActionWorkUnitHandler.cs │ ├── Workspace │ │ └── VSMacWorkspaceProjectService.cs │ └── libSkiaSharp.dylib ├── MFractor.VS.Windows │ ├── Adornments │ │ ├── ColorAdornment.cs │ │ ├── GridIndexAdornment.cs │ │ └── LabelAdornment.cs │ ├── Assets │ │ ├── end-user-license.txt │ │ ├── exclamation.png │ │ ├── mfractor_logo.png │ │ ├── mfractor_logo_grayscale.png │ │ └── wand.png │ ├── Commands │ │ └── IdeCommandAdapter.cs │ ├── IdeDispatcher.cs │ ├── IdeExportResolver.cs │ ├── IdeWorkEngine.cs │ ├── MFractor.VS.Windows.csproj │ ├── MFractor.cs │ ├── MFractor.vsct │ ├── MFractorPackage.cs │ ├── Options │ │ ├── CodeAnalysisPage.cs │ │ ├── DeleteOutputOptions.cs │ │ ├── FormattingPage.cs │ │ ├── OptionsPageAdapter.cs │ │ └── SettingsPage.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── ProductInfo.xml │ ├── Resources │ │ ├── Book.png │ │ ├── Clean.png │ │ ├── CodeBehind.png │ │ ├── Compress.png │ │ ├── Email.png │ │ ├── Feedback.png │ │ ├── Gitter.png │ │ ├── ImportAppIcon.png │ │ ├── ImportFont.png │ │ ├── ImportImage.png │ │ ├── License.png │ │ ├── Localization.png │ │ ├── MFractorIcon.png │ │ ├── MainMenuCommand.png │ │ ├── ManageImageAssets.png │ │ ├── Mvvm.png │ │ ├── Settings.png │ │ ├── Slack.png │ │ ├── Synchronize.png │ │ ├── Twitter.png │ │ ├── ValueConverter.png │ │ ├── ViewModel.png │ │ ├── Xaml.png │ │ └── logo-16.png │ ├── Services │ │ ├── ActiveDocument.cs │ │ ├── CodeFormattingPolicyService.cs │ │ ├── CodeSnippetService.cs │ │ ├── DialogsService.cs │ │ ├── IdeImageImporterService.cs │ │ ├── IdeSolutionPad.cs │ │ ├── IdeTextReplacementService.cs │ │ ├── IdeUserOptions.cs │ │ ├── IdeWorkspaceService.cs │ │ ├── IdeXmlFormattingPolicy.cs │ │ ├── ImagePicker.cs │ │ ├── LicenseSigningInformation.cs │ │ ├── MachineIdentificationService.cs │ │ ├── ProductInformation.cs │ │ ├── ProjectService.cs │ │ ├── RootWindowService.cs │ │ ├── SearchService.cs │ │ ├── StatusBarProgressMonitor.cs │ │ ├── TextEditorFactory.cs │ │ ├── UrlLauncher.cs │ │ └── XmlFormattingPolicyService.cs │ ├── SkiaSharp.dll │ ├── ToolWindows │ │ └── ImageAssetsToolWindow.cs │ ├── Tooltips │ │ ├── Code Issue │ │ │ └── CodeIssueTooltipViewElementFactory.cs │ │ ├── Colors │ │ │ └── ColorTooltipViewElementFactory.cs │ │ ├── Fonts │ │ │ ├── FontGlyphTooltipViewElementFactory.cs │ │ │ └── FontPreviewTooltipViewElementFactory.cs │ │ ├── Images │ │ │ └── ImageTooltipViewElementFactory.cs │ │ ├── Text Content │ │ │ └── TextContentTooltipViewElementFactory.cs │ │ └── Thicknesses │ │ │ └── ThicknessTooltipViewElementFactory.cs │ ├── UI │ │ ├── Controls │ │ │ ├── AppIcon.xaml │ │ │ ├── AppIcon.xaml.cs │ │ │ ├── OptionsPageHeader.xaml │ │ │ └── OptionsPageHeader.xaml.cs │ │ ├── Dialogs │ │ │ ├── BaseDialogWindow.cs │ │ │ ├── IconImporterDialog.xaml │ │ │ ├── IconImporterDialog.xaml.cs │ │ │ ├── ImageImporterDialog.xaml │ │ │ └── ImageImporterDialog.xaml.cs │ │ ├── Resources.xaml │ │ ├── Resources.xaml.cs │ │ ├── ValueConverters │ │ │ ├── EmptyCollectionVisibilityConverter.cs │ │ │ ├── FalseToVisibleConverter.cs │ │ │ └── TrueToVisibileConverter.cs │ │ └── ViewModels │ │ │ ├── ChooseImageCommand.cs │ │ │ ├── ImageImportPreviewViewModel.cs │ │ │ ├── ImageImporterTargetProjectViewModel.cs │ │ │ └── ImageImporterViewModel.cs │ ├── Utilities │ │ ├── BitmapImageHelper.cs │ │ ├── CoreExtensions.cs │ │ ├── DteProjectHelper.cs │ │ ├── ITextViewExtensions.cs │ │ ├── IdeEnvironmentDetails.cs │ │ ├── PackageHelper.cs │ │ ├── ResourceAccessor.cs │ │ ├── TextColorHelper.cs │ │ ├── UIHelpers.cs │ │ └── WorkspaceHelper.cs │ ├── Views │ │ ├── BrandedFooter.cs │ │ ├── ClickableLabel.cs │ │ ├── CodeIssueView.cs │ │ ├── ColorTooltipView.cs │ │ ├── FontGlyphTooltipView.cs │ │ ├── FontTextTooltipView.cs │ │ ├── ImageFileTooltipView.cs │ │ ├── TextContentTooltipView.cs │ │ └── ThicknessPreviewView.cs │ ├── Work Unit Handlers │ │ ├── IdeCreateProjectFileWorkUnitHandler.cs │ │ ├── ImportIconWizardWorkUnitHandler.cs │ │ ├── ImportImageAssetWorkUnitHandler.cs │ │ ├── NavigateToFileSpanWorkUnitHandler.cs │ │ ├── NavigateToFileSpansResponseHandler.cs │ │ ├── NavigateToSymbolWorkUnitHandler.cs │ │ ├── Navigation │ │ │ ├── NavigationTableDataSource.cs │ │ │ └── NavigationTableEntriesSnapshot.cs │ │ ├── OpenFileWorkUnitHandler.cs │ │ ├── OpenImageManagerWorkUnitHandler.cs │ │ ├── OpenPreferencesWorkUnitHandler.cs │ │ ├── SelectFileInProjectPadWorkUnitHandler.cs │ │ └── SetBuildActionWorkUnitHandler.cs │ ├── Workspace Model │ │ ├── FileSystemProjectFile.cs │ │ ├── IMutableWorkspaceShadowModel.cs │ │ ├── IWorkspaceShadowModel.cs │ │ ├── IdeProject.cs │ │ ├── IdeProjectFile.cs │ │ ├── IdeProjectFolder.cs │ │ ├── IdeSolution.cs │ │ └── WorkspaceShadowModel.cs │ ├── Workspace │ │ └── VSWinWorkspaceProjectService.cs │ ├── _libs │ │ └── Newtonsoft.Json.dll │ ├── libSkiaSharp.dll │ ├── libSkiaSharp.dylib │ ├── logo-200.png │ ├── logo-32.png │ ├── source.extension.cs │ └── source.extension.vsixmanifest ├── MFractor.Windows.sln ├── Tests │ ├── MFractor.Forms.Tests │ │ ├── MFractor.Forms.Tests.csproj │ │ ├── MFractor.Views.TestHarness.Mac │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon-128.png │ │ │ │ │ ├── AppIcon-128@2x.png │ │ │ │ │ ├── AppIcon-16.png │ │ │ │ │ ├── AppIcon-16@2x.png │ │ │ │ │ ├── AppIcon-256.png │ │ │ │ │ ├── AppIcon-256@2x.png │ │ │ │ │ ├── AppIcon-32.png │ │ │ │ │ ├── AppIcon-32@2x.png │ │ │ │ │ ├── AppIcon-512.png │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── MFractor.Views.TestHarness.Mac.csproj │ │ │ ├── Main.cs │ │ │ ├── MainWindow.cs │ │ │ └── packages.config │ │ ├── XamlExpressionParserTests.cs │ │ ├── app.config │ │ └── packages.config │ ├── MFractor.Images.Tests │ │ ├── Importing │ │ │ ├── AppIconImportTests.cs │ │ │ └── Generators │ │ │ │ ├── AndroidAppIconFilenameGeneratorTests.cs │ │ │ │ ├── BaseAppIconFilenameGeneratorTests.cs │ │ │ │ ├── BaseAppleAppIconFilenameGeneratorTests.cs │ │ │ │ ├── CarPlayAppIconFilenameGeneratorTests.cs │ │ │ │ └── IOSAppIconFilenameGeneratorTests.cs │ │ ├── MFractor.Images.Tests.csproj │ │ ├── Models │ │ │ ├── IconIdiomTests.cs │ │ │ └── ImageScaleTests.cs │ │ ├── Resources │ │ │ ├── appicon-1024.png │ │ │ ├── appicon-512.png │ │ │ └── appicon-irregular.png │ │ └── Utilities │ │ │ └── XImageSizeUtilities.cs │ └── MFractor.VS.Windows.Test │ │ ├── Helpers │ │ ├── CodeFixVerifier.Helper.cs │ │ ├── DiagnosticResult.cs │ │ └── DiagnosticVerifier.Helper.cs │ │ ├── MFractor.VS.Windows.Test.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── UnitTests.cs │ │ ├── Verifiers │ │ ├── CodeFixVerifier.cs │ │ └── DiagnosticVerifier.cs │ │ └── packages.config └── Third Party │ └── MFractor.Tinify │ ├── Client.cs │ ├── Internal │ ├── Platform.cs │ ├── Proxy.cs │ └── SSL.cs │ ├── MFractor.Tinify.csproj │ ├── Result.cs │ ├── ResultMeta.cs │ ├── ResultTaskExtensions.cs │ ├── Source.cs │ ├── SourceTaskExtensions.cs │ ├── TinifyClient.cs │ ├── TinifyException.cs │ └── data │ └── cacert.pem ├── README.md ├── assets ├── AndroidResourceTypeInfo │ ├── AccessibilityService.ati.xml │ ├── AccountAuthenticator.ati.xml │ ├── AppWidget.ati.xml │ ├── ColorStateList.ati.xml │ ├── Controls.ati.xml │ ├── DeviceAdmin.ati.xml │ ├── Drawable.ati.xml │ ├── FullBackupContent.ati.xml │ ├── InputExtras.ati.xml │ ├── InputMethod.ati.xml │ ├── Interpolators.ati.xml │ ├── Keyboard.ati.xml │ ├── LayoutAnimationControllers.ati.xml │ ├── LayoutMergeInclude.ati.xml │ ├── LayoutParams.ati.xml │ ├── Manifest.ati.xml │ ├── Menu.ati.xml │ ├── NFC.ati.xml │ ├── PreferenceHeaders.ati.xml │ ├── Preferences.ati.xml │ ├── PropertyAnimation.ati.xml │ ├── Searchable.ati.xml │ ├── ShapeDrawable.ati.xml │ ├── SpellChecker.ati.xml │ ├── Styleable.ati.xml │ ├── Styles.ati.xml │ ├── SyncAdapter.ati.xml │ ├── Transition.ati.xml │ ├── Tween Animation.ati.xml │ ├── Values.ati.xml │ ├── VectorDrawable.ati.xml │ ├── View.ati.xml │ ├── ViewGroup.ati.xml │ ├── ViewGroupControls.ati.xml │ └── ViewSchemas.ati.xml └── readme.md ├── clean.sh ├── mfractor.mpack └── package.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/.gitignore -------------------------------------------------------------------------------- /Design/mfractor.bmpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/Design/mfractor.bmpr -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/LICENSE -------------------------------------------------------------------------------- /MFractor/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/.editorconfig -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Android/AndroidManifestResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Android/AndroidManifestResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Android/Data/DatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Android/Data/DatabaseSchema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Android/Data/Models/StyleItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Android/Data/Models/StyleItem.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Android/IAndroidManifestResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Android/IAndroidManifestResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Android/MFractor.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Android/MFractor.Android.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Android/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Android/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/ColorEvalautionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/ColorEvalautionResult.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/ColorEvaluationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/ColorEvaluationService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/DateTimeFormatValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/DateTimeFormatValidator.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/IColorEvaluationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/IColorEvaluationService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/IDateTimeFormatValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/IDateTimeFormatValidator.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/IImplementationFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/IImplementationFinder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/ITypeSyntaxSimplifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/ITypeSyntaxSimplifier.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/ImplementationFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/ImplementationFinder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/MFractor.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/MFractor.CSharp.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/MemberDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/MemberDeclaration.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/MemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/MemberType.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/MethodParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/MethodParameter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/Resources/Documentation/generate_interface_implementation.md: -------------------------------------------------------------------------------- 1 | Creates a new implementation of the selected interface. -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/Resources/Snippets/EventHandlerMethod.txt: -------------------------------------------------------------------------------- 1 | public void $name$(object sender, $type$ e) 2 | { 3 | throw new System.NotImplementedException(); 4 | } -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/Resources/Snippets/ReadOnlyProperty.txt: -------------------------------------------------------------------------------- 1 | public $type$ $name$ { get; } -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/Resources/Snippets/WriteOnlyProperty.txt: -------------------------------------------------------------------------------- 1 | public $type$ $name$ { set; } -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/TypeSyntaxSimplifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/TypeSyntaxSimplifier.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.CSharp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.CSharp/app.config -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Analysis/CodeAnalyser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Analysis/CodeAnalyser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Analysis/CodeIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Analysis/CodeIssue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Analysis/IAnalyser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Analysis/IAnalyser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Analysis/ICodeIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Analysis/ICodeIssue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Analysis/IIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Analysis/IIssue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/CSharpSyntaxReducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/CSharpSyntaxReducer.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Code Actions/CodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Code Actions/CodeAction.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Code Actions/ICodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Code Actions/ICodeAction.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Code Actions/IFixCodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Code Actions/IFixCodeAction.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/CodeFeatureSetDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/CodeFeatureSetDiagnostics.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/DocumentExecutionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/DocumentExecutionFilter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Documents/IParsedDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Documents/IParsedDocument.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Documents/ParsedDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Documents/ParsedDocument.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/FeatureContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/FeatureContext.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/ICSharpSyntaxReducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/ICSharpSyntaxReducer.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/IFeatureContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/IFeatureContext.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/IFeatureContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/IFeatureContextFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/MFractor.Code.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/MFractor.Code.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Scaffolding/IScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Scaffolding/IScaffolder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/Scaffolding/Scaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/Scaffolding/Scaffolder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Code/XmlExecutionFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Code/XmlExecutionFilters.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/Adornments/ColorTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/Adornments/ColorTag.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/Adornments/GridIndexTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/Adornments/GridIndexTag.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/Adornments/ThicknessTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/Adornments/ThicknessTag.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/IMutableTextViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/IMutableTextViewService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/ITextViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/ITextViewService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/MFractor.Editor.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/MFractor.Editor.projitems -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/MFractor.Editor.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/MFractor.Editor.shproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/TextViewBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/TextViewBinding.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/TextViewEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/TextViewEventArgs.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Editor/XAML/Completion/IconIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Editor/XAML/Completion/IconIds.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/Commands/ViewFontCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/Commands/ViewFontCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/Data/DatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/Data/DatabaseSchema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/Font.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/FontAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/FontAsset.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/FontAssetCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/FontAssetCache.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/FontAssetResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/FontAssetResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/FontGlyph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/FontGlyph.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/FontImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/FontImporter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/FontService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/FontService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/FontTypeface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/FontTypeface.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/GlyphCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/GlyphCollection.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/GlyphResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/GlyphResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IFont.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IFontAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IFontAsset.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IFontAssetCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IFontAssetCache.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IFontAssetResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IFontAssetResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IFontGlyph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IFontGlyph.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IFontImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IFontImporter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IFontService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IFontService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IFontTypeface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IFontTypeface.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IGlyphCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IGlyphCollection.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/IGlyphResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/IGlyphResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/MFractor.Fonts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/MFractor.Fonts.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Fonts/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/Typography.OpenFont/Tables.Others/LinearThreashold.cs: -------------------------------------------------------------------------------- 1 | //TODO: implement this -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/Typography.OpenFont/Tables.Others/Merge.cs: -------------------------------------------------------------------------------- 1 | //TODO: implement this -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/Typography.OpenFont/Tables.Others/Meta.cs: -------------------------------------------------------------------------------- 1 | //TODO: implement this -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Fonts/Typography.OpenFont/Tables.Variations/VVar.cs: -------------------------------------------------------------------------------- 1 | //TODO: implement this 2 | //https://www.microsoft.com/typography/otspec/vvar.htm -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/IActiveDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/IActiveDocument.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/IFileCreationPostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/IFileCreationPostProcessor.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/IIdeFeatureSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/IIdeFeatureSettings.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/IIdeImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/IIdeImageManager.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/ISolutionPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/ISolutionPad.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/IdeFeatureSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/IdeFeatureSettings.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/ImageEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/ImageEntry.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/InstallProceduralColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/InstallProceduralColors.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/MFractor.IDE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/MFractor.IDE.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.IDE/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.IDE/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/AndroidImageDensities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/AndroidImageDensities.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Data/DatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Data/DatabaseSchema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/IImageAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/IImageAsset.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/IImageAssetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/IImageAssetCollection.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/IImageAssetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/IImageAssetService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/IImageAssetUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/IImageAssetUsage.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/IImageAssetUsageFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/IImageAssetUsageFinder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/IImageAssetUsageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/IImageAssetUsageService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAsset.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAssetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAssetCollection.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAssetFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAssetFormat.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAssetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAssetHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAssetKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAssetKind.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAssetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAssetService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAssetUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAssetUsage.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAssetUsageKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAssetUsageKind.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageAssetUsageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageAssetUsageService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageDensity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageDensity.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageDensityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageDensityHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageDescriptor.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageImportDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageImportDescriptor.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageKind.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageNameHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImageResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImageResourceType.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/ImportImageOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/ImportImageOperation.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Importing/AppIconImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Importing/AppIconImport.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Importing/ImportUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Importing/ImportUtils.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/MFractor.Images.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/MFractor.Images.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/MauiImageDensities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/MauiImageDensities.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Models/AppIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Models/AppIconSet.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Models/IOSImageSetEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Models/IOSImageSetEntry.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Models/IOSImageSetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Models/IOSImageSetInfo.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Models/IconIdiom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Models/IconIdiom.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Models/IconImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Models/IconImage.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Models/IconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Models/IconSet.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Models/ImageScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Models/ImageScale.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Models/ScaleUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Models/ScaleUnit.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/Resources/Android/icon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/Resources/Android/icon.txt -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Images/UnifiedImageDensity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Images/UnifiedImageDensity.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Linker/LinkerKeywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Linker/LinkerKeywords.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Linker/MFractor.Linker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Linker/MFractor.Linker.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Linker/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Linker/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Linker/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Linker/app.config -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Localisation/ILocalisationFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Localisation/ILocalisationFile.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Localisation/LocalisableString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Localisation/LocalisableString.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Localisation/LocalisationFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Localisation/LocalisationFile.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Localisation/LocalisationUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Localisation/LocalisationUsage.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Localisation/LocalisationValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Localisation/LocalisationValue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Localisation/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Localisation/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Localisation/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Localisation/app.config -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.MSBuild/IItemGroupFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.MSBuild/IItemGroupFinder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.MSBuild/ItemGroupFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.MSBuild/ItemGroupFinder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.MSBuild/MFractor.MSBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.MSBuild/MFractor.MSBuild.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.MSBuild/ProjectFileEntryFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.MSBuild/ProjectFileEntryFinder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.MSBuild/Todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.MSBuild/Todo.txt -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Analysis/IXamlAnalyser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Analysis/IXamlAnalyser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Analysis/XamlAnalyser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Analysis/XamlAnalyser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Analysis/XamlCodeAnalyser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Analysis/XamlCodeAnalyser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/BindingContextResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/BindingContextResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Data/DatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Data/DatabaseSchema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Data/Models/ColorUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Data/Models/ColorUsage.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Data/Models/StyleSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Data/Models/StyleSetter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Data/RepositoryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Data/RepositoryCollection.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/DynamicResourceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/DynamicResourceResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/DynamicResourceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/DynamicResourceResult.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Font Sizes/FontSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Font Sizes/FontSize.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Font Sizes/IFontSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Font Sizes/IFontSize.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Fonts/EmbeddedFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Fonts/EmbeddedFont.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Fonts/FontFamilyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Fonts/FontFamilyResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Fonts/IEmbeddedFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Fonts/IEmbeddedFont.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Fonts/IFontFamilyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Fonts/IFontFamilyResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Grids/GridAxisDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Grids/GridAxisDefinition.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Grids/GridAxisResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Grids/GridAxisResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Grids/IGridAxisDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Grids/IGridAxisDefinition.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Grids/IGridAxisResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Grids/IGridAxisResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/IBindingContextResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/IBindingContextResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/IDynamicResourceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/IDynamicResourceResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/IParsedXamlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/IParsedXamlDocument.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/ITargetTypeSymbolResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/ITargetTypeSymbolResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/IXamlFeatureContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/IXamlFeatureContext.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Keywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Keywords.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/MFractor.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/MFractor.Maui.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/MarkupExpressionEvaluater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/MarkupExpressionEvaluater.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Mvvm/IMvvmResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Mvvm/IMvvmResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Mvvm/MvvmResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Mvvm/MvvmResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Mvvm/ProjectMvvmSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Mvvm/ProjectMvvmSettings.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/ParsedXamlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/ParsedXamlDocument.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/ParsedXamlDocumentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/ParsedXamlDocumentFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Resources/Snippets/DesignTimeBindingContextAnnotation.txt: -------------------------------------------------------------------------------- 1 | [$namespace$.DesignTimeBindingContext(typeof($type$))] -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Resources/Snippets/ExportFont.txt: -------------------------------------------------------------------------------- 1 | [assembly: Xamarin.Forms.ExportFont("$font$")] -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Resources/Snippets/StyleSheet.txt: -------------------------------------------------------------------------------- 1 | $control$ { 2 | margin:10; 3 | } -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Styles/IStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Styles/IStyle.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Styles/IStyleProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Styles/IStyleProperty.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Styles/IStyleResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Styles/IStyleResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Styles/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Styles/Style.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Styles/StyleProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Styles/StyleProperty.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Styles/StyleResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Styles/StyleResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Symbols/IXamlTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Symbols/IXamlTypeResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Symbols/XamlSymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Symbols/XamlSymbolInfo.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Symbols/XamlSymbolKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Symbols/XamlSymbolKind.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Symbols/XamlTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Symbols/XamlTypeResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/AssignmentSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/AssignmentSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/ContentSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/ContentSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/ElementSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/ElementSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/ErrorSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/ErrorSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/ExpressionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/ExpressionFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/ExpressionSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/ExpressionSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/MemberNameSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/MemberNameSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/NameSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/NameSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/NamespaceSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/NamespaceSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/PropertySyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/PropertySyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/StringValueSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/StringValueSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/SymbolSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/SymbolSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/TypeNameSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/TypeNameSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Syntax/ValueSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Syntax/ValueSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/TargetTypeSymbolResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/TargetTypeSymbolResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/TargetTypeSymbolResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/TargetTypeSymbolResult.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Thickness/ThicknessValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Thickness/ThicknessValue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Utilities/PrefixHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Utilities/PrefixHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Utilities/ThicknessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Utilities/ThicknessHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/XamlFeatureContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/XamlFeatureContext.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/XamlFeatureContextService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/XamlFeatureContextService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/XamlPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/XamlPlatform.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/AssemblyDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/AssemblyDeclaration.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/IXamlNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/IXamlNamespace.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/IXamlSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/IXamlSchema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/IXmlnsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/IXmlnsDefinition.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/XamlNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/XamlNamespace.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/XamlNamespaceParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/XamlNamespaceParser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/XamlSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/XamlSchema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/XamlSchemaHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/XamlSchemaHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/XamlSchemas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/XamlSchemas.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/Xmlns/XmlnsDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/Xmlns/XmlnsDefinition.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Maui/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Maui/app.config -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/About/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/About/AboutDialog.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Branding/BrandedFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Branding/BrandedFooter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Branding/BrandingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Branding/BrandingHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Colors/ColorEditorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Colors/ColorEditorDialog.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Context Menu/ContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Context Menu/ContextMenu.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Controls/CenteredLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Controls/CenteredLabel.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Controls/EmailEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Controls/EmailEntry.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Controls/LabelModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Controls/LabelModifiers.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Controls/SearchTextEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Controls/SearchTextEntry.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Controls/TitleLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Controls/TitleLabel.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/IImagePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/IImagePicker.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/IRootWindowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/IRootWindowService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/ITextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/ITextEditor.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/ITextEditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/ITextEditorFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Image Cleanup Tool/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/ImageSizeUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/ImageSizeUtilities.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Licensing/LicenseDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Licensing/LicenseDialog.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Licensing/LicenseWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Licensing/LicenseWidget.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Licensing/SerialKeyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Licensing/SerialKeyEntry.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/MFractor.Views.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/MFractor.Views.projitems -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/MFractor.Views.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/MFractor.Views.shproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Picker/PickerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Picker/PickerDialog.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Progress/ProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Progress/ProgressDialog.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Resources/check-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Resources/check-green.png -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Resources/chevron-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Resources/chevron-left.png -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Resources/chevron-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Resources/chevron-right.png -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Resources/cross.png -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Resources/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Resources/exclamation.png -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Resources/file-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Resources/file-image.png -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Resources/mfractor_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Resources/mfractor_logo.png -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Resources/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Resources/wand.png -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Settings/IOptionsWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Settings/IOptionsWidget.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Settings/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Settings/SettingsDialog.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/Settings/SettingsWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/Settings/SettingsWidget.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Views/ViewModels/MvvmCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Views/ViewModels/MvvmCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/AdHocProjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/AdHocProjectFile.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/IProjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/IProjectFile.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/IProjectFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/IProjectFolder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/IProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/IProjectService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/ISharedAssetsProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/ISharedAssetsProject.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/IWorkspaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/IWorkspaceService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/ProjectFileChangeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/ProjectFileChangeSet.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Workspace/WorkspaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Workspace/WorkspaceService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Xml/IXmlFormattingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Xml/IXmlFormattingSettings.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Xml/MFractor.Xml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Xml/MFractor.Xml.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Xml/XmlFormattingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Xml/XmlFormattingSettings.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.Xml/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.Xml/app.config -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.i18n/ICultureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.i18n/ICultureProvider.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.i18n/MFractor.i18n.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.i18n/MFractor.i18n.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.i18n/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.i18n/Resources.Designer.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.i18n/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.i18n/Resources.resx -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Data/DatabaseSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Data/DatabaseSchema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Data/Models/BundleDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Data/Models/BundleDetails.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Data/RepositoryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Data/RepositoryCollection.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Fonts/FontPlistEntryKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Fonts/FontPlistEntryKind.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Idiom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Idiom.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Images/AssetCatalogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Images/AssetCatalogue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Images/AssetCatalogueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Images/AssetCatalogueInfo.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Images/ImageCatalogueAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Images/ImageCatalogueAsset.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/MFractor.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/MFractor.iOS.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor.iOS/app.config -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Analytics/IAnalyticsFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Analytics/IAnalyticsFeature.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Analytics/IAnalyticsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Analytics/IAnalyticsService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ApiConfig.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ApplicationPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ApplicationPaths.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/AssemblyInfo.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Attributes/ExportNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Attributes/ExportNameAttribute.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Bootstrapper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Clipboard.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Code Snippets/CodeSnippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Code Snippets/CodeSnippet.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Code Snippets/ICodeSnippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Code Snippets/ICodeSnippet.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/CodeActionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/CodeActionCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/CommandRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/CommandRepository.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/CommandState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/CommandState.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/CompositeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/CompositeCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/DefaultCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/DefaultCommandContext.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/DelegateCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/IAsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/IAsyncCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/ICommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/ICommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/ICommandContext.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/ICommandRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/ICommandRepository.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/ICommandState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/ICommandState.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/IInternalToolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/IInternalToolCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/ILinkCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/ILinkCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/ILinkCommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/ILinkCommandFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/IToolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/IToolCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/IWizardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/IWizardCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/LinkCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/LinkCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/LinkCommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/LinkCommandFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/ResponseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/ResponseCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Commands/SeparatorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Commands/SeparatorCommand.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Concurrency/ConcurrentValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Concurrency/ConcurrentValue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Configuration/Configurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Configuration/Configurable.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Configuration/ConfigurationId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Configuration/ConfigurationId.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Configuration/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Configuration/FileExtensions.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Configuration/IConfigurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Configuration/IConfigurable.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Configuration/IPropertySetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Configuration/IPropertySetting.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Configuration/IUserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Configuration/IUserOptions.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Configuration/JsonUserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Configuration/JsonUserOptions.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ContentTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ContentTypes.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Database.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/DictionaryExtensions.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Entity.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/IDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/IDatabase.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Models/GCEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Models/GCEntity.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Repositories/IEntityIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Repositories/IEntityIndex.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Repositories/IRepository.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Schemas/ISchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Schemas/ISchema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Schemas/ISchemaRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Schemas/ISchemaRepository.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Schemas/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Schemas/Schema.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Data/Schemas/SchemaRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Data/Schemas/SchemaRepository.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/DesktopPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/DesktopPlatform.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Documentation/IAmDocumented.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Documentation/IAmDocumented.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/EnvironmentDetailsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/EnvironmentDetailsService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/FileLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/FileLocation.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Heartbeat/IProductHeartbeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Heartbeat/IProductHeartbeat.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Heartbeat/ProductHeartbeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Heartbeat/ProductHeartbeat.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IApiConfig.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IApplicationLifecycleHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IApplicationLifecycleHandler.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IApplicationPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IApplicationPaths.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IBootstrapper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IClipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IClipboard.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IDialogsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IDialogsService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IDispatcher.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IEnvironmentDetailsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IEnvironmentDetailsService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IImageSizeUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IImageSizeUtilities.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IMailingListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IMailingListService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IMetaDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IMetaDataObject.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/BaseExportResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/BaseExportResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/DependencyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/DependencyHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/ExportAssemblyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/ExportAssemblyAttribute.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/IExportResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/IExportResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/IExternalPartRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/IExternalPartRegistrar.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/IPartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/IPartRepository.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/IPartResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/IPartResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/PartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/PartRepository.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/PartResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/PartResolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOC/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOC/Resolver.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IOpenFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IOpenFileService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IPlatformService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IPlatformService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IProductInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IProductInformation.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IReleaseNotesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IReleaseNotesService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ISharedHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ISharedHttpClient.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ISupportUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ISupportUrls.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IThemeService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/IUrlLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/IUrlLauncher.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ImageSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ImageSize.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/InteractionLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/InteractionLocation.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/LanguageMimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/LanguageMimeTypes.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/DocumentUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/DocumentUsage.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/ILicenseStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/ILicenseStatus.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/ILicensingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/ILicensingService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/LicenseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/LicenseConfig.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/LicenseDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/LicenseDetails.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/LicenseKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/LicenseKind.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/LicenseStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/LicenseStatus.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/LicenseStatusMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/LicenseStatusMessage.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/LicensingInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/LicensingInitializer.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/LicensingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/LicensingService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Licensing/ProductLicensingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Licensing/ProductLicensingInfo.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/ApplicationLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/ApplicationLogger.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/BaseLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/BaseLogger.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/ConsoleLogger.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/ConsoleLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/ConsoleLoggerFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/ILogFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/ILogFileProvider.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/ILogger.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/ILoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/ILoggerFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/LogFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/LogFileWriter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/LogFilesCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/LogFilesCleaner.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/LogFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/LogFormatter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/LogLevel.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/Logger.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Logging/LoggingConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Logging/LoggingConstants.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/MFractor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/MFractor.csproj -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/MailingListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/MailingListService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/MetaDataKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/MetaDataKeys.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/MetaDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/MetaDataObject.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Microsoft.Language.Xml/Blender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Microsoft.Language.Xml/Blender.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Microsoft.Language.Xml/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Microsoft.Language.Xml/Buffer.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Microsoft.Language.Xml/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Microsoft.Language.Xml/Parser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Microsoft.Language.Xml/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Microsoft.Language.Xml/Scanner.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Models/ObservableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Models/ObservableBase.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/OpenFileInBrowserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/OpenFileInBrowserService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/PlatformFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/PlatformFramework.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/PlatformService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/PlatformService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Product.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Progress/IProgressMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Progress/IProgressMonitor.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Progress/ProgressStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Progress/ProgressStatus.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Progress/StubProgressMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Progress/StubProgressMonitor.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ProjectIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ProjectIdentifier.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Properties.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Question.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ReleaseNotesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ReleaseNotesService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/SharedHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/SharedHttpClient.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/FileSystemTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/FileSystemTextProvider.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/ILine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/ILine.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/ILineCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/ILineCollection.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/ILineCollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/ILineCollectionFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/ITextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/ITextProvider.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/ITextProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/ITextProviderService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/ITextReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/ITextReplacement.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/ITextReplacementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/ITextReplacementService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/LineCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/LineCollection.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/LineCollectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/LineCollectionFactory.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/StringTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/StringTextProvider.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/TextProviderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/TextProviderService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/TextProviderStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/TextProviderStrategy.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/TextReplacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/TextReplacement.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Text/TextReplacementService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Text/TextReplacementService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Theme.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/ToolBarAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/ToolBarAction.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/AssemblyHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/AttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/AttributeHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/Base64Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/Base64Helper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/BashRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/BashRunner.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/CSharpNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/CSharpNameHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/ColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/ColorHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/CsvHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/CsvHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/EnumHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/EnumerableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/EnumerableHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/EquatableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/EquatableExtensions.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/FileLocationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/FileLocationHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/FileSizeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/FileSizeHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/ImageHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/LineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/LineHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/LinqExtensions.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/MD5Helper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/PathHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/Profiler.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/ProjectOutputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/ProjectOutputHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/ResourcesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/ResourcesHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/SHA1Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/SHA1Helper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/SuggestionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/SuggestionHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/SymbolHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/SymbolHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/WorkingPathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/WorkingPathHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Utilities/XmlFormattingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Utilities/XmlFormattingHelper.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Versioning/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Versioning/SemanticVersion.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Versioning/VersionUpdateStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Versioning/VersionUpdateStatus.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/FileCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/FileCreation.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/IWorkExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/IWorkExecutionResult.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/IWorkUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/IWorkUnit.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/IWorkUnitEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/IWorkUnitEngine.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/IWorkUnitHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/IWorkUnitHandler.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/Work Units/PickerWorkUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/Work Units/PickerWorkUnit.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/Work Units/XmlWorkUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/Work Units/XmlWorkUnit.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/WorkEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/WorkEngine.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/WorkExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/WorkExecutionResult.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/WorkUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/WorkUnit.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/WorkUnitEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/WorkUnitEventArgs.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/WorkUnitHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/WorkUnitHandler.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Work/WorkUnitHandlerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Work/WorkUnitHandlerRepository.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/DefaultXmlFormattingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/DefaultXmlFormattingPolicy.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlAttribute.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlAttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlAttributeValue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlFormattingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlFormattingPolicy.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlName.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlNode.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlSyntaxFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlSyntaxFinder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlSyntaxParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlSyntaxParser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlSyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlSyntaxTree.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlSyntaxTreeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlSyntaxTreeService.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/IXmlSyntaxWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/IXmlSyntaxWriter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlAttribute.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlAttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlAttributeValue.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlComment.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlName.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlNode.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlSyntax.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlSyntaxFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlSyntaxFinder.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlSyntaxKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlSyntaxKind.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlSyntaxParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlSyntaxParser.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlSyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlSyntaxTree.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlSyntaxTreeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlSyntaxTreeEventArgs.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/Xml/XmlSyntaxWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/Xml/XmlSyntaxWriter.cs -------------------------------------------------------------------------------- /MFractor/Libraries/MFractor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Libraries/MFractor/app.config -------------------------------------------------------------------------------- /MFractor/Licensing/MFractor.Licensing.Issuer/LicenseIssuer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Licensing/MFractor.Licensing.Issuer/LicenseIssuer.cs -------------------------------------------------------------------------------- /MFractor/Licensing/MFractor.Licensing.Issuer/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Licensing/MFractor.Licensing.Issuer/Utils.cs -------------------------------------------------------------------------------- /MFractor/Licensing/MFractor.Portable.Licensing/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Licensing/MFractor.Portable.Licensing/Customer.cs -------------------------------------------------------------------------------- /MFractor/Licensing/MFractor.Portable.Licensing/License.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Licensing/MFractor.Portable.Licensing/License.cs -------------------------------------------------------------------------------- /MFractor/Licensing/MFractor.Portable.Licensing/LicenseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Licensing/MFractor.Portable.Licensing/LicenseType.cs -------------------------------------------------------------------------------- /MFractor/Licensing/MFractor.SigningKeyGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Licensing/MFractor.SigningKeyGenerator/Program.cs -------------------------------------------------------------------------------- /MFractor/Licensing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Licensing/README.md -------------------------------------------------------------------------------- /MFractor/MFractor.Mac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.Mac.sln -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Adornments/ColorAdornment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Adornments/ColorAdornment.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Adornments/GridIndexAdornment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Adornments/GridIndexAdornment.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Adornments/LabelAdornment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Adornments/LabelAdornment.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/Thumbs.db -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/android-icon-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/android-icon-mini.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/android-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/android-icon.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/box-dynamic-resource-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/box-dynamic-resource-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/code-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/code-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/color-picker-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/color-picker-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/copy-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/copy-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/crosshairs-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/crosshairs-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/css-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/css-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/exchange-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/exchange-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/eye-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/eye-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/feather-box-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/feather-box-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/feather-image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/feather-image-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/font-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/font-icon-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/grid-column-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/grid-column-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/grid-row-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/grid-row-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/logo-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/logo_prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/logo_prefs.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/pencil.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Assets/wand-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Assets/wand-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Commands/IdeCommandAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Commands/IdeCommandAdapter.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/GlobalSuppressions.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/IdeDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/IdeDispatcher.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/IdeExportResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/IdeExportResolver.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/IdeStartupCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/IdeStartupCommand.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/IdeWorkEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/IdeWorkEngine.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/MFractor.VS.Mac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/MFractor.VS.Mac.csproj -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Progress/IdeProgressMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Progress/IdeProgressMonitor.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Properties/Manifest.addin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Properties/Manifest.addin.xml -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Properties/ProductInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Properties/ProductInfo.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Search/Commands/CommandSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Search/Commands/CommandSearch.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Search/Xaml/AutomationIdSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Search/Xaml/AutomationIdSearch.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Search/Xaml/DynamicResourceSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Search/Xaml/DynamicResourceSearch.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Search/Xaml/StaticResourceSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Search/Xaml/StaticResourceSearch.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/ActiveDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/ActiveDocument.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/CodeSnippetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/CodeSnippetService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/DialogsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/DialogsService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/FormattingPolicyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/FormattingPolicyService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeImageImporterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeImageImporterService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeImageManager.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeLogFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeLogFileProvider.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeProjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeProjectFile.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeProjectFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeProjectFolder.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeSharedAssetsProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeSharedAssetsProject.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeSolutionPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeSolutionPad.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeUserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeUserOptions.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeWorkspaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeWorkspaceService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/IdeXmlFormattingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/IdeXmlFormattingPolicy.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/ProductInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/ProductInformation.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/ProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/ProjectService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/RootWindowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/RootWindowService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/SearchProgressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/SearchProgressService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/TextEditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/TextEditorFactory.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/ThemeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/ThemeService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Services/UrlLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Services/UrlLauncher.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/SkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/SkiaSharp.dll -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Utilities/ExtensionPointHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Utilities/ExtensionPointHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Utilities/SolutionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Utilities/SolutionHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Utilities/TextEditorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Utilities/TextEditorHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Utilities/TooltipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Utilities/TooltipHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/AppKitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/AppKitHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/ClickableLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/ClickableLabel.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/CodeIssueView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/CodeIssueView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/ColorTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/ColorTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/FontTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/FontTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/ImageFileTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/ImageFileTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/ImageTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/ImageTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/NSBrandedFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/NSBrandedFooter.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/TextContentTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/TextContentTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/Views/ThicknessPreviewView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/Views/ThicknessPreviewView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Mac/libSkiaSharp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Mac/libSkiaSharp.dylib -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Adornments/ColorAdornment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Adornments/ColorAdornment.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Adornments/GridIndexAdornment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Adornments/GridIndexAdornment.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Adornments/LabelAdornment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Adornments/LabelAdornment.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Assets/end-user-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Assets/end-user-license.txt -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Assets/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Assets/exclamation.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Assets/mfractor_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Assets/mfractor_logo.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Assets/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Assets/wand.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Commands/IdeCommandAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Commands/IdeCommandAdapter.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/IdeDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/IdeDispatcher.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/IdeExportResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/IdeExportResolver.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/IdeWorkEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/IdeWorkEngine.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/MFractor.VS.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/MFractor.VS.Windows.csproj -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/MFractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/MFractor.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/MFractor.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/MFractor.vsct -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/MFractorPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/MFractorPackage.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Options/CodeAnalysisPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Options/CodeAnalysisPage.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Options/DeleteOutputOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Options/DeleteOutputOptions.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Options/FormattingPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Options/FormattingPage.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Options/OptionsPageAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Options/OptionsPageAdapter.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Options/SettingsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Options/SettingsPage.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Properties/ProductInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Properties/ProductInfo.xml -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Book.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Clean.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/CodeBehind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/CodeBehind.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Compress.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Email.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Feedback.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Gitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Gitter.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/ImportAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/ImportAppIcon.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/ImportFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/ImportFont.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/ImportImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/ImportImage.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/License.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/License.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Localization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Localization.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/MFractorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/MFractorIcon.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/MainMenuCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/MainMenuCommand.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/ManageImageAssets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/ManageImageAssets.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Mvvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Mvvm.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Settings.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Slack.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Synchronize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Synchronize.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Twitter.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/ValueConverter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/ValueConverter.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/ViewModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/ViewModel.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/Xaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/Xaml.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Resources/logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Resources/logo-16.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/ActiveDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/ActiveDocument.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/CodeSnippetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/CodeSnippetService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/DialogsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/DialogsService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/IdeSolutionPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/IdeSolutionPad.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/IdeUserOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/IdeUserOptions.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/IdeWorkspaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/IdeWorkspaceService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/ImagePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/ImagePicker.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/ProductInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/ProductInformation.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/ProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/ProjectService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/RootWindowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/RootWindowService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/SearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/SearchService.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/TextEditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/TextEditorFactory.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Services/UrlLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Services/UrlLauncher.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/SkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/SkiaSharp.dll -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/UI/Controls/AppIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/UI/Controls/AppIcon.xaml -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/UI/Controls/AppIcon.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/UI/Controls/AppIcon.xaml.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/UI/Dialogs/BaseDialogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/UI/Dialogs/BaseDialogWindow.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/UI/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/UI/Resources.xaml -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/UI/Resources.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/UI/Resources.xaml.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/BitmapImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/BitmapImageHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/CoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/CoreExtensions.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/DteProjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/DteProjectHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/ITextViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/ITextViewExtensions.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/PackageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/PackageHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/ResourceAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/ResourceAccessor.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/TextColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/TextColorHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/UIHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/UIHelpers.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Utilities/WorkspaceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Utilities/WorkspaceHelper.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/BrandedFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/BrandedFooter.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/ClickableLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/ClickableLabel.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/CodeIssueView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/CodeIssueView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/ColorTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/ColorTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/FontGlyphTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/FontGlyphTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/FontTextTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/FontTextTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/ImageFileTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/ImageFileTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/TextContentTooltipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/TextContentTooltipView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Views/ThicknessPreviewView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Views/ThicknessPreviewView.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Workspace Model/IdeProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Workspace Model/IdeProject.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/Workspace Model/IdeSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/Workspace Model/IdeSolution.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/_libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/_libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/libSkiaSharp.dll -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/libSkiaSharp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/libSkiaSharp.dylib -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/logo-200.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/logo-32.png -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/source.extension.cs -------------------------------------------------------------------------------- /MFractor/MFractor.VS.Windows/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.VS.Windows/source.extension.vsixmanifest -------------------------------------------------------------------------------- /MFractor/MFractor.Windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/MFractor.Windows.sln -------------------------------------------------------------------------------- /MFractor/Tests/MFractor.Forms.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Tests/MFractor.Forms.Tests/app.config -------------------------------------------------------------------------------- /MFractor/Tests/MFractor.Forms.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Tests/MFractor.Forms.Tests/packages.config -------------------------------------------------------------------------------- /MFractor/Tests/MFractor.Images.Tests/Models/IconIdiomTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Tests/MFractor.Images.Tests/Models/IconIdiomTests.cs -------------------------------------------------------------------------------- /MFractor/Tests/MFractor.VS.Windows.Test/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Tests/MFractor.VS.Windows.Test/UnitTests.cs -------------------------------------------------------------------------------- /MFractor/Tests/MFractor.VS.Windows.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Tests/MFractor.VS.Windows.Test/packages.config -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/Client.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/Internal/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/Internal/Platform.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/Internal/Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/Internal/Proxy.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/Internal/SSL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/Internal/SSL.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/MFractor.Tinify.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/MFractor.Tinify.csproj -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/Result.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/ResultMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/ResultMeta.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/ResultTaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/ResultTaskExtensions.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/Source.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/SourceTaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/SourceTaskExtensions.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/TinifyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/TinifyClient.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/TinifyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/TinifyException.cs -------------------------------------------------------------------------------- /MFractor/Third Party/MFractor.Tinify/data/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/MFractor/Third Party/MFractor.Tinify/data/cacert.pem -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/README.md -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/AccessibilityService.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/AccessibilityService.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/AccountAuthenticator.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/AccountAuthenticator.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/AppWidget.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/AppWidget.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/ColorStateList.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/ColorStateList.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Controls.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Controls.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/DeviceAdmin.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/DeviceAdmin.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Drawable.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Drawable.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/FullBackupContent.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/FullBackupContent.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/InputExtras.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/InputExtras.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/InputMethod.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/InputMethod.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Interpolators.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Interpolators.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Keyboard.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Keyboard.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/LayoutMergeInclude.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/LayoutMergeInclude.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/LayoutParams.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/LayoutParams.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Manifest.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Manifest.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Menu.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Menu.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/NFC.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/NFC.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/PreferenceHeaders.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/PreferenceHeaders.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Preferences.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Preferences.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/PropertyAnimation.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/PropertyAnimation.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Searchable.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Searchable.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/ShapeDrawable.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/ShapeDrawable.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/SpellChecker.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/SpellChecker.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Styleable.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Styleable.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Styles.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Styles.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/SyncAdapter.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/SyncAdapter.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Transition.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Transition.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Tween Animation.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Tween Animation.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/Values.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/Values.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/VectorDrawable.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/VectorDrawable.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/View.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/View.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/ViewGroup.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/ViewGroup.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/ViewGroupControls.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/ViewGroupControls.ati.xml -------------------------------------------------------------------------------- /assets/AndroidResourceTypeInfo/ViewSchemas.ati.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/AndroidResourceTypeInfo/ViewSchemas.ati.xml -------------------------------------------------------------------------------- /assets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/assets/readme.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/clean.sh -------------------------------------------------------------------------------- /mfractor.mpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/mfractor.mpack -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/mfractor/HEAD/package.sh --------------------------------------------------------------------------------