├── .gitignore ├── LICENSE ├── NClass.build ├── README.md ├── doc ├── changelog.txt ├── license.txt └── readme.txt ├── examples └── shapes.ncp ├── lib ├── CrashReporter.NET-1.5 │ ├── CrashReporter.NET.sln │ ├── CrashReporter.NET │ │ ├── CaptureScreenshot.cs │ │ ├── CrashReport.Designer.cs │ │ ├── CrashReport.cs │ │ ├── CrashReport.da.resx │ │ ├── CrashReport.de.resx │ │ ├── CrashReport.es.resx │ │ ├── CrashReport.fr.resx │ │ ├── CrashReport.it.resx │ │ ├── CrashReport.nl.resx │ │ ├── CrashReport.pl.resx │ │ ├── CrashReport.resx │ │ ├── CrashReport.ru.resx │ │ ├── CrashReport.sv.resx │ │ ├── CrashReporter.NET.csproj │ │ ├── DrDump │ │ │ ├── AnonymousData.cs │ │ │ ├── DrDumpService.cs │ │ │ ├── PrivateData.cs │ │ │ └── SendRequestState.cs │ │ ├── HelperMethods.cs │ │ ├── ProgressDialog.Designer.cs │ │ ├── ProgressDialog.cs │ │ ├── ProgressDialog.da.resx │ │ ├── ProgressDialog.de.resx │ │ ├── ProgressDialog.es.resx │ │ ├── ProgressDialog.fr.resx │ │ ├── ProgressDialog.it.resx │ │ ├── ProgressDialog.nl.resx │ │ ├── ProgressDialog.pl.resx │ │ ├── ProgressDialog.resx │ │ ├── ProgressDialog.ru.resx │ │ ├── ProgressDialog.sv.resx │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── ReportCrash.cs │ │ ├── Resources │ │ │ ├── ajax-loader.gif │ │ │ ├── email_go.png │ │ │ ├── save_as.png │ │ │ ├── stop.png │ │ │ └── warning_64.png │ │ ├── Web References │ │ │ └── com.drdump │ │ │ │ ├── CrashReporterReportUploader.disco │ │ │ │ ├── CrashReporterReportUploader.wsdl │ │ │ │ ├── CrashReporterReportUploader.xsd │ │ │ │ ├── CrashReporterReportUploader0.xsd │ │ │ │ ├── Reference.cs │ │ │ │ ├── Reference.map │ │ │ │ └── Response.datasource │ │ └── app.config │ └── CrashReporterTest │ │ ├── CrashReporterTest.csproj │ │ ├── FormMain.Designer.cs │ │ ├── FormMain.cs │ │ ├── FormMain.resx │ │ ├── Program.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Mono.Texteditor │ ├── AssemblyInfo.cs │ ├── ChangeLog │ ├── Makefile.am │ ├── Mono.TextEditor.Highlighting.Regex │ │ ├── Regex.cs │ │ └── RegexMatch.cs │ ├── Mono.TextEditor.Highlighting │ │ ├── AmbientColor.cs │ │ ├── Chunk.cs │ │ ├── ChunkStyle.cs │ │ ├── CloneableStack.cs │ │ ├── ColorDescriptionAttribute.cs │ │ ├── ColorScheme.cs │ │ ├── IStreamProvider.cs │ │ ├── ISyntaxMode.cs │ │ ├── JaySyntaxMode.cs │ │ ├── Keywords.cs │ │ ├── Marker.cs │ │ ├── Match.cs │ │ ├── Rule.cs │ │ ├── SemanticRule.cs │ │ ├── Span.cs │ │ ├── SyntaxMode.cs │ │ ├── SyntaxModeService.cs │ │ └── XmlReadHelper.cs │ ├── Mono.TextEditor.PopupWindow │ │ ├── IListDataProvider.cs │ │ ├── ListWidget.cs │ │ ├── ListWindow.cs │ │ ├── ModeHelpWindow.cs │ │ ├── TooltipWindow.cs │ │ └── WindowTransparencyDecorator.cs │ ├── Mono.TextEditor.Theatrics │ │ ├── Actor.cs │ │ ├── AnimatedBox.cs │ │ ├── AnimatedVBox.cs │ │ ├── AnimatedWidget.cs │ │ ├── Animation.cs │ │ ├── BounceFadePopupWindow.cs │ │ ├── Choreographer.cs │ │ ├── Pulsator.cs │ │ ├── SingleActorStage.cs │ │ ├── SmartScrolledWindow.cs │ │ └── Stage.cs │ ├── Mono.TextEditor.Utils │ │ ├── AvlTree.cs │ │ ├── CompressingTreeList.cs │ │ ├── Diff.cs │ │ ├── FileSettingsStore.cs │ │ ├── HtmlWriter.cs │ │ ├── RedBlackTree.cs │ │ ├── RtfWriter.cs │ │ ├── TextBreaker.cs │ │ └── TextFileUtility.cs │ ├── Mono.TextEditor.Vi │ │ ├── NewViEditMode.cs │ │ ├── ViActionMaps.cs │ │ ├── ViActions.cs │ │ ├── ViBuilderContext.cs │ │ ├── ViBuilders.cs │ │ ├── ViCommandMap.cs │ │ ├── ViEditor.cs │ │ ├── ViEditorActions.cs │ │ ├── ViKeyNotation.cs │ │ ├── ViMacro.cs │ │ ├── ViMark.cs │ │ ├── ViMode.cs │ │ ├── ViModeAbortException.cs │ │ ├── ViStatusArea.cs │ │ └── ViWordFindStrategy.cs │ ├── Mono.TextEditor.csproj │ ├── Mono.TextEditor.dll.config │ ├── Mono.TextEditor │ │ ├── Actions │ │ │ ├── BookmarkActions.cs │ │ │ ├── CaretMoveActions.cs │ │ │ ├── ClipboardActions.cs │ │ │ ├── DeleteActions.cs │ │ │ ├── FoldActions.cs │ │ │ ├── MiscActions.cs │ │ │ ├── ScrollActions.cs │ │ │ └── SelectionActions.cs │ │ ├── BookmarkMarker.cs │ │ ├── Caret.cs │ │ ├── Document │ │ │ ├── BufferedTextReader.cs │ │ │ ├── DiffTracker.cs │ │ │ ├── DocumentChangeEventArgs.cs │ │ │ ├── DocumentLine.cs │ │ │ ├── DocumentLocation.cs │ │ │ ├── DocumentRegion.cs │ │ │ ├── DocumentUpdateRequest.cs │ │ │ ├── EmacsWordFindStrategy.cs │ │ │ ├── FoldSegment.cs │ │ │ ├── FoldingType.cs │ │ │ ├── GapBuffer.cs │ │ │ ├── IBuffer.cs │ │ │ ├── ILineSplitter.cs │ │ │ ├── IWordFindStrategy.cs │ │ │ ├── LineEventArgs.cs │ │ │ ├── LineSplitter.cs │ │ │ ├── OperationType.cs │ │ │ ├── PrimitiveLineSplitter.cs │ │ │ ├── SegmentTree.cs │ │ │ ├── SharpDevelopWordFindStrategy.cs │ │ │ ├── StringBuffer.cs │ │ │ ├── SyntaxModeChangeEventArgs.cs │ │ │ ├── TextDocument.cs │ │ │ └── TextSegment.cs │ │ ├── EditMode.cs │ │ ├── EditModeChangedEventArgs.cs │ │ ├── Gui │ │ │ ├── ActionMargin.cs │ │ │ ├── CodeSegmentEditorWindow.cs │ │ │ ├── CodeSegmentPreviewWindow.cs │ │ │ ├── DashedLineMargin.cs │ │ │ ├── FoldMarkerMargin.cs │ │ │ ├── FoldingScreenbackgroundRenderer.cs │ │ │ ├── GtkGestures.cs │ │ │ ├── GtkUtil.cs │ │ │ ├── GtkWorkarounds.cs │ │ │ ├── GutterMargin.cs │ │ │ ├── HslColor.cs │ │ │ ├── IAnimationDrawer.cs │ │ │ ├── IBackgroundRenderer.cs │ │ │ ├── ITooltipProvider.cs │ │ │ ├── IconMargin.cs │ │ │ ├── LayoutCache.cs │ │ │ ├── Margin.cs │ │ │ ├── MarginDrawer.cs │ │ │ ├── PangoUtil.cs │ │ │ ├── SolidFoldMarkerMargin.cs │ │ │ ├── TextArea.cs │ │ │ ├── TextEditor.cs │ │ │ ├── TextEditorAccessibility.cs │ │ │ ├── TextViewMargin.cs │ │ │ └── TooltipProvider.cs │ │ ├── HeightTree.cs │ │ ├── HelperMethods.cs │ │ ├── IBracketMatcher.cs │ │ ├── IIndentationTracker.cs │ │ ├── ISearchEngine.cs │ │ ├── ISelectionSurroundingProvider.cs │ │ ├── ITextEditorOptions.cs │ │ ├── ITextPasteHandler.cs │ │ ├── IndentStyle.cs │ │ ├── InsertionCursorEditMode.cs │ │ ├── LineBackgroundMarker.cs │ │ ├── LinkEventArgs.cs │ │ ├── MarginMarker.cs │ │ ├── Platform.cs │ │ ├── SearchRequest.cs │ │ ├── SearchResult.cs │ │ ├── Selection.cs │ │ ├── SimpleEditMode.cs │ │ ├── Standalone │ │ │ ├── IDocument.cs │ │ │ ├── IDocumentLine.cs │ │ │ ├── ISegment.cs │ │ │ ├── ITextAnchor.cs │ │ │ ├── ITextSource.cs │ │ │ ├── StringTextSource.cs │ │ │ ├── TextChangeEventArgs.cs │ │ │ ├── TextLocation.cs │ │ │ ├── TextSourceVersionProvider.cs │ │ │ └── UnicodeNewline.cs │ │ ├── StyleTextLineMarker.cs │ │ ├── TextEditorData.cs │ │ ├── TextEditorOptions.cs │ │ ├── TextLineMarker.cs │ │ ├── TextLinkEditMode.cs │ │ ├── TextMarkerEvent.cs │ │ ├── TextSegmentMarker.cs │ │ ├── UnderlineMarker.cs │ │ └── UrlMarker.cs │ ├── Styles │ │ ├── DefaultStyle.json │ │ ├── MonokaiStyle.json │ │ ├── NightshadeStyle.json │ │ ├── OblivionStyle.json │ │ ├── SolarizedDarkStyle.json │ │ ├── SolarizedLightStyle.json │ │ ├── TangoStyle.json │ │ └── VisualStudioStyle.json │ ├── SyntaxModes │ │ ├── ActionScriptSyntaxMode.xml │ │ ├── AspNetAshxSyntaxMode.xml │ │ ├── AspNetSyntaxMode.xml │ │ ├── BooSyntaxMode.xml │ │ ├── CGSyntaxMode.xml │ │ ├── CPPSyntaxMode.xml │ │ ├── CSharpSyntaxMode.xml │ │ ├── CSyntaxMode.xml │ │ ├── ChangeLogSyntaxMode.xml │ │ ├── CssSyntaxMode.xml │ │ ├── DiffSyntaxMode.xml │ │ ├── FSharpSyntaxMode.xml │ │ ├── HtmlSyntaxMode.xml │ │ ├── ILSyntaxMode.xml │ │ ├── JavaSyntaxMode.xml │ │ ├── JavascriptSyntaxMode.xml │ │ ├── JaySyntaxMode.xml │ │ ├── JsonSyntaxMode.xml │ │ ├── LessSyntaxMode.xml │ │ ├── LuaSyntaxMode.xml │ │ ├── MakefileSyntaxMode.xml │ │ ├── PythonSyntaxMode.xml │ │ ├── RazorSyntaxMode.xml │ │ ├── RubySyntaxMode.xml │ │ ├── ShellScriptSyntaxMode.xml │ │ ├── StringsSyntaxMode.xml │ │ ├── TypescriptSyntaxMode.xml │ │ ├── VBNetSyntaxMode.xml │ │ ├── ValaSyntaxMode.xml │ │ └── XmlSyntaxMode.xml │ └── gtk-gui │ │ ├── generated.cs │ │ └── gui.stetic ├── 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 │ │ │ ├── CodeIssues │ │ │ │ └── Uncategorized │ │ │ │ │ └── .DS_Store │ │ │ ├── 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 │ ├── NRefactory.userprefs │ ├── README │ └── doc │ │ ├── Pattern Matching.html │ │ ├── TODO │ │ ├── XML Documentation.html │ │ ├── copyright.txt │ │ └── license.txt ├── NReflect_v0.9.4_src │ ├── NReflect.Runner │ │ ├── NReflect.Runner.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NReflect.Studio │ │ ├── ClassDiagramModel.cd │ │ ├── CompileForm.Designer.cs │ │ ├── CompileForm.cs │ │ ├── CompileForm.resx │ │ ├── CoreData.cs │ │ ├── CoreView.cs │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Message.cs │ │ ├── MessageSeverity.cs │ │ ├── Models │ │ │ ├── NReflectResult.cs │ │ │ ├── TestCase.cs │ │ │ ├── TestCaseAssembly.cs │ │ │ ├── TestCaseBase.cs │ │ │ ├── TestCaseCSharp.cs │ │ │ ├── TestCaseEventArgs.cs │ │ │ ├── TestCaseGroup.cs │ │ │ ├── TestCaseModel.cs │ │ │ ├── TestCaseState.cs │ │ │ └── TestCaseTreeModel.cs │ │ ├── NReflect.Studio.csproj │ │ ├── ObjectTree │ │ │ ├── Comparer │ │ │ │ ├── ComparePercentageNodeControl.cs │ │ │ │ ├── CompareResult.cs │ │ │ │ ├── ObjectTreeModelComparer.cs │ │ │ │ └── ResultState.cs │ │ │ ├── Model │ │ │ │ ├── ClassDiagram.cd │ │ │ │ ├── ObjectField.cs │ │ │ │ ├── ObjectFieldClass.cs │ │ │ │ ├── ObjectFieldCollection.cs │ │ │ │ ├── ObjectFieldDictionary.cs │ │ │ │ ├── ObjectFieldList.cs │ │ │ │ └── ObjectFieldValue.cs │ │ │ ├── NewValueEventArgs.cs │ │ │ ├── ObjectFieldEventArgs.cs │ │ │ ├── ObjectNameNodeControl.cs │ │ │ ├── ObjectTree.Designer.cs │ │ │ ├── ObjectTree.cs │ │ │ ├── ObjectTree.resx │ │ │ ├── ObjectTreeModel.cs │ │ │ ├── ObjectTreeModelCreator.cs │ │ │ ├── ObjectTreeViewAdv.cs │ │ │ ├── ObjectValueNodeControl.cs │ │ │ └── ValueChangedEventArgs.cs │ │ ├── Panels │ │ │ ├── BasePanel.Designer.cs │ │ │ ├── BasePanel.cs │ │ │ ├── BaseTestCasePanel.Designer.cs │ │ │ ├── BaseTestCasePanel.cs │ │ │ ├── CodePanel.Designer.cs │ │ │ ├── CodePanel.cs │ │ │ ├── CodePanel.resx │ │ │ ├── MessagePanel.Designer.cs │ │ │ ├── MessagePanel.cs │ │ │ ├── MessagePanel.resx │ │ │ ├── ObjectComparePanel.Designer.cs │ │ │ ├── ObjectComparePanel.cs │ │ │ ├── ObjectComparePanel.resx │ │ │ ├── ObjectPanel.Designer.cs │ │ │ ├── ObjectPanel.cs │ │ │ ├── ObjectPanel.resx │ │ │ ├── OptionsPanel.Designer.cs │ │ │ ├── OptionsPanel.cs │ │ │ ├── OptionsPanel.resx │ │ │ ├── TestCasesPanel.Designer.cs │ │ │ ├── TestCasesPanel.cs │ │ │ ├── TestCasesPanel.resx │ │ │ ├── VisitorPanel.Designer.cs │ │ │ ├── VisitorPanel.cs │ │ │ └── VisitorPanel.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── Annotations.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DataSources │ │ │ │ └── NReflect.Studio.Models.TestCase.datasource │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Resources │ │ │ ├── Add.png │ │ │ ├── AssemblyFile.png │ │ │ ├── Autoresize.png │ │ │ ├── CSharpFile.png │ │ │ ├── ClearAll.png │ │ │ ├── Compile.png │ │ │ ├── Delete.png │ │ │ ├── Equal.png │ │ │ ├── Error.png │ │ │ ├── Explorer.png │ │ │ ├── Folder.png │ │ │ ├── Ignore.png │ │ │ ├── In.png │ │ │ ├── Info.png │ │ │ ├── Messages.png │ │ │ ├── Minus.png │ │ │ ├── NewCSharpFile.png │ │ │ ├── NewFolder.png │ │ │ ├── NotEqual.png │ │ │ ├── Null.png │ │ │ ├── OK.png │ │ │ ├── Object.png │ │ │ ├── ObjectCompare.png │ │ │ ├── Options.png │ │ │ ├── Out.png │ │ │ ├── Play.png │ │ │ ├── Plus.png │ │ │ ├── Refresh.png │ │ │ ├── RunAll.png │ │ │ ├── SaveAll.png │ │ │ ├── Sync.png │ │ │ ├── Unknown.png │ │ │ ├── UseAsRoot.png │ │ │ ├── Visitor.png │ │ │ ├── VisitorCompare.png │ │ │ └── Warning.png │ │ ├── RunVisitorsForm.Designer.cs │ │ ├── RunVisitorsForm.cs │ │ ├── RunVisitorsForm.resx │ │ ├── StatusEventArgs.cs │ │ ├── TestCaseRunner.cs │ │ ├── TestCaseStateNodeControl.cs │ │ ├── TestCases │ │ │ ├── Attributes │ │ │ │ ├── AttributeTests.cs │ │ │ │ └── AttributeTestsExpectedObject.nro │ │ │ ├── Generics │ │ │ │ ├── GenericConstraints │ │ │ │ │ ├── Class.cs │ │ │ │ │ ├── ClassExpectedObject.nro │ │ │ │ │ ├── Delegate.cs │ │ │ │ │ ├── DelegateExpectedObject.nro │ │ │ │ │ ├── Interface.cs │ │ │ │ │ ├── InterfaceExpectedObject.nro │ │ │ │ │ ├── Struct.cs │ │ │ │ │ └── StructExpectedObject.nro │ │ │ │ ├── GenericMember │ │ │ │ │ ├── Class.cs │ │ │ │ │ ├── ClassExpectedObject.nro │ │ │ │ │ ├── Methods.cs │ │ │ │ │ └── MethodsExpectedObject.nro │ │ │ │ ├── GenericNesting │ │ │ │ │ ├── Dynamics.cs │ │ │ │ │ ├── DynamicsExpectedObject.nro │ │ │ │ │ ├── GenericNesting.cs │ │ │ │ │ ├── GenericNestingExpectedObject.nro │ │ │ │ │ ├── Nesting.cs │ │ │ │ │ └── NestingExpectedObject.nro │ │ │ │ ├── GenericTypes │ │ │ │ │ ├── Class.cs │ │ │ │ │ ├── ClassExpectedObject.nro │ │ │ │ │ ├── Delegate.cs │ │ │ │ │ ├── DelegateExpectedObject.nro │ │ │ │ │ ├── Interface.cs │ │ │ │ │ ├── InterfaceExpectedObject.nro │ │ │ │ │ ├── Struct.cs │ │ │ │ │ └── StructExpectedObject.nro │ │ │ │ └── GenericUsing │ │ │ │ │ ├── Array.cs │ │ │ │ │ ├── ArrayExpectedObject.nro │ │ │ │ │ ├── Derive.cs │ │ │ │ │ ├── DeriveExpectedObject.nro │ │ │ │ │ ├── Dynamic.cs │ │ │ │ │ ├── DynamicExpectedObject.nro │ │ │ │ │ ├── Nullable.cs │ │ │ │ │ ├── NullableDynamic.cs │ │ │ │ │ ├── NullableDynamicExpectedObject.nro │ │ │ │ │ ├── NullableExpectedObject.nro │ │ │ │ │ ├── Using.cs │ │ │ │ │ └── UsingExpectedObject.nro │ │ │ ├── Inheritance │ │ │ │ ├── AbstractClasses.cs │ │ │ │ ├── AbstractClassesExpectedObject.nro │ │ │ │ ├── Class.cs │ │ │ │ ├── ClassExpectedObject.nro │ │ │ │ ├── DeriveFields.cs │ │ │ │ ├── DeriveFieldsExpectedObject.nro │ │ │ │ ├── DeriveMethods.cs │ │ │ │ ├── DeriveMethodsExpectedObject.nro │ │ │ │ ├── DeriveProperties.cs │ │ │ │ ├── DerivePropertiesExpectedObject.nro │ │ │ │ └── InterfaceImplementation │ │ │ │ │ ├── InterfacesDerive.cs │ │ │ │ │ ├── InterfacesDeriveExpectedObject.nro │ │ │ │ │ ├── Methods.cs │ │ │ │ │ ├── MethodsExpectedObject.nro │ │ │ │ │ ├── MultipleIInterfacesStruct.cs │ │ │ │ │ ├── MultipleIInterfacesStructExpectedObject.nro │ │ │ │ │ ├── MultipleInterfacesClass.cs │ │ │ │ │ ├── MultipleInterfacesClassExpectedObject.nro │ │ │ │ │ ├── Properties.cs │ │ │ │ │ └── PropertiesExpectedObject.nro │ │ │ ├── Member │ │ │ │ ├── Constructors.cs │ │ │ │ ├── ConstructorsExpectedObject.nro │ │ │ │ ├── ConversionOperator.cs │ │ │ │ ├── ConversionOperatorExpectedObject.nro │ │ │ │ ├── Events.cs │ │ │ │ ├── EventsExpectedObject.nro │ │ │ │ ├── ExtensionMethods.cs │ │ │ │ ├── ExtensionMethodsExpectedObject.nro │ │ │ │ ├── Fields.cs │ │ │ │ ├── FieldsExpectedObject.nro │ │ │ │ ├── Methods.cs │ │ │ │ ├── MethodsExpectedObject.nro │ │ │ │ ├── Operators.cs │ │ │ │ ├── OperatorsExpectedObject.nro │ │ │ │ ├── Properties.cs │ │ │ │ └── PropertiesExpectedObject.nro │ │ │ ├── Namespaces │ │ │ │ ├── MultipleNamespaces.cs │ │ │ │ ├── MultipleNamespacesExpectedObject.nro │ │ │ │ ├── SingleNamespace.cs │ │ │ │ └── SingleNamespaceExpectedObject.nro │ │ │ ├── NestedTypes │ │ │ │ ├── Class.cs │ │ │ │ ├── ClassExpectedObject.nro │ │ │ │ ├── DeepNesting.cs │ │ │ │ ├── DeepNestingExpectedObject.nro │ │ │ │ ├── Struct.cs │ │ │ │ ├── StructExpectedObject.nro │ │ │ │ ├── UsingNestedTypes.cs │ │ │ │ └── UsingNestedTypesExpectedObject.nro │ │ │ ├── ParameterTests.cs │ │ │ ├── ParameterTestsExpectedObject.nro │ │ │ ├── SimpleTypes │ │ │ │ ├── Class.cs │ │ │ │ ├── ClassExpectedObject.nro │ │ │ │ ├── ClassExpectedTree.nrt │ │ │ │ ├── Delegate.cs │ │ │ │ ├── DelegateExpectedObject.nro │ │ │ │ ├── DelegateExpectedTree.nrt │ │ │ │ ├── Enum.cs │ │ │ │ ├── EnumExpectedObject.nro │ │ │ │ ├── EnumExpectedTree.nrt │ │ │ │ ├── Interface.cs │ │ │ │ ├── InterfaceExpectedObject.nro │ │ │ │ ├── InterfaceExpectedTree.nrt │ │ │ │ ├── Struct.cs │ │ │ │ ├── StructExpectedObject.nro │ │ │ │ └── StructExpectedTree.nrt │ │ │ ├── Simplest.cs │ │ │ ├── SimplestExpectedObject.nro │ │ │ └── TypeUsage │ │ │ │ ├── Arrays.cs │ │ │ │ ├── ArraysExpectedObject.nro │ │ │ │ ├── DynamicType.cs │ │ │ │ ├── DynamicTypeExpectedObject.nro │ │ │ │ ├── Nullable.cs │ │ │ │ ├── NullableExpectedObject.nro │ │ │ │ ├── UnsafePointer.cs │ │ │ │ └── UnsafePointerExpectedObject.nro │ │ ├── Visitor │ │ │ ├── CSharpVisitorConfig.cs │ │ │ ├── CSharpVisitorConfigControl.Designer.cs │ │ │ ├── CSharpVisitorConfigControl.cs │ │ │ ├── CSharpVisitorConfigControl.resx │ │ │ ├── VisitorConfig.cs │ │ │ ├── VisitorConfigPanel.cs │ │ │ └── VisitorManager.cs │ │ ├── app.config │ │ └── libs │ │ │ ├── DockPanelSuite 2.6 │ │ │ ├── WeifenLuo.WinFormsUI.Docking.License.txt │ │ │ └── WeifenLuo.WinFormsUI.Docking.dll │ │ │ ├── FastColoredTextBox.License.txt │ │ │ ├── FastColoredTextBox.dll │ │ │ └── TreeViewAdv 1.7 │ │ │ ├── Aga.Controls.License.txt │ │ │ └── Aga.Controls.dll │ ├── NReflect.Visitors │ │ ├── CSharpVisitor.cs │ │ ├── NReflect.Visitors.csproj │ │ ├── PrintTreeVisitor.cs │ │ ├── PrintVisitor.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── VisitorBase.cs │ ├── NReflect.sln │ ├── NReflect │ │ ├── Diagrams │ │ │ ├── Classes.cd │ │ │ ├── Enums.cd │ │ │ ├── Interfaces.cd │ │ │ ├── Members.cd │ │ │ └── Types.cd │ │ ├── Extensions.cs │ │ ├── Filter │ │ │ ├── FilterElements.cs │ │ │ ├── FilterModifiers.cs │ │ │ ├── FilterRule.cs │ │ │ ├── IFilter.cs │ │ │ ├── IncludeFilter.cs │ │ │ ├── InvertFilter.cs │ │ │ ├── ReflectAllFilter.cs │ │ │ └── StatisticFilter.cs │ │ ├── HelpContent │ │ │ ├── Architecture.aml │ │ │ ├── AssemblyModule.aml │ │ │ ├── AssemblyModule.png │ │ │ ├── Attributes.aml │ │ │ ├── Attributes.png │ │ │ ├── Filter.aml │ │ │ ├── Filter.png │ │ │ ├── Generics.aml │ │ │ ├── Generics.png │ │ │ ├── Layout.content │ │ │ ├── Members.aml │ │ │ ├── Members.png │ │ │ ├── NReflect.aml │ │ │ ├── NReflect.ncp │ │ │ ├── SampleExcludeFilter.aml │ │ │ ├── SampleIncludeFilter.aml │ │ │ ├── SampleReflect.aml │ │ │ ├── SampleUseStatisticsFilter.aml │ │ │ ├── Samples.aml │ │ │ ├── Types.aml │ │ │ ├── Types.png │ │ │ ├── Visitor.aml │ │ │ └── Visitor.png │ │ ├── IVisitable.cs │ │ ├── IVisitor.cs │ │ ├── Interfaces │ │ │ ├── IAttributable.cs │ │ │ ├── IEntityContainer.cs │ │ │ ├── IFieldContainer.cs │ │ │ ├── IGeneric.cs │ │ │ └── IMethodContainer.cs │ │ ├── Modifier │ │ │ ├── AccessModifier.cs │ │ │ ├── ClassModifier.cs │ │ │ ├── FieldModifier.cs │ │ │ ├── OperationModifier.cs │ │ │ └── ParameterModifier.cs │ │ ├── NRAssembly.cs │ │ ├── NRAttributes │ │ │ ├── NRAttribute.cs │ │ │ └── NRAttributeValue.cs │ │ ├── NRCode │ │ │ └── CSharp.cs │ │ ├── NREntities │ │ │ ├── NRClass.cs │ │ │ ├── NRCompositeType.cs │ │ │ ├── NRDelegate.cs │ │ │ ├── NREnum.cs │ │ │ ├── NRGenericType.cs │ │ │ ├── NRInterface.cs │ │ │ ├── NRSingleInheritanceType.cs │ │ │ ├── NRStruct.cs │ │ │ └── NRTypeBase.cs │ │ ├── NRMembers │ │ │ ├── NRConstructor.cs │ │ │ ├── NREnumValue.cs │ │ │ ├── NREvent.cs │ │ │ ├── NRField.cs │ │ │ ├── NRMember.cs │ │ │ ├── NRMethod.cs │ │ │ ├── NROperation.cs │ │ │ ├── NROperator.cs │ │ │ ├── NRProperty.cs │ │ │ ├── NRReturnValueOperation.cs │ │ │ └── OperatorType.cs │ │ ├── NRModule.cs │ │ ├── NRParameters │ │ │ ├── NRParameter.cs │ │ │ └── NRTypeParameter.cs │ │ ├── NRRelationship │ │ │ ├── NRAssociation.cs │ │ │ ├── NRGeneralization.cs │ │ │ ├── NRNesting.cs │ │ │ └── NRRealization.cs │ │ ├── NRRelationships.cs │ │ ├── NRTypeUsage.cs │ │ ├── NReflect.csproj │ │ ├── NReflect.shfbproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReflectionWorker.cs │ │ ├── Reflector.cs │ │ └── RelationshipCreator.cs │ ├── README.txt │ ├── changelog.txt │ ├── license-lesser.txt │ └── license.txt ├── NStub │ ├── External Dependencies │ │ ├── Rhino.Mocks.dll │ │ ├── Rhino.Mocks.xml │ │ ├── nunit.framework.dll │ │ └── nunit.framework.xml │ ├── NStub.CSharp.Tests │ │ ├── CSharpCodeGeneratorTest.cs │ │ ├── CSharpProjectGeneratorTest.cs │ │ ├── NStub.CSharp.Tests.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NStub.CSharp │ │ ├── CSharpCodeGenerator.cs │ │ ├── CSharpProjectGenerator.cs │ │ ├── Exceptions.Designer.cs │ │ ├── Exceptions.resx │ │ ├── NStub.CSharp.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── NStub.Core.Tests │ │ ├── NStub.Core.Tests.csproj │ │ ├── NStubCoreTest.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── UtilityTest.cs │ ├── NStub.Core │ │ ├── Exceptions.Designer.cs │ │ ├── Exceptions.resx │ │ ├── ICodeGenerator.cs │ │ ├── IProjectGenerator.cs │ │ ├── NStub.Core.csproj │ │ ├── NStubCore.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Utility.cs │ ├── NStub.Deployment │ │ └── NStub.Deployment.vdproj │ ├── NStub.Gui │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── NStub.Gui.cd │ │ ├── NStub.Gui.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── Resources │ │ │ ├── NStub.ico │ │ │ ├── VSObject_Assembly.bmp │ │ │ ├── VSObject_Class.bmp │ │ │ ├── VSObject_Method.bmp │ │ │ ├── VSObject_Module.bmp │ │ │ └── VSObject_Namespace.bmp │ ├── NStub.sln │ ├── README.md │ └── Solution Items │ │ ├── Help │ │ └── NStub.chm │ │ ├── NDoc.shfb │ │ ├── NStub.FxCop │ │ ├── NStub.NDepend.xml │ │ └── NStub.nunit ├── PdfSharp │ ├── BuildAll-PdfSharp-VS2010.sln │ ├── BuildAll-PdfSharp-WPF-VS2010.sln │ ├── PdfSharp.Charting │ │ ├── AssemblyInfo.cs │ │ ├── PdfSharp.Charting-WPF.csproj │ │ ├── PdfSharp.Charting.Renderers │ │ │ ├── AreaChartRenderer.cs │ │ │ ├── AreaPlotAreaRenderer.cs │ │ │ ├── AxisRenderer.cs │ │ │ ├── AxisTitleRenderer.cs │ │ │ ├── BarChartRenderer.cs │ │ │ ├── BarClusteredLegendRenderer.cs │ │ │ ├── BarClusteredPlotAreaRenderer.cs │ │ │ ├── BarDataLabelRenderer.cs │ │ │ ├── BarGridlinesRenderer.cs │ │ │ ├── BarPlotAreaRenderer.cs │ │ │ ├── BarStackedPlotAreaRenderer.cs │ │ │ ├── ChartRenderer.cs │ │ │ ├── Colors.cs │ │ │ ├── ColumnChartRenderer.cs │ │ │ ├── ColumnClusteredPlotAreaRenderer.cs │ │ │ ├── ColumnDataLabelRenderer.cs │ │ │ ├── ColumnLikeChartRenderer.cs │ │ │ ├── ColumnLikeGridlinesRenderer.cs │ │ │ ├── ColumnLikeLegendRenderer.cs │ │ │ ├── ColumnLikePlotAreaRenderer.cs │ │ │ ├── ColumnPlotAreaRenderer.cs │ │ │ ├── ColumnStackedPlotAreaRenderer.cs │ │ │ ├── CombinationChartRenderer.cs │ │ │ ├── Converter.cs │ │ │ ├── DataLabelRenderer.cs │ │ │ ├── GridlinesRenderer.cs │ │ │ ├── HorizontalStackedYAxisRenderer.cs │ │ │ ├── HorizontalXAxisRenderer.cs │ │ │ ├── HorizontalYAxisRenderer.cs │ │ │ ├── LegendEntryRenderer.cs │ │ │ ├── LegendRenderer.cs │ │ │ ├── LineChartRenderer.cs │ │ │ ├── LineFormatRenderer.cs │ │ │ ├── LinePlotAreaRenderer.cs │ │ │ ├── MarkerRenderer.cs │ │ │ ├── PieChartRenderer.cs │ │ │ ├── PieClosedPlotAreaRenderer.cs │ │ │ ├── PieDataLabelRenderer.cs │ │ │ ├── PieExplodedPlotAreaRenderer.cs │ │ │ ├── PieLegendRenderer.cs │ │ │ ├── PiePlotAreaRenderer.cs │ │ │ ├── PlotAreaBorderRenderer.cs │ │ │ ├── PlotAreaRenderer.cs │ │ │ ├── Renderer.cs │ │ │ ├── RendererInfo.cs │ │ │ ├── RendererParameters.cs │ │ │ ├── VerticalStackedYAxisRenderer.cs │ │ │ ├── VerticalXAxisRenderer.cs │ │ │ ├── VerticalYAxisRenderer.cs │ │ │ ├── WallRenderer.cs │ │ │ ├── XAxisRenderer.cs │ │ │ └── YAxisRenderer.cs │ │ ├── PdfSharp.Charting.csproj │ │ ├── PdfSharp.Charting │ │ │ ├── Axis.cs │ │ │ ├── AxisTitle.cs │ │ │ ├── Chart.cs │ │ │ ├── ChartFrame.cs │ │ │ ├── ChartObject.cs │ │ │ ├── DataLabel.cs │ │ │ ├── DocumentObject.cs │ │ │ ├── DocumentObjectCollection.cs │ │ │ ├── FillFormat.cs │ │ │ ├── Font.cs │ │ │ ├── Gridlines.cs │ │ │ ├── Legend.cs │ │ │ ├── LineFormat.cs │ │ │ ├── PSCSR.cs │ │ │ ├── PlotArea.cs │ │ │ ├── Point.cs │ │ │ ├── Series.cs │ │ │ ├── SeriesCollection.cs │ │ │ ├── SeriesElements.cs │ │ │ ├── TickLabels.cs │ │ │ ├── XSeries.cs │ │ │ ├── XSeriesElements.cs │ │ │ ├── XValue.cs │ │ │ ├── XValues.cs │ │ │ └── enums │ │ │ │ ├── BlankType.cs │ │ │ │ ├── ChartType.cs │ │ │ │ ├── DataLabelPosition.cs │ │ │ │ ├── DataLabelType.cs │ │ │ │ ├── DockingType.cs │ │ │ │ ├── FontProperties.cs │ │ │ │ ├── HorizontalAlignment.cs │ │ │ │ ├── LineStyle.cs │ │ │ │ ├── MarkerStyle.cs │ │ │ │ ├── TickMarkType.cs │ │ │ │ ├── Underline.cs │ │ │ │ └── VerticalAlignment.cs │ │ ├── Resources │ │ │ ├── Messages.de.restext │ │ │ └── Messages.restext │ │ └── StrongnameKey.snk │ └── PdfSharp │ │ ├── !internal │ │ ├── Directives.cs │ │ └── TargetContext.cs │ │ ├── AssemblyInfo-AG.cs │ │ ├── PdfSharp-Hybrid.csproj │ │ ├── PdfSharp-WPF.csproj │ │ ├── PdfSharp-ag.csproj │ │ ├── PdfSharp.Drawing.BarCodes │ │ ├── BarCode.cs │ │ ├── BarCodeRenderInfo.cs │ │ ├── BcgSR.cs │ │ ├── Code2of5Interleaved.cs │ │ ├── Code3of9Standard.cs │ │ ├── CodeBase.cs │ │ ├── CodeDataMatrix.cs │ │ ├── CodeOmr.cs │ │ ├── DataMatrixImage.cs │ │ ├── MatrixCode.cs │ │ ├── OmrData.cs │ │ ├── ThickThinBarcodeRenderer.cs │ │ └── enums │ │ │ ├── AnchorType.cs │ │ │ ├── CodeDirection.cs │ │ │ ├── CodeType.cs │ │ │ ├── DataMatrixEncoding.cs │ │ │ ├── MarkDistance.cs │ │ │ └── TextLocation.cs │ │ ├── PdfSharp.Drawing.Layout │ │ ├── XTextFormatter.cs │ │ └── enums │ │ │ └── XParagraphAlignment.cs │ │ ├── PdfSharp.Drawing.Pdf │ │ ├── PdfGraphicsState.cs │ │ ├── XGraphicsPdfRenderer.cs │ │ └── enums │ │ │ ├── DirtyFlags.cs │ │ │ └── StreamMode.cs │ │ ├── PdfSharp.Drawing.Shapes │ │ └── Shape.cs │ │ ├── PdfSharp.Drawing.Wpf │ │ └── !info.txt │ │ ├── PdfSharp.Drawing │ │ ├── FontHelper.cs │ │ ├── GeometryHelper.cs │ │ ├── GraphicsStateStack.cs │ │ ├── IXGraphicsRenderer.cs │ │ ├── ImageHelper.cs │ │ ├── InternalGraphicsState.cs │ │ ├── PdfFontOptions.cs │ │ ├── XBrush.cs │ │ ├── XBrushes.cs │ │ ├── XColor.cs │ │ ├── XColorResourceManager.cs │ │ ├── XColors.cs │ │ ├── XConvert.cs │ │ ├── XFont.cs │ │ ├── XFontFamily.cs │ │ ├── XFontMetrics.cs │ │ ├── XFontStretch.cs │ │ ├── XFontWeight.cs │ │ ├── XFontWeights.cs │ │ ├── XForm.cs │ │ ├── XGlyphTypeface.cs │ │ ├── XGraphics.cs │ │ ├── XGraphicsContainer.cs │ │ ├── XGraphicsPath.cs │ │ ├── XGraphicsPathInternals.cs │ │ ├── XGraphicsPathItem.cs │ │ ├── XGraphicsState.cs │ │ ├── XImage.cs │ │ ├── XImageFormat.cs │ │ ├── XKnownColorTable.cs │ │ ├── XLinearGradientBrush.cs │ │ ├── XMatrix.cs │ │ ├── XPdfForm.cs │ │ ├── XPen.cs │ │ ├── XPens.cs │ │ ├── XPoint.cs │ │ ├── XPrivateFontCollection.cs │ │ ├── XRect.cs │ │ ├── XSize.cs │ │ ├── XSolidBrush.cs │ │ ├── XStringFormat.cs │ │ ├── XStringFormats.cs │ │ ├── XTypeFace.cs │ │ ├── XUnit.cs │ │ ├── XVector.cs │ │ └── enums │ │ │ ├── PathStart.cs │ │ │ ├── XColorSpace.cs │ │ │ ├── XCombineMode.cs │ │ │ ├── XDashStyle.cs │ │ │ ├── XFillMode.cs │ │ │ ├── XFontStyle.cs │ │ │ ├── XGraphicRenderTarget.cs │ │ │ ├── XGraphicsPathItemType.cs │ │ │ ├── XGraphicsPdfPageOptions.cs │ │ │ ├── XGraphicsUnit.cs │ │ │ ├── XKnownColor.cs │ │ │ ├── XLineAlignment.cs │ │ │ ├── XLineCap.cs │ │ │ ├── XLineJoin.cs │ │ │ ├── XLinearGradientMode.cs │ │ │ ├── XMatrixOrder.cs │ │ │ ├── XPageDirection.cs │ │ │ ├── XSmoothingMode.cs │ │ │ └── XStringAlignment.cs │ │ ├── PdfSharp.Fonts.OpenType │ │ ├── ExternalHelper.cs │ │ ├── FontData.cs │ │ ├── FontDataStock.cs │ │ ├── GenericFontTable.cs │ │ ├── GlyphDataTable.cs │ │ ├── IRefFontTable.cs │ │ ├── IndexToLocationTable.cs │ │ ├── OpenTypeDescriptor.cs │ │ ├── OpenTypeFontTable.cs │ │ ├── OpenTypeFontWriter.cs │ │ ├── OpenTypeStructures.cs │ │ ├── TableDirectoryEntry.cs │ │ └── enums │ │ │ ├── FontTechnology.cs │ │ │ ├── TableTag.cs │ │ │ └── TableTagNames.cs │ │ ├── PdfSharp.Fonts │ │ ├── AdobeGlyphList20.cs │ │ ├── AdobeGlyphListForNewFonts.cs │ │ ├── CMapInfo.cs │ │ ├── FontDescriptor.cs │ │ ├── FontDescriptorStock.cs │ │ └── FontWriter.cs │ │ ├── PdfSharp.Forms │ │ ├── ColorComboBox.cs │ │ ├── DeviceInfos.cs │ │ ├── PagePreview.cs │ │ ├── PagePreview.resx │ │ ├── PagePreviewCanvas.cs │ │ ├── PagePreviewCanvas.resx │ │ └── enums │ │ │ ├── RenderMode.cs │ │ │ └── Zoom.cs │ │ ├── PdfSharp.Internal │ │ ├── Calc.cs │ │ ├── ColorHelper.cs │ │ ├── DoubleUtil.cs │ │ ├── FontHelper14.cs │ │ ├── NativeMethods.cs │ │ └── TokenizerHelper.cs │ │ ├── PdfSharp.Pdf.AcroForms │ │ ├── PdfAcroField.cs │ │ ├── PdfAcroForm.cs │ │ ├── PdfButtonField.cs │ │ ├── PdfCheckBoxField.cs │ │ ├── PdfChoiceField.cs │ │ ├── PdfComboBoxField.cs │ │ ├── PdfGenericField.cs │ │ ├── PdfListBoxField.cs │ │ ├── PdfPushButtonField.cs │ │ ├── PdfRadioButtonField.cs │ │ ├── PdfSignatureField.cs │ │ ├── PdfTextField.cs │ │ └── enums │ │ │ └── PdfAcroFieldFlags.cs │ │ ├── PdfSharp.Pdf.Actions │ │ ├── PdfAction.cs │ │ └── enums │ │ │ └── PdfNamedActionNames.cs │ │ ├── PdfSharp.Pdf.Advanced │ │ ├── IContentStream.cs │ │ ├── PdfCIDFont.cs │ │ ├── PdfCatalog.cs │ │ ├── PdfContent.cs │ │ ├── PdfContents.cs │ │ ├── PdfDictionaryWithContentStream.cs │ │ ├── PdfExtGState.cs │ │ ├── PdfExtGStateTable.cs │ │ ├── PdfFont.cs │ │ ├── PdfFontDescriptor.cs │ │ ├── PdfFontTable.cs │ │ ├── PdfFormXObject.cs │ │ ├── PdfFormXObjectTable.cs │ │ ├── PdfGroupAttributes.cs │ │ ├── PdfImage.FaxEncode.cs │ │ ├── PdfImage.cs │ │ ├── PdfImageTable.cs │ │ ├── PdfImportedObjectTable.cs │ │ ├── PdfInternals.cs │ │ ├── PdfObjectInternals.cs │ │ ├── PdfPageInheritableObjects.cs │ │ ├── PdfReference.cs │ │ ├── PdfResourceMap.cs │ │ ├── PdfResourceTable.cs │ │ ├── PdfResources.cs │ │ ├── PdfShading.cs │ │ ├── PdfShadingPattern.cs │ │ ├── PdfShadingTable.cs │ │ ├── PdfSoftMask.cs │ │ ├── PdfTilingPattern.cs │ │ ├── PdfToUnicodeMap.cs │ │ ├── PdfTrailer.cs │ │ ├── PdfTransparencyGroupAttributes.cs │ │ ├── PdfTrueTypeFont.cs │ │ ├── PdfType0Font.cs │ │ ├── PdfType1Font.cs │ │ └── PdfXObject.cs │ │ ├── PdfSharp.Pdf.Annotations │ │ ├── PdfAnnotation.cs │ │ ├── PdfAnnotations.cs │ │ ├── PdfGenericAnnotation.cs │ │ ├── PdfLinkAnnotation.cs │ │ ├── PdfRubberStampAnnotation.cs │ │ ├── PdfTextAnnotation.cs │ │ ├── PdfWidgetAnnotation.cs │ │ └── enums │ │ │ ├── PdfAnnotationFlags.cs │ │ │ ├── PdfRubberStampAnnotationIcon.cs │ │ │ └── PdfTextAnnotationIcon.cs │ │ ├── PdfSharp.Pdf.Content.Objects │ │ ├── CObjects.cs │ │ ├── Operators.cs │ │ └── enum │ │ │ ├── OpCodeFlags.cs │ │ │ └── OpCodeName.cs │ │ ├── PdfSharp.Pdf.Content │ │ ├── CLexer.cs │ │ ├── CParser.cs │ │ ├── Chars.cs │ │ ├── ContentReader.cs │ │ ├── ContentReaderException.cs │ │ ├── ContentWriter.cs │ │ └── enums │ │ │ └── Symbol.cs │ │ ├── PdfSharp.Pdf.Filters │ │ ├── ASCII85Decode.cs │ │ ├── ASCIIHexDecode.cs │ │ ├── Filter.cs │ │ ├── Filtering.cs │ │ ├── FlateDecode.cs │ │ └── LzwDecode.cs │ │ ├── PdfSharp.Pdf.IO │ │ ├── Chars.cs │ │ ├── Lexer.cs │ │ ├── Parser.cs │ │ ├── PdfReader.cs │ │ ├── PdfReaderException.cs │ │ ├── PdfWriter.cs │ │ ├── ShiftStack.cs │ │ └── enums │ │ │ ├── PasswordValidity.cs │ │ │ ├── PdfDocumentOpenMode.cs │ │ │ ├── PdfWriterLayout.cs │ │ │ ├── PdfWriterOptions.cs │ │ │ └── Symbol.cs │ │ ├── PdfSharp.Pdf.Internal │ │ ├── AnsiEncoding.cs │ │ ├── ColorSpaceHelper.cs │ │ ├── DocEncoding.cs │ │ ├── GlobalObjectTable.cs │ │ ├── PdfEncoders.cs │ │ ├── RawEncoding.cs │ │ ├── RawUnicodeEncoding.cs │ │ └── ThreadLocalStorage.cs │ │ ├── PdfSharp.Pdf.Printing │ │ └── PdfFilePrinter.cs │ │ ├── PdfSharp.Pdf.Security │ │ ├── PdfSecurityHandler.cs │ │ ├── PdfSecuritySettings.cs │ │ ├── PdfStandardSecurityHandler.cs │ │ └── enums │ │ │ ├── PdfDocumentSecurity.cs │ │ │ └── PdfUserAccessPermission.cs │ │ ├── PdfSharp.Pdf │ │ ├── EntryInfoAttribute.cs │ │ ├── KeysBase.cs │ │ ├── KeysMeta.cs │ │ ├── PdfArray.cs │ │ ├── PdfBoolean.cs │ │ ├── PdfBooleanObject.cs │ │ ├── PdfCustomValue.cs │ │ ├── PdfCustomValues.cs │ │ ├── PdfDate.cs │ │ ├── PdfDictionary.cs │ │ ├── PdfDocument.cs │ │ ├── PdfDocumentInformation.cs │ │ ├── PdfDocumentOptions.cs │ │ ├── PdfDocumentSettings.cs │ │ ├── PdfInteger.cs │ │ ├── PdfIntegerObject.cs │ │ ├── PdfItem.cs │ │ ├── PdfLiteral.cs │ │ ├── PdfName.cs │ │ ├── PdfNameObject.cs │ │ ├── PdfNull.cs │ │ ├── PdfNullObject.cs │ │ ├── PdfNumber.cs │ │ ├── PdfNumberObject.cs │ │ ├── PdfObject.cs │ │ ├── PdfObjectID.cs │ │ ├── PdfOutline.cs │ │ ├── PdfPage.cs │ │ ├── PdfPages.cs │ │ ├── PdfReal.cs │ │ ├── PdfRealObject.cs │ │ ├── PdfRectangle.cs │ │ ├── PdfReferenceTable.cs │ │ ├── PdfString.cs │ │ ├── PdfStringObject.cs │ │ ├── PdfUInteger.cs │ │ ├── PdfUIntegerObject.cs │ │ ├── PdfViewerPreferences.cs │ │ ├── TrimMargins.cs │ │ └── enums │ │ │ ├── DocumentState.cs │ │ │ ├── PdfColorMode.cs │ │ │ ├── PdfCustomValueCompression.cs │ │ │ ├── PdfFontEmbedding.cs │ │ │ ├── PdfFontEncoding.cs │ │ │ ├── PdfOutlineStyle.cs │ │ │ ├── PdfPageLayout.cs │ │ │ ├── PdfPageMode.cs │ │ │ ├── PdfReadingDirection.cs │ │ │ └── PdfTextStringEncoding.cs │ │ ├── PdfSharp.SharpZipLib │ │ ├── Checksums │ │ │ ├── Adler32.cs │ │ │ ├── CRC32.cs │ │ │ └── IChecksum.cs │ │ ├── ReadMe.txt │ │ ├── SharpZip │ │ │ └── SharpZipBaseException.cs │ │ └── Zip │ │ │ └── Compression │ │ │ ├── Deflater.cs │ │ │ ├── DeflaterConstants.cs │ │ │ ├── DeflaterEngine.cs │ │ │ ├── DeflaterHuffman.cs │ │ │ ├── DeflaterPending.cs │ │ │ ├── Inflater.cs │ │ │ ├── InflaterDynHeader.cs │ │ │ ├── InflaterHuffmanTree.cs │ │ │ ├── PendingBuffer.cs │ │ │ └── Streams │ │ │ ├── DeflaterOutputStream.cs │ │ │ ├── InflaterInputStream.cs │ │ │ ├── OutputWindow.cs │ │ │ └── StreamManipulator.cs │ │ ├── PdfSharp.Windows │ │ └── enums │ │ │ ├── RenderMode.cs │ │ │ └── Zoom.cs │ │ ├── PdfSharp.csproj │ │ ├── PdfSharp │ │ ├── PSSR.cs │ │ ├── PageSizeConverter.cs │ │ ├── PdfSharpException.cs │ │ ├── ProductVersionInfo.cs │ │ ├── VersionInfo.cs │ │ └── enums │ │ │ ├── PSMsgID.cs │ │ │ ├── PageOrientation.cs │ │ │ └── PageSize.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ ├── Messages.de.restext │ │ └── Messages.restext │ │ └── StrongnameKey.snk ├── cecil │ ├── .gitattributes │ ├── .gitignore │ ├── Mono.Cecil.Cil │ │ ├── Code.cs │ │ ├── CodeReader.cs │ │ ├── CodeWriter.cs │ │ ├── Document.cs │ │ ├── ExceptionHandler.cs │ │ ├── ILProcessor.cs │ │ ├── Instruction.cs │ │ ├── MethodBody.cs │ │ ├── OpCode.cs │ │ ├── OpCodes.cs │ │ ├── SequencePoint.cs │ │ ├── Symbols.cs │ │ ├── VariableDefinition.cs │ │ └── VariableReference.cs │ ├── Mono.Cecil.Metadata │ │ ├── BlobHeap.cs │ │ ├── Buffers.cs │ │ ├── CodedIndex.cs │ │ ├── ElementType.cs │ │ ├── GuidHeap.cs │ │ ├── Heap.cs │ │ ├── MetadataToken.cs │ │ ├── Row.cs │ │ ├── StringHeap.cs │ │ ├── TableHeap.cs │ │ ├── TokenType.cs │ │ ├── UserStringHeap.cs │ │ └── Utilities.cs │ ├── Mono.Cecil.PE │ │ ├── BinaryStreamReader.cs │ │ ├── BinaryStreamWriter.cs │ │ ├── ByteBuffer.cs │ │ ├── ByteBufferEqualityComparer.cs │ │ ├── DataDirectory.cs │ │ ├── Image.cs │ │ ├── ImageReader.cs │ │ ├── ImageWriter.cs │ │ ├── Section.cs │ │ └── TextMap.cs │ ├── Mono.Cecil.csproj │ ├── Mono.Cecil.nunit │ ├── Mono.Cecil.nuspec │ ├── Mono.Cecil.sln │ ├── Mono.Cecil.sln.DotSettings │ ├── Mono.Cecil │ │ ├── ArrayType.cs │ │ ├── AssemblyDefinition.cs │ │ ├── AssemblyFlags.cs │ │ ├── AssemblyHashAlgorithm.cs │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyLinkedResource.cs │ │ ├── AssemblyNameDefinition.cs │ │ ├── AssemblyNameReference.cs │ │ ├── AssemblyReader.cs │ │ ├── AssemblyWriter.cs │ │ ├── BaseAssemblyResolver.cs │ │ ├── CallSite.cs │ │ ├── CustomAttribute.cs │ │ ├── DefaultAssemblyResolver.cs │ │ ├── EmbeddedResource.cs │ │ ├── EventAttributes.cs │ │ ├── EventDefinition.cs │ │ ├── EventReference.cs │ │ ├── ExportedType.cs │ │ ├── FieldAttributes.cs │ │ ├── FieldDefinition.cs │ │ ├── FieldReference.cs │ │ ├── FileAttributes.cs │ │ ├── FunctionPointerType.cs │ │ ├── GenericInstanceMethod.cs │ │ ├── GenericInstanceType.cs │ │ ├── GenericParameter.cs │ │ ├── GenericParameterAttributes.cs │ │ ├── IConstantProvider.cs │ │ ├── ICustomAttributeProvider.cs │ │ ├── IGenericInstance.cs │ │ ├── IGenericParameterProvider.cs │ │ ├── IMarshalInfoProvider.cs │ │ ├── IMemberDefinition.cs │ │ ├── IMetadataScope.cs │ │ ├── IMetadataTokenProvider.cs │ │ ├── IMethodSignature.cs │ │ ├── Import.cs │ │ ├── LinkedResource.cs │ │ ├── ManifestResourceAttributes.cs │ │ ├── MarshalInfo.cs │ │ ├── MemberDefinitionCollection.cs │ │ ├── MemberReference.cs │ │ ├── MetadataResolver.cs │ │ ├── MetadataSystem.cs │ │ ├── MethodAttributes.cs │ │ ├── MethodCallingConvention.cs │ │ ├── MethodDefinition.cs │ │ ├── MethodImplAttributes.cs │ │ ├── MethodReference.cs │ │ ├── MethodReturnType.cs │ │ ├── MethodSemanticsAttributes.cs │ │ ├── MethodSpecification.cs │ │ ├── Modifiers.cs │ │ ├── ModuleDefinition.cs │ │ ├── ModuleKind.cs │ │ ├── ModuleReference.cs │ │ ├── NativeType.cs │ │ ├── PInvokeAttributes.cs │ │ ├── PInvokeInfo.cs │ │ ├── ParameterAttributes.cs │ │ ├── ParameterDefinition.cs │ │ ├── ParameterDefinitionCollection.cs │ │ ├── ParameterReference.cs │ │ ├── PinnedType.cs │ │ ├── PointerType.cs │ │ ├── PropertyAttributes.cs │ │ ├── PropertyDefinition.cs │ │ ├── PropertyReference.cs │ │ ├── ReferenceType.cs │ │ ├── Resource.cs │ │ ├── SecurityDeclaration.cs │ │ ├── SentinelType.cs │ │ ├── TargetRuntime.cs │ │ ├── TypeAttributes.cs │ │ ├── TypeDefinition.cs │ │ ├── TypeDefinitionCollection.cs │ │ ├── TypeParser.cs │ │ ├── TypeReference.cs │ │ ├── TypeSpecification.cs │ │ ├── TypeSystem.cs │ │ └── VariantType.cs │ ├── Mono.Collections.Generic │ │ ├── Collection.cs │ │ └── ReadOnlyCollection.cs │ ├── Mono.Security.Cryptography │ │ ├── CryptoConvert.cs │ │ └── CryptoService.cs │ ├── Mono │ │ ├── Actions.cs │ │ ├── Empty.cs │ │ └── Funcs.cs │ ├── NOTES.txt │ ├── System.Runtime.CompilerServices │ │ └── ExtensionAttribute.cs │ ├── Test │ │ ├── .gitignore │ │ ├── Mono.Cecil.Tests.csproj │ │ ├── Mono.Cecil.Tests │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyTests.cs │ │ │ ├── BaseTestFixture.cs │ │ │ ├── CompilationService.cs │ │ │ ├── CustomAttributesTests.cs │ │ │ ├── EventTests.cs │ │ │ ├── Extensions.cs │ │ │ ├── FieldTests.cs │ │ │ ├── Formatter.cs │ │ │ ├── ILProcessorTests.cs │ │ │ ├── ImageReadTests.cs │ │ │ ├── ImportCecilTests.cs │ │ │ ├── ImportReflectionTests.cs │ │ │ ├── Linq.cs │ │ │ ├── MethodBodyTests.cs │ │ │ ├── MethodTests.cs │ │ │ ├── ModuleTests.cs │ │ │ ├── NestedTypesTests.cs │ │ │ ├── ParameterTests.cs │ │ │ ├── PropertyTests.cs │ │ │ ├── ResolveTests.cs │ │ │ ├── SecurityDeclarationTests.cs │ │ │ ├── TypeParserTests.cs │ │ │ ├── TypeTests.cs │ │ │ └── VariableTests.cs │ │ ├── Resources │ │ │ ├── assemblies │ │ │ │ ├── PortableClassLibrary.dll │ │ │ │ ├── boxedoptarg.dll │ │ │ │ ├── catch.exe │ │ │ │ ├── cppcli.dll │ │ │ │ ├── cscgpbug.dll │ │ │ │ ├── decsec-att.dll │ │ │ │ ├── decsec-xml.dll │ │ │ │ ├── decsec1-xml.dll │ │ │ │ ├── delay-signed.dll │ │ │ │ ├── empty-decsec-att.dll │ │ │ │ ├── fptr.exe │ │ │ │ ├── gifaceref.exe │ │ │ │ ├── hello.anycpu.exe │ │ │ │ ├── hello.exe │ │ │ │ ├── hello.ia64.exe │ │ │ │ ├── hello.x64.exe │ │ │ │ ├── hello.x86.exe │ │ │ │ ├── hello1.exe │ │ │ │ ├── hellow.exe │ │ │ │ ├── iterator.exe │ │ │ │ ├── libhello.dll │ │ │ │ ├── libres.dll │ │ │ │ ├── marshal.dll │ │ │ │ ├── metro.exe │ │ │ │ ├── mma.exe │ │ │ │ ├── moda.netmodule │ │ │ │ ├── modb.netmodule │ │ │ │ ├── noblob.dll │ │ │ │ ├── nullable-constant.exe │ │ │ │ ├── nullable-parameter.dll │ │ │ │ ├── pinvoke.exe │ │ │ │ ├── switch.exe │ │ │ │ ├── text_file.txt │ │ │ │ ├── varargs.exe │ │ │ │ └── wp7.dll │ │ │ ├── cs │ │ │ │ ├── CustomAttributes.cs │ │ │ │ ├── Events.cs │ │ │ │ ├── Fields.cs │ │ │ │ ├── Generics.cs │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── Layouts.cs │ │ │ │ ├── Methods.cs │ │ │ │ ├── NestedTypes.cs │ │ │ │ └── Properties.cs │ │ │ └── il │ │ │ │ ├── explicitthis.il │ │ │ │ ├── hello.il │ │ │ │ ├── methodspecs.il │ │ │ │ ├── others.il │ │ │ │ └── types.il │ │ └── libs │ │ │ └── nunit-2.6.2 │ │ │ ├── license.txt │ │ │ ├── nunit.core.dll │ │ │ ├── nunit.core.interfaces.dll │ │ │ └── nunit.framework.dll │ ├── dbg │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── dbg.csproj │ ├── mono.snk │ ├── rocks │ │ ├── .gitignore │ │ ├── Mono.Cecil.Rocks.csproj │ │ ├── Mono.Cecil.Rocks │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Functional.cs │ │ │ ├── ILParser.cs │ │ │ ├── MethodBodyRocks.cs │ │ │ ├── MethodDefinitionRocks.cs │ │ │ ├── ModuleDefinitionRocks.cs │ │ │ ├── ParameterReferenceRocks.cs │ │ │ ├── SecurityDeclarationRocks.cs │ │ │ ├── TypeDefinitionRocks.cs │ │ │ └── TypeReferenceRocks.cs │ │ └── Test │ │ │ ├── .gitignore │ │ │ ├── Mono.Cecil.Rocks.Tests.csproj │ │ │ ├── Mono.Cecil.Tests │ │ │ ├── MethodDefinitionRocksTests.cs │ │ │ ├── ModuleDefinitionRocksTests.cs │ │ │ ├── SecurityDeclarationRocksTests.cs │ │ │ ├── TypeDefinitionRocksTests.cs │ │ │ └── TypeReferenceRocksTests.cs │ │ │ └── Resources │ │ │ ├── assemblies │ │ │ ├── decsec-att.dll │ │ │ └── decsec-xml.dll │ │ │ └── cs │ │ │ └── Types.cs │ └── symbols │ │ ├── mdb │ │ ├── .gitignore │ │ ├── Mono.Cecil.Mdb.csproj │ │ ├── Mono.Cecil.Mdb │ │ │ ├── AssemblyInfo.cs │ │ │ ├── MdbReader.cs │ │ │ └── MdbWriter.cs │ │ ├── Mono.CompilerServices.SymbolWriter │ │ │ ├── MonoSymbolFile.cs │ │ │ ├── MonoSymbolTable.cs │ │ │ ├── MonoSymbolWriter.cs │ │ │ └── SymbolWriterImpl.cs │ │ └── Test │ │ │ ├── .gitignore │ │ │ ├── Mono.Cecil.Mdb.Tests.csproj │ │ │ ├── Mono.Cecil.Tests │ │ │ └── MdbTests.cs │ │ │ └── Resources │ │ │ └── assemblies │ │ │ ├── hello.exe │ │ │ └── hello.exe.mdb │ │ └── pdb │ │ ├── .gitignore │ │ ├── Mono.Cecil.Pdb.csproj │ │ └── Test │ │ ├── .gitignore │ │ ├── Mono.Cecil.Pdb.Tests.csproj │ │ ├── Mono.Cecil.Tests │ │ ├── Linq.cs │ │ └── PdbTests.cs │ │ └── Resources │ │ └── assemblies │ │ ├── VBConsApp.exe │ │ ├── fsapp.exe │ │ └── test.exe ├── log4net-1.2.13 │ ├── KEYS │ ├── LICENSE │ ├── NOTICE │ ├── README.txt │ ├── STATUS.txt │ ├── build.cmd │ ├── examples │ │ ├── mono │ │ │ ├── 1.0 │ │ │ │ ├── Performance │ │ │ │ │ ├── NotLogging │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ └── NotLogging.cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Repository │ │ │ │ │ ├── SharedModule │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ └── Math.cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── SimpleApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── EntryPoint.cs │ │ │ │ │ │ │ │ └── SimpleApp.exe.log4net │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── SimpleModule │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Math.cs │ │ │ │ │ │ │ │ └── SimpleModule.dll.log4net │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Tutorials │ │ │ │ │ ├── ConsoleApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ └── LoggingExample.cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── nant.build │ │ │ │ └── nant.config │ │ │ ├── nant.build │ │ │ └── nant.config │ │ ├── nant.build │ │ ├── nant.config │ │ ├── net │ │ │ ├── 1.1 │ │ │ │ ├── Repository │ │ │ │ │ ├── SharedModule │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.js │ │ │ │ │ │ │ │ └── Math.js │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── SimpleApp │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.js │ │ │ │ │ │ │ │ ├── EntryPoint.js │ │ │ │ │ │ │ │ └── SimpleApp.exe.log4net │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── SimpleModule │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.js │ │ │ │ │ │ │ │ ├── Math.js │ │ │ │ │ │ │ │ └── SimpleModule.dll.log4net │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Tutorials │ │ │ │ │ ├── ConsoleApp │ │ │ │ │ │ ├── cpp │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ │ │ │ │ ├── ConsoleApp.cpp │ │ │ │ │ │ │ │ └── ConsoleApp.vcproj │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.js │ │ │ │ │ │ │ │ └── LoggingExample.js │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── cpp-examples.sln │ │ │ │ ├── nant.build │ │ │ │ └── nant.config │ │ │ ├── 2.0 │ │ │ │ ├── Appenders │ │ │ │ │ ├── SampleAppendersApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── Appender │ │ │ │ │ │ │ │ ├── AsyncAppender.cs │ │ │ │ │ │ │ │ ├── FastDbAppender.cs │ │ │ │ │ │ │ │ ├── FireEventAppender.cs │ │ │ │ │ │ │ │ ├── MessageBoxAppender.cs │ │ │ │ │ │ │ │ ├── MessageObjectExpanderAppender.cs │ │ │ │ │ │ │ │ ├── MsmqAppender.cs │ │ │ │ │ │ │ │ ├── PatternFileAppender.cs │ │ │ │ │ │ │ │ ├── PatternLayoutAdoNetAppender.cs │ │ │ │ │ │ │ │ ├── PatternLayoutAdoNetAppenderParameter.cs │ │ │ │ │ │ │ │ └── SimpleSmtpAppender.cs │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── LoggingExample.cs │ │ │ │ │ │ │ │ └── SampleAppendersApp.csproj │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── WmiAppender │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── IWmiBoundEvent.cs │ │ │ │ │ │ │ │ ├── WmiAppender.cs │ │ │ │ │ │ │ │ ├── WmiAppender.csproj │ │ │ │ │ │ │ │ ├── WmiInstaller.cs │ │ │ │ │ │ │ │ ├── WmiLayout.cs │ │ │ │ │ │ │ │ └── WmiLoggingEvent.cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Extensibility │ │ │ │ │ ├── EventIDLogApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── EventIDLogApp.cs │ │ │ │ │ │ │ │ └── EventIDLogApp.csproj │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── TraceLogApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── TraceLogApp.cs │ │ │ │ │ │ │ │ ├── TraceLogApp.csproj │ │ │ │ │ │ │ │ └── TraceLogApp.exe.log4net │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Layouts │ │ │ │ │ ├── SampleLayoutsApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ │ ├── ForwardingLayout.cs │ │ │ │ │ │ │ │ ├── LevelConversionPattern.cs │ │ │ │ │ │ │ │ ├── LevelPatternLayout.cs │ │ │ │ │ │ │ │ └── LineWrappingLayout.cs │ │ │ │ │ │ │ │ ├── LoggingExample.cs │ │ │ │ │ │ │ │ └── SampleLayoutsApp.csproj │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Performance │ │ │ │ │ ├── NotLogging │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── NotLogging.cs │ │ │ │ │ │ │ │ └── NotLogging.csproj │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── vb │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ │ │ ├── NotLogging.vb │ │ │ │ │ │ │ └── NotLogging.vbproj │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Remoting │ │ │ │ │ ├── RemotingClient │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── RemotingClient.cs │ │ │ │ │ │ │ │ └── RemotingClient.csproj │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── RemotingServer │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── RemotingServer.cs │ │ │ │ │ │ │ │ └── RemotingServer.csproj │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ └── nant.config │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Repository │ │ │ │ │ ├── SharedModule │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Math.cs │ │ │ │ │ │ │ │ └── SharedModule.csproj │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── vb │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ │ │ ├── Math.vb │ │ │ │ │ │ │ └── SharedModule.vbproj │ │ │ │ │ ├── SimpleApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── EntryPoint.cs │ │ │ │ │ │ │ │ ├── SimpleApp.csproj │ │ │ │ │ │ │ │ └── SimpleApp.exe.log4net │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── vb │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ │ │ ├── EntryPoint.vb │ │ │ │ │ │ │ ├── SimpleApp.exe.log4net │ │ │ │ │ │ │ └── SimpleApp.vbproj │ │ │ │ │ ├── SimpleModule │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── Math.cs │ │ │ │ │ │ │ │ ├── SimpleModule.csproj │ │ │ │ │ │ │ │ └── SimpleModule.dll.log4net │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── vb │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ │ │ ├── Math.vb │ │ │ │ │ │ │ ├── SimpleModule.dll.log4net │ │ │ │ │ │ │ └── SimpleModule.vbproj │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── Tutorials │ │ │ │ │ ├── ConsoleApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── ConsoleApp.csproj │ │ │ │ │ │ │ │ └── LoggingExample.cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── vb │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ │ │ ├── ConsoleApp.vbproj │ │ │ │ │ │ │ └── LoggingExample.vb │ │ │ │ │ ├── WebApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── AssemblyVersionInfo.cs │ │ │ │ │ │ │ │ ├── Global.asax │ │ │ │ │ │ │ │ ├── Global.asax.cs │ │ │ │ │ │ │ │ ├── Global.asax.resx │ │ │ │ │ │ │ │ ├── SimpleModule.dll.log4net │ │ │ │ │ │ │ │ ├── Web.config │ │ │ │ │ │ │ │ ├── WebApp.csproj │ │ │ │ │ │ │ │ ├── WebApp.csproj.webinfo │ │ │ │ │ │ │ │ ├── WebApp.dll.log4net │ │ │ │ │ │ │ │ ├── WebApp.vsdisco │ │ │ │ │ │ │ │ ├── WebForm1.aspx │ │ │ │ │ │ │ │ ├── WebForm1.aspx.cs │ │ │ │ │ │ │ │ └── WebForm1.aspx.resx │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ └── vb │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ │ │ ├── AssemblyVersionInfo.vb │ │ │ │ │ │ │ ├── Global.asax │ │ │ │ │ │ │ ├── Global.asax.resx │ │ │ │ │ │ │ ├── Global.asax.vb │ │ │ │ │ │ │ ├── SimpleModule.dll.log4net │ │ │ │ │ │ │ ├── Web.config │ │ │ │ │ │ │ ├── WebApp.dll.log4net │ │ │ │ │ │ │ ├── WebApp.vbproj │ │ │ │ │ │ │ ├── WebApp.vbproj.webinfo │ │ │ │ │ │ │ ├── WebApp.vsdisco │ │ │ │ │ │ │ ├── WebForm1.aspx │ │ │ │ │ │ │ ├── WebForm1.aspx.resx │ │ │ │ │ │ │ └── WebForm1.aspx.vb │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── cs-examples.sln │ │ │ │ ├── nant.build │ │ │ │ ├── nant.config │ │ │ │ └── vb-examples.sln │ │ │ ├── nant.build │ │ │ └── nant.config │ │ ├── netcf │ │ │ ├── 1.0 │ │ │ │ ├── Tutorials │ │ │ │ │ ├── ConsoleApp │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ │ ├── ConsoleApp.csdproj │ │ │ │ │ │ │ │ ├── ConsoleApp.exe.config │ │ │ │ │ │ │ │ ├── EntryPoint.cs │ │ │ │ │ │ │ │ └── LoggingExample.cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── vb │ │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ │ │ ├── ConsoleApp.exe.config │ │ │ │ │ │ │ ├── ConsoleApp.vbdproj │ │ │ │ │ │ │ ├── EntryPoint.vb │ │ │ │ │ │ │ └── LoggingExample.vb │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── cs-examples.sln │ │ │ │ ├── nant.build │ │ │ │ ├── nant.config │ │ │ │ └── vb-examples.sln │ │ │ ├── nant.build │ │ │ └── nant.config │ │ └── sscli │ │ │ ├── 1.0 │ │ │ ├── Repository │ │ │ │ ├── SharedModule │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ └── Math.cs │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── SimpleApp │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── EntryPoint.cs │ │ │ │ │ │ │ └── SimpleApp.exe.log4net │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── SimpleModule │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ ├── Math.cs │ │ │ │ │ │ │ └── SimpleModule.dll.log4net │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── nant.build │ │ │ │ └── nant.config │ │ │ ├── Tutorials │ │ │ │ ├── ConsoleApp │ │ │ │ │ ├── js │ │ │ │ │ │ ├── nant.build │ │ │ │ │ │ ├── nant.config │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ │ ├── AssemblyInfo.js │ │ │ │ │ │ │ └── LoggingExample.js │ │ │ │ │ ├── nant.build │ │ │ │ │ └── nant.config │ │ │ │ ├── nant.build │ │ │ │ └── nant.config │ │ │ ├── nant.build │ │ │ └── nant.config │ │ │ ├── nant.build │ │ │ └── nant.config │ ├── extensions │ │ ├── nant.build │ │ ├── nant.config │ │ └── net │ │ │ ├── 1.0 │ │ │ ├── cs-extensions.sln │ │ │ ├── log4net.Ext.EventID │ │ │ │ ├── cs │ │ │ │ │ ├── nant.build │ │ │ │ │ ├── nant.config │ │ │ │ │ └── src │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── EventIDLogImpl.cs │ │ │ │ │ │ ├── EventIDLogManager.cs │ │ │ │ │ │ ├── IEventIDLog.cs │ │ │ │ │ │ └── log4net.Ext.EventID.csproj │ │ │ │ ├── nant.build │ │ │ │ └── nant.config │ │ │ ├── log4net.Ext.MarshalByRef │ │ │ │ ├── cs │ │ │ │ │ ├── nant.build │ │ │ │ │ ├── nant.config │ │ │ │ │ └── src │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── MarshalByRefLogImpl.cs │ │ │ │ │ │ ├── MarshalByRefLogManager.cs │ │ │ │ │ │ └── log4net.Ext.MarshalByRef.csproj │ │ │ │ ├── nant.build │ │ │ │ └── nant.config │ │ │ ├── log4net.Ext.Trace │ │ │ │ ├── cs │ │ │ │ │ ├── nant.build │ │ │ │ │ ├── nant.config │ │ │ │ │ └── src │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── ITraceLog.cs │ │ │ │ │ │ ├── TraceLogImpl.cs │ │ │ │ │ │ ├── TraceLogManager.cs │ │ │ │ │ │ └── log4net.Ext.Trace.csproj │ │ │ │ ├── nant.build │ │ │ │ └── nant.config │ │ │ ├── nant.build │ │ │ └── nant.config │ │ │ ├── nant.build │ │ │ └── nant.config │ ├── log4net.build │ ├── log4net.include │ ├── log4net.snk │ ├── log4net.snk.readme │ ├── old-log4net.snk.gpg │ ├── pom.xml │ ├── src │ │ ├── Appender │ │ │ ├── AdoNetAppender.cs │ │ │ ├── AnsiColorTerminalAppender.cs │ │ │ ├── AppenderCollection.cs │ │ │ ├── AppenderSkeleton.cs │ │ │ ├── AspNetTraceAppender.cs │ │ │ ├── BufferingAppenderSkeleton.cs │ │ │ ├── BufferingForwardingAppender.cs │ │ │ ├── ColoredConsoleAppender.cs │ │ │ ├── ConsoleAppender.cs │ │ │ ├── DebugAppender.cs │ │ │ ├── EventLogAppender.cs │ │ │ ├── FileAppender.cs │ │ │ ├── ForwardingAppender.cs │ │ │ ├── IAppender.cs │ │ │ ├── IBulkAppender.cs │ │ │ ├── LocalSyslogAppender.cs │ │ │ ├── ManagedColoredConsoleAppender.cs │ │ │ ├── MemoryAppender.cs │ │ │ ├── NetSendAppender.cs │ │ │ ├── OutputDebugStringAppender.cs │ │ │ ├── RemoteSyslogAppender.cs │ │ │ ├── RemotingAppender.cs │ │ │ ├── RollingFileAppender.cs │ │ │ ├── SmtpAppender.cs │ │ │ ├── SmtpPickupDirAppender.cs │ │ │ ├── TelnetAppender.cs │ │ │ ├── TextWriterAppender.cs │ │ │ ├── TraceAppender.cs │ │ │ └── UdpAppender.cs │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyVersionInfo.cpp │ │ ├── AssemblyVersionInfo.cs │ │ ├── AssemblyVersionInfo.js │ │ ├── AssemblyVersionInfo.vb │ │ ├── Config │ │ │ ├── AliasDomainAttribute.cs │ │ │ ├── AliasRepositoryAttribute.cs │ │ │ ├── BasicConfigurator.cs │ │ │ ├── ConfiguratorAttribute.cs │ │ │ ├── DOMConfigurator.cs │ │ │ ├── DOMConfiguratorAttribute.cs │ │ │ ├── DomainAttribute.cs │ │ │ ├── Log4NetConfigurationSectionHandler.cs │ │ │ ├── PluginAttribute.cs │ │ │ ├── RepositoryAttribute.cs │ │ │ ├── SecurityContextProviderAttribute.cs │ │ │ ├── XmlConfigurator.cs │ │ │ └── XmlConfiguratorAttribute.cs │ │ ├── Core │ │ │ ├── CompactRepositorySelector.cs │ │ │ ├── DefaultRepositorySelector.cs │ │ │ ├── ErrorCode.cs │ │ │ ├── ExceptionEvaluator.cs │ │ │ ├── IAppenderAttachable.cs │ │ │ ├── IErrorHandler.cs │ │ │ ├── IFixingRequired.cs │ │ │ ├── ILogger.cs │ │ │ ├── ILoggerWrapper.cs │ │ │ ├── IOptionHandler.cs │ │ │ ├── IRepositorySelector.cs │ │ │ ├── ITriggeringEventEvaluator.cs │ │ │ ├── Level.cs │ │ │ ├── LevelCollection.cs │ │ │ ├── LevelEvaluator.cs │ │ │ ├── LevelMap.cs │ │ │ ├── LocationInfo.cs │ │ │ ├── LogException.cs │ │ │ ├── LogImpl.cs │ │ │ ├── LoggerManager.cs │ │ │ ├── LoggerWrapperImpl.cs │ │ │ ├── LoggingEvent.cs │ │ │ ├── MethodItem.cs │ │ │ ├── SecurityContext.cs │ │ │ ├── SecurityContextProvider.cs │ │ │ ├── StackFrameItem.cs │ │ │ ├── TimeEvaluator.cs │ │ │ └── WrapperMap.cs │ │ ├── DateFormatter │ │ │ ├── AbsoluteTimeDateFormatter.cs │ │ │ ├── DateTimeDateFormatter.cs │ │ │ ├── IDateFormatter.cs │ │ │ ├── Iso8601DateFormatter.cs │ │ │ └── SimpleDateFormatter.cs │ │ ├── Filter │ │ │ ├── DenyAllFilter.cs │ │ │ ├── FilterDecision.cs │ │ │ ├── FilterSkeleton.cs │ │ │ ├── IFilter.cs │ │ │ ├── LevelMatchFilter.cs │ │ │ ├── LevelRangeFilter.cs │ │ │ ├── LoggerMatchFilter.cs │ │ │ ├── MdcFilter.cs │ │ │ ├── NdcFilter.cs │ │ │ ├── PropertyFilter.cs │ │ │ └── StringMatchFilter.cs │ │ ├── GlobalContext.cs │ │ ├── ILog.cs │ │ ├── Layout │ │ │ ├── DynamicPatternLayout.cs │ │ │ ├── ExceptionLayout.cs │ │ │ ├── ILayout.cs │ │ │ ├── IRawLayout.cs │ │ │ ├── Layout2RawLayoutAdapter.cs │ │ │ ├── LayoutSkeleton.cs │ │ │ ├── Pattern │ │ │ │ ├── AppDomainPatternConverter.cs │ │ │ │ ├── AspNetCachePatternConverter.cs │ │ │ │ ├── AspNetContextPatternConverter.cs │ │ │ │ ├── AspNetPatternConverter.cs │ │ │ │ ├── AspNetRequestPatternConverter.cs │ │ │ │ ├── AspNetSessionPatternConverter.cs │ │ │ │ ├── DatePatternConverter.cs │ │ │ │ ├── ExceptionPatternConverter.cs │ │ │ │ ├── FileLocationPatternConverter.cs │ │ │ │ ├── FullLocationPatternConverter.cs │ │ │ │ ├── IdentityPatternConverter.cs │ │ │ │ ├── LevelPatternConverter.cs │ │ │ │ ├── LineLocationPatternConverter.cs │ │ │ │ ├── LoggerPatternConverter.cs │ │ │ │ ├── MessagePatternConverter.cs │ │ │ │ ├── MethodLocationPatternConverter.cs │ │ │ │ ├── NamedPatternConverter.cs │ │ │ │ ├── NdcPatternConverter.cs │ │ │ │ ├── PatternLayoutConverter.cs │ │ │ │ ├── PropertyPatternConverter.cs │ │ │ │ ├── RelativeTimePatternConverter.cs │ │ │ │ ├── StackTraceDetailPatternConverter.cs │ │ │ │ ├── StackTracePatternConverter.cs │ │ │ │ ├── ThreadPatternConverter.cs │ │ │ │ ├── TypeNamePatternConverter.cs │ │ │ │ ├── UserNamePatternConverter.cs │ │ │ │ └── UtcDatePatternConverter.cs │ │ │ ├── PatternLayout.cs │ │ │ ├── RawLayoutConverter.cs │ │ │ ├── RawPropertyLayout.cs │ │ │ ├── RawTimeStampLayout.cs │ │ │ ├── RawUtcTimeStampLayout.cs │ │ │ ├── SimpleLayout.cs │ │ │ ├── XMLLayout.cs │ │ │ ├── XMLLayoutBase.cs │ │ │ └── XmlLayoutSchemaLog4j.cs │ │ ├── Log4netAssemblyInfo.cs │ │ ├── LogManager.cs │ │ ├── LogicalThreadContext.cs │ │ ├── MDC.cs │ │ ├── NDC.cs │ │ ├── ObjectRenderer │ │ │ ├── DefaultRenderer.cs │ │ │ ├── IObjectRenderer.cs │ │ │ └── RendererMap.cs │ │ ├── Plugin │ │ │ ├── IPlugin.cs │ │ │ ├── IPluginFactory.cs │ │ │ ├── PluginCollection.cs │ │ │ ├── PluginMap.cs │ │ │ ├── PluginSkeleton.cs │ │ │ └── RemoteLoggingServerPlugin.cs │ │ ├── Repository │ │ │ ├── ConfigurationChangedEventArgs.cs │ │ │ ├── Hierarchy │ │ │ │ ├── DefaultLoggerFactory.cs │ │ │ │ ├── Hierarchy.cs │ │ │ │ ├── ILoggerFactory.cs │ │ │ │ ├── Logger.cs │ │ │ │ ├── LoggerKey.cs │ │ │ │ ├── ProvisionNode.cs │ │ │ │ ├── RootLogger.cs │ │ │ │ └── XmlHierarchyConfigurator.cs │ │ │ ├── IBasicRepositoryConfigurator.cs │ │ │ ├── ILoggerRepository.cs │ │ │ ├── IXmlRepositoryConfigurator.cs │ │ │ └── LoggerRepositorySkeleton.cs │ │ ├── ThreadContext.cs │ │ ├── Util │ │ │ ├── AppenderAttachedImpl.cs │ │ │ ├── CompositeProperties.cs │ │ │ ├── ContextPropertiesBase.cs │ │ │ ├── ConverterInfo.cs │ │ │ ├── CountingQuietTextWriter.cs │ │ │ ├── CyclicBuffer.cs │ │ │ ├── EmptyCollection.cs │ │ │ ├── EmptyDictionary.cs │ │ │ ├── FormattingInfo.cs │ │ │ ├── GlobalContextProperties.cs │ │ │ ├── ILogExtensions.cs │ │ │ ├── LevelMapping.cs │ │ │ ├── LevelMappingEntry.cs │ │ │ ├── LogLog.cs │ │ │ ├── LogicalThreadContextProperties.cs │ │ │ ├── NativeError.cs │ │ │ ├── NullDictionaryEnumerator.cs │ │ │ ├── NullEnumerator.cs │ │ │ ├── NullSecurityContext.cs │ │ │ ├── OnlyOnceErrorHandler.cs │ │ │ ├── OptionConverter.cs │ │ │ ├── PatternConverter.cs │ │ │ ├── PatternParser.cs │ │ │ ├── PatternString.cs │ │ │ ├── PatternStringConverters │ │ │ │ ├── AppDomainPatternConverter.cs │ │ │ │ ├── DatePatternConverter.cs │ │ │ │ ├── EnvironmentFolderPathPatternConverter.cs │ │ │ │ ├── EnvironmentPatternConverter.cs │ │ │ │ ├── IdentityPatternConverter.cs │ │ │ │ ├── LiteralPatternConverter.cs │ │ │ │ ├── NewLinePatternConverter.cs │ │ │ │ ├── ProcessIdPatternConverter.cs │ │ │ │ ├── PropertyPatternConverter.cs │ │ │ │ ├── RandomStringPatternConverter.cs │ │ │ │ ├── UserNamePatternConverter.cs │ │ │ │ └── UtcDatePatternConverter.cs │ │ │ ├── PropertiesDictionary.cs │ │ │ ├── PropertyEntry.cs │ │ │ ├── ProtectCloseTextWriter.cs │ │ │ ├── QuietTextWriter.cs │ │ │ ├── ReadOnlyPropertiesDictionary.cs │ │ │ ├── ReaderWriterLock.cs │ │ │ ├── ReusableStringWriter.cs │ │ │ ├── SystemInfo.cs │ │ │ ├── SystemStringFormat.cs │ │ │ ├── TextWriterAdapter.cs │ │ │ ├── ThreadContextProperties.cs │ │ │ ├── ThreadContextStack.cs │ │ │ ├── ThreadContextStacks.cs │ │ │ ├── Transform.cs │ │ │ ├── TypeConverters │ │ │ │ ├── BooleanConverter.cs │ │ │ │ ├── ConversionNotSupportedException.cs │ │ │ │ ├── ConverterRegistry.cs │ │ │ │ ├── EncodingConverter.cs │ │ │ │ ├── IConvertFrom.cs │ │ │ │ ├── IConvertTo.cs │ │ │ │ ├── IPAddressConverter.cs │ │ │ │ ├── PatternLayoutConverter.cs │ │ │ │ ├── PatternStringConverter.cs │ │ │ │ ├── TypeConverter.cs │ │ │ │ └── TypeConverterAttribute.cs │ │ │ └── WindowsSecurityContext.cs │ │ ├── assembly │ │ │ └── bin.xml │ │ ├── changes │ │ │ └── changes.xml │ │ ├── log4net.vs2008.csproj │ │ ├── log4net.vs2008.sln │ │ ├── log4net.vs2010.csproj │ │ ├── log4net.vs2010.sln │ │ ├── log4net.xml │ │ └── site │ │ │ ├── apt │ │ │ └── roadmap.apt │ │ │ ├── resources │ │ │ ├── css │ │ │ │ ├── maven-base.css │ │ │ │ └── site.css │ │ │ ├── download_log4net.cgi │ │ │ └── images │ │ │ │ ├── logo.jpg │ │ │ │ ├── logos │ │ │ │ └── maven-feather.png │ │ │ │ ├── ls-logo.jpg │ │ │ │ └── od.gif │ │ │ ├── site.vm │ │ │ ├── site.xml │ │ │ └── xdoc │ │ │ ├── download_log4net.xml │ │ │ ├── history.xml │ │ │ └── index.xml │ └── tests │ │ ├── lib │ │ └── prerequisites.txt │ │ ├── nant.build │ │ └── src │ │ ├── Appender │ │ ├── AdoNet │ │ │ ├── Log4NetCommand.cs │ │ │ ├── Log4NetConnection.cs │ │ │ ├── Log4NetParameter.cs │ │ │ ├── Log4NetParameterCollection.cs │ │ │ └── Log4NetTransaction.cs │ │ ├── AdoNetAppenderTest.cs │ │ ├── AppenderCollectionTest.cs │ │ ├── BufferingAppenderTest.cs │ │ ├── CountingAppender.cs │ │ ├── EventLogAppenderTest.cs │ │ ├── RemotingAppenderTest.cs │ │ ├── RollingFileAppenderTest.cs │ │ ├── StringAppender.cs │ │ └── TraceAppenderTest.cs │ │ ├── AssemblyInfo.cs │ │ ├── Context │ │ └── ThreadContextTest.cs │ │ ├── Core │ │ ├── EvaluatorTest.cs │ │ ├── FixingTest.cs │ │ ├── ShutdownTest.cs │ │ └── StringFormatTest.cs │ │ ├── DateFormatter │ │ └── AbsoluteTimeDateFormatterTest.cs │ │ ├── Filter │ │ └── FilterTest.cs │ │ ├── Hierarchy │ │ ├── Hierarchy.cs │ │ ├── Logger.cs │ │ └── XmlHierarchyConfiguratorTest.cs │ │ ├── Layout │ │ ├── DynamicPatternLayoutTest.cs │ │ ├── PatternLayoutTest.cs │ │ └── XmlLayoutTest.cs │ │ ├── LoggerRepository │ │ └── ConfigurationMessages.cs │ │ ├── Util │ │ ├── CyclicBufferTest.cs │ │ ├── EnvironmentPatternConverterTest.cs │ │ ├── LogLogTest.cs │ │ ├── PatternConverterTest.cs │ │ ├── PatternStringTest.cs │ │ ├── PropertiesDictionaryTest.cs │ │ ├── RandomStringPatternConverterTest.cs │ │ ├── SystemInfoTest.cs │ │ └── TransformTest.cs │ │ ├── Utils.cs │ │ ├── log4net.Tests.vs2003.csproj │ │ ├── log4net.Tests.vs2008.csproj │ │ └── log4net.Tests.vs2010.csproj └── mono-gtkspell-sharp │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE.LGPL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── configure.in │ ├── docs │ └── README │ ├── gtkspell-sharp-2.0.pc.in │ ├── gtkspell-sharp.snk │ ├── gtkspell │ ├── AssemblyInfo.cs.in │ ├── Makefile.am │ ├── gtkspell-api.raw │ ├── gtkspell-sharp.dll.config.in │ └── gtkspell.metadata │ ├── install-sh │ ├── missing │ ├── mkinstalldirs │ ├── sample │ ├── Makefile │ └── TestGtkSpell.cs │ └── sources │ ├── Win32 │ └── libgtkspell.dll │ ├── gtkspell-2.0.10.tar.gz │ └── gtkspell-sharp.sources ├── src ├── AssemblyCSharpImport │ ├── AssemblyCSharpImport.csproj │ ├── AssemblyImport.build │ ├── CSharpImport.cs │ ├── Common.cs │ ├── Controls │ │ ├── ControlDrawHelper.cs │ │ ├── DataGridViewImageComboBoxColumn.cs │ │ ├── DataGridViewImageComboBoxColumnCell.cs │ │ ├── DataGridViewImageComboBoxEditingControl.cs │ │ ├── ImageComboBox.cs │ │ └── ImageComboBoxItem.cs │ ├── Declaration.cs │ ├── Extensions.cs │ ├── ImportPlugin.cs │ ├── ImportSettings.cs │ ├── ImportSettingsForm.Designer.cs │ ├── ImportSettingsForm.cs │ ├── ImportSettingsForm.resx │ ├── Lang │ │ ├── Strings.Designer.cs │ │ ├── Strings.de.resx │ │ └── Strings.resx │ ├── NClassImportFilter.cs │ ├── NETImport.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── default.png │ │ ├── internal.png │ │ ├── private.png │ │ ├── protected.png │ │ └── protint.png │ ├── Settings.cs │ ├── TO DO.txt │ └── app.config ├── CSharp │ ├── CSharp.build │ ├── CSharp.csproj │ ├── CSharpArgumentList.cs │ ├── CSharpClass.cs │ ├── CSharpConstructor.cs │ ├── CSharpDelegate.cs │ ├── CSharpDestructor.cs │ ├── CSharpEnum.cs │ ├── CSharpEnumValue.cs │ ├── CSharpEvent.cs │ ├── CSharpField.cs │ ├── CSharpInterface.cs │ ├── CSharpLanguage.cs │ ├── CSharpMethod.cs │ ├── CSharpParameter.cs │ ├── CSharpProperty.cs │ └── CSharpStructure.cs ├── CSharpCodeSourceImport │ ├── CSharpCodeSourceImport.build │ ├── CSharpCodeSourceImport.cs │ ├── CSharpCodeSourceImport.csproj │ ├── CSharpCodeSourceImportPlugin.cs │ ├── ImportSettings.cs │ ├── ImportSettingsForm.Designer.cs │ ├── ImportSettingsForm.cs │ ├── ImportSettingsForm.resx │ ├── Lang │ │ ├── Strings.Designer.cs │ │ ├── Strings.cs │ │ └── Strings.resx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.config ├── CodeGenerator │ ├── CSharpExtendedGenerator.cs │ ├── CSharpFormattingOptionsUI.cs │ ├── CSharpProjectGenerator.cs │ ├── CSharpSourceFileGenerator.cs │ ├── CodeGenerator.build │ ├── CodeGenerator.csproj │ ├── CopyrightHeader.Designer.cs │ ├── CopyrightHeader.cs │ ├── CopyrightHeader.resx │ ├── Dialog.Designer.cs │ ├── Dialog.cs │ ├── Dialog.resx │ ├── FileGenerationException.cs │ ├── FormatStyleSettings.Designer.cs │ ├── FormatStyleSettings.cs │ ├── FormatStyleSettings.resx │ ├── FormattingOptionsFactoryUI.cs │ ├── GenerationResult.cs │ ├── Generator.cs │ ├── JavaProjectGenerator.cs │ ├── JavaSourceFileGenerator.cs │ ├── ProjectGenerator.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── delete.png │ │ ├── move_down.png │ │ └── move_up.png │ ├── Settings.Designer.cs │ ├── Settings.cs │ ├── Settings.settings │ ├── SolutionGenerator.cs │ ├── SolutionType.cs │ ├── SourceFileGenerator.cs │ ├── Templates │ │ ├── csproj.template │ │ └── sln.template │ ├── ToolStripSimplifiedRenderer.cs │ ├── VSSolutionGenerator.cs │ └── app.config ├── CommandLine │ ├── App.config │ ├── CommandLine.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Common │ ├── App.cs │ ├── Common.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Core │ ├── AccessModifier.cs │ ├── BadSyntaxException.cs │ ├── Comments │ │ ├── CommentLine.cs │ │ ├── Comments.cs │ │ ├── ListExtension.cs │ │ ├── ParameterComment.cs │ │ └── Regions.cs │ ├── Core.build │ ├── Core.csproj │ ├── DotNetLanguage.cs │ ├── Element.cs │ ├── Entities │ │ ├── ClassModifier.cs │ │ ├── ClassType.cs │ │ ├── Comment.cs │ │ ├── CompositeType.cs │ │ ├── DelegateType.cs │ │ ├── EntityType.cs │ │ ├── EnumType.cs │ │ ├── IEntity.cs │ │ ├── IInterfaceImplementer.cs │ │ ├── InterfaceType.cs │ │ ├── SingleInharitanceType.cs │ │ ├── SortingMode.cs │ │ ├── StructureType.cs │ │ └── TypeBase.cs │ ├── EntityEventArgs.cs │ ├── IModifiable.cs │ ├── IProjectItem.cs │ ├── ISerializableElement.cs │ ├── Language.cs │ ├── LanguageElement.cs │ ├── LanguageManager.cs │ ├── Members │ │ ├── Constructor.cs │ │ ├── Destructor.cs │ │ ├── EnumValue.cs │ │ ├── Event.cs │ │ ├── Field.cs │ │ ├── FieldModifier.cs │ │ ├── Member.cs │ │ ├── MemberType.cs │ │ ├── Method.cs │ │ ├── Operation.cs │ │ ├── OperationModifier.cs │ │ └── Property.cs │ ├── Model.cs │ ├── NETImportSettingsForm.resx │ ├── Parameters │ │ ├── ArgumentList.cs │ │ ├── Parameter.cs │ │ └── ParameterModifier.cs │ ├── Project.cs │ ├── ProjectItemEventArgs.cs │ ├── RelationshipEventArgs.cs │ ├── Relationships │ │ ├── AssociationRelationship.cs │ │ ├── AssociationType.cs │ │ ├── CommentRelationship.cs │ │ ├── DependencyRelationship.cs │ │ ├── Direction.cs │ │ ├── GeneralizationRelationship.cs │ │ ├── NestingRelationship.cs │ │ ├── RealizationRelationship.cs │ │ ├── Relationship.cs │ │ ├── RelationshipException.cs │ │ ├── RelationshipType.cs │ │ └── TypeRelationship.cs │ ├── ReservedNameException.cs │ └── SerializeEventArgs.cs ├── DiagramEditor │ ├── AbsoluteMouseEventArgs.cs │ ├── Canvas.Designer.cs │ ├── Canvas.cs │ ├── Canvas.resx │ ├── ClassDiagram │ │ ├── ChevronMode.cs │ │ ├── ClearTypeMode.cs │ │ ├── ConnectionCreator.cs │ │ ├── Connections │ │ │ ├── Arrowhead.cs │ │ │ ├── Association.cs │ │ │ ├── BendPoint.cs │ │ │ ├── BendPointEventArgs.cs │ │ │ ├── CommentConnection.cs │ │ │ ├── Connection.cs │ │ │ ├── Dependency.cs │ │ │ ├── Generalization.cs │ │ │ ├── LineOrientation.cs │ │ │ ├── Nesting.cs │ │ │ └── Realization.cs │ │ ├── ContextMenus │ │ │ ├── AssociationContextMenu.cs │ │ │ ├── BlankContextMenu.cs │ │ │ ├── CommentShapeContextMenu.cs │ │ │ ├── ConnectionContextMenu.cs │ │ │ ├── DiagramContextMenu.cs │ │ │ ├── GeneralContextMenu.cs │ │ │ ├── ShapeContextMenu.cs │ │ │ └── TypeShapeContextMenu.cs │ │ ├── Diagram.cs │ │ ├── DiagramDynamicMenu.cs │ │ ├── DiagramDynamicMenu.designer.cs │ │ ├── DiagramElement.cs │ │ ├── Dialogs │ │ │ ├── AssociationDialog.Designer.cs │ │ │ ├── AssociationDialog.cs │ │ │ ├── AssociationDialog.resx │ │ │ ├── DelegateDialog.cs │ │ │ ├── DiagramPrintDialog.Designer.cs │ │ │ ├── DiagramPrintDialog.cs │ │ │ ├── DiagramPrintDialog.resx │ │ │ ├── EditCommentDialog.Designer.cs │ │ │ ├── EditCommentDialog.cs │ │ │ ├── EditCommentDialog.resx │ │ │ ├── EnumDialog.cs │ │ │ ├── ImplementDialog.cs │ │ │ ├── ListDialog.Designer.cs │ │ │ ├── ListDialog.cs │ │ │ ├── ListDialog.resx │ │ │ ├── MembersDialog.cs │ │ │ ├── MembersDialog.designer.cs │ │ │ ├── MembersDialog.resx │ │ │ ├── OverrideDialog.cs │ │ │ ├── TreeDialog.Designer.cs │ │ │ ├── TreeDialog.cs │ │ │ └── TreeDialog.resx │ │ ├── Editors │ │ │ ├── BorderedTextBox.cs │ │ │ ├── CommentEditor.Designer.cs │ │ │ ├── CommentEditor.cs │ │ │ ├── CommentEditor.resx │ │ │ ├── CompositeTypeEditor.Designer.cs │ │ │ ├── CompositeTypeEditor.cs │ │ │ ├── CompositeTypeEditor.resx │ │ │ ├── DelegateEditor.Designer.cs │ │ │ ├── DelegateEditor.cs │ │ │ ├── DelegateEditor.resx │ │ │ ├── EditorWindow.cs │ │ │ ├── EnumEditor.Designer.cs │ │ │ ├── EnumEditor.cs │ │ │ ├── EnumEditor.resx │ │ │ ├── EnumValueEditor.cs │ │ │ ├── FloatingEditor.cs │ │ │ ├── ItemEditor.Designer.cs │ │ │ ├── ItemEditor.cs │ │ │ ├── ItemEditor.resx │ │ │ ├── MemberEditor.Designer.cs │ │ │ ├── MemberEditor.cs │ │ │ ├── MemberEditor.resx │ │ │ ├── ParameterEditor.cs │ │ │ └── TypeEditor.cs │ │ ├── ElementContainer.cs │ │ ├── ElementList.cs │ │ ├── Icons.cs │ │ ├── MoveEventArgs.cs │ │ └── Shapes │ │ │ ├── ClassShape.cs │ │ │ ├── CommentShape.cs │ │ │ ├── CompositeTypeShape.cs │ │ │ ├── DelegateShape.cs │ │ │ ├── EnumShape.cs │ │ │ ├── InterfaceShape.cs │ │ │ ├── ResizeEventArgs.cs │ │ │ ├── Shape.cs │ │ │ ├── StructureShape.cs │ │ │ └── TypeShape.cs │ ├── Clipboard.cs │ ├── ContextMenu.cs │ ├── DiagramEditor.build │ ├── DiagramEditor.csproj │ ├── DocumentEventArgs.cs │ ├── DocumentManager.cs │ ├── DocumentMovedEventArgs.cs │ ├── DynamicMenu.cs │ ├── EditorControlEventArgs.cs │ ├── EventArgs.cs │ ├── GdiGraphics.cs │ ├── IClipboardItem.cs │ ├── IDocument.cs │ ├── IDocumentVisualizer.cs │ ├── IEditable.cs │ ├── IGraphics.cs │ ├── IPrintable.cs │ ├── ImageCreator.cs │ ├── Intersector.cs │ ├── MonoHelper.cs │ ├── OrderedList.cs │ ├── PopupWindow.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── aggregation.png │ │ ├── align_bottom.png │ │ ├── align_horizontal.png │ │ ├── align_left.png │ │ ├── align_right.png │ │ ├── align_top.png │ │ ├── align_vertical.png │ │ ├── association.png │ │ ├── auto_layout.png │ │ ├── auto_zoom.png │ │ ├── bidirectional.png │ │ ├── class.png │ │ ├── code_generator.png │ │ ├── collapse.png │ │ ├── collapse_all.png │ │ ├── comment.png │ │ ├── composition.png │ │ ├── constructor.png │ │ ├── copy.png │ │ ├── copy_as_image.png │ │ ├── cut.png │ │ ├── default_class.png │ │ ├── default_const.png │ │ ├── default_constructor.png │ │ ├── default_delegate.png │ │ ├── default_destructor.png │ │ ├── default_enum.png │ │ ├── default_event.png │ │ ├── default_field.png │ │ ├── default_interface.png │ │ ├── default_method.png │ │ ├── default_operator.png │ │ ├── default_property.png │ │ ├── default_readonly.png │ │ ├── default_structure.png │ │ ├── default_writeonly.png │ │ ├── delegate.png │ │ ├── delete.png │ │ ├── dependency.png │ │ ├── destructor.png │ │ ├── edit_comment.png │ │ ├── edit_members.png │ │ ├── enum.png │ │ ├── enum_item.png │ │ ├── event.png │ │ ├── expand.png │ │ ├── expand_all.png │ │ ├── field.png │ │ ├── format.png │ │ ├── generalization.png │ │ ├── image.png │ │ ├── implements.png │ │ ├── interface_24bits.png │ │ ├── interface_32bits.png │ │ ├── internal_class.png │ │ ├── internal_const.png │ │ ├── internal_constructor.png │ │ ├── internal_delegate.png │ │ ├── internal_enum.png │ │ ├── internal_event.png │ │ ├── internal_field.png │ │ ├── internal_interface.png │ │ ├── internal_method.png │ │ ├── internal_operator.png │ │ ├── internal_property.png │ │ ├── internal_readonly.png │ │ ├── internal_structure.png │ │ ├── internal_writeonly.png │ │ ├── method.png │ │ ├── move_down.png │ │ ├── move_up.png │ │ ├── nesting.png │ │ ├── new_constructor.png │ │ ├── new_destructor.png │ │ ├── new_entity.png │ │ ├── new_enum_item.png │ │ ├── new_event.png │ │ ├── new_field.png │ │ ├── new_method.png │ │ ├── new_modifier.png │ │ ├── new_parameter.png │ │ ├── new_property.png │ │ ├── note.png │ │ ├── overrides.png │ │ ├── parameter.png │ │ ├── paste.png │ │ ├── private_class.png │ │ ├── private_const.png │ │ ├── private_constructor.png │ │ ├── private_delegate.png │ │ ├── private_destructor.png │ │ ├── private_enum.png │ │ ├── private_event.png │ │ ├── private_field.png │ │ ├── private_interface.png │ │ ├── private_method.png │ │ ├── private_operator.png │ │ ├── private_property.png │ │ ├── private_readonly.png │ │ ├── private_structure.png │ │ ├── private_writeonly.png │ │ ├── property.png │ │ ├── protected_class.png │ │ ├── protected_const.png │ │ ├── protected_constructor.png │ │ ├── protected_delegate.png │ │ ├── protected_enum.png │ │ ├── protected_event.png │ │ ├── protected_field.png │ │ ├── protected_interface.png │ │ ├── protected_method.png │ │ ├── protected_operator.png │ │ ├── protected_property.png │ │ ├── protected_readonly.png │ │ ├── protected_structure.png │ │ ├── protected_writeonly.png │ │ ├── protint_class.png │ │ ├── protint_const.png │ │ ├── protint_constructor.png │ │ ├── protint_delegate.png │ │ ├── protint_enum.png │ │ ├── protint_event.png │ │ ├── protint_field.png │ │ ├── protint_interface.png │ │ ├── protint_method.png │ │ ├── protint_operator.png │ │ ├── protint_property.png │ │ ├── protint_readonly.png │ │ ├── protint_structure.png │ │ ├── protint_writeonly.png │ │ ├── public_class.png │ │ ├── public_const.png │ │ ├── public_constructor.png │ │ ├── public_delegate.png │ │ ├── public_enum.png │ │ ├── public_event.png │ │ ├── public_field.png │ │ ├── public_interface.png │ │ ├── public_method.png │ │ ├── public_operator.png │ │ ├── public_property.png │ │ ├── public_readonly.png │ │ ├── public_structure.png │ │ ├── public_writeonly.png │ │ ├── realization.png │ │ ├── sort_by_access.png │ │ ├── sort_by_kind.png │ │ ├── sort_by_name.png │ │ ├── static.png │ │ ├── struct.png │ │ ├── unidirectional.png │ │ ├── zoom.png │ │ ├── zoom_in.png │ │ └── zoom_out.png │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── Style.cs │ ├── ToolStripSimplifiedRenderer.cs │ └── app.config ├── GUI │ ├── AboutDialog.Designer.cs │ ├── BatchLogForm.Designer.cs │ ├── BatchLogForm.cs │ ├── BatchLogForm.resx │ ├── DiagramNavigator.cs │ ├── Dialogs │ │ ├── AboutDialog.Designer.cs │ │ ├── AboutDialog.cs │ │ ├── AboutDialog.resx │ │ ├── CodingLanguageDialog.Designer.cs │ │ ├── CodingLanguageDialog.cs │ │ ├── CodingLanguageDialog.resx │ │ ├── OptionsDialog.Designer.cs │ │ ├── OptionsDialog.cs │ │ └── OptionsDialog.resx │ ├── GUI.build │ ├── GUI.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── ModelExplorer │ │ ├── DiagramNode.cs │ │ ├── EmptyProjectNode.cs │ │ ├── ModelNode.cs │ │ ├── ModelView.Designer.cs │ │ ├── ModelView.cs │ │ ├── ModelView.resx │ │ ├── ProjectItemNode.cs │ │ └── ProjectNode.cs │ ├── NClassEnvironment.cs │ ├── OptionsDialog.Designer.cs │ ├── Plugin.cs │ ├── Program.cs │ ├── ProjectEventArgs.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── actual_size.png │ │ ├── auto_zoom.png │ │ ├── code_generator.png │ │ ├── copy.png │ │ ├── cut.png │ │ ├── delete.png │ │ ├── disabled_slider.png │ │ ├── help.png │ │ ├── mail.png │ │ ├── new_document.png │ │ ├── open.png │ │ ├── options.png │ │ ├── paste.png │ │ ├── print.png │ │ ├── project.png │ │ ├── redo.png │ │ ├── save.png │ │ ├── save_all.png │ │ ├── search_web.png │ │ ├── slider.png │ │ ├── undo.png │ │ ├── web.png │ │ ├── zoom.png │ │ ├── zoom_in.png │ │ └── zoom_out.png │ ├── Settings.Designer.cs │ ├── Settings.cs │ ├── Settings.settings │ ├── SimplePlugin.cs │ ├── TabBar.Designer.cs │ ├── TabBar.cs │ ├── TabBar.resx │ ├── TabbedWindow.Designer.cs │ ├── TabbedWindow.cs │ ├── TabbedWindow.resx │ ├── TextBoxAppender.cs │ ├── UpdatesChecker.cs │ ├── WindowSettings.Designer.cs │ ├── WindowSettings.settings │ ├── Workspace.cs │ ├── ZoomingToolStrip.cs │ ├── app.config │ └── nclass.ico ├── Java │ ├── Java.build │ ├── Java.cs │ ├── Java.csproj │ ├── JavaArgumentList.cs │ ├── JavaClass.cs │ ├── JavaConstructor.cs │ ├── JavaEnum.cs │ ├── JavaEnumValue.cs │ ├── JavaField.cs │ ├── JavaInterface.cs │ ├── JavaLanguage.cs │ ├── JavaMethod.cs │ └── JavaParameter.cs ├── NClass.sln ├── PDFExport │ ├── Lang │ │ ├── Strings.Designer.cs │ │ ├── Strings.de.resx │ │ └── Strings.resx │ ├── PDFExport.build │ ├── PDFExport.csproj │ ├── PDFExportFinished.Designer.cs │ ├── PDFExportFinished.cs │ ├── PDFExportFinished.resx │ ├── PDFExportOptions.Designer.cs │ ├── PDFExportOptions.cs │ ├── PDFExportOptions.resx │ ├── PDFExportPlugin.cs │ ├── PDFExportProgress.Designer.cs │ ├── PDFExportProgress.cs │ ├── PDFExportProgress.resx │ ├── PDFExporter.cs │ ├── PDFGraphics.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RegionExtend.cs │ ├── Resources │ │ ├── Document-pdf-16.png │ │ ├── Document-pdf-48.png │ │ └── NClass.png │ └── app.config ├── Translations │ ├── Strings.Designer.cs │ ├── Strings.de.resx │ ├── Strings.es.resx │ ├── Strings.fr.resx │ ├── Strings.hu.resx │ ├── Strings.pt-BR.resx │ ├── Strings.resx │ ├── Strings.ru.resx │ ├── Strings.zh-CN.resx │ ├── Translations.build │ ├── Translations.csproj │ └── UILanguage.cs └── icons │ ├── diagram.ico │ └── nclass.ico └── styles ├── Visual Studio Class Designer (ClearType).dst └── Visual Studio Class Designer.dst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/LICENSE -------------------------------------------------------------------------------- /NClass.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/NClass.build -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/README.md -------------------------------------------------------------------------------- /doc/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/doc/changelog.txt -------------------------------------------------------------------------------- /doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/doc/license.txt -------------------------------------------------------------------------------- /doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/doc/readme.txt -------------------------------------------------------------------------------- /examples/shapes.ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/examples/shapes.ncp -------------------------------------------------------------------------------- /lib/CrashReporter.NET-1.5/CrashReporter.NET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/CrashReporter.NET-1.5/CrashReporter.NET.sln -------------------------------------------------------------------------------- /lib/Mono.Texteditor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/Mono.Texteditor/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/ChangeLog -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Makefile.am -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Mono.TextEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Mono.TextEditor.csproj -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Mono.TextEditor.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Mono.TextEditor.dll.config -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Mono.TextEditor/Caret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Mono.TextEditor/Caret.cs -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Mono.TextEditor/EditMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Mono.TextEditor/EditMode.cs -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Mono.TextEditor/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Mono.TextEditor/Platform.cs -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Styles/DefaultStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Styles/DefaultStyle.json -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Styles/MonokaiStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Styles/MonokaiStyle.json -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Styles/NightshadeStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Styles/NightshadeStyle.json -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Styles/OblivionStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Styles/OblivionStyle.json -------------------------------------------------------------------------------- /lib/Mono.Texteditor/Styles/TangoStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/Styles/TangoStyle.json -------------------------------------------------------------------------------- /lib/Mono.Texteditor/SyntaxModes/CSyntaxMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/SyntaxModes/CSyntaxMode.xml -------------------------------------------------------------------------------- /lib/Mono.Texteditor/gtk-gui/generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/gtk-gui/generated.cs -------------------------------------------------------------------------------- /lib/Mono.Texteditor/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/Mono.Texteditor/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /lib/NRefactory/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/.gitattributes -------------------------------------------------------------------------------- /lib/NRefactory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/.gitignore -------------------------------------------------------------------------------- /lib/NRefactory/ICSharpCode.NRefactory.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/ICSharpCode.NRefactory.snk -------------------------------------------------------------------------------- /lib/NRefactory/ICSharpCode.NRefactory/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/ICSharpCode.NRefactory/Role.cs -------------------------------------------------------------------------------- /lib/NRefactory/NRefactory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/NRefactory.sln -------------------------------------------------------------------------------- /lib/NRefactory/NRefactory.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/NRefactory.userprefs -------------------------------------------------------------------------------- /lib/NRefactory/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/README -------------------------------------------------------------------------------- /lib/NRefactory/doc/Pattern Matching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/doc/Pattern Matching.html -------------------------------------------------------------------------------- /lib/NRefactory/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/doc/TODO -------------------------------------------------------------------------------- /lib/NRefactory/doc/XML Documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/doc/XML Documentation.html -------------------------------------------------------------------------------- /lib/NRefactory/doc/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/doc/copyright.txt -------------------------------------------------------------------------------- /lib/NRefactory/doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NRefactory/doc/license.txt -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect.Studio/TestCases/SimpleTypes/ClassExpectedTree.nrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect.Studio/TestCases/SimpleTypes/DelegateExpectedTree.nrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect.Studio/TestCases/SimpleTypes/EnumExpectedTree.nrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect.Studio/TestCases/SimpleTypes/InterfaceExpectedTree.nrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect.Studio/TestCases/SimpleTypes/StructExpectedTree.nrt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect.Studio/TestCases/Simplest.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/NReflect.sln -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/NReflect/Extensions.cs -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect/IVisitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/NReflect/IVisitable.cs -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect/IVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/NReflect/IVisitor.cs -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect/NRAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/NReflect/NRAssembly.cs -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect/NRModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/NReflect/NRModule.cs -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect/NRTypeUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/NReflect/NRTypeUsage.cs -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/NReflect/Reflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/NReflect/Reflector.cs -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/README.txt -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/changelog.txt -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/license-lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/license-lesser.txt -------------------------------------------------------------------------------- /lib/NReflect_v0.9.4_src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NReflect_v0.9.4_src/license.txt -------------------------------------------------------------------------------- /lib/NStub/External Dependencies/Rhino.Mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/External Dependencies/Rhino.Mocks.dll -------------------------------------------------------------------------------- /lib/NStub/External Dependencies/Rhino.Mocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/External Dependencies/Rhino.Mocks.xml -------------------------------------------------------------------------------- /lib/NStub/NStub.CSharp/CSharpCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.CSharp/CSharpCodeGenerator.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.CSharp/Exceptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.CSharp/Exceptions.Designer.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.CSharp/Exceptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.CSharp/Exceptions.resx -------------------------------------------------------------------------------- /lib/NStub/NStub.CSharp/NStub.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.CSharp/NStub.CSharp.csproj -------------------------------------------------------------------------------- /lib/NStub/NStub.Core.Tests/NStubCoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core.Tests/NStubCoreTest.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Core.Tests/UtilityTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core.Tests/UtilityTest.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Core/Exceptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core/Exceptions.Designer.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Core/Exceptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core/Exceptions.resx -------------------------------------------------------------------------------- /lib/NStub/NStub.Core/ICodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core/ICodeGenerator.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Core/IProjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core/IProjectGenerator.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Core/NStub.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core/NStub.Core.csproj -------------------------------------------------------------------------------- /lib/NStub/NStub.Core/NStubCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core/NStubCore.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Core/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Core/Utility.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Gui/MainForm.Designer.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Gui/MainForm.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Gui/MainForm.resx -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/NStub.Gui.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/NStub.Gui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Gui/NStub.Gui.csproj -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Gui/Program.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Gui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Gui/Properties/Resources.resx -------------------------------------------------------------------------------- /lib/NStub/NStub.Gui/Resources/NStub.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.Gui/Resources/NStub.ico -------------------------------------------------------------------------------- /lib/NStub/NStub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/NStub.sln -------------------------------------------------------------------------------- /lib/NStub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/README.md -------------------------------------------------------------------------------- /lib/NStub/Solution Items/Help/NStub.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/Solution Items/Help/NStub.chm -------------------------------------------------------------------------------- /lib/NStub/Solution Items/NDoc.shfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/Solution Items/NDoc.shfb -------------------------------------------------------------------------------- /lib/NStub/Solution Items/NStub.FxCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/Solution Items/NStub.FxCop -------------------------------------------------------------------------------- /lib/NStub/Solution Items/NStub.NDepend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/Solution Items/NStub.NDepend.xml -------------------------------------------------------------------------------- /lib/NStub/Solution Items/NStub.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/NStub/Solution Items/NStub.nunit -------------------------------------------------------------------------------- /lib/PdfSharp/BuildAll-PdfSharp-VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/BuildAll-PdfSharp-VS2010.sln -------------------------------------------------------------------------------- /lib/PdfSharp/BuildAll-PdfSharp-WPF-VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/BuildAll-PdfSharp-WPF-VS2010.sln -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp.Charting/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp.Charting/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/!internal/Directives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/!internal/Directives.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/AssemblyInfo-AG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/AssemblyInfo-AG.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp-Hybrid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp-Hybrid.csproj -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp-WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp-WPF.csproj -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp-ag.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp-ag.csproj -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Drawing.Wpf/!info.txt: -------------------------------------------------------------------------------- 1 | Reserved for PDFsharp 2.0 -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XFont.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XForm.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XPen.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XPens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XPens.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XRect.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XSize.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Drawing/XUnit.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Internal/Calc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Internal/Calc.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf.IO/Chars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf.IO/Chars.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf.IO/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf.IO/Parser.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/KeysBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/KeysBase.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/KeysMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/KeysMeta.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfArray.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfDate.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfItem.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfName.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfNull.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfNumber.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfObject.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfPage.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfPages.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfReal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfReal.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.Pdf/PdfString.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp.csproj -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp/PSSR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp/PSSR.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp/VersionInfo.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/PdfSharp/enums/PSMsgID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/PdfSharp/enums/PSMsgID.cs -------------------------------------------------------------------------------- /lib/PdfSharp/PdfSharp/StrongnameKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/PdfSharp/PdfSharp/StrongnameKey.snk -------------------------------------------------------------------------------- /lib/cecil/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=lf 2 | -------------------------------------------------------------------------------- /lib/cecil/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/.gitignore -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/Code.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/CodeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/CodeReader.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/CodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/CodeWriter.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/Document.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/ExceptionHandler.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/ILProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/ILProcessor.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/Instruction.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/MethodBody.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/OpCode.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/OpCodes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/SequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/SequencePoint.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/Symbols.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/VariableDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/VariableDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Cil/VariableReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Cil/VariableReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/BlobHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/BlobHeap.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/Buffers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/Buffers.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/CodedIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/CodedIndex.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/ElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/ElementType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/GuidHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/GuidHeap.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/Heap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/Heap.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/MetadataToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/MetadataToken.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/Row.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/StringHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/StringHeap.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/TableHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/TableHeap.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/TokenType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/UserStringHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/UserStringHeap.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.Metadata/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.Metadata/Utilities.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/BinaryStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/BinaryStreamReader.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/BinaryStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/BinaryStreamWriter.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/ByteBuffer.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/DataDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/DataDirectory.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/Image.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/ImageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/ImageReader.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/ImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/ImageWriter.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/Section.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.PE/TextMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.PE/TextMap.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.csproj -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.nunit -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.nuspec -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.sln -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil.sln.DotSettings -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ArrayType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyFlags.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyHashAlgorithm.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyLinkedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyLinkedResource.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyNameDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyNameDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyNameReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyNameReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyReader.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/AssemblyWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/AssemblyWriter.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/BaseAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/BaseAssemblyResolver.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/CallSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/CallSite.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/CustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/CustomAttribute.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/DefaultAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/DefaultAssemblyResolver.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/EmbeddedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/EmbeddedResource.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/EventAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/EventAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/EventDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/EventDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/EventReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/EventReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ExportedType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/FieldAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/FieldAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/FieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/FieldDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/FieldReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/FieldReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/FileAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/FunctionPointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/FunctionPointerType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/GenericInstanceMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/GenericInstanceMethod.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/GenericInstanceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/GenericInstanceType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/GenericParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/GenericParameter.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/IConstantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/IConstantProvider.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/IGenericInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/IGenericInstance.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/IMarshalInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/IMarshalInfoProvider.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/IMemberDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/IMemberDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/IMetadataScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/IMetadataScope.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/IMetadataTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/IMetadataTokenProvider.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/IMethodSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/IMethodSignature.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/Import.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/LinkedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/LinkedResource.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MarshalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MarshalInfo.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MemberReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MemberReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MetadataResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MetadataResolver.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MetadataSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MetadataSystem.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MethodAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MethodAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MethodCallingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MethodCallingConvention.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MethodDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MethodDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MethodImplAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MethodImplAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MethodReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MethodReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MethodReturnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MethodReturnType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/MethodSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/MethodSpecification.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/Modifiers.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ModuleDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ModuleDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ModuleKind.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ModuleReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ModuleReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/NativeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/NativeType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/PInvokeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/PInvokeAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/PInvokeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/PInvokeInfo.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ParameterAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ParameterAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ParameterDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ParameterDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ParameterReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ParameterReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/PinnedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/PinnedType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/PointerType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/PropertyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/PropertyAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/PropertyDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/PropertyDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/PropertyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/PropertyReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/ReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/ReferenceType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/Resource.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/SecurityDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/SecurityDeclaration.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/SentinelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/SentinelType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/TargetRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/TargetRuntime.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/TypeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/TypeAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/TypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/TypeDefinition.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/TypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/TypeParser.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/TypeReference.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/TypeSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/TypeSpecification.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/TypeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/TypeSystem.cs -------------------------------------------------------------------------------- /lib/cecil/Mono.Cecil/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono.Cecil/VariantType.cs -------------------------------------------------------------------------------- /lib/cecil/Mono/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono/Actions.cs -------------------------------------------------------------------------------- /lib/cecil/Mono/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono/Empty.cs -------------------------------------------------------------------------------- /lib/cecil/Mono/Funcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Mono/Funcs.cs -------------------------------------------------------------------------------- /lib/cecil/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/NOTES.txt -------------------------------------------------------------------------------- /lib/cecil/Test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/.gitignore -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests.csproj -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/EventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/EventTests.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/Extensions.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/FieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/FieldTests.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/Formatter.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/Linq.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/MethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/MethodTests.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/ModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/ModuleTests.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/ResolveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/ResolveTests.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Mono.Cecil.Tests/TypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Mono.Cecil.Tests/TypeTests.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/catch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/catch.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/cppcli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/cppcli.dll -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/fptr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/fptr.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/hello.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/hello.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/hello1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/hello1.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/hellow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/hellow.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/libres.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/libres.dll -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/marshal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/marshal.dll -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/metro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/metro.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/mma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/mma.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/noblob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/noblob.dll -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/pinvoke.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/pinvoke.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/switch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/switch.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/text_file.txt: -------------------------------------------------------------------------------- 1 | Cecil ftw! 2 | -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/varargs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/varargs.exe -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/assemblies/wp7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/assemblies/wp7.dll -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/CustomAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/CustomAttributes.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/Events.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/Fields.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/Generics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/Generics.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/Interfaces.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/Layouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/Layouts.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/Methods.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/NestedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/NestedTypes.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/cs/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/cs/Properties.cs -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/il/explicitthis.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/il/explicitthis.il -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/il/hello.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/il/hello.il -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/il/methodspecs.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/il/methodspecs.il -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/il/others.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/il/others.il -------------------------------------------------------------------------------- /lib/cecil/Test/Resources/il/types.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/Resources/il/types.il -------------------------------------------------------------------------------- /lib/cecil/Test/libs/nunit-2.6.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/libs/nunit-2.6.2/license.txt -------------------------------------------------------------------------------- /lib/cecil/Test/libs/nunit-2.6.2/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/Test/libs/nunit-2.6.2/nunit.core.dll -------------------------------------------------------------------------------- /lib/cecil/dbg/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/dbg/Program.cs -------------------------------------------------------------------------------- /lib/cecil/dbg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/dbg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/cecil/dbg/dbg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/dbg/dbg.csproj -------------------------------------------------------------------------------- /lib/cecil/mono.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/mono.snk -------------------------------------------------------------------------------- /lib/cecil/rocks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/rocks/.gitignore -------------------------------------------------------------------------------- /lib/cecil/rocks/Mono.Cecil.Rocks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/rocks/Mono.Cecil.Rocks.csproj -------------------------------------------------------------------------------- /lib/cecil/rocks/Mono.Cecil.Rocks/Functional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/rocks/Mono.Cecil.Rocks/Functional.cs -------------------------------------------------------------------------------- /lib/cecil/rocks/Mono.Cecil.Rocks/ILParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/rocks/Mono.Cecil.Rocks/ILParser.cs -------------------------------------------------------------------------------- /lib/cecil/rocks/Test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/rocks/Test/.gitignore -------------------------------------------------------------------------------- /lib/cecil/rocks/Test/Resources/cs/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/rocks/Test/Resources/cs/Types.cs -------------------------------------------------------------------------------- /lib/cecil/symbols/mdb/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.xml 4 | *.user 5 | -------------------------------------------------------------------------------- /lib/cecil/symbols/mdb/Mono.Cecil.Mdb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/symbols/mdb/Mono.Cecil.Mdb.csproj -------------------------------------------------------------------------------- /lib/cecil/symbols/mdb/Test/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.xml 4 | *.user 5 | -------------------------------------------------------------------------------- /lib/cecil/symbols/pdb/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.xml 4 | *.user 5 | -------------------------------------------------------------------------------- /lib/cecil/symbols/pdb/Mono.Cecil.Pdb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/cecil/symbols/pdb/Mono.Cecil.Pdb.csproj -------------------------------------------------------------------------------- /lib/cecil/symbols/pdb/Test/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | *.xml 4 | *.user 5 | -------------------------------------------------------------------------------- /lib/log4net-1.2.13/KEYS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/KEYS -------------------------------------------------------------------------------- /lib/log4net-1.2.13/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/LICENSE -------------------------------------------------------------------------------- /lib/log4net-1.2.13/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/NOTICE -------------------------------------------------------------------------------- /lib/log4net-1.2.13/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/README.txt -------------------------------------------------------------------------------- /lib/log4net-1.2.13/STATUS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/STATUS.txt -------------------------------------------------------------------------------- /lib/log4net-1.2.13/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/build.cmd -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/mono/1.0/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/mono/1.0/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/mono/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/mono/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/mono/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/mono/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/net/1.1/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/net/1.1/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/net/1.1/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/net/1.1/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/net/2.0/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/net/2.0/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/net/2.0/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/net/2.0/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/net/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/net/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/net/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/net/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/netcf/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/netcf/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/netcf/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/netcf/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/sscli/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/sscli/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/examples/sscli/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/examples/sscli/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/extensions/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/extensions/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/extensions/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/extensions/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/extensions/net/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/extensions/net/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/extensions/net/nant.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/extensions/net/nant.config -------------------------------------------------------------------------------- /lib/log4net-1.2.13/log4net.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/log4net.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/log4net.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/log4net.include -------------------------------------------------------------------------------- /lib/log4net-1.2.13/log4net.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/log4net.snk -------------------------------------------------------------------------------- /lib/log4net-1.2.13/log4net.snk.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/log4net.snk.readme -------------------------------------------------------------------------------- /lib/log4net-1.2.13/old-log4net.snk.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/old-log4net.snk.gpg -------------------------------------------------------------------------------- /lib/log4net-1.2.13/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/pom.xml -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Appender/FileAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Appender/FileAppender.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Appender/IAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Appender/IAppender.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Appender/SmtpAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Appender/SmtpAppender.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Appender/UdpAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Appender/UdpAppender.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/AssemblyVersionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/AssemblyVersionInfo.cpp -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/AssemblyVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/AssemblyVersionInfo.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/AssemblyVersionInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/AssemblyVersionInfo.js -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/AssemblyVersionInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/AssemblyVersionInfo.vb -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/ErrorCode.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/IErrorHandler.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/IFixingRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/IFixingRequired.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/ILogger.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/ILoggerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/ILoggerWrapper.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/IOptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/IOptionHandler.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/Level.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/LevelCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/LevelCollection.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/LevelEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/LevelEvaluator.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/LevelMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/LevelMap.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/LocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/LocationInfo.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/LogException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/LogException.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/LogImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/LogImpl.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/LoggerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/LoggerManager.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/LoggingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/LoggingEvent.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/MethodItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/MethodItem.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/SecurityContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/SecurityContext.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/StackFrameItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/StackFrameItem.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/TimeEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/TimeEvaluator.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Core/WrapperMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Core/WrapperMap.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Filter/DenyAllFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Filter/DenyAllFilter.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Filter/FilterDecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Filter/FilterDecision.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Filter/FilterSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Filter/FilterSkeleton.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Filter/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Filter/IFilter.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Filter/MdcFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Filter/MdcFilter.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Filter/NdcFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Filter/NdcFilter.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Filter/PropertyFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Filter/PropertyFilter.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/GlobalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/GlobalContext.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/ILog.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Layout/ILayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Layout/ILayout.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Layout/IRawLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Layout/IRawLayout.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Layout/LayoutSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Layout/LayoutSkeleton.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Layout/PatternLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Layout/PatternLayout.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Layout/SimpleLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Layout/SimpleLayout.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Layout/XMLLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Layout/XMLLayout.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Layout/XMLLayoutBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Layout/XMLLayoutBase.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Log4netAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Log4netAssemblyInfo.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/LogManager.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/LogicalThreadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/LogicalThreadContext.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/MDC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/MDC.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/NDC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/NDC.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Plugin/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Plugin/IPlugin.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Plugin/IPluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Plugin/IPluginFactory.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Plugin/PluginMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Plugin/PluginMap.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Plugin/PluginSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Plugin/PluginSkeleton.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/ThreadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/ThreadContext.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/ConverterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/ConverterInfo.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/CyclicBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/CyclicBuffer.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/EmptyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/EmptyCollection.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/EmptyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/EmptyDictionary.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/FormattingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/FormattingInfo.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/ILogExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/ILogExtensions.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/LevelMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/LevelMapping.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/LogLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/LogLog.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/NativeError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/NativeError.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/NullEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/NullEnumerator.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/OptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/OptionConverter.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/PatternConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/PatternConverter.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/PatternParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/PatternParser.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/PatternString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/PatternString.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/PropertyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/PropertyEntry.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/QuietTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/QuietTextWriter.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/ReaderWriterLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/ReaderWriterLock.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/SystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/SystemInfo.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/Util/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/Util/Transform.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/assembly/bin.xml -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/changes/changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/changes/changes.xml -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/log4net.vs2008.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/log4net.vs2008.csproj -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/log4net.vs2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/log4net.vs2008.sln -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/log4net.vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/log4net.vs2010.csproj -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/log4net.vs2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/log4net.vs2010.sln -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/log4net.xml -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/site/apt/roadmap.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/site/apt/roadmap.apt -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/site/site.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/site/site.vm -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/site/site.xml -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/site/xdoc/history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/site/xdoc/history.xml -------------------------------------------------------------------------------- /lib/log4net-1.2.13/src/site/xdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/src/site/xdoc/index.xml -------------------------------------------------------------------------------- /lib/log4net-1.2.13/tests/lib/prerequisites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/tests/lib/prerequisites.txt -------------------------------------------------------------------------------- /lib/log4net-1.2.13/tests/nant.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/tests/nant.build -------------------------------------------------------------------------------- /lib/log4net-1.2.13/tests/src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/tests/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/tests/src/Core/FixingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/tests/src/Core/FixingTest.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/tests/src/Util/LogLogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/tests/src/Util/LogLogTest.cs -------------------------------------------------------------------------------- /lib/log4net-1.2.13/tests/src/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/log4net-1.2.13/tests/src/Utils.cs -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/AUTHORS -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/COPYING -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/ChangeLog -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/INSTALL: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.9/INSTALL -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/LICENSE.LGPL -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/Makefile.am -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/README -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/autogen.sh -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/configure.in -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/docs/README -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/gtkspell-sharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/gtkspell-sharp.snk -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/gtkspell/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/gtkspell/Makefile.am -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/install-sh: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.9/install-sh -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/missing: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.9/missing -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/mkinstalldirs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/sample/Makefile -------------------------------------------------------------------------------- /lib/mono-gtkspell-sharp/sample/TestGtkSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/lib/mono-gtkspell-sharp/sample/TestGtkSpell.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/AssemblyImport.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/AssemblyImport.build -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/CSharpImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/CSharpImport.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Common.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Declaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Declaration.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Extensions.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/ImportPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/ImportPlugin.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/ImportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/ImportSettings.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/ImportSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/ImportSettingsForm.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Lang/Strings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Lang/Strings.de.resx -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Lang/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Lang/Strings.resx -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/NClassImportFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/NClassImportFilter.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/NETImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/NETImport.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Resources/default.png -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Resources/internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Resources/internal.png -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Resources/private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Resources/private.png -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Resources/protint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Resources/protint.png -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/Settings.cs -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/TO DO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/TO DO.txt -------------------------------------------------------------------------------- /src/AssemblyCSharpImport/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/AssemblyCSharpImport/app.config -------------------------------------------------------------------------------- /src/CSharp/CSharp.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharp.build -------------------------------------------------------------------------------- /src/CSharp/CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharp.csproj -------------------------------------------------------------------------------- /src/CSharp/CSharpArgumentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpArgumentList.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpClass.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpConstructor.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpDelegate.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpDestructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpDestructor.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpEnum.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpEnumValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpEnumValue.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpEvent.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpField.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpInterface.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpLanguage.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpMethod.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpParameter.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpProperty.cs -------------------------------------------------------------------------------- /src/CSharp/CSharpStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharp/CSharpStructure.cs -------------------------------------------------------------------------------- /src/CSharpCodeSourceImport/ImportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharpCodeSourceImport/ImportSettings.cs -------------------------------------------------------------------------------- /src/CSharpCodeSourceImport/Lang/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharpCodeSourceImport/Lang/Strings.cs -------------------------------------------------------------------------------- /src/CSharpCodeSourceImport/Lang/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharpCodeSourceImport/Lang/Strings.resx -------------------------------------------------------------------------------- /src/CSharpCodeSourceImport/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CSharpCodeSourceImport/app.config -------------------------------------------------------------------------------- /src/CodeGenerator/CSharpExtendedGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/CSharpExtendedGenerator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/CSharpFormattingOptionsUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/CSharpFormattingOptionsUI.cs -------------------------------------------------------------------------------- /src/CodeGenerator/CSharpProjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/CSharpProjectGenerator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/CodeGenerator.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/CodeGenerator.build -------------------------------------------------------------------------------- /src/CodeGenerator/CodeGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/CodeGenerator.csproj -------------------------------------------------------------------------------- /src/CodeGenerator/CopyrightHeader.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/CopyrightHeader.Designer.cs -------------------------------------------------------------------------------- /src/CodeGenerator/CopyrightHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/CopyrightHeader.cs -------------------------------------------------------------------------------- /src/CodeGenerator/CopyrightHeader.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/CopyrightHeader.resx -------------------------------------------------------------------------------- /src/CodeGenerator/Dialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Dialog.Designer.cs -------------------------------------------------------------------------------- /src/CodeGenerator/Dialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Dialog.cs -------------------------------------------------------------------------------- /src/CodeGenerator/Dialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Dialog.resx -------------------------------------------------------------------------------- /src/CodeGenerator/FileGenerationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/FileGenerationException.cs -------------------------------------------------------------------------------- /src/CodeGenerator/FormatStyleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/FormatStyleSettings.cs -------------------------------------------------------------------------------- /src/CodeGenerator/FormatStyleSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/FormatStyleSettings.resx -------------------------------------------------------------------------------- /src/CodeGenerator/GenerationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/GenerationResult.cs -------------------------------------------------------------------------------- /src/CodeGenerator/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Generator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/JavaProjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/JavaProjectGenerator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/JavaSourceFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/JavaSourceFileGenerator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/ProjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/ProjectGenerator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Properties/Resources.resx -------------------------------------------------------------------------------- /src/CodeGenerator/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Resources/delete.png -------------------------------------------------------------------------------- /src/CodeGenerator/Resources/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Resources/move_down.png -------------------------------------------------------------------------------- /src/CodeGenerator/Resources/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Resources/move_up.png -------------------------------------------------------------------------------- /src/CodeGenerator/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Settings.Designer.cs -------------------------------------------------------------------------------- /src/CodeGenerator/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Settings.cs -------------------------------------------------------------------------------- /src/CodeGenerator/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Settings.settings -------------------------------------------------------------------------------- /src/CodeGenerator/SolutionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/SolutionGenerator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/SolutionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/SolutionType.cs -------------------------------------------------------------------------------- /src/CodeGenerator/SourceFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/SourceFileGenerator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/Templates/csproj.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Templates/csproj.template -------------------------------------------------------------------------------- /src/CodeGenerator/Templates/sln.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/Templates/sln.template -------------------------------------------------------------------------------- /src/CodeGenerator/VSSolutionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/VSSolutionGenerator.cs -------------------------------------------------------------------------------- /src/CodeGenerator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CodeGenerator/app.config -------------------------------------------------------------------------------- /src/CommandLine/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CommandLine/App.config -------------------------------------------------------------------------------- /src/CommandLine/CommandLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CommandLine/CommandLine.csproj -------------------------------------------------------------------------------- /src/CommandLine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CommandLine/Program.cs -------------------------------------------------------------------------------- /src/CommandLine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/CommandLine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Common/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Common/App.cs -------------------------------------------------------------------------------- /src/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Common/Common.csproj -------------------------------------------------------------------------------- /src/Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Core/AccessModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/AccessModifier.cs -------------------------------------------------------------------------------- /src/Core/BadSyntaxException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/BadSyntaxException.cs -------------------------------------------------------------------------------- /src/Core/Comments/CommentLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Comments/CommentLine.cs -------------------------------------------------------------------------------- /src/Core/Comments/Comments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Comments/Comments.cs -------------------------------------------------------------------------------- /src/Core/Comments/ListExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Comments/ListExtension.cs -------------------------------------------------------------------------------- /src/Core/Comments/ParameterComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Comments/ParameterComment.cs -------------------------------------------------------------------------------- /src/Core/Comments/Regions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Comments/Regions.cs -------------------------------------------------------------------------------- /src/Core/Core.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Core.build -------------------------------------------------------------------------------- /src/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Core.csproj -------------------------------------------------------------------------------- /src/Core/DotNetLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/DotNetLanguage.cs -------------------------------------------------------------------------------- /src/Core/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Element.cs -------------------------------------------------------------------------------- /src/Core/Entities/ClassModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/ClassModifier.cs -------------------------------------------------------------------------------- /src/Core/Entities/ClassType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/ClassType.cs -------------------------------------------------------------------------------- /src/Core/Entities/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/Comment.cs -------------------------------------------------------------------------------- /src/Core/Entities/CompositeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/CompositeType.cs -------------------------------------------------------------------------------- /src/Core/Entities/DelegateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/DelegateType.cs -------------------------------------------------------------------------------- /src/Core/Entities/EntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/EntityType.cs -------------------------------------------------------------------------------- /src/Core/Entities/EnumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/EnumType.cs -------------------------------------------------------------------------------- /src/Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /src/Core/Entities/IInterfaceImplementer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/IInterfaceImplementer.cs -------------------------------------------------------------------------------- /src/Core/Entities/InterfaceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/InterfaceType.cs -------------------------------------------------------------------------------- /src/Core/Entities/SingleInharitanceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/SingleInharitanceType.cs -------------------------------------------------------------------------------- /src/Core/Entities/SortingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/SortingMode.cs -------------------------------------------------------------------------------- /src/Core/Entities/StructureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/StructureType.cs -------------------------------------------------------------------------------- /src/Core/Entities/TypeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Entities/TypeBase.cs -------------------------------------------------------------------------------- /src/Core/EntityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/EntityEventArgs.cs -------------------------------------------------------------------------------- /src/Core/IModifiable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/IModifiable.cs -------------------------------------------------------------------------------- /src/Core/IProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/IProjectItem.cs -------------------------------------------------------------------------------- /src/Core/ISerializableElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/ISerializableElement.cs -------------------------------------------------------------------------------- /src/Core/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Language.cs -------------------------------------------------------------------------------- /src/Core/LanguageElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/LanguageElement.cs -------------------------------------------------------------------------------- /src/Core/LanguageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/LanguageManager.cs -------------------------------------------------------------------------------- /src/Core/Members/Constructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/Constructor.cs -------------------------------------------------------------------------------- /src/Core/Members/Destructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/Destructor.cs -------------------------------------------------------------------------------- /src/Core/Members/EnumValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/EnumValue.cs -------------------------------------------------------------------------------- /src/Core/Members/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/Event.cs -------------------------------------------------------------------------------- /src/Core/Members/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/Field.cs -------------------------------------------------------------------------------- /src/Core/Members/FieldModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/FieldModifier.cs -------------------------------------------------------------------------------- /src/Core/Members/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/Member.cs -------------------------------------------------------------------------------- /src/Core/Members/MemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/MemberType.cs -------------------------------------------------------------------------------- /src/Core/Members/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/Method.cs -------------------------------------------------------------------------------- /src/Core/Members/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/Operation.cs -------------------------------------------------------------------------------- /src/Core/Members/OperationModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/OperationModifier.cs -------------------------------------------------------------------------------- /src/Core/Members/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Members/Property.cs -------------------------------------------------------------------------------- /src/Core/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Model.cs -------------------------------------------------------------------------------- /src/Core/NETImportSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/NETImportSettingsForm.resx -------------------------------------------------------------------------------- /src/Core/Parameters/ArgumentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Parameters/ArgumentList.cs -------------------------------------------------------------------------------- /src/Core/Parameters/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Parameters/Parameter.cs -------------------------------------------------------------------------------- /src/Core/Parameters/ParameterModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Parameters/ParameterModifier.cs -------------------------------------------------------------------------------- /src/Core/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Project.cs -------------------------------------------------------------------------------- /src/Core/ProjectItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/ProjectItemEventArgs.cs -------------------------------------------------------------------------------- /src/Core/RelationshipEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/RelationshipEventArgs.cs -------------------------------------------------------------------------------- /src/Core/Relationships/AssociationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Relationships/AssociationType.cs -------------------------------------------------------------------------------- /src/Core/Relationships/CommentRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Relationships/CommentRelationship.cs -------------------------------------------------------------------------------- /src/Core/Relationships/Direction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Relationships/Direction.cs -------------------------------------------------------------------------------- /src/Core/Relationships/NestingRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Relationships/NestingRelationship.cs -------------------------------------------------------------------------------- /src/Core/Relationships/Relationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Relationships/Relationship.cs -------------------------------------------------------------------------------- /src/Core/Relationships/RelationshipType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Relationships/RelationshipType.cs -------------------------------------------------------------------------------- /src/Core/Relationships/TypeRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/Relationships/TypeRelationship.cs -------------------------------------------------------------------------------- /src/Core/ReservedNameException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/ReservedNameException.cs -------------------------------------------------------------------------------- /src/Core/SerializeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Core/SerializeEventArgs.cs -------------------------------------------------------------------------------- /src/DiagramEditor/AbsoluteMouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/AbsoluteMouseEventArgs.cs -------------------------------------------------------------------------------- /src/DiagramEditor/Canvas.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Canvas.Designer.cs -------------------------------------------------------------------------------- /src/DiagramEditor/Canvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Canvas.cs -------------------------------------------------------------------------------- /src/DiagramEditor/Canvas.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Canvas.resx -------------------------------------------------------------------------------- /src/DiagramEditor/ClassDiagram/ChevronMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/ClassDiagram/ChevronMode.cs -------------------------------------------------------------------------------- /src/DiagramEditor/ClassDiagram/Diagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/ClassDiagram/Diagram.cs -------------------------------------------------------------------------------- /src/DiagramEditor/ClassDiagram/ElementList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/ClassDiagram/ElementList.cs -------------------------------------------------------------------------------- /src/DiagramEditor/ClassDiagram/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/ClassDiagram/Icons.cs -------------------------------------------------------------------------------- /src/DiagramEditor/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Clipboard.cs -------------------------------------------------------------------------------- /src/DiagramEditor/ContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/ContextMenu.cs -------------------------------------------------------------------------------- /src/DiagramEditor/DiagramEditor.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/DiagramEditor.build -------------------------------------------------------------------------------- /src/DiagramEditor/DiagramEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/DiagramEditor.csproj -------------------------------------------------------------------------------- /src/DiagramEditor/DocumentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/DocumentEventArgs.cs -------------------------------------------------------------------------------- /src/DiagramEditor/DocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/DocumentManager.cs -------------------------------------------------------------------------------- /src/DiagramEditor/DocumentMovedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/DocumentMovedEventArgs.cs -------------------------------------------------------------------------------- /src/DiagramEditor/DynamicMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/DynamicMenu.cs -------------------------------------------------------------------------------- /src/DiagramEditor/EditorControlEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/EditorControlEventArgs.cs -------------------------------------------------------------------------------- /src/DiagramEditor/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/EventArgs.cs -------------------------------------------------------------------------------- /src/DiagramEditor/GdiGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/GdiGraphics.cs -------------------------------------------------------------------------------- /src/DiagramEditor/IClipboardItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/IClipboardItem.cs -------------------------------------------------------------------------------- /src/DiagramEditor/IDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/IDocument.cs -------------------------------------------------------------------------------- /src/DiagramEditor/IDocumentVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/IDocumentVisualizer.cs -------------------------------------------------------------------------------- /src/DiagramEditor/IEditable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/IEditable.cs -------------------------------------------------------------------------------- /src/DiagramEditor/IGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/IGraphics.cs -------------------------------------------------------------------------------- /src/DiagramEditor/IPrintable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/IPrintable.cs -------------------------------------------------------------------------------- /src/DiagramEditor/ImageCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/ImageCreator.cs -------------------------------------------------------------------------------- /src/DiagramEditor/Intersector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Intersector.cs -------------------------------------------------------------------------------- /src/DiagramEditor/MonoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/MonoHelper.cs -------------------------------------------------------------------------------- /src/DiagramEditor/OrderedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/OrderedList.cs -------------------------------------------------------------------------------- /src/DiagramEditor/PopupWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/PopupWindow.cs -------------------------------------------------------------------------------- /src/DiagramEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/aggregation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/aggregation.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/align_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/align_bottom.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/align_left.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/align_right.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/align_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/align_top.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/association.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/association.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/auto_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/auto_layout.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/auto_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/auto_zoom.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/bidirectional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/bidirectional.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/class.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/collapse.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/collapse_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/collapse_all.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/comment.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/composition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/composition.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/constructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/constructor.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/copy.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/copy_as_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/copy_as_image.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/cut.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/default_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/default_class.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/default_const.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/default_const.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/default_enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/default_enum.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/default_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/default_event.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/default_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/default_field.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/delegate.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/delete.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/dependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/dependency.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/destructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/destructor.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/edit_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/edit_comment.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/edit_members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/edit_members.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/enum.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/enum_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/enum_item.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/event.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/expand.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/expand_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/expand_all.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/field.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/format.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/image.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/implements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/implements.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/internal_enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/internal_enum.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/method.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/move_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/move_down.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/move_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/move_up.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/nesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/nesting.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/new_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/new_entity.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/new_enum_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/new_enum_item.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/new_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/new_event.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/new_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/new_field.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/new_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/new_method.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/new_modifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/new_modifier.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/new_parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/new_parameter.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/new_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/new_property.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/note.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/overrides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/overrides.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/parameter.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/paste.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/private_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/private_class.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/private_const.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/private_const.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/private_enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/private_enum.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/private_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/private_event.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/private_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/private_field.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/property.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/protint_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/protint_class.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/protint_const.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/protint_const.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/protint_enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/protint_enum.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/protint_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/protint_event.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/protint_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/protint_field.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/public_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/public_class.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/public_const.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/public_const.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/public_enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/public_enum.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/public_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/public_event.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/public_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/public_field.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/public_method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/public_method.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/realization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/realization.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/sort_by_kind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/sort_by_kind.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/sort_by_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/sort_by_name.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/static.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/struct.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/zoom.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/zoom_in.png -------------------------------------------------------------------------------- /src/DiagramEditor/Resources/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Resources/zoom_out.png -------------------------------------------------------------------------------- /src/DiagramEditor/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Settings.Designer.cs -------------------------------------------------------------------------------- /src/DiagramEditor/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Settings.settings -------------------------------------------------------------------------------- /src/DiagramEditor/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/Style.cs -------------------------------------------------------------------------------- /src/DiagramEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/DiagramEditor/app.config -------------------------------------------------------------------------------- /src/GUI/AboutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/AboutDialog.Designer.cs -------------------------------------------------------------------------------- /src/GUI/BatchLogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/BatchLogForm.Designer.cs -------------------------------------------------------------------------------- /src/GUI/BatchLogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/BatchLogForm.cs -------------------------------------------------------------------------------- /src/GUI/BatchLogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/BatchLogForm.resx -------------------------------------------------------------------------------- /src/GUI/DiagramNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/DiagramNavigator.cs -------------------------------------------------------------------------------- /src/GUI/Dialogs/AboutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Dialogs/AboutDialog.Designer.cs -------------------------------------------------------------------------------- /src/GUI/Dialogs/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Dialogs/AboutDialog.cs -------------------------------------------------------------------------------- /src/GUI/Dialogs/AboutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Dialogs/AboutDialog.resx -------------------------------------------------------------------------------- /src/GUI/Dialogs/CodingLanguageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Dialogs/CodingLanguageDialog.cs -------------------------------------------------------------------------------- /src/GUI/Dialogs/CodingLanguageDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Dialogs/CodingLanguageDialog.resx -------------------------------------------------------------------------------- /src/GUI/Dialogs/OptionsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Dialogs/OptionsDialog.Designer.cs -------------------------------------------------------------------------------- /src/GUI/Dialogs/OptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Dialogs/OptionsDialog.cs -------------------------------------------------------------------------------- /src/GUI/Dialogs/OptionsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Dialogs/OptionsDialog.resx -------------------------------------------------------------------------------- /src/GUI/GUI.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/GUI.build -------------------------------------------------------------------------------- /src/GUI/GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/GUI.csproj -------------------------------------------------------------------------------- /src/GUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/GUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/MainForm.cs -------------------------------------------------------------------------------- /src/GUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/MainForm.resx -------------------------------------------------------------------------------- /src/GUI/ModelExplorer/DiagramNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ModelExplorer/DiagramNode.cs -------------------------------------------------------------------------------- /src/GUI/ModelExplorer/EmptyProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ModelExplorer/EmptyProjectNode.cs -------------------------------------------------------------------------------- /src/GUI/ModelExplorer/ModelNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ModelExplorer/ModelNode.cs -------------------------------------------------------------------------------- /src/GUI/ModelExplorer/ModelView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ModelExplorer/ModelView.Designer.cs -------------------------------------------------------------------------------- /src/GUI/ModelExplorer/ModelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ModelExplorer/ModelView.cs -------------------------------------------------------------------------------- /src/GUI/ModelExplorer/ModelView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ModelExplorer/ModelView.resx -------------------------------------------------------------------------------- /src/GUI/ModelExplorer/ProjectItemNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ModelExplorer/ProjectItemNode.cs -------------------------------------------------------------------------------- /src/GUI/ModelExplorer/ProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ModelExplorer/ProjectNode.cs -------------------------------------------------------------------------------- /src/GUI/NClassEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/NClassEnvironment.cs -------------------------------------------------------------------------------- /src/GUI/OptionsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/OptionsDialog.Designer.cs -------------------------------------------------------------------------------- /src/GUI/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Plugin.cs -------------------------------------------------------------------------------- /src/GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Program.cs -------------------------------------------------------------------------------- /src/GUI/ProjectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ProjectEventArgs.cs -------------------------------------------------------------------------------- /src/GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /src/GUI/Resources/actual_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/actual_size.png -------------------------------------------------------------------------------- /src/GUI/Resources/auto_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/auto_zoom.png -------------------------------------------------------------------------------- /src/GUI/Resources/code_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/code_generator.png -------------------------------------------------------------------------------- /src/GUI/Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/copy.png -------------------------------------------------------------------------------- /src/GUI/Resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/cut.png -------------------------------------------------------------------------------- /src/GUI/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/delete.png -------------------------------------------------------------------------------- /src/GUI/Resources/disabled_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/disabled_slider.png -------------------------------------------------------------------------------- /src/GUI/Resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/help.png -------------------------------------------------------------------------------- /src/GUI/Resources/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/mail.png -------------------------------------------------------------------------------- /src/GUI/Resources/new_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/new_document.png -------------------------------------------------------------------------------- /src/GUI/Resources/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/open.png -------------------------------------------------------------------------------- /src/GUI/Resources/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/options.png -------------------------------------------------------------------------------- /src/GUI/Resources/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/paste.png -------------------------------------------------------------------------------- /src/GUI/Resources/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/print.png -------------------------------------------------------------------------------- /src/GUI/Resources/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/project.png -------------------------------------------------------------------------------- /src/GUI/Resources/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/redo.png -------------------------------------------------------------------------------- /src/GUI/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/save.png -------------------------------------------------------------------------------- /src/GUI/Resources/save_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/save_all.png -------------------------------------------------------------------------------- /src/GUI/Resources/search_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/search_web.png -------------------------------------------------------------------------------- /src/GUI/Resources/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/slider.png -------------------------------------------------------------------------------- /src/GUI/Resources/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/undo.png -------------------------------------------------------------------------------- /src/GUI/Resources/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/web.png -------------------------------------------------------------------------------- /src/GUI/Resources/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/zoom.png -------------------------------------------------------------------------------- /src/GUI/Resources/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/zoom_in.png -------------------------------------------------------------------------------- /src/GUI/Resources/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Resources/zoom_out.png -------------------------------------------------------------------------------- /src/GUI/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Settings.Designer.cs -------------------------------------------------------------------------------- /src/GUI/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Settings.cs -------------------------------------------------------------------------------- /src/GUI/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Settings.settings -------------------------------------------------------------------------------- /src/GUI/SimplePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/SimplePlugin.cs -------------------------------------------------------------------------------- /src/GUI/TabBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/TabBar.Designer.cs -------------------------------------------------------------------------------- /src/GUI/TabBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/TabBar.cs -------------------------------------------------------------------------------- /src/GUI/TabBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/TabBar.resx -------------------------------------------------------------------------------- /src/GUI/TabbedWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/TabbedWindow.Designer.cs -------------------------------------------------------------------------------- /src/GUI/TabbedWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/TabbedWindow.cs -------------------------------------------------------------------------------- /src/GUI/TabbedWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/TabbedWindow.resx -------------------------------------------------------------------------------- /src/GUI/TextBoxAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/TextBoxAppender.cs -------------------------------------------------------------------------------- /src/GUI/UpdatesChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/UpdatesChecker.cs -------------------------------------------------------------------------------- /src/GUI/WindowSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/WindowSettings.Designer.cs -------------------------------------------------------------------------------- /src/GUI/WindowSettings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/WindowSettings.settings -------------------------------------------------------------------------------- /src/GUI/Workspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/Workspace.cs -------------------------------------------------------------------------------- /src/GUI/ZoomingToolStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/ZoomingToolStrip.cs -------------------------------------------------------------------------------- /src/GUI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/app.config -------------------------------------------------------------------------------- /src/GUI/nclass.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/GUI/nclass.ico -------------------------------------------------------------------------------- /src/Java/Java.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/Java.build -------------------------------------------------------------------------------- /src/Java/Java.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/Java.cs -------------------------------------------------------------------------------- /src/Java/Java.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/Java.csproj -------------------------------------------------------------------------------- /src/Java/JavaArgumentList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaArgumentList.cs -------------------------------------------------------------------------------- /src/Java/JavaClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaClass.cs -------------------------------------------------------------------------------- /src/Java/JavaConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaConstructor.cs -------------------------------------------------------------------------------- /src/Java/JavaEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaEnum.cs -------------------------------------------------------------------------------- /src/Java/JavaEnumValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaEnumValue.cs -------------------------------------------------------------------------------- /src/Java/JavaField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaField.cs -------------------------------------------------------------------------------- /src/Java/JavaInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaInterface.cs -------------------------------------------------------------------------------- /src/Java/JavaLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaLanguage.cs -------------------------------------------------------------------------------- /src/Java/JavaMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaMethod.cs -------------------------------------------------------------------------------- /src/Java/JavaParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Java/JavaParameter.cs -------------------------------------------------------------------------------- /src/NClass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/NClass.sln -------------------------------------------------------------------------------- /src/PDFExport/Lang/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Lang/Strings.Designer.cs -------------------------------------------------------------------------------- /src/PDFExport/Lang/Strings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Lang/Strings.de.resx -------------------------------------------------------------------------------- /src/PDFExport/Lang/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Lang/Strings.resx -------------------------------------------------------------------------------- /src/PDFExport/PDFExport.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExport.build -------------------------------------------------------------------------------- /src/PDFExport/PDFExport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExport.csproj -------------------------------------------------------------------------------- /src/PDFExport/PDFExportFinished.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportFinished.Designer.cs -------------------------------------------------------------------------------- /src/PDFExport/PDFExportFinished.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportFinished.cs -------------------------------------------------------------------------------- /src/PDFExport/PDFExportFinished.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportFinished.resx -------------------------------------------------------------------------------- /src/PDFExport/PDFExportOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportOptions.Designer.cs -------------------------------------------------------------------------------- /src/PDFExport/PDFExportOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportOptions.cs -------------------------------------------------------------------------------- /src/PDFExport/PDFExportOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportOptions.resx -------------------------------------------------------------------------------- /src/PDFExport/PDFExportPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportPlugin.cs -------------------------------------------------------------------------------- /src/PDFExport/PDFExportProgress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportProgress.Designer.cs -------------------------------------------------------------------------------- /src/PDFExport/PDFExportProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportProgress.cs -------------------------------------------------------------------------------- /src/PDFExport/PDFExportProgress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExportProgress.resx -------------------------------------------------------------------------------- /src/PDFExport/PDFExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFExporter.cs -------------------------------------------------------------------------------- /src/PDFExport/PDFGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/PDFGraphics.cs -------------------------------------------------------------------------------- /src/PDFExport/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PDFExport/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Properties/Resources.resx -------------------------------------------------------------------------------- /src/PDFExport/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/PDFExport/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Properties/Settings.settings -------------------------------------------------------------------------------- /src/PDFExport/RegionExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/RegionExtend.cs -------------------------------------------------------------------------------- /src/PDFExport/Resources/Document-pdf-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Resources/Document-pdf-16.png -------------------------------------------------------------------------------- /src/PDFExport/Resources/Document-pdf-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Resources/Document-pdf-48.png -------------------------------------------------------------------------------- /src/PDFExport/Resources/NClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/Resources/NClass.png -------------------------------------------------------------------------------- /src/PDFExport/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/PDFExport/app.config -------------------------------------------------------------------------------- /src/Translations/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.Designer.cs -------------------------------------------------------------------------------- /src/Translations/Strings.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.de.resx -------------------------------------------------------------------------------- /src/Translations/Strings.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.es.resx -------------------------------------------------------------------------------- /src/Translations/Strings.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.fr.resx -------------------------------------------------------------------------------- /src/Translations/Strings.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.hu.resx -------------------------------------------------------------------------------- /src/Translations/Strings.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.pt-BR.resx -------------------------------------------------------------------------------- /src/Translations/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.resx -------------------------------------------------------------------------------- /src/Translations/Strings.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.ru.resx -------------------------------------------------------------------------------- /src/Translations/Strings.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Strings.zh-CN.resx -------------------------------------------------------------------------------- /src/Translations/Translations.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Translations.build -------------------------------------------------------------------------------- /src/Translations/Translations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/Translations.csproj -------------------------------------------------------------------------------- /src/Translations/UILanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/Translations/UILanguage.cs -------------------------------------------------------------------------------- /src/icons/diagram.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/icons/diagram.ico -------------------------------------------------------------------------------- /src/icons/nclass.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/src/icons/nclass.ico -------------------------------------------------------------------------------- /styles/Visual Studio Class Designer.dst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamiDidier/NClass/HEAD/styles/Visual Studio Class Designer.dst --------------------------------------------------------------------------------