├── .appveyor.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .unoconfig ├── .vscode ├── .gitignore └── settings.json ├── 3rdparty ├── ColorPicker.dll ├── ColorPicker │ ├── AlphaDisplay.xaml │ ├── AlphaDisplay.xaml.cs │ ├── CheckerBoardBrush.xaml │ ├── ColorDisplay.xaml │ ├── ColorDisplay.xaml.cs │ ├── ColorModels │ │ ├── CMY │ │ │ ├── CMYDisplay.xaml │ │ │ ├── CMYDisplay.xaml.cs │ │ │ ├── CMYModel.cs │ │ │ ├── Cyan.cs │ │ │ └── Magenta.cs │ │ ├── CMYK │ │ │ ├── Black.cs │ │ │ ├── CMYKDisplay.xaml │ │ │ ├── CMYKDisplay.xaml.cs │ │ │ ├── CMYKModel.cs │ │ │ ├── Cyan.cs │ │ │ ├── Magenta.cs │ │ │ └── Yellow.cs │ │ ├── ColorComponent.cs │ │ ├── ColorModel.cs │ │ ├── HSB │ │ │ ├── Brightness.cs │ │ │ ├── HSBModel.cs │ │ │ ├── HsbDisplay.xaml │ │ │ ├── HsbDisplay.xaml.cs │ │ │ ├── Hue.cs │ │ │ ├── Saturation.cs │ │ │ └── Yellow.cs │ │ ├── Lab │ │ │ ├── A.cs │ │ │ ├── B.cs │ │ │ ├── LabDisplay.xaml │ │ │ ├── LabDisplay.xaml.cs │ │ │ ├── LabModel.cs │ │ │ └── Lightness.cs │ │ ├── NormalComponent.cs │ │ └── RGB │ │ │ ├── Blue.cs │ │ │ ├── Green.cs │ │ │ ├── RGBModel.cs │ │ │ ├── Red.cs │ │ │ ├── RgbDisplay.xaml │ │ │ └── RgbDisplay.xaml.cs │ ├── ColorPicker.csproj │ ├── ColorSelector.xaml │ ├── ColorSelector.xaml.cs │ ├── EventArgs.cs │ ├── ExtensionMethods │ │ ├── ByteExtensionMethods.cs │ │ ├── ColorExtensionMethods.cs │ │ └── DoubleExtensionMethods.cs │ ├── HexDisplay.xaml │ ├── HexDisplay.xaml.cs │ ├── NewCurrent.xaml │ ├── NewCurrent.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── SliderResources.xaml ├── ColorPickerControls.dll ├── ColorPickerControls │ ├── Chips │ │ ├── ColorChip.xaml │ │ ├── ColorChip.xaml.cs │ │ ├── ForegroundBackgroundChip.xaml │ │ └── ForegroundBackgroundChip.xaml.cs │ ├── ColorPickerControls.csproj │ ├── Dialogs │ │ ├── ColorPickerFullDialog.xaml │ │ ├── ColorPickerFullDialog.xaml.cs │ │ ├── ColorPickerFullWithAlphaDialog.xaml │ │ ├── ColorPickerFullWithAlphaDialog.xaml.cs │ │ ├── ColorPickerStandardDialog.xaml │ │ ├── ColorPickerStandardDialog.xaml.cs │ │ ├── ColorPickerStandardWithAlphaDialog.xaml │ │ ├── ColorPickerStandardWithAlphaDialog.xaml.cs │ │ ├── EColorDialog.cs │ │ └── IColorDialog.cs │ ├── Pickers │ │ ├── ColorPickerFull.xaml │ │ ├── ColorPickerFull.xaml.cs │ │ ├── ColorPickerFullWithAlpha.xaml │ │ ├── ColorPickerFullWithAlpha.xaml.cs │ │ ├── ColorPickerStandard.xaml │ │ ├── ColorPickerStandard.xaml.cs │ │ ├── ColorPickerStandardWithAlpha.xaml │ │ └── ColorPickerStandardWithAlpha.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── ICSharpCode.NRefactory.Xml.dll ├── ICSharpCode.NRefactory.dll └── NRefactory │ ├── .gitattributes │ ├── .gitignore │ ├── ICSharpCode.NRefactory.CSharp.AstVerifier │ ├── AssemblyInfo.cs │ ├── ICSharpCode.NRefactory.CSharp.AstVerifier.csproj │ └── Main.cs │ ├── ICSharpCode.NRefactory.CSharp.Refactoring │ ├── CodeActions │ │ ├── AbstractAndVirtualConversionAction.cs │ │ ├── AddAnotherAccessorAction.cs │ │ ├── AddArgumentNameAction.cs │ │ ├── AddBracesAction.cs │ │ ├── AddCatchTypeAction.cs │ │ ├── AddExceptionDescriptionAction.cs │ │ ├── AddOptionalParameterToInvocationAction.cs │ │ ├── AddUsingAction.cs │ │ ├── AutoLinqSumAction.cs │ │ ├── CS1105ExtensionMethodMustBeDeclaredStaticAction.cs │ │ ├── CS1520MethodMustHaveAReturnTypeAction.cs │ │ ├── ChangeAccessModifierAction.cs │ │ ├── CheckIfParameterIsNullAction.cs │ │ ├── ComputeConstantValueAction.cs │ │ ├── ConvertAnonymousDelegateToLambdaAction.cs │ │ ├── ConvertAsToCastAction.cs │ │ ├── ConvertAssignmentToIfAction.cs │ │ ├── ConvertBitwiseFlagComparisonToHasFlagsAction.cs │ │ ├── ConvertCastToAsAction.cs │ │ ├── ConvertDecToHexAction.cs │ │ ├── ConvertDoWhileToWhileLoopAction.cs │ │ ├── ConvertEqualityOperatorToEqualsAction.cs │ │ ├── ConvertEqualsToEqualityOperatorAction.cs │ │ ├── ConvertExplicitToImplicitImplementationAction.cs │ │ ├── ConvertForToWhileAction.cs │ │ ├── ConvertForeachToForAction.cs │ │ ├── ConvertHasFlagsToBitwiseFlagComparisonAction.cs │ │ ├── ConvertHexToDecAction.cs │ │ ├── ConvertIfStatementToConditionalTernaryExpressionAction.cs │ │ ├── ConvertIfStatementToNullCoalescingExpressionAction.cs │ │ ├── ConvertIfStatementToReturnStatementAction.cs │ │ ├── ConvertIfStatementToSwitchStatementAction.cs │ │ ├── ConvertImplicitToExplicitImplementationAction.cs │ │ ├── ConvertLambdaBodyExpressionToStatementAction.cs │ │ ├── ConvertLambdaBodyStatementToExpressionAction.cs │ │ ├── ConvertLambdaToAnonymousDelegateAction.cs │ │ ├── ConvertMethodGroupToAnonymousMethodAction.cs │ │ ├── ConvertMethodGroupToLambdaAction.cs │ │ ├── ConvertMultiplyToShiftAction.cs │ │ ├── ConvertNullCoalescingToConditionalExpressionAction.cs │ │ ├── ConvertReturnStatementToIfAction.cs │ │ ├── ConvertShiftToMultiplyAction.cs │ │ ├── ConvertSwitchToIfAction.cs │ │ ├── ConvertToInitializer │ │ │ ├── AccessPath.cs │ │ │ ├── ConvertInitializerToExplicitInitializationsAction.cs │ │ │ ├── ConvertToInitializerAction.cs │ │ │ └── StatementsToInitializerConverter.cs │ │ ├── ConvertWhileToDoWhileLoopAction.cs │ │ ├── CopyCommentsFromBase.cs │ │ ├── CopyCommentsFromInterface.cs │ │ ├── CreateBackingStoreAction.cs │ │ ├── CreateChangedEventAction.cs │ │ ├── CreateClassDeclarationAction.cs │ │ ├── CreateConstructorDeclarationAction.cs │ │ ├── CreateCustomEventImplementationAction.cs │ │ ├── CreateDelegateAction.cs │ │ ├── CreateEnumValue.cs │ │ ├── CreateEventInvocatorAction.cs │ │ ├── CreateFieldAction.cs │ │ ├── CreateIndexerAction.cs │ │ ├── CreateLocalVariableAction.cs │ │ ├── CreateMethodDeclarationAction.cs │ │ ├── CreateOverloadWithoutParameterAction.cs │ │ ├── CreatePropertyAction.cs │ │ ├── DeclareLocalVariableAction.cs │ │ ├── ExtensionMethodInvocationToStaticMethodInvocationAction.cs │ │ ├── ExtractAnonymousMethodAction.cs │ │ ├── ExtractFieldAction.cs │ │ ├── ExtractMethod │ │ │ ├── ExtractMethodAction.cs │ │ │ ├── StaticVisitor.cs │ │ │ ├── VariableLookupVisitor.cs │ │ │ └── VariableUsageAnalyzation.cs │ │ ├── ExtractWhileConditionToInternalIfStatementAction.cs │ │ ├── FlipEqualsTargetAndArgumentAction.cs │ │ ├── FlipOperatorArgumentsAction.cs │ │ ├── GenerateGetterAction.cs │ │ ├── GeneratePropertyAction.cs │ │ ├── GenerateSwitchLabelsAction.cs │ │ ├── ImplementAbstractMembersAction.cs │ │ ├── ImplementInterfaceAction.cs │ │ ├── ImplementInterfaceExplicitAction.cs │ │ ├── ImplementNotImplementedProperty.cs │ │ ├── InlineLocalVariableAction.cs │ │ ├── InsertAnonymousMethodSignatureAction.cs │ │ ├── IntroduceConstantAction.cs │ │ ├── IntroduceFormatItemAction.cs │ │ ├── InvertConditionalOperatorAction.cs │ │ ├── InvertIfAction.cs │ │ ├── InvertIfAndSimplify.cs │ │ ├── InvertLogicalExpressionAction.cs │ │ ├── IterateViaForeachAction.cs │ │ ├── JoinDeclarationAndAssignmentAction.cs │ │ ├── JoinStringAction.cs │ │ ├── LinqFluentToQueryAction.cs │ │ ├── LinqQueryToFluentAction.cs │ │ ├── MergeNestedIfAction.cs │ │ ├── MoveToOuterScopeAction.cs │ │ ├── NegateIsExpressionAction.cs │ │ ├── NegateRelationalExpressionAction.cs │ │ ├── PutInsideUsingAction.cs │ │ ├── RemoveBackingStoreAction.cs │ │ ├── RemoveBracesAction.cs │ │ ├── RemoveRedundantCatchTypeAction.cs │ │ ├── RemoveRegionAction.cs │ │ ├── ReplaceAssignmentWithPostfixExpressionAction.cs │ │ ├── ReplaceEmptyStringAction.cs │ │ ├── ReplaceOperatorAssignmentWithAssignmentAction.cs │ │ ├── ReplacePostfixExpressionWithAssignmentAction.cs │ │ ├── ReplaceWithOperatorAssignmentAction.cs │ │ ├── ReverseDirectionForForLoopAction.cs │ │ ├── SimplifyIfFlowAction.cs │ │ ├── SimplifyIfInLoopsFlowAction.cs │ │ ├── SortUsingsAction.cs │ │ ├── SpecializedCodeAction.cs │ │ ├── SplitDeclarationAndAssignmentAction.cs │ │ ├── SplitDeclarationListAction.cs │ │ ├── SplitIfAction.cs │ │ ├── SplitStringAction.cs │ │ ├── UseAsAndNullCheckAction.cs │ │ ├── UseExplicitTypeAction.cs │ │ ├── UseStringFormatAction.cs │ │ └── UseVarKeywordAction.cs │ ├── CodeIssues │ │ ├── Custom │ │ │ ├── AdditionalOfTypeIssues.cs │ │ │ ├── BaseMethodParameterNameMismatchIssue.cs │ │ │ ├── CallToObjectEqualsViaBaseIssue.cs │ │ │ ├── CastExpressionOfIncompatibleTypeIssue.cs │ │ │ ├── CheckNamespaceIssue.cs │ │ │ ├── CompilerErrors │ │ │ │ ├── CS0029InvalidConversionIssue.cs │ │ │ │ ├── CS0126ReturnMustBeFollowedByAnyExpression.cs │ │ │ │ ├── CS0127ReturnMustNotBeFollowedByAnyExpression.cs │ │ │ │ ├── CS0152DuplicateCaseLabelValueIssue.cs │ │ │ │ ├── CS0169FieldIsNeverUsedIssue.cs │ │ │ │ ├── CS0618UsageOfObsoleteMemberIssue.cs │ │ │ │ ├── CS0659OverrideEqualWithoutGetHashCode.cs │ │ │ │ ├── CS0759RedundantPartialMethodIssue.cs │ │ │ │ ├── CS1729TypeHasNoConstructorWithNArgumentsIssue.cs │ │ │ │ ├── ExpressionIsNeverOfProvidedTypeIssue.cs │ │ │ │ ├── MissingInterfaceMemberImplementationIssue.cs │ │ │ │ └── StaticConstructorParameterIssue.cs │ │ │ ├── ConstantConditionIssue.cs │ │ │ ├── ConvertIfToAndExpressionIssue.cs │ │ │ ├── LockThisIssue.cs │ │ │ ├── MixedUseOfFieldsAndGettersIssue.cs │ │ │ ├── NegativeRelationalExpressionIssue.cs │ │ │ ├── NotImplementedExceptionIssue.cs │ │ │ ├── ParameterOnlyAssignedIssue.cs │ │ │ ├── RedundantAssignmentIssue.cs │ │ │ ├── RedundantInternalIssue.cs │ │ │ ├── RedundantPrivateIssue.cs │ │ │ ├── StaticEventSubscriptionIssue.cs │ │ │ ├── UnreachableCodeIssue.cs │ │ │ ├── VariableOnlyAssignedIssue.cs │ │ │ └── XmlDocIssue.cs │ │ ├── GatherVisitorBase.cs │ │ ├── IssueCategories.cs │ │ ├── NotWorking │ │ │ ├── AccessToClosureIssues │ │ │ │ ├── AccessToClosureIssue.cs │ │ │ │ ├── AccessToDisposedClosureIssue.cs │ │ │ │ ├── AccessToModifiedClosureIssue.cs │ │ │ │ └── LocalVariableNamePicker.cs │ │ │ ├── DuplicateBodyMethodIssue.cs │ │ │ ├── DuplicateExpressionsInConditionsIssue.cs │ │ │ ├── DuplicateIfInIfChainIssue.cs │ │ │ ├── ParameterCanBeIEnumerableIssue.cs │ │ │ └── VariableDeclaredInWideScopeIssue.cs │ │ ├── RefactoringExtensions.cs │ │ ├── Synced │ │ │ ├── CodeQuality │ │ │ │ ├── BaseMethodCallWithDefaultParameterIssue.cs │ │ │ │ ├── BitwiseOperatorOnEnumWithoutFlagsIssue.cs │ │ │ │ ├── CanBeReplacedWithTryCastAndCheckForNullIssue.cs │ │ │ │ ├── CompareNonConstrainedGenericWithNullIssue.cs │ │ │ │ ├── CompareOfFloatsByEqualityOperatorIssue.cs │ │ │ │ ├── ConditionalTernaryEqualBranchIssue.cs │ │ │ │ ├── DelegateSubtractionIssue.cs │ │ │ │ ├── DoNotCallOverridableMethodsInConstructorIssue.cs │ │ │ │ ├── EmptyGeneralCatchClauseIssue.cs │ │ │ │ ├── EqualExpressionComparisonIssue.cs │ │ │ │ ├── EventUnsubscriptionViaAnonymousDelegateIssue.cs │ │ │ │ ├── ForControlVariableIsNeverModifiedIssue.cs │ │ │ │ ├── FormatStringProblemIssue.cs │ │ │ │ ├── FunctionNeverReturnsIssue.cs │ │ │ │ ├── LocalVariableHidesMemberIssue.cs │ │ │ │ ├── LongLiteralEndingLowerLIssue.cs │ │ │ │ ├── MemberHidesStaticFromOuterClassIssue.cs │ │ │ │ ├── MethodOverloadWithOptionalParameterIssue.cs │ │ │ │ ├── NonReadonlyReferencedInGetHashCodeIssue.cs │ │ │ │ ├── NotResolvedInTextIssue.cs │ │ │ │ ├── ObjectCreationAsStatementIssue.cs │ │ │ │ ├── OperatorIsCanBeUsedIssue.cs │ │ │ │ ├── OptionalParameterHierarchyMismatchIssue.cs │ │ │ │ ├── OptionalParameterRefOutIssue.cs │ │ │ │ ├── ParameterHidesMemberIssue.cs │ │ │ │ ├── PartialMethodParameterNameMismatchIssue.cs │ │ │ │ ├── PolymorphicFieldLikeEventInvocationIssue.cs │ │ │ │ ├── PossibleAssignmentToReadonlyFieldIssue.cs │ │ │ │ ├── PossibleMultipleEnumerationIssue.cs │ │ │ │ ├── StaticFieldInGenericTypeIssue.cs │ │ │ │ ├── ThreadStaticAtInstanceFieldIssue.cs │ │ │ │ └── ValueParameterNotUsedIssue.cs │ │ │ ├── CompilerErrors │ │ │ │ └── ProhibitedModifiersIssue.cs │ │ │ ├── CompilerWarnings │ │ │ │ ├── CS0183ExpressionIsAlwaysOfProvidedTypeIssue.cs │ │ │ │ ├── CS1573ParameterHasNoMatchingParamTagIssue.cs │ │ │ │ ├── CS1717AssignmentMadeToSameVariableIssue.cs │ │ │ │ └── UnassignedReadonlyFieldIssue.cs │ │ │ ├── ConstraintViolations │ │ │ │ └── InconsistentNamingIssue │ │ │ │ │ ├── AffectedEntity.cs │ │ │ │ │ ├── DefaultRules.cs │ │ │ │ │ ├── InconsistentNamingIssue.cs │ │ │ │ │ ├── NamingConventionService.cs │ │ │ │ │ ├── NamingRule.cs │ │ │ │ │ └── NamingStyle.cs │ │ │ ├── NUnit │ │ │ │ └── NonPublicMethodWithTestAttributeIssue.cs │ │ │ ├── Opportunities │ │ │ │ ├── ConvertClosureToMethodGroupIssue.cs │ │ │ │ ├── ConvertConditionalTernaryToNullCoalescingIssue.cs │ │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionIssue.cs │ │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionIssue.cs │ │ │ │ ├── ConvertIfStatementToSwitchStatementIssue.cs │ │ │ │ ├── ConvertNullableToShortFormIssue.cs │ │ │ │ ├── ConvertToAutoPropertyIssue.cs │ │ │ │ ├── ConvertToLambdaExpressionIssue.cs │ │ │ │ ├── ConvertToStaticTypeIssue.cs │ │ │ │ ├── ForCanBeConvertedToForeachIssue.cs │ │ │ │ ├── InvokeAsExtensionMethodIssue.cs │ │ │ │ ├── RewriteIfReturnToReturnIssue.cs │ │ │ │ └── SuggestUseVarKeywordEvidentIssue.cs │ │ │ ├── PracticesAndImprovements │ │ │ │ ├── AccessToStaticMemberViaDerivedTypeIssue.cs │ │ │ │ ├── BaseMemberHasParamsIssue.cs │ │ │ │ ├── ConvertIfDoToWhileIssue.cs │ │ │ │ ├── ConvertIfToOrExpressionIssue.cs │ │ │ │ ├── ConvertToConstantIssue.cs │ │ │ │ ├── EmptyEmbeddedStatementIssue.cs │ │ │ │ ├── FieldCanBeMadeReadOnlyIssue.cs │ │ │ │ ├── MemberCanBeMadeStaticIssue.cs │ │ │ │ ├── ParameterCanBeDeclaredWithBaseTypeIssue.cs │ │ │ │ ├── PossibleMistakenCallToGetTypeIssue.cs │ │ │ │ ├── PublicConstructorInAbstractClass.cs │ │ │ │ ├── ReferenceEqualsWithValueTypeIssue.cs │ │ │ │ ├── ReplaceWithFirstOrDefaultIssue.cs │ │ │ │ ├── ReplaceWithLastOrDefaultIssue.cs │ │ │ │ ├── ReplaceWithOfTypeAny.cs │ │ │ │ ├── ReplaceWithOfTypeCountIssue.cs │ │ │ │ ├── ReplaceWithOfTypeFirstIssue.cs │ │ │ │ ├── ReplaceWithOfTypeFirstOrDefaultIssue.cs │ │ │ │ ├── ReplaceWithOfTypeIssue.cs │ │ │ │ ├── ReplaceWithOfTypeLastIssue.cs │ │ │ │ ├── ReplaceWithOfTypeLastOrDefaultIssue.cs │ │ │ │ ├── ReplaceWithOfTypeLongCountIssue.cs │ │ │ │ ├── ReplaceWithOfTypeSingleIssue.cs │ │ │ │ ├── ReplaceWithOfTypeSingleOrDefaultIssue.cs │ │ │ │ ├── ReplaceWithOfTypeWhereIssue.cs │ │ │ │ ├── ReplaceWithSimpleAssignmentIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToAnyIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToAverageIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToCountIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToFirstIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToFirstOrDefaultIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToLastIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToLastOrDefaultIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToLongCountIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToMaxIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToMinIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToSingleIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToSingleOrDefaultIssue.cs │ │ │ │ ├── ReplaceWithSingleCallToSumIssue.cs │ │ │ │ ├── ReplaceWithStringIsNullOrEmptyIssue.cs │ │ │ │ ├── SimplifyConditionalTernaryExpressionIssue.cs │ │ │ │ ├── SimplifyLinqExpressionIssue.cs │ │ │ │ ├── StringCompareIsCultureSpecificIssue.cs │ │ │ │ ├── StringCompareToIsCultureSpecificIssue.cs │ │ │ │ ├── StringEndsWithIsCultureSpecificIssue.cs │ │ │ │ ├── StringIndexOfIsCultureSpecificIssue.cs │ │ │ │ ├── StringLastIndexOfIsCultureSpecificIssue.cs │ │ │ │ ├── StringStartsWithIsCultureSpecificIssue.cs │ │ │ │ ├── UseArrayCreationExpressionIssue.cs │ │ │ │ ├── UseIsOperatorIssue.cs │ │ │ │ ├── UseMethodAnyIssue.cs │ │ │ │ └── UseMethodIsInstanceOfTypeIssue.cs │ │ │ ├── RedundanciesInCode │ │ │ │ ├── ArrayCreationCanBeReplacedWithArrayInitializerIssue.cs │ │ │ │ ├── ConditionIsAlwaysTrueOrFalseIssue.cs │ │ │ │ ├── ConstantNullCoalescingConditionIssue.cs │ │ │ │ ├── DoubleNegationOperatorIssue.cs │ │ │ │ ├── EmptyStatementIssue.cs │ │ │ │ ├── ForStatementConditionIsTrueIssue.cs │ │ │ │ ├── RedundantAnonymousTypePropertyNameIssue.cs │ │ │ │ ├── RedundantArgumentDefaultValueIssue.cs │ │ │ │ ├── RedundantArgumentNameIssue.cs │ │ │ │ ├── RedundantAttributeParenthesesIssue.cs │ │ │ │ ├── RedundantBaseQualifierIssue.cs │ │ │ │ ├── RedundantBoolCompareIssue.cs │ │ │ │ ├── RedundantCaseLabelIssue.cs │ │ │ │ ├── RedundantCastIssue.cs │ │ │ │ ├── RedundantCatchClauseIssue.cs │ │ │ │ ├── RedundantCheckBeforeAssignmentIssue.cs │ │ │ │ ├── RedundantCommaInArrayInitializerIssue.cs │ │ │ │ ├── RedundantComparisonWithNullIssue.cs │ │ │ │ ├── RedundantDelegateCreationIssue.cs │ │ │ │ ├── RedundantEmptyDefaultSwitchBranchIssue.cs │ │ │ │ ├── RedundantEmptyFinallyBlockIssue.cs │ │ │ │ ├── RedundantEmptyObjectCreationArgumentListssue.cs │ │ │ │ ├── RedundantEnumerableCastCallIssue.cs │ │ │ │ ├── RedundantExplicitArrayCreationIssue.cs │ │ │ │ ├── RedundantExplicitArraySizeIssue.cs │ │ │ │ ├── RedundantExplicitNullableCreationIssue.cs │ │ │ │ ├── RedundantExtendsListEntryIssue.cs │ │ │ │ ├── RedundantIfElseBlockIssue.cs │ │ │ │ ├── RedundantLambdaParameterTypeIssue.cs │ │ │ │ ├── RedundantLambdaSignatureParenthesesIssue.cs │ │ │ │ ├── RedundantLogicalConditionalExpressionOperandIssue.cs │ │ │ │ ├── RedundantNameQualifierIssue.cs │ │ │ │ ├── RedundantObjectOrCollectionInitializerIssue.cs │ │ │ │ ├── RedundantStringToCharArrayCallIssue.cs │ │ │ │ ├── RedundantTernaryExpressionIssue.cs │ │ │ │ ├── RedundantThisQualifierIssue.cs │ │ │ │ ├── RedundantToStringCallForValueTypesIssue.cs │ │ │ │ ├── RedundantToStringCallIssue.cs │ │ │ │ ├── RedundantUnsafeContextIssue.cs │ │ │ │ ├── RedundantUsingDirectiveIssue.cs │ │ │ │ ├── RemoveRedundantOrStatementIssue.cs │ │ │ │ └── UnusedAnonymousMethodSignatureIssue.cs │ │ │ └── RedundanciesInDeclaration │ │ │ │ ├── EmptyConstructorIssue.cs │ │ │ │ ├── EmptyDestructorIssue.cs │ │ │ │ ├── EmptyNamespaceIssue.cs │ │ │ │ ├── EnumUnderlyingTypeIsIntIssue.cs │ │ │ │ ├── LocalVariableNotUsedIssue.cs │ │ │ │ ├── PartialTypeWithSinglePartIssue.cs │ │ │ │ ├── RedundantBaseConstructorCallIssue.cs │ │ │ │ ├── RedundantDefaultFieldInitializerIssue.cs │ │ │ │ ├── RedundantOverridenMemberIssue.cs │ │ │ │ ├── RedundantParamsIssue.cs │ │ │ │ ├── SealedMemberInSealedClassIssue.cs │ │ │ │ ├── UnusedLabelIssue.cs │ │ │ │ ├── UnusedParameterIssue.cs │ │ │ │ └── UnusedTypeParameterIssue.cs │ │ ├── TODO │ │ │ ├── ConvertTailRecursiveCallToLoopIssue.cs │ │ │ ├── LoopCanBeConvertedToQueryIssue.cs │ │ │ ├── PartOfBodyCanBeConvertedToQueryIssue.cs │ │ │ └── RedundantTypeArgumentsOfMethodIssue.cs │ │ └── Uncategorized │ │ │ ├── AutoAsyncIssue.cs │ │ │ ├── DisposeMethodInNonIDisposableTypeIssue.cs │ │ │ ├── DontUseLinqWhenItsVerboseAndInefficientIssue.cs │ │ │ ├── DuplicatedLinqToListOrArrayIssue.cs │ │ │ ├── ExceptionRethrowIssue.cs │ │ │ ├── ExplicitConversionInForEachIssue.cs │ │ │ ├── IncorrectCallToObjectGetHashCodeIssue.cs │ │ │ ├── RedundantBlockInDifferentBranchesIssue.cs │ │ │ ├── RedundantNotNullAttributeInNonNullableTypeIssue.cs │ │ │ ├── ResultOfAsyncCallShouldNotBeIgnoredIssue.cs │ │ │ ├── SameGuardConditionExpressionInIfelseBranchesIssue.cs │ │ │ ├── UnmatchedSizeSpecificationInArrayCreationIssue.cs │ │ │ └── UseOfMemberOfNullReference.cs │ ├── ICSharpCode.NRefactory.CSharp.Refactoring.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ICSharpCode.NRefactory.CSharp │ ├── Analysis │ │ ├── AnnotationNames.cs │ │ ├── ControlFlow.cs │ │ ├── DeclarationSpace │ │ │ ├── LocalDeclarationSpace.cs │ │ │ └── LocalDeclarationSpaceVisitor.cs │ │ ├── DefiniteAssignmentAnalysis.cs │ │ ├── NullValueAnalysis.cs │ │ ├── NullValueStatus.cs │ │ ├── ReachabilityAnalysis.cs │ │ └── SemanticHighlightingVisitor.cs │ ├── Ast │ │ ├── AstNode.cs │ │ ├── AstNodeCollection.cs │ │ ├── AstType.cs │ │ ├── CSharpModifierToken.cs │ │ ├── CSharpTokenNode.cs │ │ ├── CSharpUtil.cs │ │ ├── ComposedType.cs │ │ ├── DepthFirstAstVisitor.cs │ │ ├── DocumentationReference.cs │ │ ├── ErrorNode.cs │ │ ├── Expressions │ │ │ ├── AnonymousMethodExpression.cs │ │ │ ├── AnonymousTypeCreateExpression.cs │ │ │ ├── ArrayCreateExpression.cs │ │ │ ├── ArrayInitializerExpression.cs │ │ │ ├── AsExpression.cs │ │ │ ├── AssignmentExpression.cs │ │ │ ├── BaseReferenceExpression.cs │ │ │ ├── BinaryOperatorExpression.cs │ │ │ ├── CastExpression.cs │ │ │ ├── CheckedExpression.cs │ │ │ ├── ConditionalExpression.cs │ │ │ ├── DefaultValueExpression.cs │ │ │ ├── DirectionExpression.cs │ │ │ ├── ErrorExpression.cs │ │ │ ├── Expression.cs │ │ │ ├── IdentifierExpression.cs │ │ │ ├── IndexerExpression.cs │ │ │ ├── InvocationExpression.cs │ │ │ ├── IsExpression.cs │ │ │ ├── LambdaExpression.cs │ │ │ ├── MemberReferenceExpression.cs │ │ │ ├── NamedArgumentExpression.cs │ │ │ ├── NamedExpression.cs │ │ │ ├── NullReferenceExpression.cs │ │ │ ├── ObjectCreateExpression.cs │ │ │ ├── ParenthesizedExpression.cs │ │ │ ├── PointerReferenceExpression.cs │ │ │ ├── PrimitiveExpression.cs │ │ │ ├── QueryExpression.cs │ │ │ ├── SizeOfExpression.cs │ │ │ ├── StackAllocExpression.cs │ │ │ ├── ThisReferenceExpression.cs │ │ │ ├── TypeOfExpression.cs │ │ │ ├── TypeReferenceExpression.cs │ │ │ ├── UnaryOperatorExpression.cs │ │ │ ├── UncheckedExpression.cs │ │ │ └── UndocumentedExpression.cs │ │ ├── GeneralScope │ │ │ ├── Attribute.cs │ │ │ ├── AttributeSection.cs │ │ │ ├── Comment.cs │ │ │ ├── Constraint.cs │ │ │ ├── DelegateDeclaration.cs │ │ │ ├── ExternAliasDeclaration.cs │ │ │ ├── NamespaceDeclaration.cs │ │ │ ├── NewLineNode.cs │ │ │ ├── PreProcessorDirective.cs │ │ │ ├── TextNode.cs │ │ │ ├── TypeDeclaration.cs │ │ │ ├── TypeParameterDeclaration.cs │ │ │ ├── UsingAliasDeclaration.cs │ │ │ ├── UsingDeclaration.cs │ │ │ └── WhitespaceNode.cs │ │ ├── IAstVisitor.cs │ │ ├── Identifier.cs │ │ ├── IdentifierExpressionBackreference.cs │ │ ├── MemberType.cs │ │ ├── Modifiers.cs │ │ ├── NodeType.cs │ │ ├── ObservableAstVisitor.cs │ │ ├── PrimitiveType.cs │ │ ├── Roles.cs │ │ ├── SimpleType.cs │ │ ├── Statements │ │ │ ├── BlockStatement.cs │ │ │ ├── BreakStatement.cs │ │ │ ├── CheckedStatement.cs │ │ │ ├── ContinueStatement.cs │ │ │ ├── DoWhileStatement.cs │ │ │ ├── EmptyStatement.cs │ │ │ ├── ExpressionStatement.cs │ │ │ ├── FixedStatement.cs │ │ │ ├── ForStatement.cs │ │ │ ├── ForeachStatement.cs │ │ │ ├── GotoStatement.cs │ │ │ ├── IfElseStatement.cs │ │ │ ├── LabelStatement.cs │ │ │ ├── LockStatement.cs │ │ │ ├── ReturnStatement.cs │ │ │ ├── Statement.cs │ │ │ ├── SwitchStatement.cs │ │ │ ├── ThrowStatement.cs │ │ │ ├── TryCatchStatement.cs │ │ │ ├── UncheckedStatement.cs │ │ │ ├── UnsafeStatement.cs │ │ │ ├── UsingStatement.cs │ │ │ ├── VariableDeclarationStatement.cs │ │ │ ├── WhileStatement.cs │ │ │ ├── YieldBreakStatement.cs │ │ │ └── YieldReturnStatement.cs │ │ ├── SyntaxExtensions.cs │ │ ├── SyntaxTree.cs │ │ ├── TokenRole.cs │ │ └── TypeMembers │ │ │ ├── Accessor.cs │ │ │ ├── ConstructorDeclaration.cs │ │ │ ├── DestructorDeclaration.cs │ │ │ ├── EntityDeclaration.cs │ │ │ ├── EnumMemberDeclaration.cs │ │ │ ├── EventDeclaration.cs │ │ │ ├── FieldDeclaration.cs │ │ │ ├── FixedFieldDeclaration.cs │ │ │ ├── FixedVariableInitializer.cs │ │ │ ├── IndexerDeclaration.cs │ │ │ ├── MethodDeclaration.cs │ │ │ ├── OperatorDeclaration.cs │ │ │ ├── ParameterDeclaration.cs │ │ │ ├── PropertyDeclaration.cs │ │ │ └── VariableInitializer.cs │ ├── CSharpProjectContent.cs │ ├── CombineQueryExpressions.cs │ ├── Completion │ │ ├── CSharpCompletionEngine.cs │ │ ├── CSharpCompletionEngineBase.cs │ │ ├── CSharpParameterCompletionEngine.cs │ │ ├── CompletionDataWrapper.cs │ │ ├── ICompletionContextProvider.cs │ │ ├── ICompletionDataFactory.cs │ │ └── IParameterCompletionDataFactory.cs │ ├── Formatter │ │ ├── CSharpFormatter.cs │ │ ├── CSharpFormattingOptions.cs │ │ ├── ConstructFixer.cs │ │ ├── FormattingChanges.cs │ │ ├── FormattingOptionsFactory.cs │ │ ├── FormattingVisitor.cs │ │ ├── FormattingVisitor_Expressions.cs │ │ ├── FormattingVisitor_Global.cs │ │ ├── FormattingVisitor_Query.cs │ │ ├── FormattingVisitor_Statements.cs │ │ ├── FormattingVisitor_TypeMembers.cs │ │ ├── GeneratedCodeSettings.cs │ │ ├── Indent.cs │ │ └── TextEditorOptions.cs │ ├── ICSharpCode.NRefactory.CSharp.csproj │ ├── IndentEngine │ │ ├── CSharpIndentEngine.cs │ │ ├── CacheIndentEngine.cs │ │ ├── IDocumentIndentEngine.cs │ │ ├── IStateMachineIndentEngine.cs │ │ ├── IndentState.cs │ │ ├── NullIStateMachineIndentEngine.cs │ │ └── TextPasteIndentEngine.cs │ ├── IntroduceQueryExpressions.cs │ ├── NameLookupMode.cs │ ├── OutputVisitor │ │ ├── CSharpAmbience.cs │ │ ├── CSharpOutputVisitor.cs │ │ ├── CodeDomConvertVisitor.cs │ │ ├── ITokenWriter.cs │ │ ├── InsertMissingTokensDecorator.cs │ │ ├── InsertParenthesesVisitor.cs │ │ ├── InsertRequiredSpacesDecorator.cs │ │ ├── InsertSpecialsDecorator.cs │ │ └── TextWriterOutputFormatter.cs │ ├── Parser │ │ ├── CSharpParser.cs │ │ ├── CompilerSettings.cs │ │ ├── SeekableStreamReader.cs │ │ └── mcs │ │ │ ├── CryptoConvert.cs │ │ │ ├── MonoSymbolFile.cs │ │ │ ├── MonoSymbolTable.cs │ │ │ ├── MonoSymbolWriter.cs │ │ │ ├── SourceMethodBuilder.cs │ │ │ ├── anonymous.cs │ │ │ ├── argument.cs │ │ │ ├── assembly.cs │ │ │ ├── assign.cs │ │ │ ├── async.cs │ │ │ ├── attribute.cs │ │ │ ├── cfold.cs │ │ │ ├── class.cs │ │ │ ├── codegen.cs │ │ │ ├── complete.cs │ │ │ ├── const.cs │ │ │ ├── constant.cs │ │ │ ├── context.cs │ │ │ ├── convert.cs │ │ │ ├── cs-parser.cs │ │ │ ├── cs-parser.jay │ │ │ ├── cs-tokenizer.cs │ │ │ ├── decl.cs │ │ │ ├── delegate.cs │ │ │ ├── doc.cs │ │ │ ├── driver.cs │ │ │ ├── dynamic.cs │ │ │ ├── ecore.cs │ │ │ ├── enum.cs │ │ │ ├── eval.cs │ │ │ ├── expression.cs │ │ │ ├── field.cs │ │ │ ├── flowanalysis.cs │ │ │ ├── generic.cs │ │ │ ├── import.cs │ │ │ ├── iterators.cs │ │ │ ├── lambda.cs │ │ │ ├── linq.cs │ │ │ ├── literal.cs │ │ │ ├── location.cs │ │ │ ├── membercache.cs │ │ │ ├── method.cs │ │ │ ├── modifiers.cs │ │ │ ├── module.cs │ │ │ ├── namespace.cs │ │ │ ├── nullable.cs │ │ │ ├── outline.cs │ │ │ ├── parameter.cs │ │ │ ├── pending.cs │ │ │ ├── property.cs │ │ │ ├── reflection.cs │ │ │ ├── report.cs │ │ │ ├── settings.cs │ │ │ ├── statement.cs │ │ │ ├── support.cs │ │ │ ├── symbolwriter.cs │ │ │ ├── typemanager.cs │ │ │ ├── typespec.cs │ │ │ └── visit.cs │ ├── PatternMatching │ │ └── AnyType.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueryExpressionExpander.cs │ ├── Refactoring │ │ ├── BaseRefactoringContext.cs │ │ ├── CodeAction.cs │ │ ├── CodeActionProvider.cs │ │ ├── CodeActions │ │ │ └── RemoveFieldRefactoryActionRefactoringAction.cs │ │ ├── CodeGenerationService.cs │ │ ├── CodeIssue.cs │ │ ├── CodeIssueProvider.cs │ │ ├── CommonSubIssues.cs │ │ ├── ContextActionAttribute.cs │ │ ├── DocumentScript.cs │ │ ├── FormatStringHelper.cs │ │ ├── IssueAttribute.cs │ │ ├── LambdaHelper.cs │ │ ├── LocalReferenceFinder.cs │ │ ├── NamingHelper.cs │ │ ├── PatternHelper.cs │ │ ├── RefactoringAstHelper.cs │ │ ├── RefactoringContext.cs │ │ ├── Script.cs │ │ ├── TypeGuessing.cs │ │ ├── TypeSystemAstBuilder.cs │ │ ├── UsingHelper.cs │ │ ├── VariableReferenceGraph.cs │ │ └── WordParser.cs │ ├── Resolver │ │ ├── AliasNamespaceResolveResult.cs │ │ ├── AliasTypeResolveResult.cs │ │ ├── AwaitResolveResult.cs │ │ ├── CSharpAstResolver.cs │ │ ├── CSharpConversions.cs │ │ ├── CSharpInvocationResolveResult.cs │ │ ├── CSharpOperators.cs │ │ ├── CSharpResolver.cs │ │ ├── CastResolveResult.cs │ │ ├── CompositeResolveVisitorNavigator.cs │ │ ├── DetectSkippableNodesNavigator.cs │ │ ├── DynamicInvocationResolveResult.cs │ │ ├── DynamicMemberResolveResult.cs │ │ ├── FindReferenceSearchScope.cs │ │ ├── FindReferencedEntities.cs │ │ ├── FindReferences.cs │ │ ├── IResolveVisitorNavigator.cs │ │ ├── LambdaResolveResult.cs │ │ ├── Log.cs │ │ ├── MemberLookup.cs │ │ ├── MethodGroupResolveResult.cs │ │ ├── NodeListResolveVisitorNavigator.cs │ │ ├── OverloadResolution.cs │ │ ├── OverloadResolutionErrors.cs │ │ ├── ReducedExtensionMethod.cs │ │ ├── RenameCallbackArguments.cs │ │ ├── ResolveAtLocation.cs │ │ ├── ResolveVisitor.cs │ │ └── TypeInference.cs │ ├── TypeSystem │ │ ├── AliasNamespaceReference.cs │ │ ├── AttributeTypeReference.cs │ │ ├── CSharpAssembly.cs │ │ ├── CSharpAttribute.cs │ │ ├── CSharpDocumentationComment.cs │ │ ├── CSharpTypeResolveContext.cs │ │ ├── CSharpUnresolvedFile.cs │ │ ├── CSharpUnresolvedTypeDefinition.cs │ │ ├── ConstantValues.cs │ │ ├── MemberTypeOrNamespaceReference.cs │ │ ├── MethodTypeParameterWithInheritedConstraints.cs │ │ ├── ResolvedUsingScope.cs │ │ ├── SimpleTypeOrNamespaceReference.cs │ │ ├── TypeOrNamespaceReference.cs │ │ ├── TypeSystemConvertVisitor.cs │ │ └── UsingScope.cs │ └── Util │ │ └── CloneableStack.cs │ ├── ICSharpCode.NRefactory.Cecil │ ├── CecilLoader.cs │ ├── ICSharpCode.NRefactory.Cecil.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── ICSharpCode.NRefactory.ConsistencyCheck │ ├── CSharpFile.cs │ ├── CSharpProject.cs │ ├── FindReferencesConsistencyCheck.cs │ ├── ICSharpCode.NRefactory.ConsistencyCheck.csproj │ ├── PatternMatchingTest.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RandomizedOrderResolverTest.cs │ ├── Readme.txt │ ├── ResolverTest.cs │ ├── RoundtripTest.cs │ ├── Solution.cs │ ├── TypeSystemTests.cs │ ├── VisitorBenchmark.cs │ ├── Xml │ │ ├── IncrementalXmlParserTests.cs │ │ └── XmlReaderTest.cs │ └── app.config │ ├── ICSharpCode.NRefactory.Demo │ ├── CSDemo.Designer.cs │ ├── CSDemo.cs │ ├── CSDemo.resx │ ├── ICSharpCode.NRefactory.Demo.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SemanticTreeDialog.Designer.cs │ ├── SemanticTreeDialog.cs │ ├── SemanticTreeDialog.resx │ ├── VBAstView.Designer.cs │ ├── VBAstView.cs │ ├── VBAstView.resx │ ├── VBDemo.Designer.cs │ ├── VBDemo.cs │ ├── VBDemo.resx │ ├── VBEditDialog.Designer.cs │ ├── VBEditDialog.cs │ └── VBEditDialog.resx │ ├── ICSharpCode.NRefactory.GtkDemo │ ├── AssemblyInfo.cs │ ├── CSharpDemo.cs │ ├── ICSharpCode.NRefactory.GtkDemo.csproj │ ├── Main.cs │ ├── MainWindow.cs │ ├── gtk-gui │ │ ├── ICSharpCode.NRefactory.GtkDemo.MainWindow.cs │ │ ├── generated.cs │ │ └── gui.stetic │ └── pixbuf │ │ ├── comment.png │ │ ├── element-class-16.png │ │ ├── element-field-16.png │ │ ├── element-literal-16.png │ │ ├── element-method-16.png │ │ └── element-namespace-16.png │ ├── ICSharpCode.NRefactory.IKVM │ ├── ICSharpCode.NRefactory.IKVM.csproj │ ├── IkvmLoader.cs │ ├── IntConstantValue.cs │ ├── NonFrozenInterningProvider.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ShortConstantValue.cs │ ├── StringConstantValue.cs │ └── StructConstantValue.cs │ ├── ICSharpCode.NRefactory.Tests │ ├── Analysis │ │ ├── AbiComparerTests.cs │ │ └── SymbolCollectorTests.cs │ ├── CSharp │ │ ├── Analysis │ │ │ ├── DeclarationSpace │ │ │ │ ├── LocalDeclarationSpaceTests.cs │ │ │ │ └── LocalDeclarationSpaceVisitorTests.cs │ │ │ ├── DefiniteAssignmentTests.cs │ │ │ ├── NullValueAnalysisTests.cs │ │ │ └── SemanticHighlightingTests.cs │ │ ├── AstStructureTests.cs │ │ ├── AstTests.cs │ │ ├── CSharpAmbienceTests.cs │ │ ├── CSharpOutputVisitorTests.cs │ │ ├── CodeActions │ │ │ ├── AbstractAndVirtualConversionActionTests.cs │ │ │ ├── AddAnotherAccessorTests.cs │ │ │ ├── AddArgumentNameTests.cs │ │ │ ├── AddBracesActionTests.cs │ │ │ ├── AddCatchTypeTests.cs │ │ │ ├── AddExceptionDescriptionActionTests.cs │ │ │ ├── AddOptionalParameterToInvocationTests.cs │ │ │ ├── AddUsing │ │ │ │ ├── AddUsingActionAlphabeticalTests.cs │ │ │ │ ├── AddUsingActionInsideNamespaceTests.cs │ │ │ │ ├── AddUsingActionTests.cs │ │ │ │ └── AddUsingRunActionTests.cs │ │ │ ├── AutoLinqSumTests.cs │ │ │ ├── CS1105ExtensionMethodMustBeDeclaredStaticActionTests.cs │ │ │ ├── CS1520MethodMustHaveAReturnTypeTests.cs │ │ │ ├── ChangeAccessModifierTests.cs │ │ │ ├── CheckIfParameterIsNullTests.cs │ │ │ ├── ComputeConstantValueTests.cs │ │ │ ├── ContextActionTestBase.cs │ │ │ ├── ConvertAnonymousDelegateToLambdaTests.cs │ │ │ ├── ConvertAsToCastTests.cs │ │ │ ├── ConvertAssignmentToIfActionTests.cs │ │ │ ├── ConvertBitwiseFlagComparisonToHasFlagsActionTests.cs │ │ │ ├── ConvertCastToAsTests.cs │ │ │ ├── ConvertDecToHexTests.cs │ │ │ ├── ConvertDoWhileToWhileLoopTests.cs │ │ │ ├── ConvertEqualityOperatorToEqualsActionTests.cs │ │ │ ├── ConvertEqualsToEqualityOperatorActionTests.cs │ │ │ ├── ConvertExplicitToImplicitImplementationTests.cs │ │ │ ├── ConvertForToWhileActionTests.cs │ │ │ ├── ConvertForeachToForTests.cs │ │ │ ├── ConvertHasFlagsToBitwiseFlagComparisonActionTests.cs │ │ │ ├── ConvertHexToDecTests.cs │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionActionTests.cs │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionActionTests.cs │ │ │ ├── ConvertIfStatementToReturnStatementActionTests.cs │ │ │ ├── ConvertIfStatementToSwitchStatementActionTests.cs │ │ │ ├── ConvertImplicitToExplicittImplementationTests.cs │ │ │ ├── ConvertLambdaBodyExpressionToStatementTests.cs │ │ │ ├── ConvertLambdaBodyStatementToExpressionTests.cs │ │ │ ├── ConvertLamdaToAnonymousDelegateTests.cs │ │ │ ├── ConvertMethodGroupToAnonymousMethodActionTests.cs │ │ │ ├── ConvertMethodGroupToLambdaActionTests.cs │ │ │ ├── ConvertMultiplyToShiftActionTests.cs │ │ │ ├── ConvertNullCoalescingToConditionalExpressionActionTests.cs │ │ │ ├── ConvertReturnStatementToIfActionTests.cs │ │ │ ├── ConvertShiftToMultiplyActionTests.cs │ │ │ ├── ConvertSwitchToIfTests.cs │ │ │ ├── ConvertToInitializer │ │ │ │ ├── ConvertInitializerToExplicitIntializationsTests.cs │ │ │ │ └── ConvertToInitializerTests.cs │ │ │ ├── ConvertWhileToDoWhileLoopTests.cs │ │ │ ├── CopyCommentsFromBaseTests.cs │ │ │ ├── CopyCommentsFromIntefaceTests.cs │ │ │ ├── CreateBackingStoreTests.cs │ │ │ ├── CreateChangedEventTests.cs │ │ │ ├── CreateClassDeclarationTests.cs │ │ │ ├── CreateConstructorDeclarationTests.cs │ │ │ ├── CreateCustomEventImplementationTests.cs │ │ │ ├── CreateDelegateTests.cs │ │ │ ├── CreateEnumValueTests.cs │ │ │ ├── CreateEventInvocatorTests.cs │ │ │ ├── CreateFieldTests.cs │ │ │ ├── CreateIndexerTests.cs │ │ │ ├── CreateLocalVariableTests.cs │ │ │ ├── CreateMethodDeclarationTests.cs │ │ │ ├── CreateOverloadWithoutParameterTests.cs │ │ │ ├── CreatePropertyTests.cs │ │ │ ├── DeclareLocalVariableTests.cs │ │ │ ├── ExtensionMethodInvocationToStaticMethodInvocationTests.cs │ │ │ ├── ExtractAnonymousMethodTests.cs │ │ │ ├── ExtractFieldTests.cs │ │ │ ├── ExtractMethodTests.cs │ │ │ ├── ExtractWhileConditionToInternalIfStatementActionTests.cs │ │ │ ├── FlipEqualsTargetAndArgumentActionTests.cs │ │ │ ├── FlipOperatorArgumentsTests.cs │ │ │ ├── GenerateGetterTests.cs │ │ │ ├── GeneratePropertyTests.cs │ │ │ ├── GenerateSwitchLabelsTests.cs │ │ │ ├── ImplementAbstractMembersTest.cs │ │ │ ├── ImplementInterfaceExplicitTests.cs │ │ │ ├── ImplementInterfaceTests.cs │ │ │ ├── ImplementNotImplementedPropertyTests.cs │ │ │ ├── InlineLocalVariableTests.cs │ │ │ ├── InsertAnonymousMethodSignatureTests.cs │ │ │ ├── IntroduceConstantTests.cs │ │ │ ├── IntroduceFormatItemTests.cs │ │ │ ├── InvertConditionalOperatorActionTests.cs │ │ │ ├── InvertIfAndSimplifyTests.cs │ │ │ ├── InvertIfTests.cs │ │ │ ├── InvertLogicalExpressionTests.cs │ │ │ ├── IterateViaForeachTests.cs │ │ │ ├── JoinDeclarationAndAssignmentTests.cs │ │ │ ├── JoinStringTests.cs │ │ │ ├── LinqFluentToQueryTests.cs │ │ │ ├── LinqQueryToFluentTests.cs │ │ │ ├── MergeNestedIfTests.cs │ │ │ ├── MetaTests.cs │ │ │ ├── MoveToOuterScopeTests.cs │ │ │ ├── NegateIsExpressionActionTests.cs │ │ │ ├── NegateRelationalExpressionTests.cs │ │ │ ├── PutInsideUsingTests.cs │ │ │ ├── RemoveBackingStoreTests.cs │ │ │ ├── RemoveBracesTests.cs │ │ │ ├── RemoveFieldRefactoryActionTests.cs │ │ │ ├── RemoveRedundantCatchTypeTests.cs │ │ │ ├── RemoveRegionTests.cs │ │ │ ├── ReplaceAssignmentWithPostfixExpressionActionTests.cs │ │ │ ├── ReplaceEmptyStringTests.cs │ │ │ ├── ReplaceOperatorAssignmentWithAssignmentActionTests.cs │ │ │ ├── ReplacePostfixExpressionWithAssignmentActionTests.cs │ │ │ ├── ReplaceWithOperatorAssignmentActionTests.cs │ │ │ ├── ReverseDirectionForForLoopTests.cs │ │ │ ├── SimplifyIfFlowInLoopsTests.cs │ │ │ ├── SimplifyIfFlowTests.cs │ │ │ ├── SortUsingsTests.cs │ │ │ ├── SplitDeclarationAndAssignmentTests.cs │ │ │ ├── SplitDeclarationListTests.cs │ │ │ ├── SplitIfActionTests.cs │ │ │ ├── SplitStringTests.cs │ │ │ ├── TestRefactoringContext.cs │ │ │ ├── UseAsAndNullCheckActionTests.cs │ │ │ ├── UseExplicitTypeTests.cs │ │ │ ├── UseStringFormatTests.cs │ │ │ └── UseVarKeywordTests.cs │ │ ├── CodeCompletion │ │ │ ├── BrowsableAttributeTests.cs │ │ │ ├── CodeCompletionAccessibleTests.cs │ │ │ ├── CodeCompletionBugTests.cs │ │ │ ├── CodeCompletionCSharp3Tests.cs │ │ │ ├── CodeCompletionCSharpTests.cs │ │ │ ├── CodeCompletionOperatorTests.cs │ │ │ ├── CompletionDataList.cs │ │ │ ├── DelegateContextTests.cs │ │ │ ├── DocumentationContextTests.cs │ │ │ ├── EnumContextTests.cs │ │ │ ├── FormatItemTests.cs │ │ │ ├── GetCurrentParameterIndexTests.cs │ │ │ ├── ImportCompletionTests.cs │ │ │ ├── KeywordTests.cs │ │ │ ├── NameContextTests.cs │ │ │ ├── ObjectInitializerTests.cs │ │ │ ├── ParameterCompletionTests.cs │ │ │ ├── PreProcessorTests.cs │ │ │ ├── TestBase.cs │ │ │ └── VariableDeclarationStatementTests.cs │ │ ├── CodeDomConvertVisitorTests.cs │ │ ├── CodeIssues │ │ │ ├── AccessToDisposedClosureTests.cs │ │ │ ├── AccessToModifiedClosureTests.cs │ │ │ ├── AccessToStaticMemberViaDerivedTypeIssueTests.cs │ │ │ ├── AdditionalOfTypeIssuesTests.cs │ │ │ ├── ArrayCreationCanBeReplacedWithArrayInitializerIssueTests.cs │ │ │ ├── AutoAsyncTests.cs │ │ │ ├── BaseMemberHasParamsIssueTests.cs │ │ │ ├── BaseMethodCallWithDefaultParameterIssueTests.cs │ │ │ ├── BaseMethodParameterNameMismatchIssueTests.cs │ │ │ ├── BitwiseOperatorOnEnumWithoutFlagsIssueTests.cs │ │ │ ├── CS0029InvalidConversionIssueTests.cs │ │ │ ├── CS0126ReturnMustBeFollowedByAnyExpressionTestes.cs │ │ │ ├── CS0127ReturnMustNotBeFollowedByAnyExpressionTests.cs │ │ │ ├── CS0152DuplicateCaseLabelValueIssueTests.cs │ │ │ ├── CS0169FieldIsNeverUsedIssueTests.cs │ │ │ ├── CS0183ExpressionIsAlwaysOfProvidedTypeIssueTests.cs │ │ │ ├── CS0618UsageOfObsoleteMemberIssueTests.cs │ │ │ ├── CS0659OverrideEqualsWithoutGetHashCodeTests.cs │ │ │ ├── CS0759RedundantPartialMethodIssueTests.cs │ │ │ ├── CS1573ParameterHasNoMatchingParamTagIssueTests.cs │ │ │ ├── CS1717AssignmentMadeToSameVariableIssueTests.cs │ │ │ ├── CS1729TypeHasNoConstructorWithNArgumentsIssueTests.cs │ │ │ ├── CallToObjectEqualsViaBaseTests.cs │ │ │ ├── CanBeReplacedWithTryCastAndCheckForNullIssueTests.cs │ │ │ ├── CastExpressionOfIncompatibleTypeIssueTests.cs │ │ │ ├── CheckNamespaceIssueTests.cs │ │ │ ├── CompareNonConstrainedGenericWithNullIssueTests.cs │ │ │ ├── CompareOfFloatsByEqualityOperatorIssueTests.cs │ │ │ ├── ConditionIsAlwaysTrueOrFalseIssueTests.cs │ │ │ ├── ConditionalTernaryEqualBranchTests.cs │ │ │ ├── ConstantConditionIssueTests.cs │ │ │ ├── ConstantNullCoalescingConditionIssueTests.cs │ │ │ ├── ConvertClosureToMethodGroupIssueTests.cs │ │ │ ├── ConvertConditionalTernaryToNullCoalescingIssueTests.cs │ │ │ ├── ConvertIfDoToWhileIssueTests.cs │ │ │ ├── ConvertIfStatementToConditionalTernaryExpressionIssueTests.cs │ │ │ ├── ConvertIfStatementToNullCoalescingExpressionIssueTests.cs │ │ │ ├── ConvertIfStatementToSwitchStatementIssueTests.cs │ │ │ ├── ConvertIfToAndExpressionIssueTests.cs │ │ │ ├── ConvertIfToOrExpressionIssueTests.cs │ │ │ ├── ConvertNullableToShortFormIssueTests.cs │ │ │ ├── ConvertTailRecursiveCallToLoopIssueTests.cs │ │ │ ├── ConvertToAutoPropertyIssueTests.cs │ │ │ ├── ConvertToConstantIssueTests.cs │ │ │ ├── ConvertToLambdaExpressionIssueTests.cs │ │ │ ├── ConvertToStaticTypeTests.cs │ │ │ ├── DelegateSubtractionIssueTests.cs │ │ │ ├── DisposeMethodInNonIDisposableTypeTests.cs │ │ │ ├── DoNotCallOverridableMethodsInConstructorIssueTests.cs │ │ │ ├── DontUseLinqWhenItsVerboseAndInefficientTests.cs │ │ │ ├── DoubleNegationOperatorIssueTests.cs │ │ │ ├── DuplicateBodyMethodIssueTests.cs │ │ │ ├── DuplicateExpressionsInConditionsIssueTests.cs │ │ │ ├── DuplicateIfInIfChainIssueTests.cs │ │ │ ├── DuplicatedLinqToListOrArrayTests.cs │ │ │ ├── EmptyConstructorIssueTests.cs │ │ │ ├── EmptyDestructorTests.cs │ │ │ ├── EmptyEmbeddedStatementIssueTests.cs │ │ │ ├── EmptyGeneralCatchClauseTests.cs │ │ │ ├── EmptyNamespaceTests.cs │ │ │ ├── EmptyStatementIssueTests.cs │ │ │ ├── EnumUnderlyingTypeIsIntTests.cs │ │ │ ├── EqualExpressionComparisonIssueTests.cs │ │ │ ├── EventUnsubscriptionViaAnonymousDelegateIssueTests.cs │ │ │ ├── ExceptionRethrowTests.cs │ │ │ ├── ExplicitConversionInForEachIssueTests.cs │ │ │ ├── ExpressionIsNeverOfProvidedTypeIssueTests.cs │ │ │ ├── FieldCanBeMadeReadOnlyIssueTests.cs │ │ │ ├── ForCanBeConvertedToForeachIssueTests.cs │ │ │ ├── ForControlVariableIsNeverModifiedIssueTests.cs │ │ │ ├── ForStatementConditionIsTrueTests.cs │ │ │ ├── FormatStringProblemIssueTests.cs │ │ │ ├── FunctionNeverReturnsIssueTests.cs │ │ │ ├── InconsistentNamingTests.cs │ │ │ ├── IncorrectCallToGetHashCodeTests.cs │ │ │ ├── InspectionActionTestBase.cs │ │ │ ├── InvokeAsExtensionMethodIssueTests.cs │ │ │ ├── LocalVariableHidesMemberIssueTests.cs │ │ │ ├── LocalVariableNotUsedIssueTests.cs │ │ │ ├── LockThisTests.cs │ │ │ ├── LongLiteralEndingLowerLIssueTests.cs │ │ │ ├── LoopCanBeConvertedToQueryIssueTests.cs │ │ │ ├── MemberCanBeMadeStaticIssueTests.cs │ │ │ ├── MemberHidesStaticFromOuterClassIssueTests.cs │ │ │ ├── MethodOverloadWithOptionalParameterIssueTests.cs │ │ │ ├── MissingInterfaceMemberImplementationIssueTests.cs │ │ │ ├── NegativeRelationalExpressionIssueTests.cs │ │ │ ├── NonPublicMethodWithTestAttributeIssueTests.cs │ │ │ ├── NonReadonlyReferencedInGetHashCodeTests.cs │ │ │ ├── NonReadonlyReferencedInGetHashCodeTetsts.cs │ │ │ ├── NotImplementedExceptionInspectorTests.cs │ │ │ ├── NotResolvedInTextIssueTests.cs │ │ │ ├── ObjectCreationAsStatementIssueTests.cs │ │ │ ├── OperatorIsCanBeUsedIssueTests.cs │ │ │ ├── OptionalParameterHierarchyMismatchIssueTests.cs │ │ │ ├── OptionalParameterRefOutIssueTests.cs │ │ │ ├── ParameterCanBeDemotedIssue │ │ │ │ ├── IsTypeCriterionTests.cs │ │ │ │ ├── ParameterCanBeDeclaredWithBaseTypeIssueTests.cs │ │ │ │ ├── ParameterCanBeIEnumerableTests.cs │ │ │ │ └── SupportsIndexingCriterionTests.cs │ │ │ ├── ParameterHidesMemberIssueTests.cs │ │ │ ├── ParameterOnlyAssignedIssueTests.cs │ │ │ ├── PartOfBodyCanBeConvertedToQueryIssueTests.cs │ │ │ ├── PartialMethodParameterNameMismatchIssueTests.cs │ │ │ ├── PartialTypeWithSinglePartIssueTests.cs │ │ │ ├── PolymorphicFieldLikeEventInvocationIssueTests.cs │ │ │ ├── PossibleAssignmentToReadonlyFieldIssueTests.cs │ │ │ ├── PossibleMistakenCallToGetTypeIssueTests.cs │ │ │ ├── PossibleMultipleEnumerationIssueTests.cs │ │ │ ├── ProhibitedModifiersIssueTests.cs │ │ │ ├── PublicConstructorInAbstractClassIssueTest.cs │ │ │ ├── RedundantAnonymousTypePropertyNameIssueTests.cs │ │ │ ├── RedundantArgumentDefaultValueIssueTests.cs │ │ │ ├── RedundantArgumentNameTests.cs │ │ │ ├── RedundantAssignmentIssueTests.cs │ │ │ ├── RedundantAttributeParenthesesIssueTests.cs │ │ │ ├── RedundantBaseConstructorIssueTests.cs │ │ │ ├── RedundantBaseQualifierTests.cs │ │ │ ├── RedundantBlockInDifferentBranchesTests.cs │ │ │ ├── RedundantBoolCompareIssueTests.cs │ │ │ ├── RedundantCaseLabelIssueTests.cs │ │ │ ├── RedundantCastIssueTests.cs │ │ │ ├── RedundantCatchClauseIssueTests.cs │ │ │ ├── RedundantCheckBeforeAssignmentTests.cs │ │ │ ├── RedundantCommaInArrayInitializerIssueTests.cs │ │ │ ├── RedundantComparisonWithNullIssueTests.cs │ │ │ ├── RedundantDefaultFieldInitializerIssueTests.cs │ │ │ ├── RedundantDelegateCreationIssueTests.cs │ │ │ ├── RedundantEmptyDefaultSwitchBranchIssueTests.cs │ │ │ ├── RedundantEmptyFinallyBlockIssueTests.cs │ │ │ ├── RedundantEnumerableCastCallIssueTests.cs │ │ │ ├── RedundantExplicitArrayCreationIssueTests.cs │ │ │ ├── RedundantExplicitArraySizeIssueTests.cs │ │ │ ├── RedundantExplicitNullableCreationIssueTests.cs │ │ │ ├── RedundantExtendsListEntryIssueTests.cs │ │ │ ├── RedundantIfElseBlockIssueTests.cs │ │ │ ├── RedundantInternalInspectorTests.cs │ │ │ ├── RedundantLambdaParameterTypeTests.cs │ │ │ ├── RedundantLambdaSignatureParenthesesIssueTests.cs │ │ │ ├── RedundantLogicalConditionalExpressionOperandIssueTests.cs │ │ │ ├── RedundantNameQualifierIssueTests.cs │ │ │ ├── RedundantNotNullAttributeInNonNullableTypeTests.cs │ │ │ ├── RedundantObjectCreationArgumentListIssueTests.cs │ │ │ ├── RedundantObjectOrCollectionInitializerIssueTests.cs │ │ │ ├── RedundantOverridenMemberTests.cs │ │ │ ├── RedundantParamsIssueTests.cs │ │ │ ├── RedundantPrivateInspectorTests.cs │ │ │ ├── RedundantStringToCharArrayCallIssueTests.cs │ │ │ ├── RedundantTernaryExpressionIssueTests.cs │ │ │ ├── RedundantThisQualifierIssueTests.cs │ │ │ ├── RedundantToStringCallForValueTypesIssue.cs │ │ │ ├── RedundantToStringCallIssueTests.cs │ │ │ ├── RedundantTypeArgumentsOfMethodIssueTests.cs │ │ │ ├── RedundantUnsafeContextIssueTests.cs │ │ │ ├── RedundantUsingDirectiveIssueTests.cs │ │ │ ├── RedundantWhereWithPredicateIssueTests.cs │ │ │ ├── ReferenceEqualsWithValueTypeIssueTests.cs │ │ │ ├── RemoveRedundantOrStatementIssueTests.cs │ │ │ ├── ReplaceWithFirstOrDefaultIssueTests.cs │ │ │ ├── ReplaceWithLastOrDefaultIssueTests.cs │ │ │ ├── ReplaceWithOfTypeAnyIssueTests.cs │ │ │ ├── ReplaceWithOfTypeCountIssueTests.cs │ │ │ ├── ReplaceWithOfTypeFirstIssueTests.cs │ │ │ ├── ReplaceWithOfTypeFirstOrDefaultIssueTests.cs │ │ │ ├── ReplaceWithOfTypeIssueTests.cs │ │ │ ├── ReplaceWithOfTypeLastIssueTests.cs │ │ │ ├── ReplaceWithOfTypeLastOrDefaultIssueTests.cs │ │ │ ├── ReplaceWithOfTypeLongCountIssueTests.cs │ │ │ ├── ReplaceWithOfTypeSingleIssueTests.cs │ │ │ ├── ReplaceWithOfTypeSingleOrDefaultIssueTests.cs │ │ │ ├── ReplaceWithOfTypeWhereIssueTests.cs │ │ │ ├── ReplaceWithSimpleAssignmentIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToAverageIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToCountIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToFirstIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToFirstOrDefaultIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToLastIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToLastOrDefaultIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToLongCountIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToMaxIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToMinIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToSingleIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToSingleOrDefaultIssueTests.cs │ │ │ ├── ReplaceWithSingleCallToSumIssueTests.cs │ │ │ ├── ReplaceWithStringIsNullOrEmptyIssueTests.cs │ │ │ ├── RewriteIfReturnToReturnIssueTests.cs │ │ │ ├── SameGuardConditionExpressionInIfElseBranchesTests.cs │ │ │ ├── SealedMemberInSealedClassIssueTests.cs │ │ │ ├── SimplifyConditionalTernaryExpressionIssueTests.cs │ │ │ ├── SimplifyLinqExpressionIssueTests.cs │ │ │ ├── StaticConstructorParameterIssueTests.cs │ │ │ ├── StaticEventSubscriptionIssueTests.cs │ │ │ ├── StaticFieldInGenericTypeTests.cs │ │ │ ├── StringCompareIsCultureSpecificIssueTests.cs │ │ │ ├── StringCompareToIsCultureSpecificIssueTests.cs │ │ │ ├── StringEndsWithIsCultureSpecificIssueTest.cs │ │ │ ├── StringIndexOfIsCultureSpecificIssueTest.cs │ │ │ ├── StringLastIndexOfIsCultureSpecificIssueTest.cs │ │ │ ├── StringStartsWithIsCultureSpecificIssueTest.cs │ │ │ ├── SuggestUseVarKeywordEvidentTests.cs │ │ │ ├── ThreadStaticAtInstanceFieldTests.cs │ │ │ ├── UnassignedReadonlyFieldIssueTests.cs │ │ │ ├── UnmatchedSizeSpeicificationInArrayCreationTests.cs │ │ │ ├── UnreachableCodeIssueTests.cs │ │ │ ├── UnusedAnonymousMethodSignatureIssueTests.cs │ │ │ ├── UnusedLabelIssueTests.cs │ │ │ ├── UnusedParameterIssueTests.cs │ │ │ ├── UnusedTypeParameterIssueTests.cs │ │ │ ├── UseArrayCreationExpressionIssueTests.cs │ │ │ ├── UseIsOperatorIssueTests.cs │ │ │ ├── UseMethodAnyIssueTests.cs │ │ │ ├── UseMethodIsInstanceOfTypeIssueTests.cs │ │ │ ├── UseOfMemberOfNullReferenceTests.cs │ │ │ ├── ValueParameterNotUsedIssueTests.cs │ │ │ ├── VariableDeclaredInWideScopeTests.cs │ │ │ └── XmlDocIssueIssueTests.cs │ │ ├── DepthFirstVisitorTests.cs │ │ ├── InsertMissingTokensDecoratorTests.cs │ │ ├── InsertParenthesesVisitorTests.cs │ │ ├── Inspector │ │ │ └── InconsistentNamingIssueTests.cs │ │ ├── Parser │ │ │ ├── Bugs │ │ │ │ └── ParserBugTests.cs │ │ │ ├── ConsistencyChecker.cs │ │ │ ├── Expression │ │ │ │ ├── AnonymousMethodExpressionTests.cs │ │ │ │ ├── AnonymousTypeCreateExpressionTests.cs │ │ │ │ ├── ArrayCreateExpressionTests.cs │ │ │ │ ├── AssignmentExpressionTests.cs │ │ │ │ ├── BaseReferenceExpressionTests.cs │ │ │ │ ├── BinaryOperatorExpressionTests.cs │ │ │ │ ├── CastExpressionTests.cs │ │ │ │ ├── CheckedExpressionTests.cs │ │ │ │ ├── ConditionalExpressionTests.cs │ │ │ │ ├── DefaultValueExpressionTests.cs │ │ │ │ ├── IdentifierExpressionTests.cs │ │ │ │ ├── IndexerExpressionTests.cs │ │ │ │ ├── InvocationExpressionTests.cs │ │ │ │ ├── IsExpressionTests.cs │ │ │ │ ├── LambdaExpressionTests.cs │ │ │ │ ├── MemberReferenceExpressionTests.cs │ │ │ │ ├── ObjectCreateExpressionTests.cs │ │ │ │ ├── ParenthesizedExpressionTests.cs │ │ │ │ ├── PointerReferenceExpressionTests.cs │ │ │ │ ├── PrimitiveExpressionTests.cs │ │ │ │ ├── QueryExpressionTests.cs │ │ │ │ ├── SizeOfExpressionTests.cs │ │ │ │ ├── StackAllocExpressionTests.cs │ │ │ │ ├── ThisReferenceExpressionTests.cs │ │ │ │ ├── TypeOfExpressionTests.cs │ │ │ │ ├── TypeReferenceExpressionTests.cs │ │ │ │ ├── UnaryOperatorExpressionTests.cs │ │ │ │ └── UndocumentedExpressionTests.cs │ │ │ ├── GeneralScope │ │ │ │ ├── AttributeSectionTests.cs │ │ │ │ ├── CommentTests.cs │ │ │ │ ├── DelegateDeclarationTests.cs │ │ │ │ ├── NamespaceDeclarationTests.cs │ │ │ │ ├── PreprocessorDirectiveTests.cs │ │ │ │ ├── TypeDeclarationTests.cs │ │ │ │ └── UsingDeclarationTests.cs │ │ │ ├── ParseSelfTests.cs │ │ │ ├── ParseUtil.cs │ │ │ ├── Statements │ │ │ │ ├── BlockStatementTests.cs │ │ │ │ ├── CheckedStatementTests.cs │ │ │ │ ├── EmptyStatementTests.cs │ │ │ │ ├── ExpressionStatementTests.cs │ │ │ │ ├── FixedStatementTests.cs │ │ │ │ ├── ForStatementTests.cs │ │ │ │ ├── GotoStatementTests.cs │ │ │ │ ├── IfElseStatementTests.cs │ │ │ │ ├── InvalidStatementsTests.cs │ │ │ │ ├── LabelStatementTests.cs │ │ │ │ ├── LockStatementTests.cs │ │ │ │ ├── ReturnStatementTests.cs │ │ │ │ ├── SwitchStatementTests.cs │ │ │ │ ├── ThrowStatementTests.cs │ │ │ │ ├── TryCatchStatementTests.cs │ │ │ │ ├── UnsafeStatementTests.cs │ │ │ │ ├── UsingStatementTests.cs │ │ │ │ ├── VariableDeclarationStatementTests.cs │ │ │ │ ├── WhileStatementTests.cs │ │ │ │ └── YieldStatementTests.cs │ │ │ ├── TypeMembers │ │ │ │ ├── ConstructorDeclarationTests.cs │ │ │ │ ├── DestructorDeclarationTests.cs │ │ │ │ ├── EventDeclarationTests.cs │ │ │ │ ├── FieldDeclarationTests.cs │ │ │ │ ├── IndexerDeclarationTests.cs │ │ │ │ ├── MethodDeclarationTests.cs │ │ │ │ ├── OperatorDeclarationTests.cs │ │ │ │ └── PropertyDeclarationTests.cs │ │ │ └── TypeSystemConvertVisitorTests.cs │ │ ├── QueryExpressionExpanderTests.cs │ │ ├── Refactoring │ │ │ ├── LambdaHelperTests.cs │ │ │ ├── NamingHelperTests.cs │ │ │ ├── RefactoringStructureTests.cs │ │ │ ├── ScriptTests.cs │ │ │ └── TypeSystemAstBuilderTests.cs │ │ └── Resolver │ │ │ ├── AnonymousTypeTests.cs │ │ │ ├── ArrayCreateTests.cs │ │ │ ├── AttributeTests.cs │ │ │ ├── BinaryOperatorTests.cs │ │ │ ├── CastTests.cs │ │ │ ├── ComTests.cs │ │ │ ├── ConditionalOperatorTests.cs │ │ │ ├── ConversionsTest.cs │ │ │ ├── DynamicTests.cs │ │ │ ├── ExplicitConversionsTest.cs │ │ │ ├── ExtensionMethodTests.cs │ │ │ ├── FindReferencesTest.cs │ │ │ ├── InvocationTests.cs │ │ │ ├── LambdaTests.cs │ │ │ ├── LinqTests.cs │ │ │ ├── LocalTypeInferenceTests.cs │ │ │ ├── MemberLookupTests.cs │ │ │ ├── MethodTests.cs │ │ │ ├── NameLookupTests.cs │ │ │ ├── ObjectCreationTests.cs │ │ │ ├── OverloadResolutionTests.cs │ │ │ ├── ResolveAtLocationTests.cs │ │ │ ├── ResolverTestBase.cs │ │ │ ├── SizeOfTests.cs │ │ │ ├── TypeInferenceTests.cs │ │ │ ├── UnaryOperatorTests.cs │ │ │ └── UnsafeCodeTests.cs │ ├── Documentation │ │ ├── CSharpCrefLookupTests.cs │ │ ├── CSharpCrefParserTests.cs │ │ ├── CSharpDocumentationTests.cs │ │ └── IDStringTests.cs │ ├── Editor │ │ └── ReadOnlyDocumentTests.cs │ ├── FormattingTests │ │ ├── ConstructFixerTests.cs │ │ ├── TestBlankLineFormatting.cs │ │ ├── TestBraceStlye.cs │ │ ├── TestExpressionFormatting.cs │ │ ├── TestFormattingBugs.cs │ │ ├── TestGlobalLevelFormatting.cs │ │ ├── TestKeepReformattingRules.cs │ │ ├── TestLinq.cs │ │ ├── TestSpacingVisitor.cs │ │ ├── TestStatementIndentation.cs │ │ ├── TestTypeLevelIndentation.cs │ │ ├── TestWrapping.cs │ │ └── TextEditorTestAdapter.cs │ ├── ICSharpCode.NRefactory.Tests.csproj │ ├── IndentationTests │ │ ├── AlignmentTests.cs │ │ ├── AllInOneTests.cs │ │ ├── BlockTest.cs │ │ ├── CommentTests.cs │ │ ├── GeneralTests.cs │ │ ├── Helper.cs │ │ ├── PreProcessorTests.cs │ │ ├── StringTests.cs │ │ ├── TestFiles │ │ │ ├── CSharpParser.cs │ │ │ ├── Comments.cs │ │ │ ├── IndentEngine.cs │ │ │ ├── IndentState.cs │ │ │ ├── InheritStatements.cs │ │ │ ├── PreProcessorDirectives.cs │ │ │ ├── Simple.cs │ │ │ ├── Strings.cs │ │ │ ├── SwitchCase.cs │ │ │ └── TextArea.cs │ │ └── TextPasteIndentEngineTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TypeSystem │ │ ├── BinaryLoaderTests.cs │ │ ├── BlobLoaderTests.cs │ │ ├── CecilLoaderTests.cs │ │ ├── CyclicProjectDependency.cs │ │ ├── GetAllBaseTypesTest.cs │ │ ├── GetMembersTests.cs │ │ ├── IkvmLoaderTests.cs │ │ ├── InheritanceHelperTests.cs │ │ ├── LazyLoadedCecilLoaderTests.cs │ │ ├── ReflectionHelperTests.cs │ │ ├── SerializedCecilLoaderTests.cs │ │ ├── SerializedIkvmLoaderTests.cs │ │ ├── StructureTests.cs │ │ ├── TestInterningProvider.cs │ │ ├── TypeParameterTests.cs │ │ ├── TypeSystemHelper.cs │ │ ├── TypeSystemTests.TestCase.cs │ │ └── TypeSystemTests.cs │ └── Utils │ │ ├── CSharpPrimitiveCastTests.cs │ │ ├── CompositeFormatStringParser │ │ └── CompositeFormatStringParserTests.cs │ │ └── TreeTraversalTests.cs │ ├── ICSharpCode.NRefactory.Xml │ ├── AXmlAttribute.cs │ ├── AXmlDocument.cs │ ├── AXmlElement.cs │ ├── AXmlObject.cs │ ├── AXmlParser.cs │ ├── AXmlReader.cs │ ├── AXmlTag.cs │ ├── AXmlText.cs │ ├── AXmlVisitor.cs │ ├── DocumentationElement.cs │ ├── ICSharpCode.NRefactory.Xml.csproj │ ├── IncrementalParserState.cs │ ├── InternalDocument.cs │ ├── Log.cs │ ├── ObjectIterator.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReuseEqualityComparer.cs │ ├── SyntaxError.cs │ ├── TagMatchingHeuristics.cs │ ├── TagReader.cs │ ├── TextType.cs │ ├── TokenReader.cs │ └── XmlSegment.cs │ ├── ICSharpCode.NRefactory.snk │ ├── ICSharpCode.NRefactory │ ├── Analysis │ │ ├── AbiComparer.cs │ │ ├── SymbolCollector.cs │ │ ├── TypeGraph.cs │ │ └── TypeGraphNode.cs │ ├── Completion │ │ ├── CompletionCategory.cs │ │ ├── CompletionExtensionMethods.cs │ │ ├── DisplayFlags.cs │ │ ├── FrameworkLookup.cs │ │ ├── ICompletionData.cs │ │ ├── IEntityCompletionData.cs │ │ ├── IParameterDataProvider.cs │ │ └── IVariableCompletionData.cs │ ├── Documentation │ │ ├── DocumentationComment.cs │ │ ├── GetPotentiallyNestedClassTypeReference.cs │ │ ├── IDocumentationProvider.cs │ │ ├── IdStringMemberReference.cs │ │ ├── IdStringProvider.cs │ │ └── XmlDocumentationProvider.cs │ ├── Editor │ │ ├── IDocument.cs │ │ ├── IDocumentLine.cs │ │ ├── ISegment.cs │ │ ├── ITextAnchor.cs │ │ ├── ITextPasteHandler.cs │ │ ├── ITextSource.cs │ │ ├── ReadOnlyDocument.cs │ │ ├── StringBuilderDocument.cs │ │ ├── StringTextSource.cs │ │ ├── TextChangeEventArgs.cs │ │ ├── TextSourceVersionProvider.cs │ │ └── UnicodeNewline.cs │ ├── IAnnotatable.cs │ ├── ICSharpCode.NRefactory.csproj │ ├── PatternMatching │ │ ├── AnyNode.cs │ │ ├── AnyNodeOrNull.cs │ │ ├── Backreference.cs │ │ ├── BacktrackingInfo.cs │ │ ├── Choice.cs │ │ ├── INode.cs │ │ ├── Match.cs │ │ ├── NamedNode.cs │ │ ├── OptionalNode.cs │ │ ├── Pattern.cs │ │ └── Repeat.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── GlobalAssemblyInfo.cs │ ├── Refactoring │ │ ├── IssueMarker.cs │ │ └── Severity.cs │ ├── Role.cs │ ├── Semantics │ │ ├── AmbiguousResolveResult.cs │ │ ├── ArrayAccessResolveResult.cs │ │ ├── ArrayCreateResolveResult.cs │ │ ├── ByReferenceResolveResult.cs │ │ ├── ConstantResolveResult.cs │ │ ├── Conversion.cs │ │ ├── ConversionResolveResult.cs │ │ ├── ErrorResolveResult.cs │ │ ├── ForEachResolveResult.cs │ │ ├── InitializedObjectResolveResult.cs │ │ ├── InvocationResolveResult.cs │ │ ├── LocalResolveResult.cs │ │ ├── MemberResolveResult.cs │ │ ├── NamedArgumentResolveResult.cs │ │ ├── NamespaceResolveResult.cs │ │ ├── OperatorResolveResult.cs │ │ ├── ResolveResult.cs │ │ ├── SizeOfResolveResult.cs │ │ ├── ThisResolveResult.cs │ │ ├── TypeIsResolveResult.cs │ │ ├── TypeOfResolveResult.cs │ │ ├── TypeResolveResult.cs │ │ └── UnknownMemberResolveResult.cs │ ├── TextLocation.cs │ ├── TypeSystem │ │ ├── Accessibility.cs │ │ ├── AnonymousType.cs │ │ ├── ArrayType.cs │ │ ├── AssemblyLoader.cs │ │ ├── AssemblyQualifiedTypeName.cs │ │ ├── ByReferenceType.cs │ │ ├── ComHelper.cs │ │ ├── DefaultSolutionSnapshot.cs │ │ ├── DomRegion.cs │ │ ├── EntityType.cs │ │ ├── Error.cs │ │ ├── FullTypeName.cs │ │ ├── IAmbience.cs │ │ ├── IAssembly.cs │ │ ├── IAttribute.cs │ │ ├── ICodeContext.cs │ │ ├── ICompilation.cs │ │ ├── IConstantValue.cs │ │ ├── IEntity.cs │ │ ├── IEvent.cs │ │ ├── IField.cs │ │ ├── IFreezable.cs │ │ ├── IInterningProvider.cs │ │ ├── IMember.cs │ │ ├── IMethod.cs │ │ ├── INamedElement.cs │ │ ├── INamespace.cs │ │ ├── IParameter.cs │ │ ├── IParameterizedMember.cs │ │ ├── IProjectContent.cs │ │ ├── IProperty.cs │ │ ├── ISolutionSnapshot.cs │ │ ├── ISupportsInterning.cs │ │ ├── ISymbol.cs │ │ ├── IType.cs │ │ ├── ITypeDefinition.cs │ │ ├── ITypeParameter.cs │ │ ├── ITypeReference.cs │ │ ├── IUnresolvedFile.cs │ │ ├── IVariable.cs │ │ ├── Implementation │ │ │ ├── AbstractFreezable.cs │ │ │ ├── AbstractResolvedEntity.cs │ │ │ ├── AbstractResolvedMember.cs │ │ │ ├── AbstractResolvedTypeParameter.cs │ │ │ ├── AbstractType.cs │ │ │ ├── AbstractUnresolvedEntity.cs │ │ │ ├── AbstractUnresolvedMember.cs │ │ │ ├── AccessorOwnerMemberReference.cs │ │ │ ├── BaseTypeCollector.cs │ │ │ ├── BlobReader.cs │ │ │ ├── DefaultAssemblyReference.cs │ │ │ ├── DefaultAttribute.cs │ │ │ ├── DefaultMemberReference.cs │ │ │ ├── DefaultParameter.cs │ │ │ ├── DefaultResolvedEvent.cs │ │ │ ├── DefaultResolvedField.cs │ │ │ ├── DefaultResolvedMethod.cs │ │ │ ├── DefaultResolvedProperty.cs │ │ │ ├── DefaultResolvedTypeDefinition.cs │ │ │ ├── DefaultResolvedTypeParameter.cs │ │ │ ├── DefaultUnresolvedAssembly.cs │ │ │ ├── DefaultUnresolvedAttribute.cs │ │ │ ├── DefaultUnresolvedEvent.cs │ │ │ ├── DefaultUnresolvedField.cs │ │ │ ├── DefaultUnresolvedMethod.cs │ │ │ ├── DefaultUnresolvedParameter.cs │ │ │ ├── DefaultUnresolvedProperty.cs │ │ │ ├── DefaultUnresolvedTypeDefinition.cs │ │ │ ├── DefaultUnresolvedTypeParameter.cs │ │ │ ├── DefaultVariable.cs │ │ │ ├── DummyTypeParameter.cs │ │ │ ├── ExplicitInterfaceImplementationMemberReference.cs │ │ │ ├── FullNameAndTypeParameterCount.cs │ │ │ ├── GetClassTypeReference.cs │ │ │ ├── GetMembersHelper.cs │ │ │ ├── KnownTypeCache.cs │ │ │ ├── MergedNamespace.cs │ │ │ ├── MinimalCorlib.cs │ │ │ ├── NestedTypeReference.cs │ │ │ ├── ResolvedAttributeBlob.cs │ │ │ ├── SimpleCompilation.cs │ │ │ ├── SimpleConstantValue.cs │ │ │ ├── SimpleInterningProvider.cs │ │ │ ├── SpecializedEvent.cs │ │ │ ├── SpecializedField.cs │ │ │ ├── SpecializedMember.cs │ │ │ ├── SpecializedMethod.cs │ │ │ ├── SpecializedProperty.cs │ │ │ ├── SpecializingMemberReference.cs │ │ │ ├── TypeParameterReference.cs │ │ │ ├── TypeWithElementType.cs │ │ │ ├── UnknownType.cs │ │ │ ├── UnresolvedAttributeBlob.cs │ │ │ ├── UnresolvedSecurityDeclarationBlob.cs │ │ │ └── VoidTypeDefinition.cs │ │ ├── InheritanceHelper.cs │ │ ├── IntersectionType.cs │ │ ├── KnownTypeReference.cs │ │ ├── NullableType.cs │ │ ├── ParameterListComparer.cs │ │ ├── ParameterizedType.cs │ │ ├── PointerType.cs │ │ ├── ProjectReference.cs │ │ ├── ReflectionHelper.cs │ │ ├── ReflectionNameParseException.cs │ │ ├── SimpleTypeResolveContext.cs │ │ ├── SpecialType.cs │ │ ├── TaskType.cs │ │ ├── TopLevelTypeName.cs │ │ ├── TypeKind.cs │ │ ├── TypeParameterSubstitution.cs │ │ ├── TypeSystemExtensions.cs │ │ └── TypeVisitor.cs │ └── Utils │ │ ├── 7BitEncodedInts.cs │ │ ├── BitVector16.cs │ │ ├── BusyManager.cs │ │ ├── CSharpPrimitiveCast.cs │ │ ├── CacheManager.cs │ │ ├── CallbackOnDispose.cs │ │ ├── ComparableList.cs │ │ ├── CompositeFormatStringParser │ │ ├── CompositeFormatStringParser.cs │ │ ├── FormatItem.cs │ │ ├── FormatStringSegmentBase.cs │ │ ├── IFormatStringError.cs │ │ ├── IFormatStringSegment.cs │ │ └── TextSegment.cs │ │ ├── EmptyList.cs │ │ ├── ExtensionMethods.cs │ │ ├── FastSerializer.cs │ │ ├── GraphVizGraph.cs │ │ ├── ImmutableStack.cs │ │ ├── KeyComparer.cs │ │ ├── LazyInit.cs │ │ ├── MultiDictionary.cs │ │ ├── Platform.cs │ │ ├── ProjectedList.cs │ │ ├── ReferenceComparer.cs │ │ └── TreeTraversal.cs │ ├── NRefactory.sln │ ├── README │ └── doc │ ├── Pattern Matching.html │ ├── TODO │ ├── XML Documentation.html │ ├── copyright.txt │ └── license.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CodeStyle.DotSettings ├── LICENSE.txt ├── Makefile ├── README.md ├── assets ├── Fuse.icns ├── Fuse.ico ├── Fuse.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── FuseBigSur.icns ├── FuseBigSur.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── FuseProLogo_dark@2x.png ├── FuseProLogo_light@2x.png ├── README.md ├── Unoproj.icns ├── Unoproj.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── fight.png └── fuse_logo_low.png ├── components ├── android │ └── install.js ├── sublime-plugin │ ├── install.js │ └── plugin.zip └── vscode-extension │ └── install.js ├── docs └── coding-style.md ├── empty ├── MainView.ux └── app.unoproj ├── example ├── Logic.ts ├── MainView.ux └── app.unoproj ├── fuse-mac-dev.sln ├── fuse-mac.sln ├── fuse-win-dev.sln ├── fuse-win.sln ├── package.json ├── projects ├── BananApp │ ├── BananApp.unoproj │ └── MainView.ux ├── CheckForUpdates │ ├── App.config │ ├── ConsoleApp1.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── releases.json ├── JsErrors │ ├── .gitignore │ ├── ConstructorThrower.uno │ ├── JsErrors.unoproj │ ├── Logger.uno │ ├── MainView.ux │ └── Thrower.uno ├── SketchImportApp │ ├── Foo.sketch │ ├── MainView.ux │ └── SketchImportApp.unoproj ├── SystemTest1 │ ├── MainView.ux │ └── SystemTest1.unoproj ├── TextInput │ ├── MainView.ux │ └── app.unoproj └── models-manual-test │ ├── App.js │ ├── MainView.ux │ └── models-manual-test.unoproj ├── scripts ├── build.sh ├── check-dependencies.js ├── common.sh ├── daemon.sh ├── find-msbuild.ps1 ├── get-version.sh ├── kill.sh ├── postpack.sh ├── prepack.sh ├── restore.js ├── system-test.sh ├── test.sh ├── texts-cs.js ├── update-json.js ├── ux-fuzzer.py └── version.sh ├── setup ├── build.sh ├── codesign-tgz.sh ├── dmg │ ├── .gitignore │ ├── build.sh │ ├── dmg-background.png │ ├── dmg-background@2x.png │ ├── dmg-background@2x.psd │ ├── dmg.icns │ ├── dmg.json │ └── seticon ├── entitlements.plist ├── notarize.sh ├── nsis │ ├── .gitignore │ ├── copy-unoconfig.js │ ├── data │ │ ├── icon.ico │ │ ├── license.txt │ │ ├── modern-xl-install.bmp │ │ ├── modern-xl-install.psd │ │ └── modern-xl-uninstall.bmp │ ├── fuse-setup.nsi │ ├── tools │ │ ├── Bin │ │ │ ├── GenPat.exe │ │ │ ├── MakeLangId.exe │ │ │ ├── RegTool-amd64.bin │ │ │ ├── RegTool-x86.bin │ │ │ ├── makensis.exe │ │ │ ├── zip2exe.exe │ │ │ └── zlib1.dll │ │ ├── COPYING │ │ ├── Contrib │ │ │ ├── AccessControl │ │ │ │ ├── AccessControl.cpp │ │ │ │ ├── AccessControl.rc │ │ │ │ ├── AccessControl.sln │ │ │ │ ├── AccessControl.vcxproj │ │ │ │ ├── nsis_ansi │ │ │ │ │ ├── api.h │ │ │ │ │ ├── pluginapi.h │ │ │ │ │ └── pluginapi.lib │ │ │ │ ├── nsis_unicode │ │ │ │ │ ├── api.h │ │ │ │ │ ├── nsis_tchar.h │ │ │ │ │ ├── pluginapi.h │ │ │ │ │ └── pluginapi.lib │ │ │ │ └── resource.h │ │ │ ├── ExecDos │ │ │ │ ├── ExecDos.sln │ │ │ │ ├── ExecDos.vcxproj │ │ │ │ ├── ExecDos.vcxproj.filters │ │ │ │ ├── api.h │ │ │ │ ├── consApp.cpp │ │ │ │ ├── consApp.dsp │ │ │ │ ├── execDos.c │ │ │ │ ├── execDos.rc │ │ │ │ ├── nsis_tchar.h │ │ │ │ ├── pluginapi.c │ │ │ │ ├── pluginapi.h │ │ │ │ └── resource.h │ │ │ ├── Graphics │ │ │ │ ├── Checks │ │ │ │ │ ├── big.bmp │ │ │ │ │ ├── classic-cross.bmp │ │ │ │ │ ├── classic.bmp │ │ │ │ │ ├── colorful.bmp │ │ │ │ │ ├── grey-cross.bmp │ │ │ │ │ ├── grey.bmp │ │ │ │ │ ├── modern.bmp │ │ │ │ │ ├── red-round.bmp │ │ │ │ │ ├── red.bmp │ │ │ │ │ ├── simple-round.bmp │ │ │ │ │ ├── simple-round2.bmp │ │ │ │ │ └── simple.bmp │ │ │ │ ├── Header │ │ │ │ │ ├── nsis-r.bmp │ │ │ │ │ ├── nsis.bmp │ │ │ │ │ ├── nsis3-branding-r.bmp │ │ │ │ │ ├── nsis3-branding.bmp │ │ │ │ │ ├── nsis3-grey-right.bmp │ │ │ │ │ ├── nsis3-grey.bmp │ │ │ │ │ ├── nsis3-metro-right.bmp │ │ │ │ │ ├── nsis3-metro.bmp │ │ │ │ │ ├── nsis3-vintage-right.bmp │ │ │ │ │ ├── nsis3-vintage.bmp │ │ │ │ │ ├── orange-nsis.bmp │ │ │ │ │ ├── orange-r-nsis.bmp │ │ │ │ │ ├── orange-r.bmp │ │ │ │ │ ├── orange-uninstall-nsis.bmp │ │ │ │ │ ├── orange-uninstall-r-nsis.bmp │ │ │ │ │ ├── orange-uninstall-r.bmp │ │ │ │ │ ├── orange-uninstall.bmp │ │ │ │ │ ├── orange.bmp │ │ │ │ │ └── win.bmp │ │ │ │ ├── Icons │ │ │ │ │ ├── arrow-install.ico │ │ │ │ │ ├── arrow-uninstall.ico │ │ │ │ │ ├── arrow2-install.ico │ │ │ │ │ ├── arrow2-uninstall.ico │ │ │ │ │ ├── box-install.ico │ │ │ │ │ ├── box-uninstall.ico │ │ │ │ │ ├── classic-install.ico │ │ │ │ │ ├── classic-uninstall.ico │ │ │ │ │ ├── llama-blue.ico │ │ │ │ │ ├── llama-grey.ico │ │ │ │ │ ├── modern-install-blue-full.ico │ │ │ │ │ ├── modern-install-blue.ico │ │ │ │ │ ├── modern-install-colorful.ico │ │ │ │ │ ├── modern-install-full.ico │ │ │ │ │ ├── modern-install.ico │ │ │ │ │ ├── modern-uninstall-blue-full.ico │ │ │ │ │ ├── modern-uninstall-blue.ico │ │ │ │ │ ├── modern-uninstall-colorful.ico │ │ │ │ │ ├── modern-uninstall-full.ico │ │ │ │ │ ├── modern-uninstall.ico │ │ │ │ │ ├── nsis-menu.ico │ │ │ │ │ ├── nsis1-install.ico │ │ │ │ │ ├── nsis1-uninstall.ico │ │ │ │ │ ├── nsis3-install-alt.ico │ │ │ │ │ ├── nsis3-install.ico │ │ │ │ │ ├── nsis3-uninstall.ico │ │ │ │ │ ├── orange-install-nsis.ico │ │ │ │ │ ├── orange-install.ico │ │ │ │ │ ├── orange-uninstall-nsis.ico │ │ │ │ │ ├── orange-uninstall.ico │ │ │ │ │ ├── pixel-install.ico │ │ │ │ │ ├── pixel-uninstall.ico │ │ │ │ │ ├── win-install.ico │ │ │ │ │ └── win-uninstall.ico │ │ │ │ ├── UltraModernUI │ │ │ │ │ ├── Complete.bmp │ │ │ │ │ ├── CompleteEx.bmp │ │ │ │ │ ├── Continue.bmp │ │ │ │ │ ├── ContinueEx.bmp │ │ │ │ │ ├── Custom.bmp │ │ │ │ │ ├── CustomEx.bmp │ │ │ │ │ ├── HeaderBG.bmp │ │ │ │ │ ├── Icon.ico │ │ │ │ │ ├── Icon2.ico │ │ │ │ │ ├── Minimal.bmp │ │ │ │ │ ├── MinimalEx.bmp │ │ │ │ │ ├── Modify.bmp │ │ │ │ │ ├── ModifyEx.bmp │ │ │ │ │ ├── Remove.bmp │ │ │ │ │ ├── RemoveEx.bmp │ │ │ │ │ ├── Repair.bmp │ │ │ │ │ ├── RepairEx.bmp │ │ │ │ │ ├── Standard.bmp │ │ │ │ │ ├── StandardEx.bmp │ │ │ │ │ ├── UnIcon.ico │ │ │ │ │ ├── UnIcon2.ico │ │ │ │ │ ├── install.ico │ │ │ │ │ ├── installEx.ico │ │ │ │ │ └── uninstall.ico │ │ │ │ └── Wizard │ │ │ │ │ ├── arrow.bmp │ │ │ │ │ ├── llama.bmp │ │ │ │ │ ├── modern-xl-install.bmp │ │ │ │ │ ├── modern-xl-uninstall.bmp │ │ │ │ │ ├── modern-xxl-install.bmp │ │ │ │ │ ├── modern-xxl-uninstall.bmp │ │ │ │ │ ├── nsis.bmp │ │ │ │ │ ├── nsis3-branding.bmp │ │ │ │ │ ├── nsis3-grey.bmp │ │ │ │ │ ├── nsis3-metro.bmp │ │ │ │ │ ├── nsis3-vintage.bmp │ │ │ │ │ ├── nullsoft.bmp │ │ │ │ │ ├── orange-nsis.bmp │ │ │ │ │ ├── orange-uninstall-nsis.bmp │ │ │ │ │ ├── orange-uninstall.bmp │ │ │ │ │ ├── orange.bmp │ │ │ │ │ └── win.bmp │ │ │ ├── InstallOptionsEx │ │ │ │ ├── Controls │ │ │ │ │ ├── Button.h │ │ │ │ │ ├── CheckBox.h │ │ │ │ │ ├── ComboBox.h │ │ │ │ │ ├── DateTime.h │ │ │ │ │ ├── GroupBox.h │ │ │ │ │ ├── Image.h │ │ │ │ │ ├── IpAddress.h │ │ │ │ │ ├── Label.h │ │ │ │ │ ├── Link.h │ │ │ │ │ ├── ListBox.h │ │ │ │ │ ├── ListView.h │ │ │ │ │ ├── MonthCalendar.h │ │ │ │ │ ├── ProgressBar.h │ │ │ │ │ ├── RadioButton.h │ │ │ │ │ ├── RichText.h │ │ │ │ │ ├── StatusBar.h │ │ │ │ │ ├── Text.h │ │ │ │ │ ├── ToolBar.h │ │ │ │ │ ├── TrackBar.h │ │ │ │ │ ├── TreeView.h │ │ │ │ │ └── UpDown.h │ │ │ │ ├── InstallerOptions.cpp │ │ │ │ ├── InstallerOptions.h │ │ │ │ ├── api.h │ │ │ │ ├── io.sln │ │ │ │ ├── io.vcproj │ │ │ │ ├── ioptdll.rc │ │ │ │ ├── nsis_tchar.h │ │ │ │ ├── pluginapi.c │ │ │ │ ├── pluginapi.h │ │ │ │ └── resource.h │ │ │ ├── Language files │ │ │ │ ├── Afrikaans.nlf │ │ │ │ ├── Afrikaans.nsh │ │ │ │ ├── Albanian.nlf │ │ │ │ ├── Albanian.nsh │ │ │ │ ├── Arabic.nlf │ │ │ │ ├── Arabic.nsh │ │ │ │ ├── Armenian.nlf │ │ │ │ ├── Armenian.nsh │ │ │ │ ├── Asturian.nlf │ │ │ │ ├── Asturian.nsh │ │ │ │ ├── Basque.nlf │ │ │ │ ├── Basque.nsh │ │ │ │ ├── Belarusian.nlf │ │ │ │ ├── Belarusian.nsh │ │ │ │ ├── Bosnian.nlf │ │ │ │ ├── Bosnian.nsh │ │ │ │ ├── Breton.nlf │ │ │ │ ├── Breton.nsh │ │ │ │ ├── Bulgarian.nlf │ │ │ │ ├── Bulgarian.nsh │ │ │ │ ├── Catalan.nlf │ │ │ │ ├── Catalan.nsh │ │ │ │ ├── Corsican.nlf │ │ │ │ ├── Corsican.nsh │ │ │ │ ├── Croatian.nlf │ │ │ │ ├── Croatian.nsh │ │ │ │ ├── Czech.nlf │ │ │ │ ├── Czech.nsh │ │ │ │ ├── Danish.nlf │ │ │ │ ├── Danish.nsh │ │ │ │ ├── Dutch.nlf │ │ │ │ ├── Dutch.nsh │ │ │ │ ├── English.nlf │ │ │ │ ├── English.nsh │ │ │ │ ├── Esperanto.nlf │ │ │ │ ├── Esperanto.nsh │ │ │ │ ├── Estonian.nlf │ │ │ │ ├── Estonian.nsh │ │ │ │ ├── Farsi.nlf │ │ │ │ ├── Farsi.nsh │ │ │ │ ├── Finnish.nlf │ │ │ │ ├── Finnish.nsh │ │ │ │ ├── French.nlf │ │ │ │ ├── French.nsh │ │ │ │ ├── Galician.nlf │ │ │ │ ├── Galician.nsh │ │ │ │ ├── Georgian.nlf │ │ │ │ ├── Georgian.nsh │ │ │ │ ├── German.nlf │ │ │ │ ├── German.nsh │ │ │ │ ├── Greek.nlf │ │ │ │ ├── Greek.nsh │ │ │ │ ├── Hebrew.nlf │ │ │ │ ├── Hebrew.nsh │ │ │ │ ├── Hindi.nlf │ │ │ │ ├── Hindi.nsh │ │ │ │ ├── Hungarian.nlf │ │ │ │ ├── Hungarian.nsh │ │ │ │ ├── Icelandic.nlf │ │ │ │ ├── Icelandic.nsh │ │ │ │ ├── Indonesian.nlf │ │ │ │ ├── Indonesian.nsh │ │ │ │ ├── Irish.nlf │ │ │ │ ├── Irish.nsh │ │ │ │ ├── Italian.nlf │ │ │ │ ├── Italian.nsh │ │ │ │ ├── Japanese.nlf │ │ │ │ ├── Japanese.nsh │ │ │ │ ├── Korean.nlf │ │ │ │ ├── Korean.nsh │ │ │ │ ├── Kurdish.nlf │ │ │ │ ├── Kurdish.nsh │ │ │ │ ├── Latvian.nlf │ │ │ │ ├── Latvian.nsh │ │ │ │ ├── Lithuanian.nlf │ │ │ │ ├── Lithuanian.nsh │ │ │ │ ├── Luxembourgish.nlf │ │ │ │ ├── Luxembourgish.nsh │ │ │ │ ├── Macedonian.nlf │ │ │ │ ├── Macedonian.nsh │ │ │ │ ├── Malay.nlf │ │ │ │ ├── Malay.nsh │ │ │ │ ├── Mongolian.nlf │ │ │ │ ├── Mongolian.nsh │ │ │ │ ├── Norwegian.nlf │ │ │ │ ├── Norwegian.nsh │ │ │ │ ├── NorwegianNynorsk.nlf │ │ │ │ ├── NorwegianNynorsk.nsh │ │ │ │ ├── Pashto.nlf │ │ │ │ ├── Pashto.nsh │ │ │ │ ├── Polish.nlf │ │ │ │ ├── Polish.nsh │ │ │ │ ├── Portuguese.nlf │ │ │ │ ├── Portuguese.nsh │ │ │ │ ├── PortugueseBR.nlf │ │ │ │ ├── PortugueseBR.nsh │ │ │ │ ├── Romanian.nlf │ │ │ │ ├── Romanian.nsh │ │ │ │ ├── Russian.nlf │ │ │ │ ├── Russian.nsh │ │ │ │ ├── ScotsGaelic.nlf │ │ │ │ ├── ScotsGaelic.nsh │ │ │ │ ├── Serbian.nlf │ │ │ │ ├── Serbian.nsh │ │ │ │ ├── SerbianLatin.nlf │ │ │ │ ├── SerbianLatin.nsh │ │ │ │ ├── SimpChinese.nlf │ │ │ │ ├── SimpChinese.nsh │ │ │ │ ├── Slovak.nlf │ │ │ │ ├── Slovak.nsh │ │ │ │ ├── Slovenian.nlf │ │ │ │ ├── Slovenian.nsh │ │ │ │ ├── Spanish.nlf │ │ │ │ ├── Spanish.nsh │ │ │ │ ├── SpanishInternational.nlf │ │ │ │ ├── SpanishInternational.nsh │ │ │ │ ├── Swedish.nlf │ │ │ │ ├── Swedish.nsh │ │ │ │ ├── Tatar.nlf │ │ │ │ ├── Tatar.nsh │ │ │ │ ├── Thai.nlf │ │ │ │ ├── Thai.nsh │ │ │ │ ├── TradChinese.nlf │ │ │ │ ├── TradChinese.nsh │ │ │ │ ├── Turkish.nlf │ │ │ │ ├── Turkish.nsh │ │ │ │ ├── Ukrainian.nlf │ │ │ │ ├── Ukrainian.nsh │ │ │ │ ├── Uzbek.nlf │ │ │ │ ├── Uzbek.nsh │ │ │ │ ├── Vietnamese.nlf │ │ │ │ ├── Vietnamese.nsh │ │ │ │ ├── Welsh.nlf │ │ │ │ └── Welsh.nsh │ │ │ ├── Modern UI 2 │ │ │ │ ├── Deprecated.nsh │ │ │ │ ├── Interface.nsh │ │ │ │ ├── Localization.nsh │ │ │ │ ├── MUI2.nsh │ │ │ │ ├── Pages.nsh │ │ │ │ └── Pages │ │ │ │ │ ├── Components.nsh │ │ │ │ │ ├── Directory.nsh │ │ │ │ │ ├── Finish.nsh │ │ │ │ │ ├── InstallFiles.nsh │ │ │ │ │ ├── License.nsh │ │ │ │ │ ├── StartMenu.nsh │ │ │ │ │ ├── UninstallConfirm.nsh │ │ │ │ │ └── Welcome.nsh │ │ │ ├── Modern UI │ │ │ │ ├── System.nsh │ │ │ │ └── ioSpecial.ini │ │ │ ├── SkinnedControls │ │ │ │ ├── SkinnedControls.c │ │ │ │ ├── SkinnedControls.h │ │ │ │ ├── SkinnedControls.sln │ │ │ │ ├── SkinnedControls.vcproj │ │ │ │ ├── api.h │ │ │ │ ├── coolsb │ │ │ │ │ ├── coolsb.vcproj │ │ │ │ │ ├── coolsb_detours.c │ │ │ │ │ ├── coolsb_detours.h │ │ │ │ │ ├── coolsb_internal.h │ │ │ │ │ ├── coolsblib.c │ │ │ │ │ ├── coolsblib.h │ │ │ │ │ ├── coolscroll.c │ │ │ │ │ ├── coolscroll.h │ │ │ │ │ ├── detours.h │ │ │ │ │ ├── detours.lib │ │ │ │ │ └── userdefs.h │ │ │ │ ├── nsis_tchar.h │ │ │ │ ├── pluginapi.c │ │ │ │ ├── pluginapi.h │ │ │ │ ├── skins │ │ │ │ │ ├── defaultbtn.bmp │ │ │ │ │ ├── defaultsb.bmp │ │ │ │ │ └── xpsb.bmp │ │ │ │ ├── wa_dlg.h │ │ │ │ ├── wa_scrollbars.c │ │ │ │ └── wa_scrollbars.h │ │ │ ├── UIs │ │ │ │ ├── UltraModernUI │ │ │ │ │ ├── UltraModern.exe │ │ │ │ │ ├── UltraModern_bigdesc.exe │ │ │ │ │ ├── UltraModern_nodesc.exe │ │ │ │ │ ├── UltraModern_noleftimage.exe │ │ │ │ │ ├── UltraModern_sb.exe │ │ │ │ │ ├── UltraModern_small.exe │ │ │ │ │ ├── UltraModern_small_sb.exe │ │ │ │ │ ├── UltraModern_smalldesc.exe │ │ │ │ │ ├── modern_bigdesc.exe │ │ │ │ │ ├── modern_headerbgimage.exe │ │ │ │ │ └── modern_sb.exe │ │ │ │ ├── default.exe │ │ │ │ ├── default_sb.exe │ │ │ │ ├── modern.exe │ │ │ │ ├── modern_headerbmp.exe │ │ │ │ ├── modern_headerbmpr.exe │ │ │ │ ├── modern_nodesc.exe │ │ │ │ ├── modern_sb.exe │ │ │ │ ├── modern_smalldesc.exe │ │ │ │ ├── sdbarker_tiny.exe │ │ │ │ ├── xl.exe │ │ │ │ ├── xl_headerbmp.exe │ │ │ │ ├── xl_headerbmpr.exe │ │ │ │ ├── xl_nodesc.exe │ │ │ │ ├── xl_smalldesc.exe │ │ │ │ ├── xxl.exe │ │ │ │ ├── xxl_headerbmp.exe │ │ │ │ ├── xxl_headerbmpr.exe │ │ │ │ ├── xxl_nodesc.exe │ │ │ │ └── xxl_smalldesc.exe │ │ │ ├── UltraModernUI │ │ │ │ ├── BGSkins │ │ │ │ │ ├── SoftBlue.nsh │ │ │ │ │ ├── SoftBlue │ │ │ │ │ │ └── BackGround.bmp │ │ │ │ │ ├── SoftBrown.nsh │ │ │ │ │ ├── SoftBrown │ │ │ │ │ │ └── BackGround.bmp │ │ │ │ │ ├── SoftGray.nsh │ │ │ │ │ ├── SoftGray │ │ │ │ │ │ └── BackGround.bmp │ │ │ │ │ ├── SoftGreen.nsh │ │ │ │ │ ├── SoftGreen │ │ │ │ │ │ └── BackGround.bmp │ │ │ │ │ ├── SoftPurple.nsh │ │ │ │ │ ├── SoftPurple │ │ │ │ │ │ └── BackGround.bmp │ │ │ │ │ ├── SoftRed.nsh │ │ │ │ │ ├── SoftRed │ │ │ │ │ │ └── BackGround.bmp │ │ │ │ │ ├── blue.nsh │ │ │ │ │ ├── blue │ │ │ │ │ │ ├── BackGround.bmp │ │ │ │ │ │ └── BackGround2.bmp │ │ │ │ │ ├── blue2.nsh │ │ │ │ │ ├── brown.nsh │ │ │ │ │ ├── brown │ │ │ │ │ │ ├── BackGround.bmp │ │ │ │ │ │ └── BackGround2.bmp │ │ │ │ │ ├── brown2.nsh │ │ │ │ │ ├── darkgreen.nsh │ │ │ │ │ ├── darkgreen │ │ │ │ │ │ ├── BackGround.bmp │ │ │ │ │ │ └── BackGround2.bmp │ │ │ │ │ ├── darkgreen2.nsh │ │ │ │ │ ├── gray.nsh │ │ │ │ │ ├── gray │ │ │ │ │ │ ├── BackGround.bmp │ │ │ │ │ │ └── BackGround2.bmp │ │ │ │ │ ├── gray2.nsh │ │ │ │ │ ├── green.nsh │ │ │ │ │ ├── green │ │ │ │ │ │ ├── BackGround.bmp │ │ │ │ │ │ └── BackGround2.bmp │ │ │ │ │ ├── green2.nsh │ │ │ │ │ ├── purple.nsh │ │ │ │ │ ├── purple │ │ │ │ │ │ ├── BackGround.bmp │ │ │ │ │ │ └── BackGround2.bmp │ │ │ │ │ ├── purple2.nsh │ │ │ │ │ ├── red.nsh │ │ │ │ │ ├── red │ │ │ │ │ │ ├── BackGround.bmp │ │ │ │ │ │ └── BackGround2.bmp │ │ │ │ │ └── red2.nsh │ │ │ │ ├── Ini │ │ │ │ │ ├── AdditionalTasks.ini │ │ │ │ │ ├── AlternateWelcomeFinishAbort.ini │ │ │ │ │ ├── AlternateWelcomeFinishAbortImage.ini │ │ │ │ │ ├── AlternativeStartMenu.ini │ │ │ │ │ ├── Confirm.ini │ │ │ │ │ ├── Information.ini │ │ │ │ │ ├── MaintenanceUpdateSetupType.ini │ │ │ │ │ ├── SerialNumber.ini │ │ │ │ │ ├── WelcomeFinishAbort.ini │ │ │ │ │ └── WelcomeFinishAbortImage.ini │ │ │ │ ├── Language files │ │ │ │ │ ├── Afrikaans.nsh │ │ │ │ │ ├── Albanian.nsh │ │ │ │ │ ├── Arabic.nsh │ │ │ │ │ ├── Armenian.nsh │ │ │ │ │ ├── Asturian.nsh │ │ │ │ │ ├── Basque.nsh │ │ │ │ │ ├── Belarusian.nsh │ │ │ │ │ ├── Bosnian.nsh │ │ │ │ │ ├── Breton.nsh │ │ │ │ │ ├── Bulgarian.nsh │ │ │ │ │ ├── Catalan.nsh │ │ │ │ │ ├── Corsican.nsh │ │ │ │ │ ├── Croatian.nsh │ │ │ │ │ ├── Czech.nsh │ │ │ │ │ ├── Danish.nsh │ │ │ │ │ ├── Dutch.nsh │ │ │ │ │ ├── English.nsh │ │ │ │ │ ├── Esperanto.nsh │ │ │ │ │ ├── Estonian.nsh │ │ │ │ │ ├── Farsi.nsh │ │ │ │ │ ├── Finnish.nsh │ │ │ │ │ ├── French.nsh │ │ │ │ │ ├── Galician.nsh │ │ │ │ │ ├── Georgian.nsh │ │ │ │ │ ├── German.nsh │ │ │ │ │ ├── Greek.nsh │ │ │ │ │ ├── Hebrew.nsh │ │ │ │ │ ├── Hindi.nsh │ │ │ │ │ ├── Hungarian.nsh │ │ │ │ │ ├── Icelandic.nsh │ │ │ │ │ ├── Indonesian.nsh │ │ │ │ │ ├── Irish.nsh │ │ │ │ │ ├── Italian.nsh │ │ │ │ │ ├── Japanese.nsh │ │ │ │ │ ├── Korean.nsh │ │ │ │ │ ├── Kurdish.nsh │ │ │ │ │ ├── Latvian.nsh │ │ │ │ │ ├── Lithuanian.nsh │ │ │ │ │ ├── Luxembourgish.nsh │ │ │ │ │ ├── Macedonian.nsh │ │ │ │ │ ├── Malay.nsh │ │ │ │ │ ├── Mongolian.nsh │ │ │ │ │ ├── Norwegian.nsh │ │ │ │ │ ├── NorwegianNynorsk.nsh │ │ │ │ │ ├── Pashto.nsh │ │ │ │ │ ├── Polish.nsh │ │ │ │ │ ├── Portuguese.nsh │ │ │ │ │ ├── PortugueseBR.nsh │ │ │ │ │ ├── Romanian.nsh │ │ │ │ │ ├── Russian.nsh │ │ │ │ │ ├── ScotsGaelic.nsh │ │ │ │ │ ├── Serbian.nsh │ │ │ │ │ ├── SerbianLatin.nsh │ │ │ │ │ ├── SimpChinese.nsh │ │ │ │ │ ├── Slovak.nsh │ │ │ │ │ ├── Slovenian.nsh │ │ │ │ │ ├── Spanish.nsh │ │ │ │ │ ├── SpanishInternational.nsh │ │ │ │ │ ├── Swedish.nsh │ │ │ │ │ ├── Tatar.nsh │ │ │ │ │ ├── Thai.nsh │ │ │ │ │ ├── TradChinese.nsh │ │ │ │ │ ├── Turkish.nsh │ │ │ │ │ ├── Ukrainian.nsh │ │ │ │ │ ├── Uzbek.nsh │ │ │ │ │ ├── Vietnamese.nsh │ │ │ │ │ └── Welsh.nsh │ │ │ │ ├── Skins │ │ │ │ │ ├── SoftBlue.nsh │ │ │ │ │ ├── SoftBlue │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── SoftBrown.nsh │ │ │ │ │ ├── SoftBrown │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── SoftGray.nsh │ │ │ │ │ ├── SoftGray │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── SoftGreen.nsh │ │ │ │ │ ├── SoftGreen │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── SoftPurple.nsh │ │ │ │ │ ├── SoftPurple │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── SoftRed.nsh │ │ │ │ │ ├── SoftRed │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── blue.nsh │ │ │ │ │ ├── blue │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Bottom2.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Button2.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Header2.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── PageBG2.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── blue2.nsh │ │ │ │ │ ├── brown.nsh │ │ │ │ │ ├── brown │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Bottom2.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Button2.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Header2.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── PageBG2.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── brown2.nsh │ │ │ │ │ ├── darkgreen.nsh │ │ │ │ │ ├── darkgreen │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Bottom2.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Button2.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Header2.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── PageBG2.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── darkgreen2.nsh │ │ │ │ │ ├── gray.nsh │ │ │ │ │ ├── gray │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Bottom2.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Button2.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Header2.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── PageBG2.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── gray2.nsh │ │ │ │ │ ├── green.nsh │ │ │ │ │ ├── green │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Bottom2.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Button2.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Header2.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── PageBG2.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── green2.nsh │ │ │ │ │ ├── purple.nsh │ │ │ │ │ ├── purple │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Bottom2.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Button2.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Header2.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── PageBG2.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ ├── purple2.nsh │ │ │ │ │ ├── red.nsh │ │ │ │ │ ├── red │ │ │ │ │ │ ├── Bottom.bmp │ │ │ │ │ │ ├── Bottom2.bmp │ │ │ │ │ │ ├── Button.bmp │ │ │ │ │ │ ├── Button2.bmp │ │ │ │ │ │ ├── Header.bmp │ │ │ │ │ │ ├── Header2.bmp │ │ │ │ │ │ ├── Left.bmp │ │ │ │ │ │ ├── Left_empty.bmp │ │ │ │ │ │ ├── PageBG.bmp │ │ │ │ │ │ ├── PageBG2.bmp │ │ │ │ │ │ ├── ScrollBar.bmp │ │ │ │ │ │ └── Wizard.bmp │ │ │ │ │ └── red2.nsh │ │ │ │ └── UMUI.nsh │ │ │ ├── nsArray │ │ │ │ ├── Array.c │ │ │ │ ├── Array.h │ │ │ │ ├── api.h │ │ │ │ ├── nsArray.c │ │ │ │ ├── nsArray.h │ │ │ │ ├── nsArray.rc │ │ │ │ ├── nsArray.sln │ │ │ │ ├── nsArray.vcxproj │ │ │ │ ├── nsArray.vcxproj.filters │ │ │ │ ├── nsis_tchar.h │ │ │ │ ├── pluginapi.c │ │ │ │ ├── pluginapi.h │ │ │ │ └── resource.h │ │ │ └── zip2exe │ │ │ │ ├── Base.nsh │ │ │ │ ├── Classic.nsh │ │ │ │ └── Modern.nsh │ │ ├── Docs │ │ │ ├── AccessControl │ │ │ │ └── AccessControl.txt │ │ │ ├── AdvSplash │ │ │ │ └── advsplash.txt │ │ │ ├── Banner │ │ │ │ └── Readme.txt │ │ │ ├── BgImage │ │ │ │ └── BgImage.txt │ │ │ ├── Dialer │ │ │ │ └── Dialer.txt │ │ │ ├── ExecDos │ │ │ │ └── Readme.txt │ │ │ ├── InstallOptions │ │ │ │ ├── Changelog.txt │ │ │ │ └── Readme.html │ │ │ ├── InstallOptionsEx │ │ │ │ ├── License.txt │ │ │ │ ├── Readme.html │ │ │ │ ├── basic.js │ │ │ │ └── style.css │ │ │ ├── Math │ │ │ │ └── Math.txt │ │ │ ├── Modern UI 2 │ │ │ │ ├── License.txt │ │ │ │ ├── Readme.html │ │ │ │ └── images │ │ │ │ │ ├── closed.gif │ │ │ │ │ ├── header.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ ├── screen1.png │ │ │ │ │ └── screen2.png │ │ │ ├── Modern UI │ │ │ │ ├── Changelog.txt │ │ │ │ ├── License.txt │ │ │ │ ├── Readme.html │ │ │ │ └── images │ │ │ │ │ ├── closed.gif │ │ │ │ │ ├── header.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ ├── screen1.png │ │ │ │ │ └── screen2.png │ │ │ ├── MultiUser │ │ │ │ └── Readme.html │ │ │ ├── NSISdl │ │ │ │ ├── License.txt │ │ │ │ └── ReadMe.txt │ │ │ ├── NScurl │ │ │ │ └── NScurl.Readme.htm │ │ │ ├── NSutils │ │ │ │ └── NSutils.Readme.txt │ │ │ ├── NSxfer │ │ │ │ └── NSxfer.Readme.txt │ │ │ ├── ShellLink │ │ │ │ └── Readme.html │ │ │ ├── SkinnedControls │ │ │ │ ├── Readme.html │ │ │ │ ├── images │ │ │ │ │ ├── bullet.png │ │ │ │ │ ├── closed.gif │ │ │ │ │ ├── header_sc.png │ │ │ │ │ └── open.gif │ │ │ │ ├── license.txt │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── Splash │ │ │ │ └── splash.txt │ │ │ ├── StartMenu │ │ │ │ └── Readme.txt │ │ │ ├── StrFunc │ │ │ │ └── StrFunc.txt │ │ │ ├── System │ │ │ │ ├── System.html │ │ │ │ └── WhatsNew.txt │ │ │ ├── UltraModernUI │ │ │ │ ├── License.txt │ │ │ │ ├── ReadMe.rtf │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Readme.html │ │ │ │ ├── images │ │ │ │ │ ├── SmallScreen.png │ │ │ │ │ ├── bullet.png │ │ │ │ │ ├── closed.gif │ │ │ │ │ ├── header.png │ │ │ │ │ └── open.gif │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── VPatch │ │ │ │ └── Readme.html │ │ │ ├── makensisw │ │ │ │ ├── License.txt │ │ │ │ └── Readme.txt │ │ │ ├── nsArray │ │ │ │ └── Readme.txt │ │ │ ├── nsDialogs │ │ │ │ └── Readme.html │ │ │ ├── nsExec │ │ │ │ └── nsExec.txt │ │ │ └── w7tbp │ │ │ │ └── w7tbp.Readme.txt │ │ ├── Examples │ │ │ ├── AdvSplash │ │ │ │ └── Example.nsi │ │ │ ├── AppGen.nsi │ │ │ ├── Banner │ │ │ │ └── Example.nsi │ │ │ ├── BgImage │ │ │ │ └── Example.nsi │ │ │ ├── ExecDos │ │ │ │ ├── Batch.nsi │ │ │ │ ├── Detailed.nsi │ │ │ │ ├── Example.nsi │ │ │ │ ├── IsDone.nsi │ │ │ │ ├── Multi.nsi │ │ │ │ ├── ToFunc.nsi │ │ │ │ ├── ToStack.nsi │ │ │ │ ├── ToWindow.nsi │ │ │ │ ├── consApp.exe │ │ │ │ ├── first.bat │ │ │ │ ├── listbox.ini │ │ │ │ ├── ml_edit.ini │ │ │ │ └── second.bat │ │ │ ├── FileFunc.ini │ │ │ ├── FileFunc.nsi │ │ │ ├── FileFuncTest.nsi │ │ │ ├── InstallOptions │ │ │ │ ├── test.ini │ │ │ │ ├── test.nsi │ │ │ │ ├── testimgs.ini │ │ │ │ ├── testimgs.nsi │ │ │ │ ├── testlink.ini │ │ │ │ ├── testlink.nsi │ │ │ │ ├── testnotify.ini │ │ │ │ └── testnotify.nsi │ │ │ ├── InstallOptionsEx │ │ │ │ ├── InstallOptionsEx.nsi │ │ │ │ ├── test.ini │ │ │ │ └── test.nsi │ │ │ ├── Library.nsi │ │ │ ├── LogicLib.nsi │ │ │ ├── Math │ │ │ │ ├── math.nsi │ │ │ │ ├── mathtest.ini │ │ │ │ ├── mathtest.nsi │ │ │ │ └── mathtest.txt │ │ │ ├── Memento.nsi │ │ │ ├── Modern UI │ │ │ │ ├── Basic.nsi │ │ │ │ ├── HeaderBitmap.nsi │ │ │ │ ├── MultiLanguage.nsi │ │ │ │ ├── StartMenu.nsi │ │ │ │ └── WelcomeFinish.nsi │ │ │ ├── ModernXL.nsi │ │ │ ├── NSISMenu.nsi │ │ │ ├── NScurl │ │ │ │ ├── NScurl-Test-build.bat │ │ │ │ └── NScurl-Test.nsi │ │ │ ├── NSutils │ │ │ │ ├── NSutils-Test-build.bat │ │ │ │ └── NSutils-Test.nsi │ │ │ ├── NSxfer │ │ │ │ ├── NSxfer-Test-build.bat │ │ │ │ └── NSxfer-Test.nsi │ │ │ ├── Plugin │ │ │ │ ├── exdll-vs2008.sln │ │ │ │ ├── exdll-vs2008.vcproj │ │ │ │ ├── exdll.c │ │ │ │ ├── exdll.dpr │ │ │ │ ├── exdll.dsp │ │ │ │ ├── exdll.dsw │ │ │ │ ├── exdll_with_unit.dpr │ │ │ │ ├── extdll.inc │ │ │ │ ├── nsis.pas │ │ │ │ └── nsis │ │ │ │ │ ├── api.h │ │ │ │ │ ├── nsis_tchar.h │ │ │ │ │ ├── pluginapi-x86-ansi.lib │ │ │ │ │ ├── pluginapi-x86-unicode.lib │ │ │ │ │ └── pluginapi.h │ │ │ ├── SkinnedControls │ │ │ │ ├── Example.nsi │ │ │ │ ├── Example_MUI.nsi │ │ │ │ ├── Example_MUIEx.nsi │ │ │ │ └── SkinnedControls.nsi │ │ │ ├── Splash │ │ │ │ └── Example.nsi │ │ │ ├── StartMenu │ │ │ │ └── Example.nsi │ │ │ ├── StrFunc.nsi │ │ │ ├── System │ │ │ │ ├── Resource.dll │ │ │ │ ├── SysFunc.nsh │ │ │ │ ├── System.nsh │ │ │ │ └── System.nsi │ │ │ ├── TextFunc.ini │ │ │ ├── TextFunc.nsi │ │ │ ├── TextFuncTest.nsi │ │ │ ├── UltraModernUI │ │ │ │ ├── AdditionalTasks.nsi │ │ │ │ ├── Basic.nsi │ │ │ │ ├── Confirm.nsi │ │ │ │ ├── FileDiskRequest.nsi │ │ │ │ ├── HeaderBGImageEx.nsi │ │ │ │ ├── HeaderBitmapEx.nsi │ │ │ │ ├── Information.nsi │ │ │ │ ├── InstallOptions.nsi │ │ │ │ ├── Maintenance.nsi │ │ │ │ ├── MultiLanguage.nsi │ │ │ │ ├── NSISUMUIMenu.nsi │ │ │ │ ├── NSISUltraModernUI.nsi │ │ │ │ ├── NoLeftImage.nsi │ │ │ │ ├── PageBG.nsi │ │ │ │ ├── SerialNumber.nsi │ │ │ │ ├── SetupType.nsi │ │ │ │ ├── StartMenu.nsi │ │ │ │ ├── UltraModernSmall.nsi │ │ │ │ ├── UltraModernUI.nsi │ │ │ │ ├── Update.nsi │ │ │ │ ├── WelcomeFinishAbort.nsi │ │ │ │ ├── bigtest.nsi │ │ │ │ ├── information.txt │ │ │ │ ├── information1033.txt │ │ │ │ ├── information1036.txt │ │ │ │ ├── ioA.ini │ │ │ │ ├── ioB.ini │ │ │ │ └── nsDialog.nsi │ │ │ ├── UserInfo │ │ │ │ └── UserInfo.nsi │ │ │ ├── UserVars.nsi │ │ │ ├── VPatch │ │ │ │ ├── example.nsi │ │ │ │ ├── newfile.txt │ │ │ │ ├── oldfile.txt │ │ │ │ └── patch.pat │ │ │ ├── VersionInfo.nsi │ │ │ ├── WordFunc.ini │ │ │ ├── WordFunc.nsi │ │ │ ├── WordFuncTest.nsi │ │ │ ├── bigtest.nsi │ │ │ ├── example1.nsi │ │ │ ├── example2.nsi │ │ │ ├── gfx.nsi │ │ │ ├── install-per-user.nsi │ │ │ ├── install-shared.nsi │ │ │ ├── languages.nsi │ │ │ ├── makensis.nsi │ │ │ ├── nsArray │ │ │ │ ├── nsArray.nsi │ │ │ │ └── nsArrayHeader.nsi │ │ │ ├── nsDialogs │ │ │ │ ├── InstallOptions.nsi │ │ │ │ ├── example.nsi │ │ │ │ ├── timer.nsi │ │ │ │ └── welcome.nsi │ │ │ ├── nsExec │ │ │ │ └── test.nsi │ │ │ ├── nsProcessTest.nsi │ │ │ ├── one-section.nsi │ │ │ ├── primes.nsi │ │ │ ├── rtest.nsi │ │ │ ├── silent.nsi │ │ │ ├── unicode.nsi │ │ │ ├── viewhtml.nsi │ │ │ └── waplugin.nsi │ │ ├── Include │ │ │ ├── Colors.nsh │ │ │ ├── FileFunc.nsh │ │ │ ├── InstallOptions.nsh │ │ │ ├── Integration.nsh │ │ │ ├── LangFile.nsh │ │ │ ├── Library.nsh │ │ │ ├── LogicLib.nsh │ │ │ ├── MUI.nsh │ │ │ ├── MUI2.nsh │ │ │ ├── MUIEx.nsh │ │ │ ├── Memento.nsh │ │ │ ├── ModernXL.nsh │ │ │ ├── ModernXXL.nsh │ │ │ ├── MultiUser.nsh │ │ │ ├── Sections.nsh │ │ │ ├── StrFunc.nsh │ │ │ ├── TextFunc.nsh │ │ │ ├── UMUI.nsh │ │ │ ├── UpgradeDLL.nsh │ │ │ ├── Util.nsh │ │ │ ├── VB6RunTime.nsh │ │ │ ├── VPatchLib.nsh │ │ │ ├── Win │ │ │ │ ├── COM.nsh │ │ │ │ ├── Propkey.nsh │ │ │ │ ├── WinDef.nsh │ │ │ │ ├── WinError.nsh │ │ │ │ ├── WinNT.nsh │ │ │ │ └── WinUser.nsh │ │ │ ├── WinCore.nsh │ │ │ ├── WinMessages.nsh │ │ │ ├── WinVer.nsh │ │ │ ├── WordFunc.nsh │ │ │ ├── nsArray.nsh │ │ │ ├── nsDialogs.nsh │ │ │ ├── nsProcess.nsh │ │ │ └── x64.nsh │ │ ├── NSIS.chm │ │ ├── NSIS.exe │ │ ├── Plugins │ │ │ ├── amd64-unicode │ │ │ │ ├── AccessControl.dll │ │ │ │ ├── AdvSplash.dll │ │ │ │ ├── Banner.dll │ │ │ │ ├── BgImage.dll │ │ │ │ ├── Dialer.dll │ │ │ │ ├── ExecDos.dll │ │ │ │ ├── InstallOptions.dll │ │ │ │ ├── InstallOptionsEx.dll │ │ │ │ ├── LangDLL.dll │ │ │ │ ├── Math.dll │ │ │ │ ├── NSISdl.dll │ │ │ │ ├── NScurl.dll │ │ │ │ ├── NSutils.dll │ │ │ │ ├── NSxfer.dll │ │ │ │ ├── ShellLink.dll │ │ │ │ ├── SkinnedControls.dll │ │ │ │ ├── Splash.dll │ │ │ │ ├── StartMenu.dll │ │ │ │ ├── System.dll │ │ │ │ ├── TypeLib.dll │ │ │ │ ├── UserInfo.dll │ │ │ │ ├── VPatch.dll │ │ │ │ ├── nsArray.dll │ │ │ │ ├── nsDialogs.dll │ │ │ │ ├── nsExec.dll │ │ │ │ └── w7tbp.dll │ │ │ ├── x86-ansi │ │ │ │ ├── AccessControl.dll │ │ │ │ ├── Banner.dll │ │ │ │ ├── BgImage.dll │ │ │ │ ├── Dialer.dll │ │ │ │ ├── ExecDos.dll │ │ │ │ ├── InstallOptions.dll │ │ │ │ ├── InstallOptionsEx.dll │ │ │ │ ├── LangDLL.dll │ │ │ │ ├── Math.dll │ │ │ │ ├── NScurl.dll │ │ │ │ ├── NSutils.dll │ │ │ │ ├── NSxfer.dll │ │ │ │ ├── ShellLink.dll │ │ │ │ ├── SkinnedControls.dll │ │ │ │ ├── StartMenu.dll │ │ │ │ ├── System.dll │ │ │ │ ├── TypeLib.dll │ │ │ │ ├── UserInfo.dll │ │ │ │ ├── VPatch.dll │ │ │ │ ├── advsplash.dll │ │ │ │ ├── nsArray.dll │ │ │ │ ├── nsDialogs.dll │ │ │ │ ├── nsExec.dll │ │ │ │ ├── nsisdl.dll │ │ │ │ ├── splash.dll │ │ │ │ └── w7tbp.dll │ │ │ └── x86-unicode │ │ │ │ ├── AccessControl.dll │ │ │ │ ├── Banner.dll │ │ │ │ ├── BgImage.dll │ │ │ │ ├── Dialer.dll │ │ │ │ ├── ExecDos.dll │ │ │ │ ├── InstallOptions.dll │ │ │ │ ├── InstallOptionsEx.dll │ │ │ │ ├── LangDLL.dll │ │ │ │ ├── Math.dll │ │ │ │ ├── NScurl.dll │ │ │ │ ├── NSutils.dll │ │ │ │ ├── NSxfer.dll │ │ │ │ ├── ShellLink.dll │ │ │ │ ├── SkinnedControls.dll │ │ │ │ ├── StartMenu.dll │ │ │ │ ├── System.dll │ │ │ │ ├── TypeLib.dll │ │ │ │ ├── UserInfo.dll │ │ │ │ ├── VPatch.dll │ │ │ │ ├── advsplash.dll │ │ │ │ ├── nsArray.dll │ │ │ │ ├── nsDialogs.dll │ │ │ │ ├── nsExec.dll │ │ │ │ ├── nsisdl.dll │ │ │ │ ├── splash.dll │ │ │ │ └── w7tbp.dll │ │ ├── Stubs │ │ │ ├── bzip2-amd64-unicode │ │ │ ├── bzip2-x86-ansi │ │ │ ├── bzip2-x86-unicode │ │ │ ├── bzip2_solid-amd64-unicode │ │ │ ├── bzip2_solid-x86-ansi │ │ │ ├── bzip2_solid-x86-unicode │ │ │ ├── lzma-amd64-unicode │ │ │ ├── lzma-x86-ansi │ │ │ ├── lzma-x86-unicode │ │ │ ├── lzma_solid-amd64-unicode │ │ │ ├── lzma_solid-x86-ansi │ │ │ ├── lzma_solid-x86-unicode │ │ │ ├── uninst │ │ │ ├── zlib-amd64-unicode │ │ │ ├── zlib-x86-ansi │ │ │ ├── zlib-x86-unicode │ │ │ ├── zlib_solid-amd64-unicode │ │ │ ├── zlib_solid-x86-ansi │ │ │ └── zlib_solid-x86-unicode │ │ ├── makensis.exe │ │ ├── makensisw.exe │ │ ├── nsisconf.nsh │ │ └── uninst-nsis.exe │ └── wrap.cmd ├── pkg │ ├── .gitignore │ ├── Distribution.xml │ ├── build.sh │ ├── check-system.sh │ ├── get-version.js │ ├── install-fuse.sh │ ├── launch-fuse.sh │ ├── resources │ │ └── license.html │ ├── scripts │ │ ├── postinstall │ │ └── preinstall │ └── version-gte.js ├── platypus │ ├── fuse X.platypus │ └── main.sh ├── staple.sh └── uninstall.sh ├── src ├── .gitignore ├── GlobalAssemblyInfo.cs ├── GlobalAssemblyInfo.targets ├── common │ ├── core │ │ ├── ArgumentParseExtensions.cs │ │ ├── Behaviors │ │ │ ├── IBehavior.cs │ │ │ ├── IBehaviorSubject.cs │ │ │ └── Operators │ │ │ │ ├── AsBehavior.cs │ │ │ │ ├── CombineLatest.cs │ │ │ │ ├── DistinctUntilChanged.cs │ │ │ │ ├── Return.cs │ │ │ │ ├── Select.cs │ │ │ │ └── Switch.cs │ │ ├── ColoredTextWriter.cs │ │ ├── ConsoleExtensions.cs │ │ ├── DateFormat.cs │ │ ├── Diagnostics │ │ │ ├── AssemblyAnalyzer.cs │ │ │ ├── CallerInfo.cs │ │ │ ├── ConsoleTraceExtensions.cs │ │ │ ├── ManualProfiling.cs │ │ │ ├── ObservableTraceLogger.cs │ │ │ ├── Platform.cs │ │ │ ├── ProfilingEvent.cs │ │ │ ├── ProfilingResult.cs │ │ │ └── Reactive │ │ │ │ ├── IObservableTraceHandler.cs │ │ │ │ └── ObservableTraceInfo.cs │ │ ├── Disposable.cs │ │ ├── Either.cs │ │ ├── EqualityComparer.cs │ │ ├── Extensions │ │ │ ├── BufferPrevious.cs │ │ │ ├── EnumerableDiffing.cs │ │ │ ├── EnumerableExtensions.cs │ │ │ ├── EnumerableIndexing.cs │ │ │ ├── EnumerableJoin.cs │ │ │ ├── EnumerableSetOperations.cs │ │ │ ├── ImmutableDictionaryExtensions.cs │ │ │ ├── LiftedOperators │ │ │ │ ├── Cache.cs │ │ │ │ ├── Select.cs │ │ │ │ └── Where.cs │ │ │ ├── ObjectExtensions.cs │ │ │ ├── ObservableBooleans.cs │ │ │ ├── ObservableExtensions.cs │ │ │ ├── ObservableTuples.cs │ │ │ ├── SelectWithState.cs │ │ │ ├── StringExtensions.cs │ │ │ ├── TaskExtensions.cs │ │ │ ├── TestExtensions.cs │ │ │ └── WithLatestFrom.cs │ │ ├── ExternalApplications │ │ │ ├── AppBundle.cs │ │ │ ├── ExternalApplication.cs │ │ │ ├── MonoExe.cs │ │ │ └── NativeExe.cs │ │ ├── FileOperations │ │ │ ├── BackupFile.cs │ │ │ ├── FileHelpers.cs │ │ │ ├── FileSystemEventData.cs │ │ │ ├── ForceWrite.cs │ │ │ ├── IFilePermission.cs │ │ │ ├── IFileSystem.cs │ │ │ ├── IShell.cs │ │ │ ├── MakePathUnique.cs │ │ │ ├── Reading.cs │ │ │ ├── RetryLoop.cs │ │ │ ├── ShellHelper.cs │ │ │ └── Writing.cs │ │ ├── LineEndings.cs │ │ ├── Logging │ │ │ ├── Formatter.cs │ │ │ ├── IReport.cs │ │ │ ├── LogFactory.cs │ │ │ ├── NullLogger.cs │ │ │ ├── Report.cs │ │ │ ├── ReportFactory.cs │ │ │ ├── UnhandledExceptionReporter.cs │ │ │ └── UnixSocketLogClient.cs │ │ ├── Lookups │ │ │ ├── DictionaryLookup.cs │ │ │ ├── Grouping.cs │ │ │ └── Lookup.cs │ │ ├── Matching │ │ │ ├── DoExtension.cs │ │ │ ├── DoSomeExtension.cs │ │ │ ├── IMatchTypes.cs │ │ │ ├── MatchSomeExtension.cs │ │ │ └── MatchWithExtension.cs │ │ ├── NetworkHelper.cs │ │ ├── ObservableStack.cs │ │ ├── OpenGlVersion.cs │ │ ├── Outracks.Core.csproj │ │ ├── Outracks.Core.csproj.DotSettings │ │ ├── Paths │ │ │ ├── AbsoluteDirectoryPath.cs │ │ │ ├── AbsoluteFilePath.cs │ │ │ ├── DirectoryName.cs │ │ │ ├── DirectoryPath.cs │ │ │ ├── FileName.cs │ │ │ ├── FilePath.cs │ │ │ ├── Interfaces │ │ │ │ ├── IAbsolutePath.cs │ │ │ │ ├── IDirectoryPath.cs │ │ │ │ ├── IFilePath.cs │ │ │ │ ├── IName.cs │ │ │ │ ├── IPath.cs │ │ │ │ └── IRelativePath.cs │ │ │ ├── Operators │ │ │ │ ├── BinarySerialization.cs │ │ │ │ ├── CombineWithName.cs │ │ │ │ ├── CombineWithRelativePath.cs │ │ │ │ ├── FindCommonAncestor.cs │ │ │ │ ├── IsRootedIn.cs │ │ │ │ ├── ParseNativePath.cs │ │ │ │ ├── PathJsonConverter.cs │ │ │ │ ├── RelativeTo.cs │ │ │ │ └── Rename.cs │ │ │ ├── RelativeDirectoryPath.cs │ │ │ └── RelativeFilePath.cs │ │ ├── Pipes │ │ │ ├── IPipeImpl.cs │ │ │ ├── NamedPipes.cs │ │ │ ├── Pipe.cs │ │ │ ├── PipeName.cs │ │ │ ├── SocketWin32.cs │ │ │ ├── UnixSocketPipes.cs │ │ │ └── UnixSocketStream.cs │ │ ├── ProcessExtension.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReplayQueueSubject.cs │ │ ├── RethrowExtension.cs │ │ ├── SequenceEqualityComparer.cs │ │ ├── Serialization │ │ │ └── GuidSerializer.cs │ │ ├── SetEqualityComparer.cs │ │ ├── SetInvariantCultureExtension.cs │ │ ├── SingleActionQueue.cs │ │ ├── StringToMemoryStream.cs │ │ ├── SystemGuidLoader.cs │ │ ├── SystemInfo │ │ │ └── SystemInfoFactory.cs │ │ ├── Text.cs │ │ ├── TextDocumentContent.cs │ │ ├── TrySomethingExtension.cs │ │ ├── ValidationResult.cs │ │ └── packages.config │ ├── math │ │ ├── Axis2D.cs │ │ ├── ContentFrame.cs │ │ ├── Corners.cs │ │ ├── Discrete │ │ │ ├── CycleDetected.cs │ │ │ ├── GraphInversion.cs │ │ │ ├── ReachableSet.cs │ │ │ ├── SetClosure.cs │ │ │ └── TopologicalSort.cs │ │ ├── IGroup.cs │ │ ├── INumeric.cs │ │ ├── IRing.cs │ │ ├── Interval.cs │ │ ├── Matrix.cs │ │ ├── Operators │ │ │ ├── Add.cs │ │ │ ├── Algebra.cs │ │ │ ├── Clamp.cs │ │ │ ├── Div.cs │ │ │ ├── GreaterThan.cs │ │ │ ├── Inflate.cs │ │ │ ├── Intersect.cs │ │ │ ├── LessThan.cs │ │ │ ├── Max.cs │ │ │ ├── Min.cs │ │ │ ├── Mul.cs │ │ │ ├── ReactiveExtensions.cs │ │ │ ├── RelativeTo.cs │ │ │ ├── Round.cs │ │ │ ├── Select.cs │ │ │ ├── Sub.cs │ │ │ ├── Subdivide.cs │ │ │ ├── Transpose.cs │ │ │ └── Union.cs │ │ ├── Outracks.Math.csproj │ │ ├── Point.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Ratio.cs │ │ ├── Rectangle.cs │ │ ├── Size.cs │ │ ├── Thickness.cs │ │ ├── Units │ │ │ ├── ClipSpaceUnits.cs │ │ │ ├── GlWindowPixels.cs │ │ │ ├── Inches.cs │ │ │ ├── Percentages.cs │ │ │ ├── Pixels.cs │ │ │ ├── Points.cs │ │ │ └── TextureSpaceUnits.cs │ │ ├── Vector.cs │ │ └── packages.config │ ├── testproc │ │ ├── Outracks.TestProcess.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── tests │ │ ├── DateFormatTests.cs │ │ ├── Diagnostics │ │ │ └── ConsoleTraceExtensionTests.cs │ │ ├── DistinctUntilChanged.cs │ │ ├── Extensions │ │ │ └── LiftedOperators │ │ │ │ └── CacheExtensionTests.cs │ │ ├── FormatterTests.cs │ │ ├── Helpers.cs │ │ ├── JsonPathTests.cs │ │ ├── MatchWithTest.cs │ │ ├── NetworkHelperTests.cs │ │ ├── ObservableStackTests.cs │ │ ├── Outracks.Tests.csproj │ │ ├── Paths │ │ │ ├── FileNameTest.cs │ │ │ └── FilePathTests.cs │ │ ├── Pipes │ │ │ └── UnixSocketStreamTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RemoteTaskTest.cs │ │ ├── ReplayQueueSubjectTest.cs │ │ ├── ReportTest.cs │ │ ├── RestrictToAttribute.cs │ │ ├── SingleActionQueueTests.cs │ │ ├── SubscribeUsing.cs │ │ ├── TestResult.xml │ │ ├── TextPositionTests.cs │ │ ├── WithLatestFrom.cs │ │ ├── app.config │ │ └── packages.config │ └── text │ │ ├── CharacterNumber.cs │ │ ├── FilePosition.cs │ │ ├── LineNumber.cs │ │ ├── Outracks.Text.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TextOffset.cs │ │ ├── TextOffsetConversion.cs │ │ ├── TextPosition.cs │ │ ├── TextRegion.cs │ │ ├── TextScanner.cs │ │ └── packages.config ├── entrypoint │ ├── cli │ │ ├── Entrypoint.cs │ │ ├── Fuse.ico │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ ├── app.manifest │ │ ├── fuse.csproj │ │ ├── fuse.js │ │ └── packages.config │ ├── code-assistance │ │ ├── CodeCompletionInstance.cs │ │ ├── CodeCompletionMessages.cs │ │ ├── EditorManager.cs │ │ ├── Engine.cs │ │ ├── GoToDefinitionFeature.cs │ │ ├── Logger.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SuggestionsFeature.cs │ │ ├── SyntaxLanguage.cs │ │ ├── app.config │ │ ├── fuse-lang.csproj │ │ └── packages.config │ └── uri-handler │ │ ├── Fuse.ico │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── UriHandler.cs │ │ └── fuse-uri.csproj ├── fuse │ ├── command │ │ ├── CliCommand.cs │ │ ├── CliProgram.cs │ │ ├── Commands │ │ │ ├── BuildCommand.cs │ │ │ ├── CleanCommand.cs │ │ │ ├── ConfigCommand.cs │ │ │ ├── CreateCommand.cs │ │ │ ├── DaemonClientCommand.cs │ │ │ ├── DaemonCommand.cs │ │ │ ├── DashboardCommand.cs │ │ │ ├── EventViewerCommand.cs │ │ │ ├── HelpCommand.cs │ │ │ ├── ImportCommand.cs │ │ │ ├── InstallCommand.cs │ │ │ ├── KillAllCommand.cs │ │ │ ├── OpenCommand.cs │ │ │ ├── Preview │ │ │ │ ├── ConsoleEventWriter.cs │ │ │ │ ├── ErrorHelpers │ │ │ │ │ └── MissingRequiredPackageReferences.cs │ │ │ │ ├── ExportTargetNotSupported.cs │ │ │ │ ├── PreviewArgumentResolver.cs │ │ │ │ ├── PreviewArguments.cs │ │ │ │ ├── PreviewCommand.cs │ │ │ │ ├── PreviewExported.cs │ │ │ │ ├── PreviewMain.cs │ │ │ │ ├── ResetPreviewCliCommand.cs │ │ │ │ └── UnknownDocumentOrProjectType.cs │ │ │ ├── TutorialCommand.cs │ │ │ └── UriCommand.cs │ │ ├── ExceptionWriter.cs │ │ ├── ExitWithError.cs │ │ ├── HelpTools.cs │ │ ├── LazyCliCommand.cs │ │ ├── Outracks.Fuse.Command.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Table.cs │ │ ├── TableWriter.cs │ │ ├── UnknownCommand.cs │ │ ├── UnoConfigExtensions.cs │ │ ├── VersionWriter.cs │ │ ├── app.config │ │ └── packages.config │ ├── common │ │ ├── Auth │ │ │ ├── Hardware.cs │ │ │ ├── ILicense.cs │ │ │ ├── ILicenseState.cs │ │ │ ├── License.cs │ │ │ ├── LicenseData.cs │ │ │ ├── LicenseStatus.cs │ │ │ ├── Storage.cs │ │ │ ├── UriHandler.cs │ │ │ └── Utilities │ │ │ │ ├── BASE36.cs │ │ │ │ ├── GZip.cs │ │ │ │ └── Win32HardwareInfo.cs │ │ ├── DefaultApplicationWin.cs │ │ ├── ExportTargetNotSupported.cs │ │ ├── FileExtensions.cs │ │ ├── FileFilters.cs │ │ ├── FuseApi.cs │ │ ├── FuseImpl.cs │ │ ├── IFuse.cs │ │ ├── IFuseLauncher.cs │ │ ├── KillAll │ │ │ ├── FuseKiller.cs │ │ │ ├── IFuseKiller.cs │ │ │ ├── MacFuseKiller.cs │ │ │ └── WinFuseKiller.cs │ │ ├── Net │ │ │ └── FuseWebClient.cs │ │ ├── Outracks.Fuse.csproj │ │ ├── Outracks.Fuse.csproj.DotSettings │ │ ├── Parsed.cs │ │ ├── ProjectDetector.cs │ │ ├── ProjectNotFound.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Protocol │ │ │ ├── Auth │ │ │ │ └── LicenseEvent.cs │ │ │ ├── Building │ │ │ │ ├── BuildEnded.cs │ │ │ │ ├── BuildIssueDetected.cs │ │ │ │ ├── BuildLogged.cs │ │ │ │ └── BuildStarted.cs │ │ │ ├── Client.cs │ │ │ ├── ConnectAndGreet.cs │ │ │ ├── ConnectWithReconnect.cs │ │ │ ├── Core │ │ │ │ ├── FocusDesignerRequest.cs │ │ │ │ ├── FocusDesignerResponse.cs │ │ │ │ ├── FocusEditorRequest.cs │ │ │ │ ├── FocusEditorResponse.cs │ │ │ │ ├── Hello.cs │ │ │ │ ├── KillRequest.cs │ │ │ │ ├── KillResponse.cs │ │ │ │ ├── ProjectClosed.cs │ │ │ │ ├── PublishService.cs │ │ │ │ ├── Subscribe.cs │ │ │ │ ├── Unsubscribe.cs │ │ │ │ └── Welcome.cs │ │ │ ├── DaemonKey.cs │ │ │ ├── DaemonSpawner.cs │ │ │ ├── Event.cs │ │ │ ├── IMessage.cs │ │ │ ├── IMessagingService.cs │ │ │ ├── LocalSocketClient.cs │ │ │ ├── LocalSocketServer.cs │ │ │ ├── MessageManager.cs │ │ │ ├── NullObjects.cs │ │ │ ├── PayloadParserContext.cs │ │ │ ├── Preview │ │ │ │ ├── ExceptionEvent.cs │ │ │ │ ├── LogEvent.cs │ │ │ │ ├── ProjectIdComputer.cs │ │ │ │ ├── RegisterClientEvent.cs │ │ │ │ └── TextPosition.cs │ │ │ ├── Request.cs │ │ │ ├── RequestSender.cs │ │ │ ├── ResetPreviewEvent.cs │ │ │ ├── Response.cs │ │ │ ├── SelectionChanged.cs │ │ │ ├── Serializer.cs │ │ │ └── SwitchingMessagingService.cs │ │ ├── SourceFragment.cs │ │ ├── UxExpression.cs │ │ ├── UxSize.cs │ │ ├── UxWriter.cs │ │ ├── WebLinks.cs │ │ ├── app.config │ │ └── packages.config │ ├── daemon │ │ ├── DaemonRunner.cs │ │ ├── EnsureSingleInstanceFactory.cs │ │ ├── EnsureSingleUser.cs │ │ ├── ErrorListIntercepter.cs │ │ ├── Identity.cs │ │ ├── Outracks.Fuse.Daemon.csproj │ │ ├── PluginClient.cs │ │ ├── PluginClients.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReadUntilExtension.cs │ │ ├── ServiceRunner.cs │ │ ├── app.config │ │ └── packages.config │ ├── locale │ │ ├── LocaleCulture.cs │ │ ├── Outracks.Fuse.Locale.csproj │ │ ├── Strings.Designer.cs │ │ ├── Strings.fr-FR.resx │ │ ├── Strings.ko-KR.resx │ │ └── Strings.resx │ ├── sandbox │ │ ├── .gitignore │ │ ├── AutoReloadContent.cs │ │ ├── AutoReloadProgram.cs │ │ ├── Info.plist │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── README.md │ │ ├── Resources │ │ │ └── DIR │ │ ├── app.config │ │ ├── fuse-sandbox.csproj │ │ └── packages.config │ ├── studio │ │ ├── About.cs │ │ ├── Activate.cs │ │ ├── App.config │ │ ├── ApplicationPaths.cs │ │ ├── BehaviorSubjectExtensions.cs │ │ ├── Build.cs │ │ ├── BuildArgs.cs │ │ ├── BuildFlagsWindow.cs │ │ ├── CodeView.cs │ │ ├── Components │ │ │ ├── AndroidBuildTools.cs │ │ │ ├── AtomPlugin.cs │ │ │ ├── ComponentInstaller.cs │ │ │ ├── ComponentInstallers.cs │ │ │ ├── ScriptInstaller.cs │ │ │ ├── SublimePlugin.cs │ │ │ ├── VsCodeExtension.cs │ │ │ └── VsCodePlugin.cs │ │ ├── Controls │ │ │ ├── BrowseButton.cs │ │ │ ├── ConfirmCancelControl.cs │ │ │ └── FilePathControl.cs │ │ ├── Dashboard │ │ │ ├── CreateProject.cs │ │ │ ├── Dashboard.cs │ │ │ ├── ProjectList.cs │ │ │ ├── ProjectListItem.cs │ │ │ └── ProjectListItemControl.cs │ │ ├── ElementContext.cs │ │ ├── Export.cs │ │ ├── ExternalSelection.cs │ │ ├── FocusEditorCommand.cs │ │ ├── Fuse.ico │ │ ├── GlVersionParsing.cs │ │ ├── Icons │ │ │ ├── AlignmentIcon.cs │ │ │ ├── Arrow.png │ │ │ ├── Arrow@2x.png │ │ │ ├── CannotEdit │ │ │ │ ├── Dark.png │ │ │ │ ├── Dark@2x.png │ │ │ │ ├── Light.png │ │ │ │ └── Light@2x.png │ │ │ ├── CharacterLimit.png │ │ │ ├── CharacterLimit@2x.png │ │ │ ├── Checkmark.png │ │ │ ├── Checkmark@2x.png │ │ │ ├── Christmas │ │ │ │ ├── Docs_Illustration.png │ │ │ │ ├── Example_Illustration.png │ │ │ │ ├── Newsletter_Illustration.png │ │ │ │ └── Tutorial_Illustration.png │ │ │ ├── ClassesSmall.png │ │ │ ├── Confirm.png │ │ │ ├── Confirm@2x.png │ │ │ ├── Dashboard │ │ │ │ ├── Community.png │ │ │ │ ├── Community@2x.png │ │ │ │ ├── Docs.png │ │ │ │ ├── Docs@2x.png │ │ │ │ ├── Learn.png │ │ │ │ ├── Learn@2x.png │ │ │ │ ├── LoggedOut_dark.png │ │ │ │ ├── LoggedOut_dark@2x.png │ │ │ │ ├── LoggedOut_light.png │ │ │ │ ├── LoggedOut_light@2x.png │ │ │ │ ├── ProjectIcon.png │ │ │ │ ├── ProjectIcon_dark.png │ │ │ │ ├── ProjectIcon_dark@2x.png │ │ │ │ ├── ProjectIcon_light.png │ │ │ │ └── ProjectIcon_light@2x.png │ │ │ ├── Docs_Illustration.png │ │ │ ├── Docs_Illustration@2x.png │ │ │ ├── DragIconSmall.png │ │ │ ├── DragIconSmallDark.png │ │ │ ├── Edit │ │ │ │ ├── Active.png │ │ │ │ ├── Active@2x.png │ │ │ │ ├── InActive.png │ │ │ │ ├── InActive@2x.png │ │ │ │ ├── Small.png │ │ │ │ └── Small@2x.png │ │ │ ├── Example_Illustration.png │ │ │ ├── Example_Illustration@2x.png │ │ │ ├── ExtractClassDisabled.png │ │ │ ├── ExtractClassDisabled@2x.png │ │ │ ├── ExtractClassEnabled.png │ │ │ ├── ExtractClassEnabled@2x.png │ │ │ ├── Folder.png │ │ │ ├── FontSize.png │ │ │ ├── FontSize@2x.png │ │ │ ├── FuseBusyAnim │ │ │ │ ├── BusyIndicator_0.png │ │ │ │ ├── BusyIndicator_1.png │ │ │ │ ├── BusyIndicator_2.png │ │ │ │ └── BusyIndicator_3.png │ │ │ ├── FuseProLogo_dark@2x.png │ │ │ ├── FuseProLogo_light@2x.png │ │ │ ├── Fuse_Symbol_BLK_WHT.png │ │ │ ├── Fuse_Symbol_BLK_WHT@2x.png │ │ │ ├── HeaderBar │ │ │ │ ├── AddViewport_dark.png │ │ │ │ ├── AddViewport_light.png │ │ │ │ ├── Devices_dark.png │ │ │ │ ├── Devices_light.png │ │ │ │ ├── Maximize_dark.png │ │ │ │ ├── Maximize_light.png │ │ │ │ ├── Minimize_dark.png │ │ │ │ ├── Minimize_light.png │ │ │ │ ├── SelectionOff_dark.png │ │ │ │ ├── SelectionOff_light.png │ │ │ │ ├── SelectionOn_dark.png │ │ │ │ ├── SelectionOn_light.png │ │ │ │ ├── touchOff_dark.png │ │ │ │ ├── touchOff_light.png │ │ │ │ ├── touchOn_dark.png │ │ │ │ └── touchOn_light.png │ │ │ ├── Icons.cs │ │ │ ├── LineSpacing.png │ │ │ ├── LineSpacing@2x.png │ │ │ ├── LogOut.png │ │ │ ├── LogOut@2x.png │ │ │ ├── Maximize.png │ │ │ ├── Maximize@2x.png │ │ │ ├── Minimize.png │ │ │ ├── Minimize@2x.png │ │ │ ├── MinimizeAndMaximizeIcon.cs │ │ │ ├── Newsletter_Illustration.png │ │ │ ├── Newsletter_Illustration@2x.png │ │ │ ├── Plugin_Error.png │ │ │ ├── Plugin_Error@2x.png │ │ │ ├── Plugin_Success.png │ │ │ ├── Plugin_Success@2x.png │ │ │ ├── Plugin_Warning.png │ │ │ ├── Plugin_Warning@2x.png │ │ │ ├── Primitives │ │ │ │ ├── Animator │ │ │ │ │ └── Active.svg │ │ │ │ ├── App │ │ │ │ │ └── Active.svg │ │ │ │ ├── Button │ │ │ │ │ └── Active.svg │ │ │ │ ├── Circle │ │ │ │ │ └── Active.svg │ │ │ │ ├── ClientPanel │ │ │ │ │ └── Active.svg │ │ │ │ ├── DockPanel │ │ │ │ │ └── Active.svg │ │ │ │ ├── Each │ │ │ │ │ └── Active.svg │ │ │ │ ├── Grid │ │ │ │ │ └── Active.svg │ │ │ │ ├── Image │ │ │ │ │ └── Active.svg │ │ │ │ ├── Layout │ │ │ │ │ └── Active.svg │ │ │ │ ├── Page │ │ │ │ │ └── Active.svg │ │ │ │ ├── PageControl │ │ │ │ │ └── Active.svg │ │ │ │ ├── Panel │ │ │ │ │ └── Active.svg │ │ │ │ ├── Rectangle │ │ │ │ │ └── Active.svg │ │ │ │ ├── ScrollView │ │ │ │ │ └── Active.svg │ │ │ │ ├── Shape │ │ │ │ │ └── Active.svg │ │ │ │ ├── StackPanel │ │ │ │ │ └── Active.svg │ │ │ │ ├── Text │ │ │ │ │ └── Active.svg │ │ │ │ ├── TextBased │ │ │ │ │ └── Active.svg │ │ │ │ ├── TextInput │ │ │ │ │ └── Active.svg │ │ │ │ ├── Trigger │ │ │ │ │ └── Active.svg │ │ │ │ └── WrapPanel │ │ │ │ │ └── Active.svg │ │ │ ├── Pro_Illustration.png │ │ │ ├── Pro_Illustration@2x.png │ │ │ ├── SelectionIcon.cs │ │ │ ├── StackIcon.cs │ │ │ ├── TextAlignmentIcon.cs │ │ │ ├── TouchIcon.cs │ │ │ ├── Tutorial_Illustration.png │ │ │ ├── Tutorial_Illustration@2x.png │ │ │ ├── Wrap │ │ │ │ ├── NoWrap.png │ │ │ │ ├── NoWrap@2x.png │ │ │ │ ├── Wrap.png │ │ │ │ └── Wrap@2x.png │ │ │ ├── account.png │ │ │ ├── account@2x.png │ │ │ ├── new-empty-project.png │ │ │ ├── project_dummy.png │ │ │ ├── selection_icon_off.png │ │ │ ├── selection_icon_off@2x.png │ │ │ ├── selection_icon_on.png │ │ │ └── selection_icon_on@2x.png │ │ ├── Import │ │ │ ├── ImportFailed.cs │ │ │ └── ImportOperation.cs │ │ ├── Info.plist │ │ ├── LanguageMenu.cs │ │ ├── MainMenu │ │ │ ├── CheckForUpdates.cs │ │ │ ├── Help.cs │ │ │ ├── MainMenu.cs │ │ │ └── ProjectMenu.cs │ │ ├── MainWindow │ │ │ ├── Busy.cs │ │ │ ├── Hierarchy │ │ │ │ ├── DropPosition.cs │ │ │ │ ├── ITreeRowViewModel.cs │ │ │ │ ├── ITreeViewModel.cs │ │ │ │ ├── InsertionRod.cs │ │ │ │ ├── PendingDrop.cs │ │ │ │ ├── TreeRowView.cs │ │ │ │ ├── TreeView.cs │ │ │ │ ├── TreeViewModel.RowModel.cs │ │ │ │ └── TreeViewModel.cs │ │ │ ├── Inspector │ │ │ │ ├── AttributeIntercepter.cs │ │ │ │ ├── CellLayout.cs │ │ │ │ ├── Editors │ │ │ │ │ ├── Color.cs │ │ │ │ │ ├── Dropdown.cs │ │ │ │ │ ├── EditorControl.cs │ │ │ │ │ ├── Expression.cs │ │ │ │ │ ├── Factory.cs │ │ │ │ │ ├── Field.cs │ │ │ │ │ ├── FilePathEditor.cs │ │ │ │ │ ├── Label.cs │ │ │ │ │ ├── List.cs │ │ │ │ │ ├── ListButtons.cs │ │ │ │ │ ├── RadioButton.cs │ │ │ │ │ ├── Slider.cs │ │ │ │ │ └── Switch.cs │ │ │ │ ├── IEditorFactory.cs │ │ │ │ ├── Inspector.cs │ │ │ │ └── Sections │ │ │ │ │ ├── Advanced.cs │ │ │ │ │ ├── Advanced │ │ │ │ │ ├── Attributes.cs │ │ │ │ │ ├── Layout.cs │ │ │ │ │ ├── Layout │ │ │ │ │ │ ├── AlignmentEditor.cs │ │ │ │ │ │ ├── CustomRadioButton.cs │ │ │ │ │ │ ├── DockEditor.cs │ │ │ │ │ │ ├── ElementDockPanelExtensions.cs │ │ │ │ │ │ └── Spacing.cs │ │ │ │ │ ├── SizePosition.cs │ │ │ │ │ ├── Style.cs │ │ │ │ │ ├── Style │ │ │ │ │ │ ├── DropShadow.cs │ │ │ │ │ │ ├── LinearGradient.cs │ │ │ │ │ │ ├── SolidColor.cs │ │ │ │ │ │ └── Stroke.cs │ │ │ │ │ ├── Transform.cs │ │ │ │ │ ├── Transform │ │ │ │ │ │ └── Rotation.cs │ │ │ │ │ └── Visibility.cs │ │ │ │ │ ├── Common.cs │ │ │ │ │ └── Common │ │ │ │ │ ├── Circle.cs │ │ │ │ │ ├── Each.cs │ │ │ │ │ ├── Grid.cs │ │ │ │ │ ├── Image.cs │ │ │ │ │ ├── ScrollView.cs │ │ │ │ │ ├── StackPanel.cs │ │ │ │ │ ├── Text.cs │ │ │ │ │ ├── TextInput.cs │ │ │ │ │ └── WrapPanel.cs │ │ │ ├── LogView │ │ │ │ ├── ErrorView.cs │ │ │ │ ├── LogView.cs │ │ │ │ ├── LogViewHeader.cs │ │ │ │ └── LogViewTab.cs │ │ │ ├── MainWindow.cs │ │ │ ├── MainWindowIcons.cs │ │ │ ├── Notification.cs │ │ │ ├── Stage │ │ │ │ ├── FocusBox.cs │ │ │ │ ├── Gizmos │ │ │ │ │ ├── BoxFactory.cs │ │ │ │ │ ├── ChangeSelection.cs │ │ │ │ │ ├── ChangeTool.cs │ │ │ │ │ ├── Gizmos.cs │ │ │ │ │ ├── HitBoxes.cs │ │ │ │ │ └── PluginUnoHelpers.cs │ │ │ │ ├── IStage.cs │ │ │ │ ├── IViewport.cs │ │ │ │ ├── Primitives.cs │ │ │ │ ├── StageController.cs │ │ │ │ ├── StageView.cs │ │ │ │ ├── ViewportController.cs │ │ │ │ ├── ViewportFactory.cs │ │ │ │ └── VirtualDevices │ │ │ │ │ ├── DeviceScreen.cs │ │ │ │ │ ├── Devices.cs │ │ │ │ │ ├── DevicesMenu.cs │ │ │ │ │ ├── MalformedDeviceInfo.cs │ │ │ │ │ ├── PreviewDevices.cs │ │ │ │ │ ├── VirtualDevice.cs │ │ │ │ │ └── devices.json │ │ │ └── Toolbox │ │ │ │ └── Toolbox.cs │ │ ├── NagScreen.cs │ │ ├── OpenFolder.cs │ │ ├── OpenProject.cs │ │ ├── OpenTerminal.cs │ │ ├── OpenTextEditor.cs │ │ ├── PreviewOnDevice.cs │ │ ├── Program.cs │ │ ├── Project │ │ │ ├── Attribute.Convert.cs │ │ │ ├── Attribute.Focus.cs │ │ │ ├── Attribute.cs │ │ │ ├── Converters │ │ │ │ ├── Angle.cs │ │ │ │ ├── Boolean.cs │ │ │ │ ├── Color.cs │ │ │ │ ├── Enum.cs │ │ │ │ ├── Scalar.cs │ │ │ │ ├── String.cs │ │ │ │ ├── TimeSpan.cs │ │ │ │ ├── UxSize.cs │ │ │ │ └── Vector.cs │ │ │ ├── Element.Empty.cs │ │ │ ├── Element.Subtree.cs │ │ │ ├── Element.Switch.cs │ │ │ ├── Element.cs │ │ │ ├── IAttribute.cs │ │ │ ├── IContext.cs │ │ │ ├── IDocument.cs │ │ │ ├── IElement.cs │ │ │ ├── ILiveElement.cs │ │ │ ├── IProject.cs │ │ │ ├── Live │ │ │ │ ├── Context.cs │ │ │ │ ├── FileWatchingDocument.cs │ │ │ │ ├── LiveDocument.cs │ │ │ │ ├── LiveElement.CutCopyPaste.cs │ │ │ │ ├── LiveElement.Is.cs │ │ │ │ ├── LiveElement.IsChildOf.cs │ │ │ │ ├── LiveElement.IsSiblingOf.cs │ │ │ │ ├── LiveElement.Update.cs │ │ │ │ ├── LiveElement.cs │ │ │ │ ├── LiveProject.cs │ │ │ │ ├── ProjectWatcher.cs │ │ │ │ ├── PushEventsToDaemon.cs │ │ │ │ └── XElementExtensions.cs │ │ │ ├── SpecialProperties.cs │ │ │ └── Where.cs │ │ ├── ProjectData.cs │ │ ├── ProjectHost.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RecentProjects.cs │ │ ├── Refactoring │ │ │ ├── ClassExtractor.cs │ │ │ ├── ExtractClassButtonViewModel.cs │ │ │ ├── ExtractClassView.cs │ │ │ ├── ExtractClassViewModel.cs │ │ │ ├── IClassExtractor.cs │ │ │ ├── IExtractClassButtonViewModel.cs │ │ │ ├── IExtractClassViewModel.cs │ │ │ └── OverlayConfirmCancelDialog.cs │ │ ├── RespondToFocusRequests.cs │ │ ├── Setup │ │ │ ├── InstallStatus.cs │ │ │ ├── MissingAndroidNotification.cs │ │ │ ├── MissingPluginNotification.cs │ │ │ ├── SetupGuide.cs │ │ │ ├── SoftwareStatus.cs │ │ │ ├── SublimeAppStatus.cs │ │ │ ├── SublimePluginStatus.cs │ │ │ ├── VsCodeAppStatus.cs │ │ │ └── VsCodeExtensionStatus.cs │ │ ├── SimulatorNotifications.cs │ │ ├── Sketch │ │ │ ├── SketchLogWrapper.cs │ │ │ ├── SketchWatchExtensions.cs │ │ │ └── SketchWatcher.cs │ │ ├── Templates │ │ │ ├── DirectoryToNamespace.cs │ │ │ ├── FileAlreadyExist.cs │ │ │ ├── ITemplateVariableResolver.cs │ │ │ ├── NamespaceName.cs │ │ │ ├── ProjectFolderNotEmpty.cs │ │ │ ├── SpawnTemplate.cs │ │ │ ├── Template.cs │ │ │ ├── TemplateLoader.cs │ │ │ ├── TemplateManifestParser.cs │ │ │ ├── TemplateParseError.cs │ │ │ ├── TemplateParser.cs │ │ │ ├── TemplateSpawner.cs │ │ │ ├── TemplateToken.cs │ │ │ └── TemplateVariableResolver.cs │ │ ├── Testing │ │ │ ├── ConsoleOutputWindow.cs │ │ │ ├── Debug.cs │ │ │ ├── IconPreviewWindow.cs │ │ │ ├── RandomMutatorWindow.cs │ │ │ └── RandomUxMutator.cs │ │ ├── Texts.cs │ │ ├── Theming │ │ │ ├── Arrow.cs │ │ │ ├── Buttons.cs │ │ │ ├── CheckBox.cs │ │ │ ├── LogoAndVersion.cs │ │ │ ├── Modal.cs │ │ │ ├── Popover.cs │ │ │ ├── Separator.cs │ │ │ ├── Spacer.cs │ │ │ ├── Theme.cs │ │ │ ├── ThemedButton.cs │ │ │ ├── ThemedTextBox.cs │ │ │ └── Themes │ │ │ │ ├── ColorMap.cs │ │ │ │ ├── ITheme.cs │ │ │ │ ├── OriginalDarkTheme.cs │ │ │ │ ├── OriginalLightTheme.cs │ │ │ │ └── Themes.cs │ │ ├── USBMode.cs │ │ ├── app.manifest │ │ ├── fuse-studio.csproj │ │ ├── fuse-studio.csproj.DotSettings │ │ └── packages.config │ ├── system-test │ │ ├── FuseRunner.cs │ │ ├── IOHelpers.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── README.md │ │ ├── ScreenCapture.cs │ │ ├── SystemTest.cs │ │ ├── TestHelpers.cs │ │ ├── Tests │ │ │ ├── AutomaticTestApp.cs │ │ │ ├── FuseBuild.cs │ │ │ ├── FuseCreate.cs │ │ │ ├── FuseImport.cs │ │ │ ├── FuseInstallAndroid.cs │ │ │ └── PreviewTest.cs │ │ ├── packages.config │ │ └── system-test.csproj │ ├── tests │ │ ├── ApplicationPathsTests.cs │ │ ├── Common │ │ │ └── ContextTests.cs │ │ ├── Components │ │ │ └── ComponentInstallerTests.cs │ │ ├── Create │ │ │ ├── ProjectAddRemoveCornerCaseTests.cs │ │ │ ├── ProjectMoveTests.cs │ │ │ ├── ProjectRedundancyEliminationTests.cs │ │ │ ├── ProjectTest.cs │ │ │ ├── TemplateTest.cs │ │ │ └── TemplateVariableResolverDummy.cs │ │ ├── EnvironmentTest.cs │ │ ├── FailureClient.cs │ │ ├── FileWatchingDocumentTest.cs │ │ ├── Hierarchy │ │ │ ├── LiveElementExtensions.cs │ │ │ └── TreeViewModelTests.cs │ │ ├── LiveElementFactory.cs │ │ ├── Main │ │ │ ├── BuildArgsTests.cs │ │ │ ├── GlVersionParsingTests.cs │ │ │ └── SelectionTests.cs │ │ ├── Markup │ │ │ ├── ElementTest.cs │ │ │ └── SourceFragmentTest.cs │ │ ├── MessageDatabase.cs │ │ ├── MessageDatabaseItem.cs │ │ ├── MessageIntegrityTests.cs │ │ ├── Messages │ │ │ ├── GetCodeSuggestionResponse.msgDB │ │ │ ├── GetCodeSuggestionsRequest.msgDB │ │ │ ├── GotoDefinitionRequest.msgDB │ │ │ ├── GotoDefinitionResponse.msgDB │ │ │ ├── HelloRequest.msgDB │ │ │ └── HelloResponse.msgDB │ │ ├── Outracks.Fuse.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Refactoring │ │ │ ├── ClassExtractorTests.cs │ │ │ ├── ExtractClassButtonViewModelTests.cs │ │ │ └── ExtractClassViewModelTests.cs │ │ ├── Setup │ │ │ └── ComponentStatusExetensionsTest.cs │ │ ├── Sketch │ │ │ └── SketchWatcherTests.cs │ │ ├── Solution │ │ │ ├── NugetPackageElement.cs │ │ │ ├── SolutionTestsHelper.cs │ │ │ └── SolutionVersioningTests.cs │ │ ├── SublimeTest │ │ │ ├── SublimeTest.unosln │ │ │ └── SublimeTest │ │ │ │ ├── MyApp.ux │ │ │ │ ├── MyApp.ux.uno │ │ │ │ ├── SublimeTest.unoproj │ │ │ │ └── fe9b89d9-92a6-4d98-8b6e-f4ae020149bf.dmp │ │ ├── VersionWriterTests.cs │ │ ├── app.config │ │ └── packages.config │ └── tray │ │ ├── Fuse.ico │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── app.config │ │ ├── fuse-tray.csproj │ │ └── packages.config ├── fusion │ ├── README.md │ ├── core │ │ ├── Animation.cs │ │ ├── Application.cs │ │ ├── AutoReload │ │ │ ├── AutoReload.cs │ │ │ └── ControlFactory.cs │ │ ├── BehaviorProperty.cs │ │ ├── Brush.cs │ │ ├── Clipping.cs │ │ ├── Color.cs │ │ ├── Command.cs │ │ ├── ContextMenu.cs │ │ ├── Control.Bind.cs │ │ ├── Control.Empty.cs │ │ ├── Control.Lazy.cs │ │ ├── Control.WithFrame.cs │ │ ├── Control.WithSize.cs │ │ ├── Control.cs │ │ ├── Controls │ │ │ ├── Button.cs │ │ │ ├── CachedImageBase.cs │ │ │ ├── ColorPicker.cs │ │ │ ├── DropDown.cs │ │ │ ├── IColorMap.cs │ │ │ ├── IImage.cs │ │ │ ├── Image.cs │ │ │ ├── Label.cs │ │ │ ├── LogView.cs │ │ │ ├── MountLocation.cs │ │ │ ├── MultiResolutionImage.cs │ │ │ ├── NativeControl.cs │ │ │ ├── Shapes.cs │ │ │ ├── Slider.cs │ │ │ ├── SvgImage.cs │ │ │ ├── TextBox.cs │ │ │ └── WebView.cs │ │ ├── CornerRadius.cs │ │ ├── Cursor.cs │ │ ├── DebugControl.cs │ │ ├── Diagnostics │ │ │ └── ConsoleTraceExtensions.cs │ │ ├── Dialogs │ │ │ ├── FileDialog.cs │ │ │ └── MessageBox.cs │ │ ├── Document.cs │ │ ├── Dragging.cs │ │ ├── DropOperation.cs │ │ ├── Effects.cs │ │ ├── Environments │ │ │ ├── MacEnvironment.cs │ │ │ └── WindowsEnvironment.cs │ │ ├── Font.cs │ │ ├── FpsProfiler.cs │ │ ├── HotKey.cs │ │ ├── IBehaviorProperty.cs │ │ ├── IDialog.cs │ │ ├── Icon.cs │ │ ├── Key.cs │ │ ├── Keyboard.cs │ │ ├── Layout │ │ │ ├── Center.cs │ │ │ ├── Collapsable.cs │ │ │ ├── Dock.cs │ │ │ ├── DockBuilder.cs │ │ │ ├── Grid.cs │ │ │ ├── Layer.cs │ │ │ ├── LayoutTracker.cs │ │ │ ├── ObservableMath.cs │ │ │ ├── Scissor.cs │ │ │ ├── Stack.cs │ │ │ ├── Subdivide.cs │ │ │ ├── Switch.cs │ │ │ ├── WithFixedPosition.cs │ │ │ ├── WithPadding.cs │ │ │ ├── WithTransformation.cs │ │ │ └── Wrap.cs │ │ ├── Menus │ │ │ ├── Menu.cs │ │ │ └── MenuItem.cs │ │ ├── ModifierKeys.cs │ │ ├── ObservableList │ │ │ ├── IConnectableObservableList.cs │ │ │ ├── IListBehavior.cs │ │ │ ├── IListObserver.cs │ │ │ ├── IListSubject.cs │ │ │ ├── IObservableList.cs │ │ │ ├── ListBehaviorSubject.cs │ │ │ ├── ListChange.cs │ │ │ ├── Operators │ │ │ │ ├── AggregateAssoc.cs │ │ │ │ ├── Concat.cs │ │ │ │ ├── ConnectWhile.cs │ │ │ │ ├── Count.cs │ │ │ │ ├── Create.cs │ │ │ │ ├── DisposeElements.cs │ │ │ │ ├── Join.cs │ │ │ │ ├── Observable.cs │ │ │ │ ├── RefCount.cs │ │ │ │ ├── Replay.cs │ │ │ │ ├── Select.cs │ │ │ │ ├── SeparateBy.cs │ │ │ │ ├── Switch.cs │ │ │ │ └── Where.cs │ │ │ ├── SumTree.Operations.cs │ │ │ └── SumTree.cs │ │ ├── Outracks.Fusion.Core.csproj │ │ ├── Outracks.Fusion.Core.csproj.DotSettings │ │ ├── Platform │ │ │ ├── FileFilter.cs │ │ │ ├── IFileDialogs.cs │ │ │ ├── IMessageBox.cs │ │ │ ├── INotifier.cs │ │ │ └── ITrayApplication.cs │ │ ├── Pointer.cs │ │ ├── PoolPerElement.cs │ │ ├── Positioned.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Property │ │ │ ├── IProperty.cs │ │ │ ├── Operators │ │ │ │ ├── AutoInvalidate.cs │ │ │ │ ├── ConnectWhile.cs │ │ │ │ ├── Convert.cs │ │ │ │ ├── Deferred.cs │ │ │ │ ├── Distinct.cs │ │ │ │ ├── Or.cs │ │ │ │ ├── PreventFeedback.cs │ │ │ │ ├── Switch.cs │ │ │ │ └── With.cs │ │ │ ├── Sources │ │ │ │ ├── Constant.cs │ │ │ │ ├── Mutable.cs │ │ │ │ └── Observable.cs │ │ │ ├── SubscriberTrackingObservable.cs │ │ │ └── SubscriberTrackingProperty.cs │ │ ├── PropertyBindingExtensions.cs │ │ ├── Resizable.cs │ │ ├── ScrollBounds.cs │ │ ├── Scrolling.cs │ │ ├── Shell.cs │ │ ├── Stroke.cs │ │ ├── Threading │ │ │ ├── DispatcherBase.cs │ │ │ ├── DispatcherQueue.cs │ │ │ ├── PollingDispatcher.cs │ │ │ ├── QueuedDispatcher.cs │ │ │ └── SingleThreadDispatcherBase.cs │ │ ├── TogglePropertyCommand.cs │ │ ├── ToolTip.cs │ │ ├── UpdateSubjectCommand.cs │ │ ├── UserSettings │ │ │ ├── FusionJsonSerializer.cs │ │ │ ├── PersistentProperty.cs │ │ │ ├── PersistentSettings.cs │ │ │ └── UserSettings.cs │ │ ├── ValidatedProperty.cs │ │ ├── Window.cs │ │ └── packages.config │ ├── docs │ │ ├── GettingStarted.md │ │ ├── Reference.md │ │ └── images │ │ │ ├── Center.png │ │ │ ├── CenterHorizontally.png │ │ │ ├── CenterVertically.png │ │ │ ├── Compose.png │ │ │ ├── Dock.png │ │ │ ├── DockTopRight.png │ │ │ ├── DockTwice.png │ │ │ ├── MakeScrollable.gif │ │ │ ├── NoCenter.png │ │ │ ├── Padding.png │ │ │ ├── PaddingPoints.png │ │ │ ├── StackFromRight.png │ │ │ ├── StackFromTop.png │ │ │ ├── WithSize.png │ │ │ └── WithWidth.png │ ├── integration-tests │ │ ├── .gitignore │ │ ├── ControlLeakTests.cs │ │ ├── ControlTestExtensions.cs │ │ ├── Info.plist │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ └── DIR │ │ ├── app.config │ │ ├── integration-tests.csproj │ │ └── packages.config │ ├── mac │ │ ├── AppDelegate.cs │ │ ├── AppDelegate.designer.cs │ │ ├── Application.cs │ │ ├── Controls │ │ │ ├── ButtonImplementation.cs │ │ │ ├── ColorPickerImplementation.cs │ │ │ ├── ContextMenuImplementation.cs │ │ │ ├── DelegateObserver.cs │ │ │ ├── DropDownImplementation.cs │ │ │ ├── ImageImplementation.cs │ │ │ ├── LabelImplementation.cs │ │ │ ├── LayoutTrackerImplementation.cs │ │ │ ├── LogViewImplementation.cs │ │ │ ├── ScrollingImplementation.cs │ │ │ ├── Shapes │ │ │ │ ├── CircleImplementation.cs │ │ │ │ ├── LineImplementation.cs │ │ │ │ ├── NSCircle.cs │ │ │ │ ├── NSLine.cs │ │ │ │ ├── NSRectangle.cs │ │ │ │ ├── NSShape.cs │ │ │ │ ├── RectangleImplementation.cs │ │ │ │ └── ShapeControl.cs │ │ │ ├── SliderImplementation.cs │ │ │ ├── TextBoxImplementation.cs │ │ │ └── WebViewImplementation.cs │ │ ├── CursorsImplementation.cs │ │ ├── DataBinding.cs │ │ ├── Dispatcher.cs │ │ ├── DraggingImplementation.cs │ │ ├── EffectsImplementation.cs │ │ ├── FileDialogs.cs │ │ ├── KeyboardImplementation.cs │ │ ├── LayeringImplementation.cs │ │ ├── MacEnvironmentImpl.cs │ │ ├── MainThread.cs │ │ ├── Marshalling.cs │ │ ├── MenuBuilder.cs │ │ ├── MessageBox.cs │ │ ├── MessageBoxImplementation.cs │ │ ├── MonoMacGraphicsContext.cs │ │ ├── MonoMacNotifier.cs │ │ ├── MonoMacTrayApplication.cs │ │ ├── NSDefaultView.cs │ │ ├── ObjCRuntime │ │ │ └── Messaging.cs │ │ ├── ObservableNSDocument.cs │ │ ├── Outracks.Fusion.Mac.csproj │ │ ├── Outracks.Fusion.Mac.csproj.DotSettings │ │ ├── OverlayImplementation.cs │ │ ├── PermissionOSX.cs │ │ ├── PointerImplementation.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ShellOSX.cs │ │ ├── ToolTipImplementation.cs │ │ ├── Transformation.cs │ │ ├── WindowImplementation.cs │ │ └── packages.config │ ├── tests │ │ ├── CenterTest.cs │ │ ├── ControlMemoryOverheadTests.cs │ │ ├── CopyTests.cs │ │ ├── DefaultControl.cs │ │ ├── DispatcherBaseTests.cs │ │ ├── DockBuilderTest.cs │ │ ├── DockTest.cs │ │ ├── FileWatchingTest.cs │ │ ├── FrameTest.cs │ │ ├── ImageTests.cs │ │ ├── Images │ │ │ ├── GreenBox.svg │ │ │ ├── GreenHalfPixel.svg │ │ │ └── HalfTransparentBox.svg │ │ ├── LazyTest.cs │ │ ├── ListChange.cs │ │ ├── MultiResolutionImageTests.cs │ │ ├── NSObjectTest.cs │ │ ├── ObservableList │ │ │ ├── ConcatTest.cs │ │ │ ├── CountTest.cs │ │ │ ├── DisposeElementsTest.cs │ │ │ ├── ListBehaviorSubjectTest.cs │ │ │ ├── ReplayTest.cs │ │ │ ├── SeparateByTest.cs │ │ │ ├── SwitchTest.cs │ │ │ └── WhereTest.cs │ │ ├── ObserveOnTest.cs │ │ ├── Outracks.Fusion.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── PropertyBindingExtensionsTests.cs │ │ ├── PropertyTests.cs │ │ ├── ScissorTest.cs │ │ ├── SubdivideTest.cs │ │ ├── SumTree.cs │ │ ├── SvgTests.cs │ │ ├── TestControl.cs │ │ ├── UserSettingsSerializationTest.cs │ │ ├── UserSettingsTest.cs │ │ ├── WithSizeTest.cs │ │ └── packages.config │ └── win │ │ ├── Application.cs │ │ ├── BalloonNotifier.cs │ │ ├── ContextMenuImplementation.cs │ │ ├── Controls │ │ ├── ButtonImplementation.cs │ │ ├── CircleImplementation.cs │ │ ├── ClippingImplementation.cs │ │ ├── ColorPickerImplementation.cs │ │ ├── DropDownImplementation.cs │ │ ├── ImageImplementation.cs │ │ ├── LabelImplementation.cs │ │ ├── LayoutTrackerImplementation.cs │ │ ├── LineImplementation.cs │ │ ├── LogViewImplementation.cs │ │ ├── RectangleImplementation.cs │ │ ├── ShapeControl.cs │ │ ├── SliderImplementation.cs │ │ ├── TextBoxImplementation.cs │ │ ├── WebViewImplementation.cs │ │ └── WindowFromControl.cs │ │ ├── CursorsImplementation.cs │ │ ├── CustomTitlebar.cs │ │ ├── DataBinding.cs │ │ ├── Dispatcher.cs │ │ ├── DocumentAppHandler.cs │ │ ├── DpiAwareForm.cs │ │ ├── DpiAwareWindow.cs │ │ ├── DpiAwareness.cs │ │ ├── DraggingImplementation.cs │ │ ├── EffectsImplementation.cs │ │ ├── FancyWindow.xaml │ │ ├── FancyWindow.xaml.cs │ │ ├── FileDialogs.cs │ │ ├── FilterString.cs │ │ ├── Fuse.ico │ │ ├── KeyboardImplementation.cs │ │ ├── Marshalling.cs │ │ ├── Outracks.Fusion.Windows.csproj │ │ ├── Outracks.Fusion.Windows.csproj.DotSettings │ │ ├── OverlayForm.cs │ │ ├── OverlayImplementation.cs │ │ ├── OverlayWindow.xaml │ │ ├── OverlayWindow.xaml.cs │ │ ├── PermissionWin.cs │ │ ├── PointerImplementation.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ ├── NativeResources.cs │ │ ├── grab.cur │ │ └── grabbing.cur │ │ ├── ScrollBar.xaml │ │ ├── ScrollingImplementation.cs │ │ ├── ShellWin.cs │ │ ├── StyleResources.xaml │ │ ├── ToolTipImplementation.cs │ │ ├── Transformation.cs │ │ ├── VerticalSynchronization.cs │ │ ├── WinApi.cs │ │ ├── WinFormMenuBuilder.cs │ │ ├── WinFormMenuShortcutExtensions.cs │ │ ├── WinFormsMessageBox.cs │ │ ├── WindowImplementation.cs │ │ ├── WindowPlacement.cs │ │ ├── WindowWithOverlays.cs │ │ ├── WindowsMenuBuilder.cs │ │ ├── WindowsTrayApplication.cs │ │ ├── WpfCommand.cs │ │ └── packages.config ├── mac │ ├── logserver │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── main.cpp │ │ ├── singleproc.cpp │ │ ├── singleproc.h │ │ ├── socketserver.cpp │ │ ├── socketserver.h │ │ ├── test.sh │ │ └── testclient.cpp │ ├── menu-bar │ │ ├── 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 │ │ ├── Main.cs │ │ ├── MainMenu.xib │ │ ├── Resources │ │ │ └── Fuse.icns │ │ └── fuse X (menu bar).csproj │ ├── monostub │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── fonts.conf │ │ ├── monostub-console.m │ │ ├── monostub-utils.h │ │ └── monostub.m │ ├── msbuild │ │ ├── FrameworkList.xml │ │ ├── Xamarin.ImplicitFacade.targets │ │ ├── Xamarin.Localization.MSBuild.dll │ │ ├── Xamarin.Localization.MSBuild.pdb │ │ ├── Xamarin.Mac.AppExtension.CSharp.targets │ │ ├── Xamarin.Mac.AppExtension.Common.props │ │ ├── Xamarin.Mac.AppExtension.Common.targets │ │ ├── Xamarin.Mac.CSharp.targets │ │ ├── Xamarin.Mac.Common.props │ │ ├── Xamarin.Mac.Common.targets │ │ ├── Xamarin.Mac.FSharp.targets │ │ ├── Xamarin.Mac.ObjCBinding.CSharp.props │ │ ├── Xamarin.Mac.ObjCBinding.CSharp.targets │ │ ├── Xamarin.Mac.ObjCBinding.Common.props │ │ ├── Xamarin.Mac.ObjCBinding.Common.targets │ │ ├── Xamarin.Mac.TargetFrameworkFix.targets │ │ ├── Xamarin.Mac.Tasks.dll │ │ ├── Xamarin.Mac.Tasks.pdb │ │ ├── Xamarin.Mac.msbuild.targets │ │ ├── Xamarin.Shared.ObjCBinding.targets │ │ ├── Xamarin.Shared.Stubs.targets │ │ ├── Xamarin.Shared.props │ │ ├── Xamarin.Shared.targets │ │ ├── cs │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── de │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── es │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── fr │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── it │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── ja │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── ko │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── pl │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── pt-BR │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── ru │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── tr │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ ├── zh-Hans │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ │ └── zh-Hant │ │ │ └── Xamarin.Localization.MSBuild.resources.dll │ ├── studio │ │ ├── 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 │ │ ├── Main.cs │ │ ├── Resources │ │ │ ├── FuseBigSur.icns │ │ │ └── Unoproj.icns │ │ └── fuse X.csproj │ └── wpf │ │ ├── PresentationCore.dll │ │ ├── System.Windows.Input.Manipulations.dll │ │ ├── UIAutomationProvider.dll │ │ └── UIAutomationTypes.dll ├── ninja │ ├── Outracks.CodeCompletion.CodeNinja.Tests │ │ ├── CodeReader.cs │ │ ├── DummyEngine.cs │ │ ├── Loggers │ │ │ ├── ConsoleLogger.cs │ │ │ ├── ILogger.cs │ │ │ └── TeamCityLogger.cs │ │ ├── Outracks.CodeCompletion.CodeNinja.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test.cs │ │ ├── Tests │ │ │ ├── Arrays.cs │ │ │ ├── ClassBody.cs │ │ │ ├── ClassBody2.cs │ │ │ ├── ClassBody3.cs │ │ │ ├── ClassBody4.cs │ │ │ ├── ClassBody5.cs │ │ │ ├── ClassBody6.cs │ │ │ ├── ClassBody7.cs │ │ │ ├── ClassBody8.cs │ │ │ ├── Comments.cs │ │ │ ├── CompileErrors.cs │ │ │ ├── Context.cs │ │ │ ├── Delegate.cs │ │ │ ├── DemoTest.cs │ │ │ ├── DrawScope.cs │ │ │ ├── EnumTest.cs │ │ │ ├── Event.cs │ │ │ ├── ExtensionTypeMethod.cs │ │ │ ├── Floats.cs │ │ │ ├── GDC.cs │ │ │ ├── GenericsTest.cs │ │ │ ├── GetSet.cs │ │ │ ├── ImportAndApply.cs │ │ │ ├── Interface.cs │ │ │ ├── Jonny1.cs │ │ │ ├── Keywords.cs │ │ │ ├── KrissTests3.cs │ │ │ ├── KristianTests.cs │ │ │ ├── KristianTests2.cs │ │ │ ├── List.cs │ │ │ ├── Locals.cs │ │ │ ├── MetaProperties.cs │ │ │ ├── MethodBody.cs │ │ │ ├── MethodBody2.cs │ │ │ ├── MethodBody3.cs │ │ │ ├── MethodBody4.cs │ │ │ ├── MethodBody5.cs │ │ │ ├── MethodBody6.cs │ │ │ ├── MethodBody7.cs │ │ │ ├── MethodReturn.cs │ │ │ ├── MethodVariables.cs │ │ │ ├── NewTest.cs │ │ │ ├── NoHintScenarios.cs │ │ │ ├── Numbers.cs │ │ │ ├── Override.cs │ │ │ ├── PrivateMembers.cs │ │ │ ├── StaticMemberAccess.cs │ │ │ ├── SwitchCase.cs │ │ │ ├── SwizzlerTypes.cs │ │ │ ├── TryCatch.cs │ │ │ ├── Using_.cs │ │ │ ├── Using_Static.cs │ │ │ ├── iterator.cs │ │ │ └── loops.cs │ │ ├── app.config │ │ └── packages.config │ ├── Outracks.CodeCompletion.CodeNinja │ │ ├── AmbientParser │ │ │ ├── Context.cs │ │ │ ├── ICodeReader.cs │ │ │ ├── IUnoCodeReader.cs │ │ │ ├── Node.cs │ │ │ ├── Parser.ClassBody.cs │ │ │ ├── Parser.Root.cs │ │ │ └── Parser.cs │ │ ├── CodeCompleter │ │ │ ├── CodeCompleter.DrawStatement.cs │ │ │ ├── CodeCompleter.FunctionBody.cs │ │ │ ├── CodeCompleter.MemberExpression.cs │ │ │ ├── CodeCompleter.PeekHelpers.cs │ │ │ ├── CodeCompleter.QuickWins.New.cs │ │ │ ├── CodeCompleter.QuickWins.cs │ │ │ ├── CodeCompleter.Suggest.cs │ │ │ ├── CodeCompleter.SuggestBlock.cs │ │ │ ├── CodeCompleter.SuggestFiles.cs │ │ │ ├── CodeCompleter.SuggestImportAndApply.cs │ │ │ ├── CodeCompleter.SuggestMembers.cs │ │ │ ├── CodeCompleter.SuggestNodePathTypes.cs │ │ │ ├── CodeCompleter.SuggestOverrides.cs │ │ │ ├── CodeCompleter.SuggestTypes.cs │ │ │ ├── CodeCompleter.SuggestUsing.cs │ │ │ ├── CodeCompleter.TypeBody.cs │ │ │ └── CodeCompleter.cs │ │ ├── CodeNinjaBuild.cs │ │ ├── CodeReader.cs │ │ ├── DocumentationComment.cs │ │ ├── DocumentationHinter │ │ │ ├── DocumentationCache.cs │ │ │ ├── DocumentationHinter.Helpers.cs │ │ │ └── DocumentationHinter.cs │ │ ├── GoToDefinition.cs │ │ ├── Outracks.CodeCompletion.CodeNinja.csproj │ │ ├── ParameterInfoSuggester.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── Outracks.CodeCompletion.NRefactoryInterop │ │ ├── GotoDefinitionFactory.cs │ │ ├── Outracks.CodeCompletion.NRefactoryInterop.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SuggestionsFactory.cs │ │ ├── UXNinja │ │ │ ├── Attribute.cs │ │ │ ├── CodeReader.cs │ │ │ ├── Context.cs │ │ │ ├── CreateUXSuggestions.cs │ │ │ ├── ElementContext.cs │ │ │ ├── NRefactoryExtensions.cs │ │ │ └── SourceEntityFactoryUX.cs │ │ ├── app.config │ │ └── packages.config │ ├── Outracks.CodeCompletion.UXNinja.PerformanceTests.Client │ │ ├── BasicTypes │ │ │ ├── CommandLineOptions.cs │ │ │ └── Mono.Options │ │ │ │ └── Options.cs │ │ ├── Outracks.CodeCompletion.UXNinja.PerformanceTests.Client.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Outracks.CodeCompletion.UXNinja.PerformanceTests.Core │ │ ├── Attributes │ │ │ ├── IgnorePerformanceTestAttribute.cs │ │ │ └── PerformanceTestAttribute.cs │ │ ├── Context │ │ │ ├── IContext.cs │ │ │ └── UxPerformanceTestContext.cs │ │ ├── Loggers │ │ │ ├── BaseResultLogger.cs │ │ │ ├── IResultLogger.cs │ │ │ ├── LoggersEntities │ │ │ │ ├── EventEntity.cs │ │ │ │ └── ProjectEntity.cs │ │ │ ├── ResultFileLogger.cs │ │ │ ├── ResultFtpLogger.cs │ │ │ ├── ResultLoggersFactory.cs │ │ │ └── XmlTool.cs │ │ ├── Outracks.CodeCompletion.UXNinja.PerformanceTests.Core.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Runner │ │ │ ├── PerformanceTestRunner.cs │ │ │ └── RunnerOptions.cs │ │ ├── TestBase.cs │ │ ├── app.config │ │ └── packages.config │ ├── Outracks.CodeCompletion.UXNinja.PerformanceTests │ │ ├── Outracks.CodeCompletion.UXNinja.PerformanceTests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SomeTest.cs │ │ └── app.config │ ├── Outracks.CodeCompletion.UXNinja.Tests │ │ ├── Outracks.CodeCompletion.UXNinja.Tests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestBase.cs │ │ ├── Tests │ │ │ ├── StartAttributeName.cs │ │ │ ├── StartTagName.cs │ │ │ └── ValueSuggestion.cs │ │ ├── app.config │ │ └── packages.config │ ├── Outracks.CodeCompletion.UXNinja.TestsCommon │ │ ├── DummyReader.cs │ │ ├── DummySource.cs │ │ ├── DummySourcePackage.cs │ │ ├── Outracks.CodeCompletion.UXNinja.TestsCommon.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestData │ │ │ ├── App.uno │ │ │ ├── Attributes.uno │ │ │ ├── Button.uno │ │ │ ├── Clicked.uno │ │ │ ├── Element.uno │ │ │ ├── Node.uno │ │ │ ├── Orientation.uno │ │ │ ├── Outracks.UXNinja.Tests.Library.unoproj │ │ │ ├── Panel.uno │ │ │ ├── StackPanel.uno │ │ │ ├── StaticClass.uno │ │ │ └── Text.uno │ │ ├── app.config │ │ └── packages.config │ ├── Outracks.CodeCompletion.UXNinja │ │ ├── ContextType.cs │ │ ├── DataTypeHelper.cs │ │ ├── DataTypes.cs │ │ ├── ElementContextExtensions.cs │ │ ├── EndTagNameSuggestion.cs │ │ ├── IAttributeContext.cs │ │ ├── ICodeReader.cs │ │ ├── IContext.cs │ │ ├── IElementContext.cs │ │ ├── ISuggestion.cs │ │ ├── MemberHelper.cs │ │ ├── Outracks.CodeCompletion.UXNinja.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── PropertyHelper.cs │ │ ├── ResolveUxClasses.cs │ │ ├── StandardAttributesSuggestion.cs │ │ ├── StartTagAttributeNameSuggestion.cs │ │ ├── StartTagAttributeValueSuggestion.cs │ │ ├── StartTagNameSuggestion.cs │ │ ├── SuggestionHelper.cs │ │ ├── SuggestionParser.cs │ │ ├── TokenType.cs │ │ ├── app.config │ │ └── packages.config │ └── Outracks.CodeCompletion │ │ ├── IEngine.cs │ │ ├── IGoToDefinitionFactory.cs │ │ ├── ISuggestionsFactory.cs │ │ ├── Outracks.CodeCompletion.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SuggestItem.cs │ │ ├── SyntaxLanguage.cs │ │ └── packages.config ├── preview │ ├── app │ │ ├── AppStoreAssets │ │ │ ├── Android │ │ │ │ ├── App Icon │ │ │ │ │ ├── GooglePlay.png │ │ │ │ │ ├── ic_launcher_HDPI.png │ │ │ │ │ ├── ic_launcher_MDPI.png │ │ │ │ │ ├── ic_launcher_XHDPI.png │ │ │ │ │ ├── ic_launcher_XXHDPI.png │ │ │ │ │ └── ic_launcher_XXXHDPI.png │ │ │ │ ├── Notification Icon │ │ │ │ │ ├── ic_notification_HDPI.png │ │ │ │ │ ├── ic_notification_MDPI.png │ │ │ │ │ ├── ic_notification_XHDPI.png │ │ │ │ │ ├── ic_notification_XXHDPI.png │ │ │ │ │ └── ic_notification_XXXHDPI.png │ │ │ │ └── Status Bar Icon │ │ │ │ │ ├── ic_status_bar_HDPI.png │ │ │ │ │ ├── ic_status_bar_MDPI.png │ │ │ │ │ ├── ic_status_bar_XHDPI.png │ │ │ │ │ ├── ic_status_bar_XXHDPI.png │ │ │ │ │ └── ic_status_bar_XXXHDPI.png │ │ │ └── iOS │ │ │ │ ├── Icon-20@2x.png │ │ │ │ ├── Icon-20@3x.png │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-29@2x.png │ │ │ │ ├── Icon-29@3x.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-40@3x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ ├── Launch.png │ │ │ │ └── iTunesArtwork@2x.png │ │ ├── Application.uno │ │ ├── Application.ux │ │ ├── Assets │ │ │ ├── Manual.png │ │ │ ├── Manual@2x.png │ │ │ ├── Manual@3x.png │ │ │ ├── QR-Code-White.png │ │ │ ├── QR-Code-White@2x.png │ │ │ ├── QR-Code-White@3x.png │ │ │ ├── QR-Code.png │ │ │ ├── QR-Code@2x.png │ │ │ ├── QR-Code@3x.png │ │ │ ├── Studio-Devices-Button.png │ │ │ ├── Studio-Devices-Button@2x.png │ │ │ ├── Studio-Devices-Button@3x.png │ │ │ ├── Swipe-Left.png │ │ │ ├── Swipe-Left@2x.png │ │ │ ├── Swipe-Left@3x.png │ │ │ ├── Swipe-Right.png │ │ │ ├── Swipe-Right@2x.png │ │ │ ├── Swipe-Right@3x.png │ │ │ ├── alert-circle.png │ │ │ ├── alert-circle@2x.png │ │ │ ├── alert-circle@3x.png │ │ │ ├── connect-icon.png │ │ │ ├── connect-icon@2x.png │ │ │ ├── connect-icon@3x.png │ │ │ ├── shake.png │ │ │ ├── shake@2x.png │ │ │ ├── shake@3x.png │ │ │ ├── sync-icon.png │ │ │ ├── sync-icon@2x.png │ │ │ └── sync-icon@3x.png │ │ ├── Components │ │ │ ├── ActivityIndicator.ux │ │ │ ├── BasicButton.ux │ │ │ ├── CancelButton.ux │ │ │ ├── ErrorView.ux │ │ │ ├── ManualSetupPageIndicator.ux │ │ │ ├── PageContent.ux │ │ │ └── SegmentedInput.ux │ │ ├── ForeignAccelerometer │ │ │ ├── Accelerometer.uno │ │ │ ├── AccelerometerImpl.hh │ │ │ ├── AccelerometerImpl.java │ │ │ ├── AccelerometerImpl.mm │ │ │ ├── AccelerometerModule.uno │ │ │ ├── Accelerometer_Android.uno │ │ │ └── Accelerometer_iOS.uno │ │ ├── Fuse.Simulator │ │ │ ├── BundleManager.uno │ │ │ ├── DeviceInfo.uno │ │ │ ├── DiagnosticsManager.uno │ │ │ ├── Fuse.Simulator.unoproj │ │ │ ├── Logger.uno │ │ │ ├── RecentProjects.uno │ │ │ ├── ScreenSettings.uno │ │ │ ├── ScreenSettings.uxl │ │ │ ├── SimulatorClient.uno │ │ │ ├── SimulatorJS.uno │ │ │ ├── SimulatorManager.uno │ │ │ └── SimulatorView.uno │ │ ├── FuseRx.js │ │ ├── MainView.ux │ │ ├── Pages │ │ │ ├── AppViewPage.ux │ │ │ ├── CodePage.ux │ │ │ ├── DescriptionPage.ux │ │ │ ├── ErrorPage.ux │ │ │ ├── OpenPage.ux │ │ │ ├── ProjectsPage.ux │ │ │ ├── QRCodePage.ux │ │ │ └── SetupPage.ux │ │ ├── Projects.js │ │ ├── ProxyState.js │ │ ├── Resources.ux │ │ ├── ShakeRecognizer.js │ │ ├── build.sh │ │ ├── fuse-preview.unoproj │ │ └── rx.all.js │ ├── core │ │ ├── Application.uno │ │ ├── ApplicationStates.uno │ │ ├── Context.uno │ │ ├── DashedBrush.uno │ │ ├── DeveloperMenu.ux │ │ ├── DeveloperMenu.ux.uno │ │ ├── DeviceInfo.uno │ │ ├── Dialogs │ │ │ ├── LoadingScreen.ux │ │ │ ├── ModalButton.ux │ │ │ └── ModalDialog.ux │ │ ├── EmptyClass.cs │ │ ├── FakeApp.uno │ │ ├── Fuse.Preview.Core.csproj │ │ ├── Fuse.Preview.Core.csproj.DotSettings │ │ ├── Fuse.Preview.Core.unoproj │ │ ├── ModalDialog.uno │ │ ├── ProxyClient.uno │ │ ├── Reflection │ │ │ ├── DotNetReflection.uno │ │ │ ├── DotNetReflection.uxl │ │ │ ├── NativeReflection.uno │ │ │ ├── ReflectionCache.uno │ │ │ └── ReflectionExtensions.uno │ │ ├── SimulatorClient.uno │ │ ├── UserAppState.uno │ │ ├── app.config │ │ ├── fight.png │ │ └── packages.config │ ├── service │ │ ├── AndroidPortReverser.cs │ │ ├── ApplicationClassGenerator.cs │ │ ├── AssemblyBuilt.cs │ │ ├── AssetsWatcher.cs │ │ ├── BinaryMessageStreams.cs │ │ ├── BuildCanceledException.cs │ │ ├── BuildIssueDetected.cs │ │ ├── BuildLogged.cs │ │ ├── BuildOutputDirGenerator.cs │ │ ├── BuildProject.cs │ │ ├── Builder.cs │ │ ├── CacheCleaner.cs │ │ ├── CoalesceCache.cs │ │ ├── CodeGenerator.cs │ │ ├── Ended.cs │ │ ├── ErrorListAdapter.cs │ │ ├── FileDataWithMetadata.cs │ │ ├── FileSender.cs │ │ ├── GenerateBytecode.cs │ │ ├── IErrorHelper.cs │ │ ├── IProjectAndServer.cs │ │ ├── Icons │ │ │ ├── Android_HDPI.png │ │ │ ├── Android_LDPI.png │ │ │ ├── Android_MDPI.png │ │ │ ├── Android_XHDPI.png │ │ │ ├── Android_XXHDPI.png │ │ │ ├── Android_XXXHDPI.png │ │ │ ├── iOS_iPad_29_1x.png │ │ │ ├── iOS_iPad_29_2x.png │ │ │ ├── iOS_iPad_40_2x.png │ │ │ ├── iOS_iPad_76_1x.png │ │ │ ├── iOS_iPad_76_2x.png │ │ │ ├── iOS_iPhone_29_2x.png │ │ │ ├── iOS_iPhone_29_3x.png │ │ │ ├── iOS_iPhone_40_2x.png │ │ │ ├── iOS_iPhone_40_3x.png │ │ │ ├── iOS_iPhone_60_2x.png │ │ │ └── iOS_iPhone_60_3x.png │ │ ├── InternalBuildError.cs │ │ ├── LogSubject.cs │ │ ├── MarkupErrorLog.cs │ │ ├── MarkupParser.cs │ │ ├── OutputDirGenerator.cs │ │ ├── Platform │ │ │ ├── BinaryEncoding.cs │ │ │ ├── EnsureSingleInstance.cs │ │ │ ├── Factory.cs │ │ │ ├── IPlatform.cs │ │ │ ├── IProcess.cs │ │ │ ├── Mac.cs │ │ │ ├── MethodCall.cs │ │ │ ├── ProcessArguments.cs │ │ │ ├── ProcessLog.cs │ │ │ └── Windows.cs │ │ ├── PreviewService.cs │ │ ├── PreviewTarget.cs │ │ ├── Program.cs │ │ ├── ProjectBuild.cs │ │ ├── ProjectMarkup.cs │ │ ├── ProjectPreview.cs │ │ ├── ProjectProcess.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Proxy │ │ │ ├── ProxyProjectEntry.cs │ │ │ ├── ProxyServer.cs │ │ │ └── ProxyServerFailed.cs │ │ ├── RebuildRequired.cs │ │ ├── Reifier.cs │ │ ├── ReifyEventsDaemon.cs │ │ ├── ReifyerLogAdapter.cs │ │ ├── RunFailed.cs │ │ ├── SimulatorBuild.cs │ │ ├── SimulatorHost.cs │ │ ├── SocketServer.cs │ │ ├── SourceToSourceReference.cs │ │ ├── Started.cs │ │ ├── TextWriterAdapter.cs │ │ ├── UnoBuild.cs │ │ ├── UnoBuildWrapper.cs │ │ ├── UpdateAttribute.cs │ │ ├── Updater.cs │ │ ├── app.config │ │ ├── fuse-preview.csproj │ │ ├── fuse-preview.csproj.DotSettings │ │ └── packages.config │ └── tests │ │ ├── App.config │ │ ├── BinaryEncodingTest.cs │ │ ├── BinaryMessageStreamsTest.cs │ │ ├── BinaryMessageStreamsTestsUsingPipes.cs │ │ ├── BinaryMessageStreamsTestsUsingStreams.cs │ │ ├── CreateOrReuseOutputDir.cs │ │ ├── Fuse.Preview.Tests.csproj │ │ ├── MethodCallTest.cs │ │ ├── ReifyProcessTests.cs │ │ └── packages.config ├── simulator │ ├── common │ │ ├── Bytecode │ │ │ ├── Exceptions.cs │ │ │ ├── Expression.cs │ │ │ ├── ExpressionIdRegistry.cs │ │ │ ├── Expressions.cs │ │ │ ├── Lambda.cs │ │ │ ├── Literal.cs │ │ │ ├── LiteralIdRegistry.cs │ │ │ ├── Literals.cs │ │ │ ├── MethodGroup.cs │ │ │ ├── NamespaceName.cs │ │ │ ├── Parameter.cs │ │ │ ├── ProjectBytecode.cs │ │ │ ├── ProjectDependency.cs │ │ │ ├── ProjectMetadata.cs │ │ │ ├── Signature.cs │ │ │ ├── Statement.cs │ │ │ ├── StatementIdRegistry.cs │ │ │ ├── Statements.cs │ │ │ ├── StaticMemberName.cs │ │ │ ├── TypeMemberName.cs │ │ │ ├── TypeName.cs │ │ │ ├── TypeNameParser.cs │ │ │ ├── TypeNameTokenizer.cs │ │ │ └── Variable.cs │ │ ├── Common │ │ │ ├── BinaryMessage.cs │ │ │ ├── CharacterNumber.cs │ │ │ ├── Closure.cs │ │ │ ├── ConcurrentQueue.cs │ │ │ ├── ImmutableList.cs │ │ │ ├── LineNumber.cs │ │ │ ├── MissingStuff.cs │ │ │ ├── Optionals │ │ │ │ ├── Operators │ │ │ │ │ ├── Combine.cs │ │ │ │ │ ├── Or.cs │ │ │ │ │ ├── Select.cs │ │ │ │ │ ├── Serialization.cs │ │ │ │ │ └── TryGetValue.cs │ │ │ │ └── Optional.cs │ │ │ ├── SourceReference.cs │ │ │ ├── StringExtensions.cs │ │ │ ├── Tasks.cs │ │ │ ├── TextOffset.cs │ │ │ ├── TextOffsetConversion.cs │ │ │ └── TextPosition.cs │ │ ├── EmptyClass.cs │ │ ├── Messages │ │ │ ├── BytecodeGenerated.cs │ │ │ ├── BytecodeUpdated.cs │ │ │ ├── DebugLog.cs │ │ │ ├── Diagnostic.cs │ │ │ ├── Error.cs │ │ │ ├── ExceptionInfo.cs │ │ │ ├── RegisterName.cs │ │ │ └── UnhandledException.cs │ │ ├── ObjectIdentifier.cs │ │ ├── Outracks.Simulator.csproj │ │ ├── Outracks.Simulator.csproj.DotSettings │ │ ├── Outracks.Simulator.unoproj │ │ └── Runtime │ │ │ ├── ArrayStream.cs │ │ │ ├── Bundle.cs │ │ │ ├── FileCache.cs │ │ │ ├── IReflection.cs │ │ │ ├── ObjectTagRegistry.cs │ │ │ ├── Scope.cs │ │ │ ├── UxFileSource.cs │ │ │ ├── UxProperty.cs │ │ │ ├── UxTemplate.cs │ │ │ ├── VirtualMachine.cs │ │ │ └── WeakDictionary.cs │ ├── main │ │ ├── BuildFailed.cs │ │ ├── CodeGeneration │ │ │ ├── Context.cs │ │ │ ├── Declarations.cs │ │ │ ├── Exceptions.cs │ │ │ ├── FileSources.cs │ │ │ ├── FindNodesInScope.cs │ │ │ ├── GetExpression.cs │ │ │ ├── Initialization.EventBindings.cs │ │ │ ├── Initialization.ListProperties.cs │ │ │ ├── Initialization.SingleProperties.cs │ │ │ ├── Initialization.cs │ │ │ ├── InvalidUXIL.cs │ │ │ ├── Paths.cs │ │ │ ├── ReifyRequired.cs │ │ │ ├── Scopes.cs │ │ │ ├── UxClasses.cs │ │ │ ├── UxFactories.cs │ │ │ └── UxProperties.cs │ │ ├── ExpressionConverter.cs │ │ ├── MetadataGenerator.cs │ │ ├── Outracks.Simulator.Main.csproj │ │ ├── Parser │ │ │ ├── AccumulatingProgress.cs │ │ │ ├── Caching │ │ │ │ ├── CachingCompiler.cs │ │ │ │ └── CachingDataType.cs │ │ │ ├── Exceptions.cs │ │ │ ├── Ghosting │ │ │ │ ├── GhostCompiler.cs │ │ │ │ ├── GhostCompilerFactory.cs │ │ │ │ ├── GhostDataType.cs │ │ │ │ ├── GhostGlobalResource.cs │ │ │ │ ├── GhostProperty.cs │ │ │ │ ├── GlobalResourceNode.cs │ │ │ │ ├── IMemberNode.cs │ │ │ │ ├── OuterClassNode.cs │ │ │ │ ├── PropertyNode.cs │ │ │ │ └── UxXmlExtensions.cs │ │ │ ├── HasErrorsErrorLogWrapper.cs │ │ │ ├── ParsedDocument.cs │ │ │ └── UxParser.cs │ │ ├── ProjectObjectIdentifiers.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Runtime │ │ │ ├── DotNetBuild.cs │ │ │ ├── DotNetReflection.cs │ │ │ ├── MemoizingTypeMap.cs │ │ │ ├── TypeAliasNameResolver.cs │ │ │ └── TypeMap.cs │ │ ├── UXIL │ │ │ ├── Marshalling.cs │ │ │ └── MatchWith.cs │ │ ├── UniqueNames.cs │ │ ├── UxFileContents.cs │ │ ├── ValueParser.cs │ │ ├── app.config │ │ └── packages.config │ └── tests │ │ ├── Bytecode │ │ ├── TypeNameParseTests.cs │ │ └── TypeNameTests.cs │ │ ├── CompiledTypeReflectionTests.cs │ │ ├── Outracks.Simulator.Tests.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TypeNameTokenizerTests.cs │ │ ├── UXFeaturesTestApp │ │ ├── UXAutoBind │ │ │ └── UXAutoBind.ux │ │ ├── UXBinding │ │ │ ├── UXBinding.uno │ │ │ └── UXBinding.ux │ │ ├── UXCascade │ │ │ ├── UXCascade.uno │ │ │ └── UXCascade.ux │ │ ├── UXClass │ │ │ ├── UXClass.uno │ │ │ └── UXClass.ux │ │ ├── UXConstructor │ │ │ ├── UXConstructor.uno │ │ │ └── UXConstructor.ux │ │ ├── UXFeaturesTestApp.unoproj │ │ ├── UXGenerateFactory │ │ │ ├── UXGenerateFactory.uno │ │ │ └── UXGenerateFactory.ux │ │ ├── UXGenerateTemplate │ │ │ └── UXGenerateTemplate.ux │ │ ├── UXGlobal │ │ │ ├── UXGlobal.uno │ │ │ └── UXGlobal.ux │ │ ├── UXKey │ │ │ └── UXKey.ux │ │ ├── UXName │ │ │ ├── UXName.uno │ │ │ └── UXName.ux │ │ ├── UXResource │ │ │ ├── UXResource.uno │ │ │ └── UXResource.ux │ │ └── UXValue │ │ │ ├── UXValue.uno │ │ │ └── UXValue.ux │ │ ├── ValueParserTests.cs │ │ ├── app.config │ │ └── packages.config ├── sketch2fuse │ ├── CHANGELOG.md │ ├── Command │ │ ├── Command.csproj │ │ ├── Logger.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── EndToEndTests │ │ ├── EndToEnd.cs │ │ ├── EndToEndTests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── GitVersion.yml │ ├── NuGet.Config │ ├── README.md │ ├── RegressionTests │ │ ├── ColorPrinter.cs │ │ ├── ColoredDiffPrinter.cs │ │ ├── CommandRunner.cs │ │ ├── DirectoryDiffer.cs │ │ ├── FileDiff.cs │ │ ├── InteractiveDiffAccepter.cs │ │ ├── Log.cs │ │ ├── OutputCleaner.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RegressionTests.csproj │ │ ├── Result.cs │ │ ├── TeamCityReporter.cs │ │ ├── Test.cs │ │ ├── TestFinder.cs │ │ ├── TestResult.cs │ │ └── packages.config │ ├── RegressionTestsTests │ │ ├── DirectoryDifferTests.cs │ │ ├── OutputCleanerTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RegressionTestsTests.csproj │ │ └── packages.config │ ├── Sketch2Fuse.sln │ ├── SketchConverter │ │ ├── API │ │ │ ├── Factory.cs │ │ │ ├── IConverter.cs │ │ │ └── ILogger.cs │ │ ├── CompatibilityChecker.cs │ │ ├── Converter.cs │ │ ├── Optional.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Result.cs │ │ ├── SketchConverter.csproj │ │ ├── SketchModel │ │ │ ├── Entities │ │ │ │ ├── Layers │ │ │ │ │ ├── SketchArtboard.cs │ │ │ │ │ ├── SketchBitmap.cs │ │ │ │ │ ├── SketchGroup.cs │ │ │ │ │ ├── SketchLayer.cs │ │ │ │ │ ├── SketchRectangle.cs │ │ │ │ │ ├── SketchShapeGroup.cs │ │ │ │ │ ├── SketchShapePath.cs │ │ │ │ │ ├── SketchSymbolInstance.cs │ │ │ │ │ ├── SketchSymbolMaster.cs │ │ │ │ │ └── SketchText.cs │ │ │ │ ├── SketchDocument.cs │ │ │ │ ├── SketchEntity.cs │ │ │ │ └── SketchPage.cs │ │ │ └── Types │ │ │ │ ├── ISketchBrush.cs │ │ │ │ ├── SketchAlignment.cs │ │ │ │ ├── SketchAttributedString.cs │ │ │ │ ├── SketchBlur.cs │ │ │ │ ├── SketchBorder.cs │ │ │ │ ├── SketchColor.cs │ │ │ │ ├── SketchCurvePoint.cs │ │ │ │ ├── SketchFill.cs │ │ │ │ ├── SketchGradientStop.cs │ │ │ │ ├── SketchImage.cs │ │ │ │ ├── SketchLinearGradientBrush.cs │ │ │ │ ├── SketchPath.cs │ │ │ │ ├── SketchPoint.cs │ │ │ │ ├── SketchRect.cs │ │ │ │ ├── SketchShadow.cs │ │ │ │ ├── SketchSolidColorBrush.cs │ │ │ │ ├── SketchStringAttribute.cs │ │ │ │ └── SketchStyle.cs │ │ ├── SketchParser │ │ │ ├── AttributedStringParser.cs │ │ │ ├── Exceptions.cs │ │ │ ├── ISketchArchive.cs │ │ │ ├── SketchArchive.cs │ │ │ ├── SketchParser.cs │ │ │ └── SketchParserInternal.cs │ │ ├── Transforms │ │ │ ├── ITransform.cs │ │ │ └── TextPropertyTransform.cs │ │ ├── UxBuilder │ │ │ ├── ArtboardUxBuilder.cs │ │ │ ├── AssetEmitter.cs │ │ │ ├── Exceptions.cs │ │ │ ├── Geometry.cs │ │ │ ├── IUxBuilder.cs │ │ │ ├── LayoutBuilder.cs │ │ │ ├── NameValidator.cs │ │ │ ├── SketchCurvePointsToSvg.cs │ │ │ ├── SymbolClassNameBuilder.cs │ │ │ ├── SymbolsUxBuilder.cs │ │ │ ├── UXBuilder.cs │ │ │ ├── UXNode.cs │ │ │ └── UxSize.cs │ │ ├── app.config │ │ └── packages.config │ ├── SketchConverterTests │ │ ├── AttributedStringParserTests.cs │ │ ├── CompatibilityCheckerTest.cs │ │ ├── ConverterTests.cs │ │ ├── CurvePointUtils.cs │ │ ├── DocumentBuilder.cs │ │ ├── GeometryTests.cs │ │ ├── MessageListLogger.cs │ │ ├── NameValidatorTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ResultTests.cs │ │ ├── SketchConverterTests.csproj │ │ ├── SketchParserTests.cs │ │ ├── SketchPathToSvgTests.cs │ │ ├── Snippets.cs │ │ ├── SymbolClassNameBuilderTests.cs │ │ ├── SymbolsUxBuilderTests.cs │ │ ├── Transforms │ │ │ └── TextPropertyTransformTests.cs │ │ ├── UxBuilderTests.cs │ │ ├── UxNodeTests.cs │ │ ├── UxSizeTests.cs │ │ └── packages.config │ ├── build.bat │ ├── build.sh │ ├── command.sh │ ├── docs │ │ └── documentation.md │ ├── files │ │ ├── README.md │ │ ├── Sketch43 │ │ │ ├── AllFillTypes.reference │ │ │ │ ├── Sketch.FillFlatColor.ux │ │ │ │ ├── Sketch.FillLinearGradient.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── AllFillTypes.sketch │ │ │ ├── AmericanTypewriter.reference │ │ │ │ ├── Sketch.Text.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── AmericanTypewriter.sketch │ │ │ ├── Arrow.reference │ │ │ │ ├── Sketch.Arrow.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Arrow.sketch │ │ │ ├── AssymetricPath.reference │ │ │ │ ├── Sketch.Asymmetric.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── AssymetricPath.sketch │ │ │ ├── Blurs.reference │ │ │ │ ├── Sketch.BackgroundBlurOval.ux │ │ │ │ ├── Sketch.DisabledBlurRectangle.ux │ │ │ │ ├── Sketch.GaussianBlurRectangle.ux │ │ │ │ ├── Sketch.MotionBlurRectangle.ux │ │ │ │ ├── Sketch.NoBlurRectangle.ux │ │ │ │ ├── Sketch.ZoomBlurRectangle.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Blurs.sketch │ │ │ ├── BooleanOperations.reference │ │ │ │ ├── Sketch.Difference.ux │ │ │ │ ├── Sketch.Intersection.ux │ │ │ │ ├── Sketch.Subtraction.ux │ │ │ │ ├── Sketch.Union.ux │ │ │ │ ├── Sketch.UnionDifference.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── BooleanOperations.sketch │ │ │ ├── ColoredArialText.reference │ │ │ │ ├── Sketch.ColoredText.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── ColoredArialText.sketch │ │ │ ├── CombinedShapeSymbol.reference │ │ │ │ ├── Sketch.CombinedShapeSymbol.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── CombinedShapeSymbol.sketch │ │ │ ├── DefaultText.reference │ │ │ │ ├── Sketch.AutoTextBoxInGroup.ux │ │ │ │ ├── Sketch.AutoTextBoxSymbol.ux │ │ │ │ ├── Sketch.FixedTextBoxInGroup.ux │ │ │ │ ├── Sketch.FixedTextBoxSymbol.ux │ │ │ │ ├── Sketch.NonAsciiSymbol.ux │ │ │ │ ├── Sketch.RichTextSymbol.ux │ │ │ │ ├── Sketch.TextInACircle.ux │ │ │ │ ├── Sketch.TextOnAPath.ux │ │ │ │ ├── Sketch.TextStyleSymbol.ux │ │ │ │ ├── Sketch.TextSymbol.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── DefaultText.sketch │ │ │ ├── DisconnectedPath.reference │ │ │ │ ├── Sketch.Disconnected.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── DisconnectedPath.sketch │ │ │ ├── DuplicatedSymbolName.reference │ │ │ │ ├── Sketch.DuplicatedSymbolName.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── DuplicatedSymbolName.sketch │ │ │ ├── EditedRectangles.reference │ │ │ │ ├── Sketch.EditedRectangle.ux │ │ │ │ ├── Sketch.MorphedRectangle.ux │ │ │ │ ├── Sketch.RotatedRectangle.ux │ │ │ │ ├── Sketch.ShearedRectangle.ux │ │ │ │ ├── Sketch.TransformedRectangle.ux │ │ │ │ ├── Sketch.Trapese.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── EditedRectangles.sketch │ │ │ ├── Empty.reference │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Empty.sketch │ │ │ ├── FlippedAndRotated.reference │ │ │ │ ├── Sketch.FlippedGroup.ux │ │ │ │ ├── Sketch.FlippedVerticallyPolygon.ux │ │ │ │ ├── Sketch.Rotated30.ux │ │ │ │ ├── Sketch.Rotated30FlippedHorizontally.ux │ │ │ │ ├── Sketch.Rotated30FlippedVertically.ux │ │ │ │ ├── Sketch.Triangle.ux │ │ │ │ ├── Sketch.VerticalFlip.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── FlippedAndRotated.sketch │ │ │ ├── Group.reference │ │ │ │ ├── Sketch.GroupSymbol.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Group.sketch │ │ │ ├── ImageSymbol.reference │ │ │ │ ├── Sketch.ImageSymbol.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── ImageSymbol.sketch │ │ │ ├── InnerShadow.reference │ │ │ │ ├── Sketch.InnerShadowRectangle.ux │ │ │ │ ├── Sketch.OuterAndInnerShadow.ux │ │ │ │ ├── Sketch.TwoInnerShadows.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── InnerShadow.sketch │ │ │ ├── LayerOpacity.reference │ │ │ │ ├── Sketch.Rectangles.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── LayerOpacity.sketch │ │ │ ├── Line.reference │ │ │ │ ├── Sketch.Line.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Line.sketch │ │ │ ├── LineWithoutSymbol.reference │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── LineWithoutSymbol.sketch │ │ │ ├── MaskedTriangle.reference │ │ │ │ ├── Sketch.GroupWithMaskSymbol.ux │ │ │ │ ├── Sketch.MaskedTriangle.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── MaskedTriangle.sketch │ │ │ ├── Masks.reference │ │ │ │ ├── Sketch.AlphaMask.ux │ │ │ │ ├── Sketch.AlphaMaskedRectangle.ux │ │ │ │ ├── Sketch.PentagonMask.ux │ │ │ │ ├── Sketch.RectangleMask.ux │ │ │ │ ├── Sketch.StarMaskedIcon.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Masks.sketch │ │ │ ├── MiscShapePaths.reference │ │ │ │ ├── Sketch.Circle.ux │ │ │ │ ├── Sketch.GreenArrow.ux │ │ │ │ ├── Sketch.HandDrawnHeart.ux │ │ │ │ ├── Sketch.Oval.ux │ │ │ │ ├── Sketch.PathWithOneRoundedCorner.ux │ │ │ │ ├── Sketch.Polygon.ux │ │ │ │ ├── Sketch.ReallyRectangle.ux │ │ │ │ ├── Sketch.Star.ux │ │ │ │ ├── Sketch.Triangle.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── MiscShapePaths.sketch │ │ │ ├── MultipleStyledText.reference │ │ │ │ ├── Sketch.RainbowGrowingSize.ux │ │ │ │ ├── Sketch.RainbowGrowingSizeVertical.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── MultipleStyledText.sketch │ │ │ ├── NestedSymbol.reference │ │ │ │ ├── Sketch.MySymbol.ux │ │ │ │ ├── Sketch.NestedSymbol.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── NestedSymbol.sketch │ │ │ ├── OpenFilledPath.reference │ │ │ │ ├── Sketch.OpenFilled.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── OpenFilledPath.sketch │ │ │ ├── Oval.reference │ │ │ │ ├── Sketch.Oval.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Oval.sketch │ │ │ ├── Paths.reference │ │ │ │ ├── Sketch.Curve.ux │ │ │ │ ├── Sketch.EndWithCurve.ux │ │ │ │ ├── Sketch.Mirrored.ux │ │ │ │ ├── Sketch.MirroredCurve.ux │ │ │ │ ├── Sketch.StartWithCurve.ux │ │ │ │ ├── Sketch.Straight.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Paths.sketch │ │ │ ├── Properties.reference │ │ │ │ ├── Sketch.SomeTexts.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Properties.sketch │ │ │ ├── Rectangle.reference │ │ │ │ ├── Sketch.Rectangle.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Rectangle.sketch │ │ │ ├── RotatedLayer.reference │ │ │ │ ├── Sketch.RotatedLayerSymbol.ux │ │ │ │ ├── Sketch.Spiral.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── RotatedLayer.sketch │ │ │ ├── RoundedRectanglesGroup.reference │ │ │ │ ├── Sketch.RoundedGroup.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── RoundedRectanglesGroup.sketch │ │ │ ├── ScissoredPolygons.reference │ │ │ │ ├── Sketch.ScissoredPathOneCurve.ux │ │ │ │ ├── Sketch.ScissoredPentagon.ux │ │ │ │ ├── Sketch.ScissoredRectangle.ux │ │ │ │ ├── Sketch.ScissoredTree.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── ScissoredPolygons.sketch │ │ │ ├── ShadowedText.reference │ │ │ │ ├── Sketch.InnerShadowedText.ux │ │ │ │ ├── Sketch.MultipleShadowedText.ux │ │ │ │ ├── Sketch.ShadowedText.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── ShadowedText.sketch │ │ │ ├── Shadows.reference │ │ │ │ ├── Sketch.FilledOvalSymbol.ux │ │ │ │ ├── Sketch.RectGrid.ux │ │ │ │ ├── Sketch.RectangleSymbol.ux │ │ │ │ ├── Sketch.RotatedPathSymbol.ux │ │ │ │ ├── Sketch.TriangleSymbol.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Shadows.sketch │ │ │ ├── Star.reference │ │ │ │ ├── Sketch.Star.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── Star.sketch │ │ │ ├── SymbolNames.reference │ │ │ │ ├── Sketch.DuplicateName.ux │ │ │ │ ├── Sketch.OkSymbol.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── SymbolNames.sketch │ │ │ ├── TestProject.reference │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── TestProject.sketch │ │ │ ├── VectorPath.reference │ │ │ │ ├── Sketch.Path.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── VectorPath.sketch │ │ │ ├── desert-moon-zwj-sketch43.reference │ │ │ │ ├── Sketch.Desert_Moon.ux │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ └── desert-moon-zwj-sketch43.sketch │ │ └── sketch43-file-unpacking.py │ ├── regression-tests.sh │ └── test.sh └── unohost │ ├── common │ ├── Graphics │ │ ├── FramebufferHandle.cs │ │ ├── FramebufferInfo.cs │ │ ├── RenderbufferHandle.cs │ │ └── TextureHandle.cs │ ├── Input │ │ ├── Cursor.cs │ │ ├── InputState.cs │ │ ├── ModifierKeys.cs │ │ ├── MouseButton.cs │ │ └── MouseButtons.cs │ ├── Outracks.UnoHost.csproj │ ├── Outracks.UnoHost.csproj.DotSettings │ ├── Platform │ │ ├── UnoGraphicsContext.cs │ │ └── UnoWindow.cs │ ├── Plugins │ │ ├── FusionImplementation.cs │ │ └── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Protocol │ │ ├── OpenGLVersionMessage.cs │ │ └── WindowFocusMessage.cs │ ├── UnoHostArgs.cs │ ├── UnoHostControl.cs │ ├── UnoHostProcess.cs │ ├── UnoHostProject.cs │ ├── app.config │ └── packages.config │ ├── mac │ ├── AppDelegate.cs │ ├── AppDelegate.designer.cs │ ├── 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 │ ├── Dispatcher.cs │ ├── DisplayLinkView.cs │ ├── Entitlements.plist │ ├── FusionSupport │ │ ├── EventIntercepter.cs │ │ ├── Quad.cs │ │ ├── ServerView.cs │ │ ├── ShaderHelper.cs │ │ ├── SurfaceCache.cs │ │ ├── SurfaceCacheItem.cs │ │ ├── TextureInfo.cs │ │ └── UnoHostViewFactory.cs │ ├── Info.plist │ ├── MonoMacEnums.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Protocol │ │ ├── CocoaEventMessage.cs │ │ ├── NewSurfaceMessage.cs │ │ └── ResizeMessage.cs │ ├── Resources │ │ └── Icon.icns │ ├── UnoHost.csproj │ ├── UnoHost.csproj.DotSettings │ ├── UnoHostControlImplementation.cs │ ├── UnoView │ │ ├── EventProcesser.cs │ │ ├── MonoMacEnums.cs │ │ ├── MonoMacGL.Dispose.cs │ │ ├── MonoMacGL.cs │ │ ├── RenderTargets │ │ │ ├── BackbufferRenderTarget.cs │ │ │ ├── IOSurfaceFramebuffer.cs │ │ │ ├── IOSurfaceObject.cs │ │ │ ├── IOSurfaceRenderTarget.cs │ │ │ ├── IOSurfaceRenderTargetBuffer.cs │ │ │ ├── IOSurfaceTexture.cs │ │ │ └── IRenderTarget.cs │ │ └── UnoView.cs │ ├── app.config │ └── packages.config │ ├── tests │ ├── Outracks.UnoHost.Tests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Test.cs │ ├── app.config │ └── packages.config │ └── win │ ├── ContextCreationFailed.cs │ ├── ContextFactory.cs │ ├── Egl.cs │ ├── Icon.ico │ ├── Job.cs │ ├── OpenTKGL.Dispose.cs │ ├── OpenTKGL.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Protocol │ ├── EventMessage.cs │ ├── SetSurfaceMessage.cs │ ├── WindowContextMenuMessage.cs │ ├── WindowCreatedMessage.cs │ ├── WindowKeyBoard.cs │ └── WindowMouseScrollMessage.cs │ ├── UnoControl.cs │ ├── UnoHostControlImplementation.cs │ ├── WinFormsInputState.cs │ ├── WinFormsMarshalling.cs │ ├── app.config │ ├── app.manifest │ ├── packages.config │ └── unohost-win.csproj ├── templates ├── files │ ├── application-class │ │ ├── _filename_ │ │ └── manifest.xml │ ├── empty-uno-class │ │ ├── _filename_ │ │ └── manifest.xml │ ├── empty-uno-interface │ │ ├── _filename_ │ │ └── manifest.xml │ ├── js │ │ ├── _filename_ │ │ └── manifest.xml │ ├── json │ │ ├── _filename_ │ │ └── manifest.xml │ └── ux │ │ ├── _filename_ │ │ └── manifest.xml └── projects │ ├── app │ ├── .gitattributes │ ├── .gitignore │ ├── .vscode │ │ ├── .gitignore │ │ └── settings.json │ ├── MainView.ux │ ├── _filename_.unoproj │ ├── manifest.xml │ ├── package.json │ └── tsconfig.json │ └── example │ ├── .gitattributes │ ├── .gitignore │ ├── .vscode │ ├── .gitignore │ └── settings.json │ ├── Logic.ts │ ├── MainView.ux │ ├── _filename_.unoproj │ ├── manifest.xml │ ├── package.json │ └── tsconfig.json └── tsconfig.json /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /.unoconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/.unoconfig -------------------------------------------------------------------------------- /.vscode/.gitignore: -------------------------------------------------------------------------------- 1 | ipch/ 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /3rdparty/ColorPicker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/ColorPicker.dll -------------------------------------------------------------------------------- /3rdparty/ColorPicker/AlphaDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/ColorPicker/AlphaDisplay.xaml -------------------------------------------------------------------------------- /3rdparty/ColorPicker/ColorDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/ColorPicker/ColorDisplay.xaml -------------------------------------------------------------------------------- /3rdparty/ColorPicker/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/ColorPicker/EventArgs.cs -------------------------------------------------------------------------------- /3rdparty/ColorPicker/HexDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/ColorPicker/HexDisplay.xaml -------------------------------------------------------------------------------- /3rdparty/ColorPicker/NewCurrent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/ColorPicker/NewCurrent.xaml -------------------------------------------------------------------------------- /3rdparty/ColorPickerControls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/ColorPickerControls.dll -------------------------------------------------------------------------------- /3rdparty/ICSharpCode.NRefactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/ICSharpCode.NRefactory.dll -------------------------------------------------------------------------------- /3rdparty/NRefactory/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/NRefactory/.gitattributes -------------------------------------------------------------------------------- /3rdparty/NRefactory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/NRefactory/.gitignore -------------------------------------------------------------------------------- /3rdparty/NRefactory/NRefactory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/NRefactory/NRefactory.sln -------------------------------------------------------------------------------- /3rdparty/NRefactory/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/NRefactory/README -------------------------------------------------------------------------------- /3rdparty/NRefactory/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/NRefactory/doc/TODO -------------------------------------------------------------------------------- /3rdparty/NRefactory/doc/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/NRefactory/doc/copyright.txt -------------------------------------------------------------------------------- /3rdparty/NRefactory/doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/3rdparty/NRefactory/doc/license.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CodeStyle.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/CodeStyle.DotSettings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/README.md -------------------------------------------------------------------------------- /assets/Fuse.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Fuse.icns -------------------------------------------------------------------------------- /assets/Fuse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Fuse.ico -------------------------------------------------------------------------------- /assets/Fuse.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Fuse.iconset/icon_128x128.png -------------------------------------------------------------------------------- /assets/Fuse.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Fuse.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /assets/Fuse.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Fuse.iconset/icon_256x256.png -------------------------------------------------------------------------------- /assets/Fuse.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Fuse.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /assets/Fuse.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Fuse.iconset/icon_512x512.png -------------------------------------------------------------------------------- /assets/FuseBigSur.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/FuseBigSur.icns -------------------------------------------------------------------------------- /assets/FuseProLogo_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/FuseProLogo_dark@2x.png -------------------------------------------------------------------------------- /assets/FuseProLogo_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/FuseProLogo_light@2x.png -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/Unoproj.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Unoproj.icns -------------------------------------------------------------------------------- /assets/Unoproj.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Unoproj.iconset/icon_16x16.png -------------------------------------------------------------------------------- /assets/Unoproj.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/Unoproj.iconset/icon_32x32.png -------------------------------------------------------------------------------- /assets/fight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/fight.png -------------------------------------------------------------------------------- /assets/fuse_logo_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/assets/fuse_logo_low.png -------------------------------------------------------------------------------- /components/android/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/components/android/install.js -------------------------------------------------------------------------------- /components/sublime-plugin/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/components/sublime-plugin/install.js -------------------------------------------------------------------------------- /components/sublime-plugin/plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/components/sublime-plugin/plugin.zip -------------------------------------------------------------------------------- /components/vscode-extension/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/components/vscode-extension/install.js -------------------------------------------------------------------------------- /docs/coding-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/docs/coding-style.md -------------------------------------------------------------------------------- /empty/MainView.ux: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /empty/app.unoproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/empty/app.unoproj -------------------------------------------------------------------------------- /example/Logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/example/Logic.ts -------------------------------------------------------------------------------- /example/MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/example/MainView.ux -------------------------------------------------------------------------------- /example/app.unoproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/example/app.unoproj -------------------------------------------------------------------------------- /fuse-mac-dev.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/fuse-mac-dev.sln -------------------------------------------------------------------------------- /fuse-mac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/fuse-mac.sln -------------------------------------------------------------------------------- /fuse-win-dev.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/fuse-win-dev.sln -------------------------------------------------------------------------------- /fuse-win.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/fuse-win.sln -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/package.json -------------------------------------------------------------------------------- /projects/BananApp/BananApp.unoproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/BananApp/BananApp.unoproj -------------------------------------------------------------------------------- /projects/BananApp/MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/BananApp/MainView.ux -------------------------------------------------------------------------------- /projects/CheckForUpdates/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/CheckForUpdates/App.config -------------------------------------------------------------------------------- /projects/CheckForUpdates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/CheckForUpdates/Program.cs -------------------------------------------------------------------------------- /projects/CheckForUpdates/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/CheckForUpdates/releases.json -------------------------------------------------------------------------------- /projects/JsErrors/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .cache 3 | *.swp 4 | -------------------------------------------------------------------------------- /projects/JsErrors/JsErrors.unoproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/JsErrors/JsErrors.unoproj -------------------------------------------------------------------------------- /projects/JsErrors/Logger.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/JsErrors/Logger.uno -------------------------------------------------------------------------------- /projects/JsErrors/MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/JsErrors/MainView.ux -------------------------------------------------------------------------------- /projects/JsErrors/Thrower.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/JsErrors/Thrower.uno -------------------------------------------------------------------------------- /projects/SketchImportApp/Foo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/SketchImportApp/Foo.sketch -------------------------------------------------------------------------------- /projects/SketchImportApp/MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/SketchImportApp/MainView.ux -------------------------------------------------------------------------------- /projects/SystemTest1/MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/SystemTest1/MainView.ux -------------------------------------------------------------------------------- /projects/TextInput/MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/TextInput/MainView.ux -------------------------------------------------------------------------------- /projects/TextInput/app.unoproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/TextInput/app.unoproj -------------------------------------------------------------------------------- /projects/models-manual-test/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/projects/models-manual-test/App.js -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/check-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/check-dependencies.js -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/daemon.sh -------------------------------------------------------------------------------- /scripts/find-msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/find-msbuild.ps1 -------------------------------------------------------------------------------- /scripts/get-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/get-version.sh -------------------------------------------------------------------------------- /scripts/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/kill.sh -------------------------------------------------------------------------------- /scripts/postpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/postpack.sh -------------------------------------------------------------------------------- /scripts/prepack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/prepack.sh -------------------------------------------------------------------------------- /scripts/restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/restore.js -------------------------------------------------------------------------------- /scripts/system-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/system-test.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/texts-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/texts-cs.js -------------------------------------------------------------------------------- /scripts/update-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/update-json.js -------------------------------------------------------------------------------- /scripts/ux-fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/ux-fuzzer.py -------------------------------------------------------------------------------- /scripts/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/scripts/version.sh -------------------------------------------------------------------------------- /setup/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/build.sh -------------------------------------------------------------------------------- /setup/codesign-tgz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/codesign-tgz.sh -------------------------------------------------------------------------------- /setup/dmg/.gitignore: -------------------------------------------------------------------------------- 1 | *.pkg -------------------------------------------------------------------------------- /setup/dmg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/dmg/build.sh -------------------------------------------------------------------------------- /setup/dmg/dmg-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/dmg/dmg-background.png -------------------------------------------------------------------------------- /setup/dmg/dmg-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/dmg/dmg-background@2x.png -------------------------------------------------------------------------------- /setup/dmg/dmg-background@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/dmg/dmg-background@2x.psd -------------------------------------------------------------------------------- /setup/dmg/dmg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/dmg/dmg.icns -------------------------------------------------------------------------------- /setup/dmg/dmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/dmg/dmg.json -------------------------------------------------------------------------------- /setup/dmg/seticon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/dmg/seticon -------------------------------------------------------------------------------- /setup/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/entitlements.plist -------------------------------------------------------------------------------- /setup/notarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/notarize.sh -------------------------------------------------------------------------------- /setup/nsis/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.tgz -------------------------------------------------------------------------------- /setup/nsis/copy-unoconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/copy-unoconfig.js -------------------------------------------------------------------------------- /setup/nsis/data/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/data/icon.ico -------------------------------------------------------------------------------- /setup/nsis/data/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/data/license.txt -------------------------------------------------------------------------------- /setup/nsis/data/modern-xl-install.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/data/modern-xl-install.bmp -------------------------------------------------------------------------------- /setup/nsis/data/modern-xl-install.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/data/modern-xl-install.psd -------------------------------------------------------------------------------- /setup/nsis/fuse-setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/fuse-setup.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Bin/GenPat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Bin/GenPat.exe -------------------------------------------------------------------------------- /setup/nsis/tools/Bin/MakeLangId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Bin/MakeLangId.exe -------------------------------------------------------------------------------- /setup/nsis/tools/Bin/RegTool-amd64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Bin/RegTool-amd64.bin -------------------------------------------------------------------------------- /setup/nsis/tools/Bin/RegTool-x86.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Bin/RegTool-x86.bin -------------------------------------------------------------------------------- /setup/nsis/tools/Bin/makensis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Bin/makensis.exe -------------------------------------------------------------------------------- /setup/nsis/tools/Bin/zip2exe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Bin/zip2exe.exe -------------------------------------------------------------------------------- /setup/nsis/tools/Bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Bin/zlib1.dll -------------------------------------------------------------------------------- /setup/nsis/tools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/COPYING -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/ExecDos/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Contrib/ExecDos/api.h -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/CheckBox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/ComboBox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/DateTime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/GroupBox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/Image.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/IpAddress.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/Label.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/Link.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/ListBox.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/MonthCalendar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/ProgressBar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/RadioButton.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/StatusBar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/Text.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/ToolBar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/TrackBar.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/InstallOptionsEx/Controls/UpDown.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UIs/xl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Contrib/UIs/xl.exe -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UIs/xxl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Contrib/UIs/xxl.exe -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Afrikaans.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Albanian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Arabic.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Armenian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Asturian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Basque.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Belarusian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Bosnian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Breton.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Catalan.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Corsican.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Croatian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Danish.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Dutch.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Esperanto.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Estonian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Farsi.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Finnish.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Galician.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Georgian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Hebrew.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Hindi.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Icelandic.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Indonesian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Irish.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Korean.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Kurdish.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Latvian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Luxembourgish.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Macedonian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Malay.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Mongolian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Norwegian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/NorwegianNynorsk.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Pashto.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Portuguese.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Romanian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/ScotsGaelic.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Serbian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/SerbianLatin.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/SimpChinese.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Slovak.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/SpanishInternational.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Swedish.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Tatar.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Thai.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/TradChinese.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Ukrainian.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Uzbek.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Vietnamese.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/UltraModernUI/Language files/Welsh.nsh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup/nsis/tools/Contrib/nsArray/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Contrib/nsArray/api.h -------------------------------------------------------------------------------- /setup/nsis/tools/Docs/Math/Math.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Docs/Math/Math.txt -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/AppGen.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/AppGen.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/ExecDos/second.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | PATH 3 | cls -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/FileFunc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/FileFunc.ini -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/FileFunc.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/FileFunc.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/Library.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/Library.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/LogicLib.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/LogicLib.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/Memento.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/Memento.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/ModernXL.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/ModernXL.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/NSISMenu.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/NSISMenu.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/StrFunc.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/StrFunc.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/TextFunc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/TextFunc.ini -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/TextFunc.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/TextFunc.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/UserVars.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/UserVars.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/WordFunc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/WordFunc.ini -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/WordFunc.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/WordFunc.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/bigtest.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/bigtest.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/example1.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/example1.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/example2.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/example2.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/gfx.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/gfx.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/makensis.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/makensis.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/primes.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/primes.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/rtest.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/rtest.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/silent.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/silent.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/unicode.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/unicode.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/viewhtml.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/viewhtml.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Examples/waplugin.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Examples/waplugin.nsi -------------------------------------------------------------------------------- /setup/nsis/tools/Include/Colors.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/Colors.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/FileFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/FileFunc.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/LangFile.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/LangFile.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/Library.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/Library.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/LogicLib.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/LogicLib.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/MUI.nsh: -------------------------------------------------------------------------------- 1 | !include "${NSISDIR}\Contrib\Modern UI\System.nsh" -------------------------------------------------------------------------------- /setup/nsis/tools/Include/MUI2.nsh: -------------------------------------------------------------------------------- 1 | !include "${NSISDIR}\Contrib\Modern UI 2\MUI2.nsh" -------------------------------------------------------------------------------- /setup/nsis/tools/Include/MUIEx.nsh: -------------------------------------------------------------------------------- 1 | !define USE_MUIEx 2 | !include "${NSISDIR}\Contrib\UltraModernUI\UMUI.nsh" 3 | -------------------------------------------------------------------------------- /setup/nsis/tools/Include/Memento.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/Memento.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/ModernXL.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/ModernXL.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/ModernXXL.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/ModernXXL.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/MultiUser.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/MultiUser.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/Sections.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/Sections.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/StrFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/StrFunc.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/TextFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/TextFunc.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/UMUI.nsh: -------------------------------------------------------------------------------- 1 | !include "${NSISDIR}\Contrib\UltraModernUI\UMUI.nsh" 2 | -------------------------------------------------------------------------------- /setup/nsis/tools/Include/Util.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/Util.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/VPatchLib.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/VPatchLib.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/Win/COM.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/Win/COM.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/Win/WinNT.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/Win/WinNT.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/WinCore.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/WinCore.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/WinVer.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/WinVer.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/WordFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/WordFunc.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/nsArray.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/nsArray.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/nsDialogs.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/nsDialogs.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/nsProcess.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/nsProcess.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/Include/x64.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Include/x64.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/NSIS.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/NSIS.chm -------------------------------------------------------------------------------- /setup/nsis/tools/NSIS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/NSIS.exe -------------------------------------------------------------------------------- /setup/nsis/tools/Stubs/bzip2-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Stubs/bzip2-x86-ansi -------------------------------------------------------------------------------- /setup/nsis/tools/Stubs/lzma-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Stubs/lzma-x86-ansi -------------------------------------------------------------------------------- /setup/nsis/tools/Stubs/uninst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Stubs/uninst -------------------------------------------------------------------------------- /setup/nsis/tools/Stubs/zlib-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/Stubs/zlib-x86-ansi -------------------------------------------------------------------------------- /setup/nsis/tools/makensis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/makensis.exe -------------------------------------------------------------------------------- /setup/nsis/tools/makensisw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/makensisw.exe -------------------------------------------------------------------------------- /setup/nsis/tools/nsisconf.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/nsisconf.nsh -------------------------------------------------------------------------------- /setup/nsis/tools/uninst-nsis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/tools/uninst-nsis.exe -------------------------------------------------------------------------------- /setup/nsis/wrap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/nsis/wrap.cmd -------------------------------------------------------------------------------- /setup/pkg/.gitignore: -------------------------------------------------------------------------------- 1 | pkgs/ 2 | root/ 3 | *.pkg 4 | -------------------------------------------------------------------------------- /setup/pkg/Distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/Distribution.xml -------------------------------------------------------------------------------- /setup/pkg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/build.sh -------------------------------------------------------------------------------- /setup/pkg/check-system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/check-system.sh -------------------------------------------------------------------------------- /setup/pkg/get-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/get-version.js -------------------------------------------------------------------------------- /setup/pkg/install-fuse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/install-fuse.sh -------------------------------------------------------------------------------- /setup/pkg/launch-fuse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/launch-fuse.sh -------------------------------------------------------------------------------- /setup/pkg/resources/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/resources/license.html -------------------------------------------------------------------------------- /setup/pkg/scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/scripts/postinstall -------------------------------------------------------------------------------- /setup/pkg/scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/scripts/preinstall -------------------------------------------------------------------------------- /setup/pkg/version-gte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/pkg/version-gte.js -------------------------------------------------------------------------------- /setup/platypus/fuse X.platypus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/platypus/fuse X.platypus -------------------------------------------------------------------------------- /setup/platypus/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/platypus/main.sh -------------------------------------------------------------------------------- /setup/staple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/staple.sh -------------------------------------------------------------------------------- /setup/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/setup/uninstall.sh -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | GlobalAssemblyInfo.Override.cs 2 | -------------------------------------------------------------------------------- /src/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /src/GlobalAssemblyInfo.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/GlobalAssemblyInfo.targets -------------------------------------------------------------------------------- /src/common/core/Behaviors/IBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Behaviors/IBehavior.cs -------------------------------------------------------------------------------- /src/common/core/ColoredTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/ColoredTextWriter.cs -------------------------------------------------------------------------------- /src/common/core/ConsoleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/ConsoleExtensions.cs -------------------------------------------------------------------------------- /src/common/core/DateFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/DateFormat.cs -------------------------------------------------------------------------------- /src/common/core/Disposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Disposable.cs -------------------------------------------------------------------------------- /src/common/core/Either.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Either.cs -------------------------------------------------------------------------------- /src/common/core/EqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/EqualityComparer.cs -------------------------------------------------------------------------------- /src/common/core/LineEndings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/LineEndings.cs -------------------------------------------------------------------------------- /src/common/core/Logging/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Logging/Formatter.cs -------------------------------------------------------------------------------- /src/common/core/Logging/IReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Logging/IReport.cs -------------------------------------------------------------------------------- /src/common/core/Logging/LogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Logging/LogFactory.cs -------------------------------------------------------------------------------- /src/common/core/Logging/NullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Logging/NullLogger.cs -------------------------------------------------------------------------------- /src/common/core/Logging/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Logging/Report.cs -------------------------------------------------------------------------------- /src/common/core/Lookups/Grouping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Lookups/Grouping.cs -------------------------------------------------------------------------------- /src/common/core/Lookups/Lookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Lookups/Lookup.cs -------------------------------------------------------------------------------- /src/common/core/NetworkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/NetworkHelper.cs -------------------------------------------------------------------------------- /src/common/core/ObservableStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/ObservableStack.cs -------------------------------------------------------------------------------- /src/common/core/OpenGlVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/OpenGlVersion.cs -------------------------------------------------------------------------------- /src/common/core/Outracks.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Outracks.Core.csproj -------------------------------------------------------------------------------- /src/common/core/Paths/DirectoryName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Paths/DirectoryName.cs -------------------------------------------------------------------------------- /src/common/core/Paths/DirectoryPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Paths/DirectoryPath.cs -------------------------------------------------------------------------------- /src/common/core/Paths/FileName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Paths/FileName.cs -------------------------------------------------------------------------------- /src/common/core/Paths/FilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Paths/FilePath.cs -------------------------------------------------------------------------------- /src/common/core/Pipes/IPipeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Pipes/IPipeImpl.cs -------------------------------------------------------------------------------- /src/common/core/Pipes/NamedPipes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Pipes/NamedPipes.cs -------------------------------------------------------------------------------- /src/common/core/Pipes/Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Pipes/Pipe.cs -------------------------------------------------------------------------------- /src/common/core/Pipes/PipeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Pipes/PipeName.cs -------------------------------------------------------------------------------- /src/common/core/Pipes/SocketWin32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Pipes/SocketWin32.cs -------------------------------------------------------------------------------- /src/common/core/ProcessExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/ProcessExtension.cs -------------------------------------------------------------------------------- /src/common/core/ReplayQueueSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/ReplayQueueSubject.cs -------------------------------------------------------------------------------- /src/common/core/RethrowExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/RethrowExtension.cs -------------------------------------------------------------------------------- /src/common/core/SetEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/SetEqualityComparer.cs -------------------------------------------------------------------------------- /src/common/core/SingleActionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/SingleActionQueue.cs -------------------------------------------------------------------------------- /src/common/core/SystemGuidLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/SystemGuidLoader.cs -------------------------------------------------------------------------------- /src/common/core/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/Text.cs -------------------------------------------------------------------------------- /src/common/core/TextDocumentContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/TextDocumentContent.cs -------------------------------------------------------------------------------- /src/common/core/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/ValidationResult.cs -------------------------------------------------------------------------------- /src/common/core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/core/packages.config -------------------------------------------------------------------------------- /src/common/math/Axis2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Axis2D.cs -------------------------------------------------------------------------------- /src/common/math/ContentFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/ContentFrame.cs -------------------------------------------------------------------------------- /src/common/math/Corners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Corners.cs -------------------------------------------------------------------------------- /src/common/math/Discrete/SetClosure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Discrete/SetClosure.cs -------------------------------------------------------------------------------- /src/common/math/IGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/IGroup.cs -------------------------------------------------------------------------------- /src/common/math/INumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/INumeric.cs -------------------------------------------------------------------------------- /src/common/math/IRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/IRing.cs -------------------------------------------------------------------------------- /src/common/math/Interval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Interval.cs -------------------------------------------------------------------------------- /src/common/math/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Matrix.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Add.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Algebra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Algebra.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Clamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Clamp.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Div.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Div.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Inflate.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Intersect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Intersect.cs -------------------------------------------------------------------------------- /src/common/math/Operators/LessThan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/LessThan.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Max.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Min.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Mul.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Mul.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Round.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Round.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Select.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Select.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Sub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Sub.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Subdivide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Subdivide.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Transpose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Transpose.cs -------------------------------------------------------------------------------- /src/common/math/Operators/Union.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Operators/Union.cs -------------------------------------------------------------------------------- /src/common/math/Outracks.Math.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Outracks.Math.csproj -------------------------------------------------------------------------------- /src/common/math/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Point.cs -------------------------------------------------------------------------------- /src/common/math/Ratio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Ratio.cs -------------------------------------------------------------------------------- /src/common/math/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Rectangle.cs -------------------------------------------------------------------------------- /src/common/math/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Size.cs -------------------------------------------------------------------------------- /src/common/math/Thickness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Thickness.cs -------------------------------------------------------------------------------- /src/common/math/Units/Inches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Units/Inches.cs -------------------------------------------------------------------------------- /src/common/math/Units/Percentages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Units/Percentages.cs -------------------------------------------------------------------------------- /src/common/math/Units/Pixels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Units/Pixels.cs -------------------------------------------------------------------------------- /src/common/math/Units/Points.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Units/Points.cs -------------------------------------------------------------------------------- /src/common/math/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/Vector.cs -------------------------------------------------------------------------------- /src/common/math/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/math/packages.config -------------------------------------------------------------------------------- /src/common/testproc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/testproc/Program.cs -------------------------------------------------------------------------------- /src/common/tests/DateFormatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/DateFormatTests.cs -------------------------------------------------------------------------------- /src/common/tests/FormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/FormatterTests.cs -------------------------------------------------------------------------------- /src/common/tests/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/Helpers.cs -------------------------------------------------------------------------------- /src/common/tests/JsonPathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/JsonPathTests.cs -------------------------------------------------------------------------------- /src/common/tests/MatchWithTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/MatchWithTest.cs -------------------------------------------------------------------------------- /src/common/tests/NetworkHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/NetworkHelperTests.cs -------------------------------------------------------------------------------- /src/common/tests/Outracks.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/Outracks.Tests.csproj -------------------------------------------------------------------------------- /src/common/tests/Paths/FileNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/Paths/FileNameTest.cs -------------------------------------------------------------------------------- /src/common/tests/RemoteTaskTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/RemoteTaskTest.cs -------------------------------------------------------------------------------- /src/common/tests/ReportTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/ReportTest.cs -------------------------------------------------------------------------------- /src/common/tests/SubscribeUsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/SubscribeUsing.cs -------------------------------------------------------------------------------- /src/common/tests/TestResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/TestResult.xml -------------------------------------------------------------------------------- /src/common/tests/TextPositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/TextPositionTests.cs -------------------------------------------------------------------------------- /src/common/tests/WithLatestFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/WithLatestFrom.cs -------------------------------------------------------------------------------- /src/common/tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/app.config -------------------------------------------------------------------------------- /src/common/tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/tests/packages.config -------------------------------------------------------------------------------- /src/common/text/CharacterNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/CharacterNumber.cs -------------------------------------------------------------------------------- /src/common/text/FilePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/FilePosition.cs -------------------------------------------------------------------------------- /src/common/text/LineNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/LineNumber.cs -------------------------------------------------------------------------------- /src/common/text/Outracks.Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/Outracks.Text.csproj -------------------------------------------------------------------------------- /src/common/text/TextOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/TextOffset.cs -------------------------------------------------------------------------------- /src/common/text/TextPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/TextPosition.cs -------------------------------------------------------------------------------- /src/common/text/TextRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/TextRegion.cs -------------------------------------------------------------------------------- /src/common/text/TextScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/TextScanner.cs -------------------------------------------------------------------------------- /src/common/text/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/common/text/packages.config -------------------------------------------------------------------------------- /src/entrypoint/cli/Entrypoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/entrypoint/cli/Entrypoint.cs -------------------------------------------------------------------------------- /src/entrypoint/cli/Fuse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/entrypoint/cli/Fuse.ico -------------------------------------------------------------------------------- /src/entrypoint/cli/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/entrypoint/cli/app.config -------------------------------------------------------------------------------- /src/entrypoint/cli/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/entrypoint/cli/app.manifest -------------------------------------------------------------------------------- /src/entrypoint/cli/fuse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/entrypoint/cli/fuse.csproj -------------------------------------------------------------------------------- /src/entrypoint/cli/fuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/entrypoint/cli/fuse.js -------------------------------------------------------------------------------- /src/entrypoint/cli/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/entrypoint/cli/packages.config -------------------------------------------------------------------------------- /src/entrypoint/uri-handler/Fuse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/entrypoint/uri-handler/Fuse.ico -------------------------------------------------------------------------------- /src/fuse/command/CliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/CliCommand.cs -------------------------------------------------------------------------------- /src/fuse/command/CliProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/CliProgram.cs -------------------------------------------------------------------------------- /src/fuse/command/ExceptionWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/ExceptionWriter.cs -------------------------------------------------------------------------------- /src/fuse/command/ExitWithError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/ExitWithError.cs -------------------------------------------------------------------------------- /src/fuse/command/HelpTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/HelpTools.cs -------------------------------------------------------------------------------- /src/fuse/command/LazyCliCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/LazyCliCommand.cs -------------------------------------------------------------------------------- /src/fuse/command/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/Program.cs -------------------------------------------------------------------------------- /src/fuse/command/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/Table.cs -------------------------------------------------------------------------------- /src/fuse/command/TableWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/TableWriter.cs -------------------------------------------------------------------------------- /src/fuse/command/UnknownCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/UnknownCommand.cs -------------------------------------------------------------------------------- /src/fuse/command/VersionWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/VersionWriter.cs -------------------------------------------------------------------------------- /src/fuse/command/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/app.config -------------------------------------------------------------------------------- /src/fuse/command/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/command/packages.config -------------------------------------------------------------------------------- /src/fuse/common/Auth/Hardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/Hardware.cs -------------------------------------------------------------------------------- /src/fuse/common/Auth/ILicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/ILicense.cs -------------------------------------------------------------------------------- /src/fuse/common/Auth/ILicenseState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/ILicenseState.cs -------------------------------------------------------------------------------- /src/fuse/common/Auth/License.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/License.cs -------------------------------------------------------------------------------- /src/fuse/common/Auth/LicenseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/LicenseData.cs -------------------------------------------------------------------------------- /src/fuse/common/Auth/LicenseStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/LicenseStatus.cs -------------------------------------------------------------------------------- /src/fuse/common/Auth/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/Storage.cs -------------------------------------------------------------------------------- /src/fuse/common/Auth/UriHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/UriHandler.cs -------------------------------------------------------------------------------- /src/fuse/common/Auth/Utilities/GZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Auth/Utilities/GZip.cs -------------------------------------------------------------------------------- /src/fuse/common/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/FileExtensions.cs -------------------------------------------------------------------------------- /src/fuse/common/FileFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/FileFilters.cs -------------------------------------------------------------------------------- /src/fuse/common/FuseApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/FuseApi.cs -------------------------------------------------------------------------------- /src/fuse/common/FuseImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/FuseImpl.cs -------------------------------------------------------------------------------- /src/fuse/common/IFuse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/IFuse.cs -------------------------------------------------------------------------------- /src/fuse/common/IFuseLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/IFuseLauncher.cs -------------------------------------------------------------------------------- /src/fuse/common/KillAll/FuseKiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/KillAll/FuseKiller.cs -------------------------------------------------------------------------------- /src/fuse/common/KillAll/IFuseKiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/KillAll/IFuseKiller.cs -------------------------------------------------------------------------------- /src/fuse/common/Net/FuseWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Net/FuseWebClient.cs -------------------------------------------------------------------------------- /src/fuse/common/Outracks.Fuse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Outracks.Fuse.csproj -------------------------------------------------------------------------------- /src/fuse/common/Parsed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Parsed.cs -------------------------------------------------------------------------------- /src/fuse/common/ProjectDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/ProjectDetector.cs -------------------------------------------------------------------------------- /src/fuse/common/ProjectNotFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/ProjectNotFound.cs -------------------------------------------------------------------------------- /src/fuse/common/Protocol/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Protocol/Client.cs -------------------------------------------------------------------------------- /src/fuse/common/Protocol/Core/Hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Protocol/Core/Hello.cs -------------------------------------------------------------------------------- /src/fuse/common/Protocol/DaemonKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Protocol/DaemonKey.cs -------------------------------------------------------------------------------- /src/fuse/common/Protocol/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Protocol/Event.cs -------------------------------------------------------------------------------- /src/fuse/common/Protocol/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Protocol/IMessage.cs -------------------------------------------------------------------------------- /src/fuse/common/Protocol/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Protocol/Request.cs -------------------------------------------------------------------------------- /src/fuse/common/Protocol/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Protocol/Response.cs -------------------------------------------------------------------------------- /src/fuse/common/Protocol/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/Protocol/Serializer.cs -------------------------------------------------------------------------------- /src/fuse/common/SourceFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/SourceFragment.cs -------------------------------------------------------------------------------- /src/fuse/common/UxExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/UxExpression.cs -------------------------------------------------------------------------------- /src/fuse/common/UxSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/UxSize.cs -------------------------------------------------------------------------------- /src/fuse/common/UxWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/UxWriter.cs -------------------------------------------------------------------------------- /src/fuse/common/WebLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/WebLinks.cs -------------------------------------------------------------------------------- /src/fuse/common/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/app.config -------------------------------------------------------------------------------- /src/fuse/common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/common/packages.config -------------------------------------------------------------------------------- /src/fuse/daemon/DaemonRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/DaemonRunner.cs -------------------------------------------------------------------------------- /src/fuse/daemon/EnsureSingleUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/EnsureSingleUser.cs -------------------------------------------------------------------------------- /src/fuse/daemon/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/Identity.cs -------------------------------------------------------------------------------- /src/fuse/daemon/PluginClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/PluginClient.cs -------------------------------------------------------------------------------- /src/fuse/daemon/PluginClients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/PluginClients.cs -------------------------------------------------------------------------------- /src/fuse/daemon/ReadUntilExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/ReadUntilExtension.cs -------------------------------------------------------------------------------- /src/fuse/daemon/ServiceRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/ServiceRunner.cs -------------------------------------------------------------------------------- /src/fuse/daemon/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/app.config -------------------------------------------------------------------------------- /src/fuse/daemon/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/daemon/packages.config -------------------------------------------------------------------------------- /src/fuse/locale/LocaleCulture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/locale/LocaleCulture.cs -------------------------------------------------------------------------------- /src/fuse/locale/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/locale/Strings.Designer.cs -------------------------------------------------------------------------------- /src/fuse/locale/Strings.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/locale/Strings.fr-FR.resx -------------------------------------------------------------------------------- /src/fuse/locale/Strings.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/locale/Strings.ko-KR.resx -------------------------------------------------------------------------------- /src/fuse/locale/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/locale/Strings.resx -------------------------------------------------------------------------------- /src/fuse/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | Fuse Sandbox.app/ 2 | -------------------------------------------------------------------------------- /src/fuse/sandbox/AutoReloadContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/sandbox/AutoReloadContent.cs -------------------------------------------------------------------------------- /src/fuse/sandbox/AutoReloadProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/sandbox/AutoReloadProgram.cs -------------------------------------------------------------------------------- /src/fuse/sandbox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/sandbox/Info.plist -------------------------------------------------------------------------------- /src/fuse/sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/sandbox/README.md -------------------------------------------------------------------------------- /src/fuse/sandbox/Resources/DIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fuse/sandbox/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/sandbox/app.config -------------------------------------------------------------------------------- /src/fuse/sandbox/fuse-sandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/sandbox/fuse-sandbox.csproj -------------------------------------------------------------------------------- /src/fuse/sandbox/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/sandbox/packages.config -------------------------------------------------------------------------------- /src/fuse/studio/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/About.cs -------------------------------------------------------------------------------- /src/fuse/studio/Activate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Activate.cs -------------------------------------------------------------------------------- /src/fuse/studio/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/App.config -------------------------------------------------------------------------------- /src/fuse/studio/ApplicationPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/ApplicationPaths.cs -------------------------------------------------------------------------------- /src/fuse/studio/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Build.cs -------------------------------------------------------------------------------- /src/fuse/studio/BuildArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/BuildArgs.cs -------------------------------------------------------------------------------- /src/fuse/studio/BuildFlagsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/BuildFlagsWindow.cs -------------------------------------------------------------------------------- /src/fuse/studio/CodeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/CodeView.cs -------------------------------------------------------------------------------- /src/fuse/studio/Dashboard/Dashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Dashboard/Dashboard.cs -------------------------------------------------------------------------------- /src/fuse/studio/ElementContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/ElementContext.cs -------------------------------------------------------------------------------- /src/fuse/studio/Export.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Export.cs -------------------------------------------------------------------------------- /src/fuse/studio/ExternalSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/ExternalSelection.cs -------------------------------------------------------------------------------- /src/fuse/studio/FocusEditorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/FocusEditorCommand.cs -------------------------------------------------------------------------------- /src/fuse/studio/Fuse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Fuse.ico -------------------------------------------------------------------------------- /src/fuse/studio/GlVersionParsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/GlVersionParsing.cs -------------------------------------------------------------------------------- /src/fuse/studio/Icons/AlignmentIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/AlignmentIcon.cs -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Arrow.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Arrow@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Checkmark.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Checkmark@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/ClassesSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/ClassesSmall.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Confirm.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Confirm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Confirm@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Edit/Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Edit/Active.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Edit/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Edit/Small.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Folder.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/FontSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/FontSize.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/FontSize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/FontSize@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Icons.cs -------------------------------------------------------------------------------- /src/fuse/studio/Icons/LineSpacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/LineSpacing.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/LogOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/LogOut.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/LogOut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/LogOut@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Maximize.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Maximize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Maximize@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Minimize.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Minimize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Minimize@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Plugin_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Plugin_Error.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/SelectionIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/SelectionIcon.cs -------------------------------------------------------------------------------- /src/fuse/studio/Icons/StackIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/StackIcon.cs -------------------------------------------------------------------------------- /src/fuse/studio/Icons/TouchIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/TouchIcon.cs -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Wrap/NoWrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Wrap/NoWrap.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Wrap/Wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Wrap/Wrap.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/Wrap/Wrap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/Wrap/Wrap@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/account.png -------------------------------------------------------------------------------- /src/fuse/studio/Icons/account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Icons/account@2x.png -------------------------------------------------------------------------------- /src/fuse/studio/Import/ImportFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Import/ImportFailed.cs -------------------------------------------------------------------------------- /src/fuse/studio/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Info.plist -------------------------------------------------------------------------------- /src/fuse/studio/LanguageMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/LanguageMenu.cs -------------------------------------------------------------------------------- /src/fuse/studio/MainMenu/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/MainMenu/Help.cs -------------------------------------------------------------------------------- /src/fuse/studio/MainMenu/MainMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/MainMenu/MainMenu.cs -------------------------------------------------------------------------------- /src/fuse/studio/MainWindow/Busy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/MainWindow/Busy.cs -------------------------------------------------------------------------------- /src/fuse/studio/NagScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/NagScreen.cs -------------------------------------------------------------------------------- /src/fuse/studio/OpenFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/OpenFolder.cs -------------------------------------------------------------------------------- /src/fuse/studio/OpenProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/OpenProject.cs -------------------------------------------------------------------------------- /src/fuse/studio/OpenTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/OpenTerminal.cs -------------------------------------------------------------------------------- /src/fuse/studio/OpenTextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/OpenTextEditor.cs -------------------------------------------------------------------------------- /src/fuse/studio/PreviewOnDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/PreviewOnDevice.cs -------------------------------------------------------------------------------- /src/fuse/studio/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Program.cs -------------------------------------------------------------------------------- /src/fuse/studio/Project/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Project/Attribute.cs -------------------------------------------------------------------------------- /src/fuse/studio/Project/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Project/Element.cs -------------------------------------------------------------------------------- /src/fuse/studio/Project/IAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Project/IAttribute.cs -------------------------------------------------------------------------------- /src/fuse/studio/Project/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Project/IContext.cs -------------------------------------------------------------------------------- /src/fuse/studio/Project/IDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Project/IDocument.cs -------------------------------------------------------------------------------- /src/fuse/studio/Project/IElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Project/IElement.cs -------------------------------------------------------------------------------- /src/fuse/studio/Project/IProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Project/IProject.cs -------------------------------------------------------------------------------- /src/fuse/studio/Project/Where.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Project/Where.cs -------------------------------------------------------------------------------- /src/fuse/studio/ProjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/ProjectData.cs -------------------------------------------------------------------------------- /src/fuse/studio/ProjectHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/ProjectHost.cs -------------------------------------------------------------------------------- /src/fuse/studio/RecentProjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/RecentProjects.cs -------------------------------------------------------------------------------- /src/fuse/studio/Setup/SetupGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Setup/SetupGuide.cs -------------------------------------------------------------------------------- /src/fuse/studio/Testing/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Testing/Debug.cs -------------------------------------------------------------------------------- /src/fuse/studio/Texts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Texts.cs -------------------------------------------------------------------------------- /src/fuse/studio/Theming/Arrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Theming/Arrow.cs -------------------------------------------------------------------------------- /src/fuse/studio/Theming/Buttons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Theming/Buttons.cs -------------------------------------------------------------------------------- /src/fuse/studio/Theming/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Theming/CheckBox.cs -------------------------------------------------------------------------------- /src/fuse/studio/Theming/Modal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Theming/Modal.cs -------------------------------------------------------------------------------- /src/fuse/studio/Theming/Popover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Theming/Popover.cs -------------------------------------------------------------------------------- /src/fuse/studio/Theming/Spacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Theming/Spacer.cs -------------------------------------------------------------------------------- /src/fuse/studio/Theming/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/Theming/Theme.cs -------------------------------------------------------------------------------- /src/fuse/studio/USBMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/USBMode.cs -------------------------------------------------------------------------------- /src/fuse/studio/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/app.manifest -------------------------------------------------------------------------------- /src/fuse/studio/fuse-studio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/fuse-studio.csproj -------------------------------------------------------------------------------- /src/fuse/studio/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/studio/packages.config -------------------------------------------------------------------------------- /src/fuse/system-test/FuseRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/system-test/FuseRunner.cs -------------------------------------------------------------------------------- /src/fuse/system-test/IOHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/system-test/IOHelpers.cs -------------------------------------------------------------------------------- /src/fuse/system-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/system-test/README.md -------------------------------------------------------------------------------- /src/fuse/system-test/SystemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/system-test/SystemTest.cs -------------------------------------------------------------------------------- /src/fuse/system-test/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/system-test/TestHelpers.cs -------------------------------------------------------------------------------- /src/fuse/tests/EnvironmentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tests/EnvironmentTest.cs -------------------------------------------------------------------------------- /src/fuse/tests/FailureClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tests/FailureClient.cs -------------------------------------------------------------------------------- /src/fuse/tests/MessageDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tests/MessageDatabase.cs -------------------------------------------------------------------------------- /src/fuse/tests/Messages/HelloResponse.msgDB: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /src/fuse/tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tests/app.config -------------------------------------------------------------------------------- /src/fuse/tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tests/packages.config -------------------------------------------------------------------------------- /src/fuse/tray/Fuse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tray/Fuse.ico -------------------------------------------------------------------------------- /src/fuse/tray/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tray/Program.cs -------------------------------------------------------------------------------- /src/fuse/tray/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tray/app.config -------------------------------------------------------------------------------- /src/fuse/tray/fuse-tray.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tray/fuse-tray.csproj -------------------------------------------------------------------------------- /src/fuse/tray/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fuse/tray/packages.config -------------------------------------------------------------------------------- /src/fusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/README.md -------------------------------------------------------------------------------- /src/fusion/core/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Animation.cs -------------------------------------------------------------------------------- /src/fusion/core/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Application.cs -------------------------------------------------------------------------------- /src/fusion/core/BehaviorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/BehaviorProperty.cs -------------------------------------------------------------------------------- /src/fusion/core/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Brush.cs -------------------------------------------------------------------------------- /src/fusion/core/Clipping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Clipping.cs -------------------------------------------------------------------------------- /src/fusion/core/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Color.cs -------------------------------------------------------------------------------- /src/fusion/core/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Command.cs -------------------------------------------------------------------------------- /src/fusion/core/ContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/ContextMenu.cs -------------------------------------------------------------------------------- /src/fusion/core/Control.Bind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Control.Bind.cs -------------------------------------------------------------------------------- /src/fusion/core/Control.Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Control.Empty.cs -------------------------------------------------------------------------------- /src/fusion/core/Control.Lazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Control.Lazy.cs -------------------------------------------------------------------------------- /src/fusion/core/Control.WithSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Control.WithSize.cs -------------------------------------------------------------------------------- /src/fusion/core/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Control.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/Button.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/IImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/IImage.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/Image.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/Label.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/LogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/LogView.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/Shapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/Shapes.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/Slider.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/TextBox.cs -------------------------------------------------------------------------------- /src/fusion/core/Controls/WebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Controls/WebView.cs -------------------------------------------------------------------------------- /src/fusion/core/CornerRadius.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/CornerRadius.cs -------------------------------------------------------------------------------- /src/fusion/core/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Cursor.cs -------------------------------------------------------------------------------- /src/fusion/core/DebugControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/DebugControl.cs -------------------------------------------------------------------------------- /src/fusion/core/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Document.cs -------------------------------------------------------------------------------- /src/fusion/core/Dragging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Dragging.cs -------------------------------------------------------------------------------- /src/fusion/core/DropOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/DropOperation.cs -------------------------------------------------------------------------------- /src/fusion/core/Effects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Effects.cs -------------------------------------------------------------------------------- /src/fusion/core/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Font.cs -------------------------------------------------------------------------------- /src/fusion/core/FpsProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/FpsProfiler.cs -------------------------------------------------------------------------------- /src/fusion/core/HotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/HotKey.cs -------------------------------------------------------------------------------- /src/fusion/core/IDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/IDialog.cs -------------------------------------------------------------------------------- /src/fusion/core/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Icon.cs -------------------------------------------------------------------------------- /src/fusion/core/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Key.cs -------------------------------------------------------------------------------- /src/fusion/core/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Keyboard.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Center.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Center.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Dock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Dock.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Grid.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Layer.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Scissor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Scissor.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Stack.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Subdivide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Subdivide.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Switch.cs -------------------------------------------------------------------------------- /src/fusion/core/Layout/Wrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Layout/Wrap.cs -------------------------------------------------------------------------------- /src/fusion/core/Menus/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Menus/Menu.cs -------------------------------------------------------------------------------- /src/fusion/core/Menus/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Menus/MenuItem.cs -------------------------------------------------------------------------------- /src/fusion/core/ModifierKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/ModifierKeys.cs -------------------------------------------------------------------------------- /src/fusion/core/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Pointer.cs -------------------------------------------------------------------------------- /src/fusion/core/PoolPerElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/PoolPerElement.cs -------------------------------------------------------------------------------- /src/fusion/core/Positioned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Positioned.cs -------------------------------------------------------------------------------- /src/fusion/core/Resizable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Resizable.cs -------------------------------------------------------------------------------- /src/fusion/core/ScrollBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/ScrollBounds.cs -------------------------------------------------------------------------------- /src/fusion/core/Scrolling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Scrolling.cs -------------------------------------------------------------------------------- /src/fusion/core/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Shell.cs -------------------------------------------------------------------------------- /src/fusion/core/Stroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Stroke.cs -------------------------------------------------------------------------------- /src/fusion/core/ToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/ToolTip.cs -------------------------------------------------------------------------------- /src/fusion/core/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/Window.cs -------------------------------------------------------------------------------- /src/fusion/core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/core/packages.config -------------------------------------------------------------------------------- /src/fusion/docs/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/docs/GettingStarted.md -------------------------------------------------------------------------------- /src/fusion/docs/Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/docs/Reference.md -------------------------------------------------------------------------------- /src/fusion/docs/images/Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/docs/images/Center.png -------------------------------------------------------------------------------- /src/fusion/docs/images/Compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/docs/images/Compose.png -------------------------------------------------------------------------------- /src/fusion/docs/images/Dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/docs/images/Dock.png -------------------------------------------------------------------------------- /src/fusion/docs/images/NoCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/docs/images/NoCenter.png -------------------------------------------------------------------------------- /src/fusion/docs/images/Padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/docs/images/Padding.png -------------------------------------------------------------------------------- /src/fusion/docs/images/WithSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/docs/images/WithSize.png -------------------------------------------------------------------------------- /src/fusion/integration-tests/.gitignore: -------------------------------------------------------------------------------- 1 | fusion-integrations.app 2 | -------------------------------------------------------------------------------- /src/fusion/integration-tests/Resources/DIR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fusion/mac/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/AppDelegate.cs -------------------------------------------------------------------------------- /src/fusion/mac/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/Application.cs -------------------------------------------------------------------------------- /src/fusion/mac/DataBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/DataBinding.cs -------------------------------------------------------------------------------- /src/fusion/mac/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/Dispatcher.cs -------------------------------------------------------------------------------- /src/fusion/mac/FileDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/FileDialogs.cs -------------------------------------------------------------------------------- /src/fusion/mac/MainThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/MainThread.cs -------------------------------------------------------------------------------- /src/fusion/mac/Marshalling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/Marshalling.cs -------------------------------------------------------------------------------- /src/fusion/mac/MenuBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/MenuBuilder.cs -------------------------------------------------------------------------------- /src/fusion/mac/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/MessageBox.cs -------------------------------------------------------------------------------- /src/fusion/mac/MonoMacNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/MonoMacNotifier.cs -------------------------------------------------------------------------------- /src/fusion/mac/NSDefaultView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/NSDefaultView.cs -------------------------------------------------------------------------------- /src/fusion/mac/PermissionOSX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/PermissionOSX.cs -------------------------------------------------------------------------------- /src/fusion/mac/ShellOSX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/ShellOSX.cs -------------------------------------------------------------------------------- /src/fusion/mac/Transformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/Transformation.cs -------------------------------------------------------------------------------- /src/fusion/mac/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/mac/packages.config -------------------------------------------------------------------------------- /src/fusion/tests/CenterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/CenterTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/CopyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/CopyTests.cs -------------------------------------------------------------------------------- /src/fusion/tests/DefaultControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/DefaultControl.cs -------------------------------------------------------------------------------- /src/fusion/tests/DockBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/DockBuilderTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/DockTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/DockTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/FrameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/FrameTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/ImageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/ImageTests.cs -------------------------------------------------------------------------------- /src/fusion/tests/LazyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/LazyTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/ListChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/ListChange.cs -------------------------------------------------------------------------------- /src/fusion/tests/NSObjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/NSObjectTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/ObserveOnTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/ObserveOnTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/PropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/PropertyTests.cs -------------------------------------------------------------------------------- /src/fusion/tests/ScissorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/ScissorTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/SubdivideTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/SubdivideTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/SumTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/SumTree.cs -------------------------------------------------------------------------------- /src/fusion/tests/SvgTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/SvgTests.cs -------------------------------------------------------------------------------- /src/fusion/tests/TestControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/TestControl.cs -------------------------------------------------------------------------------- /src/fusion/tests/WithSizeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/WithSizeTest.cs -------------------------------------------------------------------------------- /src/fusion/tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/tests/packages.config -------------------------------------------------------------------------------- /src/fusion/win/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/Application.cs -------------------------------------------------------------------------------- /src/fusion/win/BalloonNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/BalloonNotifier.cs -------------------------------------------------------------------------------- /src/fusion/win/CustomTitlebar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/CustomTitlebar.cs -------------------------------------------------------------------------------- /src/fusion/win/DataBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/DataBinding.cs -------------------------------------------------------------------------------- /src/fusion/win/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/Dispatcher.cs -------------------------------------------------------------------------------- /src/fusion/win/DpiAwareForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/DpiAwareForm.cs -------------------------------------------------------------------------------- /src/fusion/win/DpiAwareWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/DpiAwareWindow.cs -------------------------------------------------------------------------------- /src/fusion/win/DpiAwareness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/DpiAwareness.cs -------------------------------------------------------------------------------- /src/fusion/win/FancyWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/FancyWindow.xaml -------------------------------------------------------------------------------- /src/fusion/win/FancyWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/FancyWindow.xaml.cs -------------------------------------------------------------------------------- /src/fusion/win/FileDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/FileDialogs.cs -------------------------------------------------------------------------------- /src/fusion/win/FilterString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/FilterString.cs -------------------------------------------------------------------------------- /src/fusion/win/Fuse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/Fuse.ico -------------------------------------------------------------------------------- /src/fusion/win/Marshalling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/Marshalling.cs -------------------------------------------------------------------------------- /src/fusion/win/OverlayForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/OverlayForm.cs -------------------------------------------------------------------------------- /src/fusion/win/OverlayWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/OverlayWindow.xaml -------------------------------------------------------------------------------- /src/fusion/win/PermissionWin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/PermissionWin.cs -------------------------------------------------------------------------------- /src/fusion/win/Resources/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/Resources/grab.cur -------------------------------------------------------------------------------- /src/fusion/win/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/ScrollBar.xaml -------------------------------------------------------------------------------- /src/fusion/win/ShellWin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/ShellWin.cs -------------------------------------------------------------------------------- /src/fusion/win/StyleResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/StyleResources.xaml -------------------------------------------------------------------------------- /src/fusion/win/Transformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/Transformation.cs -------------------------------------------------------------------------------- /src/fusion/win/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/WinApi.cs -------------------------------------------------------------------------------- /src/fusion/win/WindowPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/WindowPlacement.cs -------------------------------------------------------------------------------- /src/fusion/win/WpfCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/WpfCommand.cs -------------------------------------------------------------------------------- /src/fusion/win/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/fusion/win/packages.config -------------------------------------------------------------------------------- /src/mac/logserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/.gitignore -------------------------------------------------------------------------------- /src/mac/logserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/Makefile -------------------------------------------------------------------------------- /src/mac/logserver/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/logger.cpp -------------------------------------------------------------------------------- /src/mac/logserver/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/logger.h -------------------------------------------------------------------------------- /src/mac/logserver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/main.cpp -------------------------------------------------------------------------------- /src/mac/logserver/singleproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/singleproc.cpp -------------------------------------------------------------------------------- /src/mac/logserver/singleproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/singleproc.h -------------------------------------------------------------------------------- /src/mac/logserver/socketserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/socketserver.cpp -------------------------------------------------------------------------------- /src/mac/logserver/socketserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/socketserver.h -------------------------------------------------------------------------------- /src/mac/logserver/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/test.sh -------------------------------------------------------------------------------- /src/mac/logserver/testclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/logserver/testclient.cpp -------------------------------------------------------------------------------- /src/mac/menu-bar/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/menu-bar/Entitlements.plist -------------------------------------------------------------------------------- /src/mac/menu-bar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/menu-bar/Info.plist -------------------------------------------------------------------------------- /src/mac/menu-bar/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/menu-bar/Main.cs -------------------------------------------------------------------------------- /src/mac/menu-bar/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/menu-bar/MainMenu.xib -------------------------------------------------------------------------------- /src/mac/monostub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/monostub/.gitignore -------------------------------------------------------------------------------- /src/mac/monostub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/monostub/Makefile -------------------------------------------------------------------------------- /src/mac/monostub/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/monostub/fonts.conf -------------------------------------------------------------------------------- /src/mac/monostub/monostub-console.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/monostub/monostub-console.m -------------------------------------------------------------------------------- /src/mac/monostub/monostub-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/monostub/monostub-utils.h -------------------------------------------------------------------------------- /src/mac/monostub/monostub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/monostub/monostub.m -------------------------------------------------------------------------------- /src/mac/msbuild/FrameworkList.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/msbuild/FrameworkList.xml -------------------------------------------------------------------------------- /src/mac/studio/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/studio/Entitlements.plist -------------------------------------------------------------------------------- /src/mac/studio/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/studio/Info.plist -------------------------------------------------------------------------------- /src/mac/studio/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/studio/Main.cs -------------------------------------------------------------------------------- /src/mac/studio/fuse X.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/studio/fuse X.csproj -------------------------------------------------------------------------------- /src/mac/wpf/PresentationCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/wpf/PresentationCore.dll -------------------------------------------------------------------------------- /src/mac/wpf/UIAutomationTypes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/mac/wpf/UIAutomationTypes.dll -------------------------------------------------------------------------------- /src/preview/app/Application.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Application.uno -------------------------------------------------------------------------------- /src/preview/app/Application.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Application.ux -------------------------------------------------------------------------------- /src/preview/app/Assets/Manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Assets/Manual.png -------------------------------------------------------------------------------- /src/preview/app/Assets/QR-Code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Assets/QR-Code.png -------------------------------------------------------------------------------- /src/preview/app/Assets/shake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Assets/shake.png -------------------------------------------------------------------------------- /src/preview/app/Assets/shake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Assets/shake@2x.png -------------------------------------------------------------------------------- /src/preview/app/Assets/shake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Assets/shake@3x.png -------------------------------------------------------------------------------- /src/preview/app/FuseRx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/FuseRx.js -------------------------------------------------------------------------------- /src/preview/app/MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/MainView.ux -------------------------------------------------------------------------------- /src/preview/app/Pages/CodePage.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Pages/CodePage.ux -------------------------------------------------------------------------------- /src/preview/app/Pages/ErrorPage.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Pages/ErrorPage.ux -------------------------------------------------------------------------------- /src/preview/app/Pages/OpenPage.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Pages/OpenPage.ux -------------------------------------------------------------------------------- /src/preview/app/Pages/QRCodePage.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Pages/QRCodePage.ux -------------------------------------------------------------------------------- /src/preview/app/Pages/SetupPage.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Pages/SetupPage.ux -------------------------------------------------------------------------------- /src/preview/app/Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Projects.js -------------------------------------------------------------------------------- /src/preview/app/ProxyState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/ProxyState.js -------------------------------------------------------------------------------- /src/preview/app/Resources.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/Resources.ux -------------------------------------------------------------------------------- /src/preview/app/ShakeRecognizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/ShakeRecognizer.js -------------------------------------------------------------------------------- /src/preview/app/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/build.sh -------------------------------------------------------------------------------- /src/preview/app/rx.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/app/rx.all.js -------------------------------------------------------------------------------- /src/preview/core/Application.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/Application.uno -------------------------------------------------------------------------------- /src/preview/core/Context.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/Context.uno -------------------------------------------------------------------------------- /src/preview/core/DashedBrush.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/DashedBrush.uno -------------------------------------------------------------------------------- /src/preview/core/DeveloperMenu.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/DeveloperMenu.ux -------------------------------------------------------------------------------- /src/preview/core/DeviceInfo.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/DeviceInfo.uno -------------------------------------------------------------------------------- /src/preview/core/EmptyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/EmptyClass.cs -------------------------------------------------------------------------------- /src/preview/core/FakeApp.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/FakeApp.uno -------------------------------------------------------------------------------- /src/preview/core/ModalDialog.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/ModalDialog.uno -------------------------------------------------------------------------------- /src/preview/core/ProxyClient.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/ProxyClient.uno -------------------------------------------------------------------------------- /src/preview/core/UserAppState.uno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/UserAppState.uno -------------------------------------------------------------------------------- /src/preview/core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/app.config -------------------------------------------------------------------------------- /src/preview/core/fight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/fight.png -------------------------------------------------------------------------------- /src/preview/core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/core/packages.config -------------------------------------------------------------------------------- /src/preview/service/BuildLogged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/BuildLogged.cs -------------------------------------------------------------------------------- /src/preview/service/BuildProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/BuildProject.cs -------------------------------------------------------------------------------- /src/preview/service/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/Builder.cs -------------------------------------------------------------------------------- /src/preview/service/CacheCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/CacheCleaner.cs -------------------------------------------------------------------------------- /src/preview/service/Ended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/Ended.cs -------------------------------------------------------------------------------- /src/preview/service/FileSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/FileSender.cs -------------------------------------------------------------------------------- /src/preview/service/IErrorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/IErrorHelper.cs -------------------------------------------------------------------------------- /src/preview/service/LogSubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/LogSubject.cs -------------------------------------------------------------------------------- /src/preview/service/MarkupParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/MarkupParser.cs -------------------------------------------------------------------------------- /src/preview/service/Platform/Mac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/Platform/Mac.cs -------------------------------------------------------------------------------- /src/preview/service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/Program.cs -------------------------------------------------------------------------------- /src/preview/service/ProjectBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/ProjectBuild.cs -------------------------------------------------------------------------------- /src/preview/service/Reifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/Reifier.cs -------------------------------------------------------------------------------- /src/preview/service/RunFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/RunFailed.cs -------------------------------------------------------------------------------- /src/preview/service/SocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/SocketServer.cs -------------------------------------------------------------------------------- /src/preview/service/Started.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/Started.cs -------------------------------------------------------------------------------- /src/preview/service/UnoBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/UnoBuild.cs -------------------------------------------------------------------------------- /src/preview/service/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/Updater.cs -------------------------------------------------------------------------------- /src/preview/service/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/app.config -------------------------------------------------------------------------------- /src/preview/service/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/service/packages.config -------------------------------------------------------------------------------- /src/preview/tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/tests/App.config -------------------------------------------------------------------------------- /src/preview/tests/MethodCallTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/tests/MethodCallTest.cs -------------------------------------------------------------------------------- /src/preview/tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/preview/tests/packages.config -------------------------------------------------------------------------------- /src/simulator/common/EmptyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/simulator/common/EmptyClass.cs -------------------------------------------------------------------------------- /src/simulator/main/BuildFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/simulator/main/BuildFailed.cs -------------------------------------------------------------------------------- /src/simulator/main/UniqueNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/simulator/main/UniqueNames.cs -------------------------------------------------------------------------------- /src/simulator/main/ValueParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/simulator/main/ValueParser.cs -------------------------------------------------------------------------------- /src/simulator/main/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/simulator/main/app.config -------------------------------------------------------------------------------- /src/simulator/main/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/simulator/main/packages.config -------------------------------------------------------------------------------- /src/simulator/tests/UXFeaturesTestApp/UXName/UXName.uno: -------------------------------------------------------------------------------- 1 | using Uno; 2 | 3 | public class NameTestDummyClass 4 | { 5 | } -------------------------------------------------------------------------------- /src/simulator/tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/simulator/tests/app.config -------------------------------------------------------------------------------- /src/simulator/tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/simulator/tests/packages.config -------------------------------------------------------------------------------- /src/sketch2fuse/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/CHANGELOG.md -------------------------------------------------------------------------------- /src/sketch2fuse/Command/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/Command/Logger.cs -------------------------------------------------------------------------------- /src/sketch2fuse/Command/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/Command/Program.cs -------------------------------------------------------------------------------- /src/sketch2fuse/GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/GitVersion.yml -------------------------------------------------------------------------------- /src/sketch2fuse/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/NuGet.Config -------------------------------------------------------------------------------- /src/sketch2fuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/README.md -------------------------------------------------------------------------------- /src/sketch2fuse/Sketch2Fuse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/Sketch2Fuse.sln -------------------------------------------------------------------------------- /src/sketch2fuse/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/build.bat -------------------------------------------------------------------------------- /src/sketch2fuse/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/build.sh -------------------------------------------------------------------------------- /src/sketch2fuse/command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/command.sh -------------------------------------------------------------------------------- /src/sketch2fuse/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/files/README.md -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/AllFillTypes.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/AmericanTypewriter.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Arrow.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/AssymetricPath.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Blurs.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/BooleanOperations.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/ColoredArialText.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/CombinedShapeSymbol.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/DefaultText.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/DisconnectedPath.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/DuplicatedSymbolName.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/EditedRectangles.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Empty.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/FlippedAndRotated.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Group.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/ImageSymbol.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/InnerShadow.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/LayerOpacity.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Line.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/LineWithoutSymbol.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/MaskedTriangle.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Masks.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/MiscShapePaths.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/MultipleStyledText.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/NestedSymbol.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/OpenFilledPath.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Oval.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Paths.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Properties.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Rectangle.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/RotatedLayer.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/RoundedRectanglesGroup.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/ScissoredPolygons.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/ShadowedText.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Shadows.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/Star.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/SymbolNames.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/TestProject.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/VectorPath.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/files/Sketch43/desert-moon-zwj-sketch43.reference/stderr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sketch2fuse/regression-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/regression-tests.sh -------------------------------------------------------------------------------- /src/sketch2fuse/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/sketch2fuse/test.sh -------------------------------------------------------------------------------- /src/unohost/common/Input/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/common/Input/Cursor.cs -------------------------------------------------------------------------------- /src/unohost/common/UnoHostArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/common/UnoHostArgs.cs -------------------------------------------------------------------------------- /src/unohost/common/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/common/app.config -------------------------------------------------------------------------------- /src/unohost/common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/common/packages.config -------------------------------------------------------------------------------- /src/unohost/mac/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/AppDelegate.cs -------------------------------------------------------------------------------- /src/unohost/mac/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/Dispatcher.cs -------------------------------------------------------------------------------- /src/unohost/mac/DisplayLinkView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/DisplayLinkView.cs -------------------------------------------------------------------------------- /src/unohost/mac/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/Entitlements.plist -------------------------------------------------------------------------------- /src/unohost/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/Info.plist -------------------------------------------------------------------------------- /src/unohost/mac/MonoMacEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/MonoMacEnums.cs -------------------------------------------------------------------------------- /src/unohost/mac/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/Program.cs -------------------------------------------------------------------------------- /src/unohost/mac/Resources/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/Resources/Icon.icns -------------------------------------------------------------------------------- /src/unohost/mac/UnoHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/UnoHost.csproj -------------------------------------------------------------------------------- /src/unohost/mac/UnoView/UnoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/UnoView/UnoView.cs -------------------------------------------------------------------------------- /src/unohost/mac/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/app.config -------------------------------------------------------------------------------- /src/unohost/mac/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/mac/packages.config -------------------------------------------------------------------------------- /src/unohost/tests/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/tests/Test.cs -------------------------------------------------------------------------------- /src/unohost/tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/tests/app.config -------------------------------------------------------------------------------- /src/unohost/tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/tests/packages.config -------------------------------------------------------------------------------- /src/unohost/win/ContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/ContextFactory.cs -------------------------------------------------------------------------------- /src/unohost/win/Egl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/Egl.cs -------------------------------------------------------------------------------- /src/unohost/win/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/Icon.ico -------------------------------------------------------------------------------- /src/unohost/win/Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/Job.cs -------------------------------------------------------------------------------- /src/unohost/win/OpenTKGL.Dispose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/OpenTKGL.Dispose.cs -------------------------------------------------------------------------------- /src/unohost/win/OpenTKGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/OpenTKGL.cs -------------------------------------------------------------------------------- /src/unohost/win/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/Program.cs -------------------------------------------------------------------------------- /src/unohost/win/UnoControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/UnoControl.cs -------------------------------------------------------------------------------- /src/unohost/win/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/app.config -------------------------------------------------------------------------------- /src/unohost/win/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/app.manifest -------------------------------------------------------------------------------- /src/unohost/win/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/packages.config -------------------------------------------------------------------------------- /src/unohost/win/unohost-win.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/src/unohost/win/unohost-win.csproj -------------------------------------------------------------------------------- /templates/files/js/_filename_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/files/js/_filename_ -------------------------------------------------------------------------------- /templates/files/js/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/files/js/manifest.xml -------------------------------------------------------------------------------- /templates/files/json/_filename_: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /templates/files/json/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/files/json/manifest.xml -------------------------------------------------------------------------------- /templates/files/ux/_filename_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/files/ux/_filename_ -------------------------------------------------------------------------------- /templates/files/ux/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/files/ux/manifest.xml -------------------------------------------------------------------------------- /templates/projects/app/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /templates/projects/app/.gitignore: -------------------------------------------------------------------------------- 1 | .uno/ 2 | build/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /templates/projects/app/.vscode/.gitignore: -------------------------------------------------------------------------------- 1 | ipch/ 2 | -------------------------------------------------------------------------------- /templates/projects/app/MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/projects/app/MainView.ux -------------------------------------------------------------------------------- /templates/projects/app/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/projects/app/manifest.xml -------------------------------------------------------------------------------- /templates/projects/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/projects/app/package.json -------------------------------------------------------------------------------- /templates/projects/app/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@fuse-open/tsconfig" 3 | } -------------------------------------------------------------------------------- /templates/projects/example/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /templates/projects/example/.gitignore: -------------------------------------------------------------------------------- 1 | .uno/ 2 | build/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /templates/projects/example/.vscode/.gitignore: -------------------------------------------------------------------------------- 1 | ipch/ 2 | -------------------------------------------------------------------------------- /templates/projects/example/Logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/fuse-studio/HEAD/templates/projects/example/Logic.ts -------------------------------------------------------------------------------- /templates/projects/example/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@fuse-open/tsconfig" 3 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@fuse-open/tsconfig" 3 | } --------------------------------------------------------------------------------