├── .gitattributes ├── .gitignore ├── AUTHORS ├── CODE-OF-CONDUCT.md ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── LICENSE ├── MIT.X11 ├── Makefile.am ├── Mono.Profiler ├── .gitignore ├── Makefile.am ├── Mono.Profiler.Widgets │ ├── AllocationsStore.cs │ ├── AllocationsView.cs │ ├── AssemblyInfo.cs │ ├── CallsStore.cs │ ├── CallsView.cs │ ├── ChangeLog │ ├── DisplayOptions.cs │ ├── History.cs │ ├── Makefile.am │ ├── Mono.Profiler.Widgets.csproj │ ├── Monodevelop-logo.png │ ├── Node.cs │ ├── ProfileConfiguration.cs │ ├── ProfileSetupDialog.cs │ ├── ProfileStore.cs │ ├── ProfileView.cs │ ├── ProfilerProcess.cs │ ├── StartPage.cs │ ├── StatDetail.cs │ ├── StatList.cs │ ├── StatStore.cs │ └── StatView.cs ├── Mono.Profiler.sln ├── adjust-makefiles.sh ├── compile ├── heap-snapshot-explorer │ ├── AssemblyInfo.cs │ ├── ChangeLog │ ├── HeapExplorerActions.cs │ ├── HeapExplorerTreeModel.cs │ ├── HeapSnapshotExplorer.cs │ ├── LoadedClassChooser.cs │ ├── Main.cs │ ├── MainWindow.cs │ ├── Makefile.am │ ├── MyClass.cs │ ├── gtk-gui │ │ ├── Mono.Profiler.HeapExplorerActions.cs │ │ ├── Mono.Profiler.HeapSnapshotExplorer.cs │ │ ├── Mono.Profiler.LoadedClassChooser.cs │ │ ├── generated.cs │ │ ├── gui.stetic │ │ ├── heapsnapshotexplorer.HeapExplorerActions.cs │ │ └── objects.xml │ └── heap-snapshot-explorer.csproj ├── heap-snapshot-viewer │ ├── AssemblyInfo.cs │ ├── ChangeLog │ ├── Main.cs │ ├── MainWindow.cs │ ├── Makefile.am │ ├── app.desktop │ ├── gtk-gui │ │ ├── Mono.Profiler.MainWindow.cs │ │ ├── generated.cs │ │ ├── gui.stetic │ │ └── objects.xml │ ├── heap-snapshot-viewer.csproj │ ├── man │ │ └── man1 │ │ │ └── mprof-heap-viewer.1 │ └── mprof-heap-viewer.in ├── mprof-gui │ ├── AssemblyInfo.cs │ ├── ChangeLog │ ├── Main.cs │ ├── MainWindow.cs │ ├── Makefile.am │ ├── emveepee.in │ └── mprof-gui.csproj ├── mprof-runtime │ ├── AssemblyInfo.cs │ ├── Runtime.cs │ └── mprof-runtime.csproj ├── profiler-decoder-library │ ├── AssemblyInfo.cs │ ├── BaseTypes.cs │ ├── ChangeLog │ ├── Decoder.cs │ ├── EventProcessor.cs │ ├── Makefile.am │ ├── NativeLibraryReader.cs │ ├── ObjectModel.cs │ ├── Reader.cs │ ├── doc │ │ └── design.txt │ └── profiler-decoder-library.csproj ├── profiler-file-decoder │ ├── ChangeLog │ ├── Main.cs │ ├── Makefile.am │ ├── man │ │ └── man1 │ │ │ └── mprof-decoder.1 │ ├── mprof-decoder.in │ └── profiler-file-decoder.csproj └── rules.make ├── NEWS ├── README ├── asn1view ├── AUTHORS ├── ChangeLog ├── Makefile.am ├── README ├── TODO ├── art │ ├── Makefile.am │ ├── export-16.png │ ├── export.png │ ├── text_hilight-16.png │ └── text_lolight-16.png ├── common │ ├── ASN1Decoder.cs │ ├── AssemblyInfo.cs │ ├── Makefile.am │ ├── OidCache.cs │ └── PrettyPrinter.cs └── gtk │ ├── .gitignore │ ├── Main.cs │ ├── Makefile.am │ ├── gui.glade │ ├── gui.gladep │ └── script.in ├── autogen.sh ├── configure.in ├── create-native-map ├── ChangeLog ├── Makefile.am ├── bin │ ├── .gitignore │ ├── Makefile.am │ └── create-native-map.in ├── lib │ ├── Makefile.am │ ├── create-native-map │ │ └── Makefile.am │ └── pkgconfig │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── create-native-map.pc.in ├── man │ ├── Makefile.am │ └── create-native-map.1 └── src │ ├── Makefile.am │ ├── MapAttribute.cs │ ├── TestMap.cs │ ├── create-native-map.cs │ ├── test-overflow.c │ ├── test-overflow.h │ ├── test.c.ref │ ├── test.cs.ref │ ├── test.h.ref │ └── test.xml.ref ├── docbrowser ├── .gitignore ├── AssemblyInfo.cs.in ├── BookmarkManager.cs ├── BrowserWidget.cs ├── ChangeLog ├── Contributions.cs ├── GeckoHtmlRender.cs ├── GtkHtmlHtmlRender.cs ├── IHtmlRender.cs ├── Makefile.am ├── MonoWebBrowserHtmlRender.cs ├── PrintManager.cs ├── ProgressPanel.cs ├── README.ADMIN ├── WebKitHtmlRender.cs ├── XmlNodeWriter.cs ├── admin.cs ├── admin.glade ├── browser.cs ├── browser.glade ├── editing.cs ├── elabel.cs ├── gtkhtml-osx.patch ├── history.cs ├── list.cs ├── macbuild │ ├── IgeMacMenuGlobal.cs │ ├── Info.plist │ ├── Makefile │ └── monodoc ├── monodoc.desktop.in ├── monodoc.in ├── monodoc.png └── theme-icons │ ├── GNOME │ ├── monodoc-16.png │ ├── monodoc-22.png │ ├── monodoc-24.png │ ├── monodoc-256.png │ ├── monodoc-32.png │ ├── monodoc-48.png │ └── monodoc-512.png │ ├── Mac │ └── monodoc.icns │ ├── Makefile.am │ ├── icon-theme-installer │ └── src │ └── mono-documentation.svg ├── gendarme ├── .gitignore ├── AUTHORS ├── AssemblyInfo.cs.in ├── AssemblyStaticInfo.cs ├── ChangeLog ├── MIT.X11 ├── Makefile.am ├── NEWS ├── README ├── README.vsnet ├── TODO ├── console │ ├── .gitignore │ ├── ChangeLog │ ├── ConsoleRunner.cs │ ├── Helpers.cs │ ├── HtmlResultWriter.cs │ ├── IgnoreFileList.cs │ ├── Makefile.am │ ├── Options.cs │ ├── ResultWriter.cs │ ├── Settings.cs │ ├── TextResultWriter.cs │ ├── XmlResultWriter.cs │ ├── gendarme.csproj │ ├── gendarme.exe.config.in │ ├── gendarme.xsd │ ├── gendarme.xsl │ └── packages.config ├── framework │ ├── .gitignore │ ├── ChangeLog │ ├── Gendarme.Framework.Engines │ │ ├── ChangeLog │ │ ├── NamespaceEngine.cs │ │ ├── OpCodeEngine.cs │ │ └── SuppressMessageEngine.cs │ ├── Gendarme.Framework.Helpers │ │ ├── ChangeLog │ │ ├── Log.cs │ │ ├── MethodPrinter.cs │ │ ├── MethodSignature.cs │ │ ├── MethodSignatures.cs │ │ ├── Namespace.cs │ │ ├── OpCodeBitmask.cs │ │ ├── PrimitiveReferences.cs │ │ ├── StackEntryAnalysis.cs │ │ ├── StackEntryUsageResult.cs │ │ └── StreamLineReader.cs │ ├── Gendarme.Framework.Rocks │ │ ├── AssemblyRocks.cs │ │ ├── CecilRocks.cs │ │ ├── ChangeLog │ │ ├── CommonRocks.cs │ │ ├── CustomAttributeRocks.cs │ │ ├── FieldRocks.cs │ │ ├── InstructionRocks.cs │ │ ├── MethodRocks.cs │ │ ├── ModuleRocks.cs │ │ ├── ParameterRocks.cs │ │ ├── PropertyRocks.cs │ │ ├── TypeRocks.cs │ │ └── VariableDefinitionRocks.cs │ ├── Gendarme.Framework.csproj │ ├── Gendarme.Framework │ │ ├── ApplicabilityScope.cs │ │ ├── AssemblyResolver.cs │ │ ├── BasicIgnoreList.cs │ │ ├── Bitmask.cs │ │ ├── ChangeLog │ │ ├── Confidence.cs │ │ ├── Defect.cs │ │ ├── DocumentationUriAttribute.cs │ │ ├── Engine.cs │ │ ├── EngineController.cs │ │ ├── EngineDependencyAttribute.cs │ │ ├── EngineEventArgs.cs │ │ ├── FxCopCompatibilityAttribute.cs │ │ ├── HierarchicalEventArgs.cs │ │ ├── IAssemblyRule.cs │ │ ├── IIgnoreList.cs │ │ ├── IMethodRule.cs │ │ ├── IRule.cs │ │ ├── IRunner.cs │ │ ├── ITypeRule.cs │ │ ├── ProblemAttribute.cs │ │ ├── Rule.cs │ │ ├── RuleResult.cs │ │ ├── Runner.cs │ │ ├── RunnerEventArgs.cs │ │ ├── Severity.cs │ │ ├── SolutionAttribute.cs │ │ ├── Symbols.cs │ │ └── ThreadModelAttribute.cs │ ├── Makefile.am │ ├── Test │ │ ├── ChangeLog │ │ ├── Gendarme.Framework.Engines │ │ │ ├── ChangeLog │ │ │ └── SuppressMessageAttributeTest.cs │ │ ├── Gendarme.Framework.Helpers │ │ │ ├── ChangeLog │ │ │ ├── MethodSignatureTest.cs │ │ │ └── StackEntryAnalysisTest.cs │ │ ├── Gendarme.Framework.Rocks │ │ │ ├── AssemblyRocksTest.cs │ │ │ ├── ChangeLog │ │ │ ├── CustomAttributeRocksTest.cs │ │ │ ├── FieldRocksTest.cs │ │ │ ├── InstructionRocksTest.cs │ │ │ ├── MethodRocksTest.cs │ │ │ ├── ParameterRocksTest.cs │ │ │ ├── RocksTest.cs │ │ │ ├── TypeRocksTest.cs │ │ │ └── VariableDefinitionRocksTest.cs │ │ ├── Gendarme.Framework │ │ │ ├── BitmaskTest.cs │ │ │ ├── ChangeLog │ │ │ └── ThreadModelAttributeTest.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Makefile.am │ │ ├── Test.Framework.mdp │ │ └── Tests.Framework.csproj │ ├── gendarme-framework.pc.in │ └── packages.config ├── gd2i.in ├── gendarme-win.sln ├── gendarme-wizard.in ├── gendarme.in ├── gendarme.sln ├── gendarme.svg ├── man │ ├── .gitignore │ ├── ChangeLog │ ├── Makefile.am │ ├── gd2i.1.in │ ├── gendarme.1.in │ ├── gendarme.5.in │ ├── gendarme.config │ └── gendarme.source ├── mono-options.ignore ├── options.make ├── rules │ ├── .gitignore │ ├── ChangeLog │ ├── Gendarme.Rules.BadPractice │ │ ├── .gitignore │ │ ├── AvoidAssemblyVersionMismatchRule.cs │ │ ├── AvoidCallingProblematicMethodsRule.cs │ │ ├── AvoidNullCheckWithAsOperatorRule.cs │ │ ├── AvoidVisibleConstantFieldRule.cs │ │ ├── ChangeLog │ │ ├── CheckNewExceptionWithoutThrowingRule.cs │ │ ├── CheckNewThreadWithoutStartRule.cs │ │ ├── CloneMethodShouldNotReturnNullRule.cs │ │ ├── ConstructorShouldNotCallVirtualMethodsRule.cs │ │ ├── DisableDebuggingCodeRule.cs │ │ ├── DoNotDecreaseVisibilityRule.cs │ │ ├── DoNotForgetNotImplementedMethodsRule.cs │ │ ├── DoNotUseEnumIsAssignableFromRule.cs │ │ ├── DoNotUseGetInterfaceToCheckAssignabilityRule.cs │ │ ├── EqualShouldHandleNullArgRule.cs │ │ ├── Gendarme.Rules.BadPractice.csproj │ │ ├── GetEntryAssemblyMayReturnNullRule.cs │ │ ├── Makefile.am │ │ ├── ObsoleteMessagesShouldNotBeEmptyRule.cs │ │ ├── OnlyUseDisposeForIDisposableTypesRule.cs │ │ ├── PreferEmptyInstanceOverNullRule.cs │ │ ├── PreferParamsArrayForVariableArgumentsRule.cs │ │ ├── PreferSafeHandleRule.cs │ │ ├── PreferTryParseRule.cs │ │ ├── README.md │ │ ├── ReplaceIncompleteOddnessCheckRule.cs │ │ ├── ReturnNullRule.cs │ │ ├── Test │ │ │ ├── AvoidAssemblyVersionMismatchTest.cs │ │ │ ├── AvoidCallingProblematicMethodsTest.cs │ │ │ ├── AvoidNullCheckWithAsOperatorTest.cs │ │ │ ├── AvoidVisibleConstantFieldTest.cs │ │ │ ├── ChangeLog │ │ │ ├── CheckNewExceptionWithoutThrowingTest.cs │ │ │ ├── CheckNewThreadWithoutStartTest.cs │ │ │ ├── CloneMethodShouldNotReturnNullTest.cs │ │ │ ├── ConstructorShouldNotCallVirtualMethodsTest.cs │ │ │ ├── DisableDebuggingCodeTest.cs │ │ │ ├── DoNotDecreaseVisibilityTest.cs │ │ │ ├── DoNotForgetNotImplementedMethodsTest.cs │ │ │ ├── DoNotUseEnumIsAssignableFromTest.cs │ │ │ ├── DoNotUseGetInterfaceToCheckAssignabilityTest.cs │ │ │ ├── EqualShouldHandleNullArgTest.cs │ │ │ ├── GetEntryAssemblyMayReturnNullTest.cs │ │ │ ├── Makefile.am │ │ │ ├── ObsoleteMessagesShouldNotBeEmptyTest.cs │ │ │ ├── OnlyUseDisposeForIDisposableTypesTest.cs │ │ │ ├── PreferEmptyInstanceOverNullTest.cs │ │ │ ├── PreferParamsArrayForVariableArgumentsTest.cs │ │ │ ├── PreferSafeHandleTest.cs │ │ │ ├── PreferTryParseTest.cs │ │ │ ├── ReplaceIncompleteOddnessCheckTest.cs │ │ │ ├── Tests.Rules.BadPractice.csproj │ │ │ ├── ToStringReturnsNullTest.cs │ │ │ └── UseFileOpenOnlyWithFileAccessTest.cs │ │ ├── ToStringReturnsNullRule.cs │ │ └── UseFileOpenOnlyWithFileAccessRule.cs │ ├── Gendarme.Rules.Concurrency │ │ ├── .gitignore │ │ ├── ChangeLog │ │ ├── DecorateThreadsRule.cs │ │ ├── DoNotLockOnThisOrTypesRule.cs │ │ ├── DoNotLockOnWeakIdentityObjectsRule.cs │ │ ├── DoNotUseMethodImplOptionsSynchronizedRule.cs │ │ ├── DoNotUseThreadStaticWithInstanceFieldsRule.cs │ │ ├── DontUseLockedRegionOutsideMethodRule.cs │ │ ├── DoubleCheckLockingRule.cs │ │ ├── Gendarme.Rules.Concurrency.csproj │ │ ├── LockAnalyzerRule.cs │ │ ├── Makefile.am │ │ ├── NonConstantStaticFieldsShouldNotBeVisibleRule.cs │ │ ├── ProtectCallToEventDelegatesRule.cs │ │ ├── README.md │ │ ├── ReviewLockUsedOnlyForOperationsOnVariablesRule.cs │ │ ├── Test │ │ │ ├── ChangeLog │ │ │ ├── DecorateThreadsTest.cs │ │ │ ├── DoNotLockOnThisOrTypesTest.cs │ │ │ ├── DoNotLockOnWeakIdentityObjectsTest.cs │ │ │ ├── DoNotUseMethodImplOptionsSynchronizedTest.cs │ │ │ ├── DoNotUseThreadStaticWithInstanceFieldsTest.cs │ │ │ ├── DontUseLockedRegionOutsideMethodTest.cs │ │ │ ├── DoubleCheckLockingTest.cs │ │ │ ├── Makefile.am │ │ │ ├── NonConstantStaticFieldsShouldNotBeVisibleTest.cs │ │ │ ├── ProtectCallToEventDelegatesTest.cs │ │ │ ├── ReviewLockUsedOnlyForOperationsOnVariablesTest.cs │ │ │ ├── Tests.Rules.Concurrency.csproj │ │ │ └── WriteStaticFieldFromInstanceMethodTest.cs │ │ ├── ThreadRocks.cs │ │ └── WriteStaticFieldFromInstanceMethodRule.cs │ ├── Gendarme.Rules.Correctness │ │ ├── .gitignore │ │ ├── AttributeStringLiteralsShouldParseCorrectlyRule.cs │ │ ├── AvoidCodeWithSideEffectsInConditionalCodeRule.cs │ │ ├── AvoidConstructorsInStaticTypesRule.cs │ │ ├── AvoidFloatingPointEqualityRule.cs │ │ ├── AvoidMethodsWithSideEffectsInConditionalCodeRule.cs │ │ ├── BadRecursiveInvocationRule.cs │ │ ├── CallingEqualsWithNullArgRule.cs │ │ ├── ChangeLog │ │ ├── CheckParametersNullityInVisibleMethodsRule.cs │ │ ├── DeclareEventsExplicitlyRule.cs │ │ ├── DisposableFieldsShouldBeDisposedRule.cs │ │ ├── DoNotRecurseInEqualityRule.cs │ │ ├── DoNotRoundIntegersRule.cs │ │ ├── DontCompareWithNaNRule.cs │ │ ├── EnsureLocalDisposalRule.cs │ │ ├── FinalizersShouldCallBaseClassFinalizerRule.cs │ │ ├── FloatComparisonRule.cs │ │ ├── Gendarme.Rules.Correctness.csproj │ │ ├── Makefile.am │ │ ├── MethodCanBeMadeStaticRule.cs │ │ ├── NonNullAttribute.cs │ │ ├── NonNullAttributeCollector.cs │ │ ├── NullDerefAnalysis.cs │ │ ├── NullDerefFrame.cs │ │ ├── NullDerefRule.cs │ │ ├── Nullity.cs │ │ ├── ProvideCorrectArgumentsToFormattingMethodsRule.cs │ │ ├── ProvideCorrectRegexPatternRule.cs │ │ ├── ProvideValidXPathExpressionRule.cs │ │ ├── ProvideValidXmlStringRule.cs │ │ ├── README.md │ │ ├── ReviewCastOnIntegerDivisionRule.cs │ │ ├── ReviewCastOnIntegerMultiplicationRule.cs │ │ ├── ReviewDoubleAssignmentRule.cs │ │ ├── ReviewInconsistentIdentityRule.cs │ │ ├── ReviewSelfAssignmentRule.cs │ │ ├── ReviewUseOfInt64BitsToDoubleRule.cs │ │ ├── ReviewUseOfModuloOneOnIntegersRule.cs │ │ ├── ReviewUselessControlFlowRule.cs │ │ ├── Test │ │ │ ├── .gitignore │ │ │ ├── AttributeStringLiteralsShouldParseCorrectlyTest.cs │ │ │ ├── AvoidCodeWithSideEffectsInConditionalCodeTest.cs │ │ │ ├── AvoidConstructorsInStaticTypesTest.cs │ │ │ ├── AvoidFloatingPointEqualityTest.cs │ │ │ ├── AvoidMethodsWithSideEffectsInConditionalCodeTest.cs │ │ │ ├── BadRecursiveInvocationTest.cs │ │ │ ├── CallingEqualsWithNullArgTest.cs │ │ │ ├── ChangeLog │ │ │ ├── CheckParametersNullityInVisibleMethodsTest.cs │ │ │ ├── DeclareEventsExplicitlyTest.cs │ │ │ ├── DisposableFieldsShouldBeDisposedTest.cs │ │ │ ├── DoNotRecurseInEqualityTest.cs │ │ │ ├── DoNotRoundIntegersTest.cs │ │ │ ├── DontCompareWithNaNTest.cs │ │ │ ├── EnsureLocalDisposalTest.cs │ │ │ ├── FinalizersShouldCallBaseClassFinalizerTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MethodCanBeMadeStaticTest.cs │ │ │ ├── NullDerefTest.cs │ │ │ ├── ProvideCorrectArgumentsToFormattingMethodsTest.cs │ │ │ ├── ProvideCorrectRegexPatternTest.cs │ │ │ ├── ProvideValidXPathExpressionTest.cs │ │ │ ├── ProvideValidXmlStringTest.cs │ │ │ ├── Resource.Designer.cs │ │ │ ├── Resource.resx │ │ │ ├── ReviewCastOnIntegerDivisionTest.cs │ │ │ ├── ReviewCastOnIntegerMultiplicationTest.cs │ │ │ ├── ReviewDoubleAssignmentTest.cs │ │ │ ├── ReviewInconsistentIdentityTest.cs │ │ │ ├── ReviewSelfAssignmentTest.cs │ │ │ ├── ReviewUseOfInt64BitsToDoubleTest.cs │ │ │ ├── ReviewUseOfModuloOneOnIntegersTest.cs │ │ │ ├── ReviewUselessControlFlowTest.cs │ │ │ ├── Tests.Rules.Correctness.csproj │ │ │ ├── TypesWithDisposableFieldsShouldBeDisposableTest.cs │ │ │ ├── TypesWithNativeFieldsShouldBeDisposableTest.cs │ │ │ ├── UseNoInliningWithGetCallingAssemblyTest.cs │ │ │ └── UseValueInPropertySetterTest.cs │ │ ├── TypesShouldBeDisposableBaseRule.cs │ │ ├── TypesWithDisposableFieldsShouldBeDisposableRule.cs │ │ ├── TypesWithNativeFieldsShouldBeDisposableRule.cs │ │ ├── UseNoInliningWithGetCallingAssemblyRule.cs │ │ ├── UseValueInPropertySetterRule.cs │ │ ├── dataflow │ │ │ ├── BasicBlock.cs │ │ │ ├── CFG.cs │ │ │ ├── CFGEdge.cs │ │ │ ├── Dataflow.cs │ │ │ └── IDataflowAnalysis.cs │ │ └── graph │ │ │ ├── DFS.cs │ │ │ ├── Edge.cs │ │ │ ├── Graph.cs │ │ │ ├── IEdge.cs │ │ │ ├── IGraph.cs │ │ │ ├── INode.cs │ │ │ └── Node.cs │ ├── Gendarme.Rules.Design.Generic │ │ ├── .gitignore │ │ ├── AvoidDeclaringCustomDelegatesRule.cs │ │ ├── AvoidExcessiveParametersOnGenericTypesRule.cs │ │ ├── AvoidMethodWithUnusedGenericTypeRule.cs │ │ ├── ChangeLog │ │ ├── DoNotDeclareStaticMembersOnGenericTypesRule.cs │ │ ├── DoNotExposeGenericListsRule.cs │ │ ├── DoNotExposeNestedGenericSignaturesRule.cs │ │ ├── Gendarme.Rules.Design.Generic.csproj │ │ ├── GenericsBaseRule.cs │ │ ├── ImplementGenericCollectionInterfacesRule.cs │ │ ├── Makefile.am │ │ ├── PreferGenericsOverRefObjectRule.cs │ │ ├── README.md │ │ ├── Test │ │ │ ├── AvoidDeclaringCustomDelegatesTest.cs │ │ │ ├── AvoidExcessiveParametersOnGenericTypesTest.cs │ │ │ ├── AvoidMethodWithUnusedGenericTypeTest.cs │ │ │ ├── ChangeLog │ │ │ ├── DoNotDeclareStaticMembersOnGenericTypesTest.cs │ │ │ ├── DoNotExposeGenericListsTest.cs │ │ │ ├── DoNotExposeNestedGenericSignaturesTest.cs │ │ │ ├── ImplementGenericCollectionInterfacesTest.cs │ │ │ ├── Makefile.am │ │ │ ├── PreferGenericsOverRefObjectTest.cs │ │ │ ├── Tests.Rules.Design.Generic.csproj │ │ │ └── UseGenericEventHandlerTest.cs │ │ └── UseGenericEventHandlerRule.cs │ ├── Gendarme.Rules.Design.Linq │ │ ├── .gitignore │ │ ├── AvoidExtensionMethodOnSystemObjectRule.cs │ │ ├── ChangeLog │ │ ├── Gendarme.Rules.Design.Linq.csproj │ │ ├── Makefile.am │ │ ├── README.md │ │ └── Test │ │ │ ├── AvoidExtensionMethodOnSystemObjectTest.cs │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ └── Tests.Rules.Design.Linq.csproj │ ├── Gendarme.Rules.Design │ │ ├── .gitignore │ │ ├── AbstractTypesShouldNotHavePublicConstructorsRule.cs │ │ ├── AttributeArgumentsShouldHaveAccessorsRule.cs │ │ ├── AvoidEmptyInterfaceRule.cs │ │ ├── AvoidMultidimensionalIndexerRule.cs │ │ ├── AvoidPropertiesWithoutGetAccessorRule.cs │ │ ├── AvoidPublicInstanceFieldsRule.cs │ │ ├── AvoidRefAndOutParametersRule.cs │ │ ├── AvoidSmallNamespaceRule.cs │ │ ├── AvoidVisibleNestedTypesRule.cs │ │ ├── ChangeLog │ │ ├── ConsiderAddingInterfaceRule.cs │ │ ├── ConsiderConvertingFieldToNullableRule.cs │ │ ├── ConsiderConvertingMethodToPropertyRule.cs │ │ ├── ConsiderUsingStaticTypeRule.cs │ │ ├── DeclareEventHandlersCorrectlyRule.cs │ │ ├── DefineAZeroValueRule.cs │ │ ├── DisposableTypesShouldHaveFinalizerRule.cs │ │ ├── DoNotDeclareSettersOnCollectionPropertiesRule.cs │ │ ├── DoNotDeclareVirtualMethodsInSealedTypeRule.cs │ │ ├── DontDeclareProtectedFieldsInSealedClassRule.cs │ │ ├── EnsureSymmetryForOverloadedOperatorsRule.cs │ │ ├── EnumeratorsShouldBeStronglyTypedRule.cs │ │ ├── EnumsShouldDefineAZeroValueRule.cs │ │ ├── EnumsShouldUseInt32Rule.cs │ │ ├── FinalizersShouldBeProtectedRule.cs │ │ ├── FlagsShouldNotDefineAZeroValueRule.cs │ │ ├── Gendarme.Rules.Design.csproj │ │ ├── ImplementEqualsAndGetHashCodeInPairRule.cs │ │ ├── ImplementIComparableCorreclyRule.cs │ │ ├── InternalNamespacesShouldNotExposeTypesRule.cs │ │ ├── ListsAreStronglyTypedRule.cs │ │ ├── MainShouldNotBePublicRule.cs │ │ ├── Makefile.am │ │ ├── MarkAssemblyWithAssemblyVersionRule.cs │ │ ├── MarkAssemblyWithAttributeRule.cs │ │ ├── MarkAssemblyWithCLSCompliantRule.cs │ │ ├── MarkAssemblyWithComVisibleRule.cs │ │ ├── MissingAttributeUsageOnCustomAttributeRule.cs │ │ ├── OperatorEqualsShouldBeOverloadedRule.cs │ │ ├── OverrideEqualsMethodRule.cs │ │ ├── PreferEventsOverMethodsRule.cs │ │ ├── PreferIntegerOrStringForIndexersRule.cs │ │ ├── PreferUriOverStringRule.cs │ │ ├── PreferXmlAbstractionsRule.cs │ │ ├── ProvideAlternativeNamesForOperatorOverloadsRule.cs │ │ ├── ProvideTryParseAlternativeRule.cs │ │ ├── README.md │ │ ├── StronglyTypeICollectionMembersRule.cs │ │ ├── StronglyTypedRule.cs │ │ ├── Test │ │ │ ├── AbstractTypesShouldNotHavePublicConstructorsTest.cs │ │ │ ├── AttributeArgumentsShouldHaveAccessorsTest.cs │ │ │ ├── AvoidEmptyInterfaceTest.cs │ │ │ ├── AvoidMultidimensionalIndexerTest.cs │ │ │ ├── AvoidPropertiesWithoutGetAccessorTest.cs │ │ │ ├── AvoidPublicInstanceFieldsTest.cs │ │ │ ├── AvoidRefAndOutParametersTest.cs │ │ │ ├── AvoidSmallNamespaceTest.cs │ │ │ ├── AvoidVisibleNestedTypesTest.cs │ │ │ ├── ChangeLog │ │ │ ├── ConsiderAddingInterfaceTest.cs │ │ │ ├── ConsiderConvertingFieldToNullableTest.cs │ │ │ ├── ConsiderConvertingMethodToPropertyTest.cs │ │ │ ├── ConsiderUsingStaticTypeTest.cs │ │ │ ├── DeclareEventHandlersCorrectlyTest.cs │ │ │ ├── DisposableTypesShouldHaveFinalizerTest.cs │ │ │ ├── DoNotDeclareSettersOnCollectionPropertiesTest.cs │ │ │ ├── DoNotDeclareVirtualMethodsInSealedTypeTest.cs │ │ │ ├── DontDeclareProtectedFieldsInSealedClassTest.cs │ │ │ ├── EnsureSymmetryForOverloadedOperatorsTest.cs │ │ │ ├── EnumeratorsShouldBeStronglyTypedTest.cs │ │ │ ├── EnumsShouldDefineAZeroValueTest.cs │ │ │ ├── EnumsShouldUseInt32Test.cs │ │ │ ├── FinalizersShouldBeProtectedTest.cs │ │ │ ├── FlagsShouldNotDefineAZeroValueTest.cs │ │ │ ├── GlobalSuppressions.cs │ │ │ ├── ImplementEqualsAndGetHashCodeInPairTest.cs │ │ │ ├── ImplementIComparableCorreclyTest.cs │ │ │ ├── InternalNamespacesShouldNotExposeTypesTest.cs │ │ │ ├── ListsAreStronglyTypedTest.cs │ │ │ ├── MainShouldNotBePublicTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MarkAssemblyWithAssemblyVersionTest.cs │ │ │ ├── MarkAssemblyWithCLSCompliantTest.cs │ │ │ ├── MarkAssemblyWithComVisibleTest.cs │ │ │ ├── MissingAttributeUsageOnCustomAttributeTest.cs │ │ │ ├── OperatorEqualsShouldBeOverloadedTest.cs │ │ │ ├── OverrideEqualsMethodTest.cs │ │ │ ├── PreferEventsOverMethodsTest.cs │ │ │ ├── PreferIntegerOrStringForIndexersTest.cs │ │ │ ├── PreferUriOverStringTest.cs │ │ │ ├── PreferXmlAbstractionsTest.cs │ │ │ ├── ProvideAlternativeNamesForOperatorOverloadsTest.cs │ │ │ ├── ProvideTryParseAlternativeTest.cs │ │ │ ├── StronglyTypeICollectionMembersTest.cs │ │ │ ├── Tests.Rules.Design.csproj │ │ │ ├── TypesShouldBeInsideNamespacesTest.cs │ │ │ ├── UseCorrectDisposeSignaturesTest.cs │ │ │ ├── UseFlagsAttributeTest.cs │ │ │ └── UsingCloneWithoutImplementingICloneableTest.cs │ │ ├── TypesShouldBeInsideNamespacesRule.cs │ │ ├── UseCorrectDisposeSignaturesRule.cs │ │ ├── UseFlagsAttributeRule.cs │ │ └── UsingCloneWithoutImplementingICloneableRule.cs │ ├── Gendarme.Rules.Exceptions │ │ ├── .gitignore │ │ ├── AvoidArgumentExceptionDefaultConstructorRule.cs │ │ ├── AvoidThrowingBasicExceptionsRule.cs │ │ ├── ChangeLog │ │ ├── DoNotDestroyStackTraceRule.cs │ │ ├── DoNotThrowInNonCatchClausesRule.cs │ │ ├── DoNotThrowInUnexpectedLocationRule.cs │ │ ├── DoNotThrowReservedExceptionRule.cs │ │ ├── DontSwallowErrorsCatchingNonspecificExceptionsRule.cs │ │ ├── ExceptionShouldBeVisibleRule.cs │ │ ├── Gendarme.Rules.Exceptions.csproj │ │ ├── Impl │ │ │ ├── ChangeLog │ │ │ ├── ExecutionBlock.cs │ │ │ ├── ExecutionPath.cs │ │ │ └── ExecutionPathFactory.cs │ │ ├── InstantiateArgumentExceptionCorrectlyRule.cs │ │ ├── Makefile.am │ │ ├── MissingExceptionConstructorsRule.cs │ │ ├── NewExceptionRule.cs │ │ ├── README.md │ │ ├── Test │ │ │ ├── AvoidArgumentExceptionDefaultConstructorTest.cs │ │ │ ├── AvoidThrowingBasicExceptionsTest.cs │ │ │ ├── ChangeLog │ │ │ ├── DoNotThrowInNonCatchClausesTest.cs │ │ │ ├── DoNotThrowInUnexpectedLocationTest.cs │ │ │ ├── DoNotThrowReservedExceptionTest.cs │ │ │ ├── DontDestroyStackTraceTest.cs │ │ │ ├── DontSwallowErrorsCatchingNonspecificExceptionsTest.cs │ │ │ ├── ExceptionShouldBeVisibleTest.cs │ │ │ ├── InstantiateArgumentExceptionCorrectlyTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MissingExceptionConstructorsTest.cs │ │ │ ├── Tests.Rules.Exceptions.csproj │ │ │ └── UseObjectDisposedExceptionTest.cs │ │ └── UseObjectDisposedExceptionRule.cs │ ├── Gendarme.Rules.Gendarme │ │ ├── .gitignore │ │ ├── DefectsMustBeReportedRule.cs │ │ ├── DoNotThrowExceptionRule.cs │ │ ├── Gendarme.Rules.Gendarme.csproj │ │ ├── GendarmeRule.cs │ │ ├── Makefile.am │ │ ├── MissingEngineDependencyRule.cs │ │ ├── README.md │ │ ├── ReviewAttributesOnRulesRule.cs │ │ ├── Test │ │ │ ├── DefectsMustBeReportedTest.cs │ │ │ ├── DoNotThrowExceptionTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MissingEngineDependencyTest.cs │ │ │ ├── ReviewAttributesOnRulesTest.cs │ │ │ ├── Tests.Rules.Gendarme.csproj │ │ │ └── UseCorrectSuffixTest.cs │ │ └── UseCorrectSuffixRule.cs │ ├── Gendarme.Rules.Globalization │ │ ├── .gitignore │ │ ├── AvoidUnusedInternalResourceRule.cs │ │ ├── Gendarme.Rules.Globalization.csproj │ │ ├── Makefile.am │ │ ├── PreferIFormatProviderOverrideRule.cs │ │ ├── PreferOverrideBaseRule.cs │ │ ├── PreferStringComparisonOverrideRule.cs │ │ ├── README.md │ │ ├── SatelliteResourceMismatchRule.cs │ │ └── Test │ │ │ ├── AvoidUnusedInternalResourceTest.cs │ │ │ ├── InternalResource.Designer.cs │ │ │ ├── InternalResource.resx │ │ │ ├── MainResourceMissing.fr.resx │ │ │ ├── Makefile.am │ │ │ ├── PreferIFormatProviderOverrideTest.cs │ │ │ ├── PreferStringComparisonOverrideTest.cs │ │ │ ├── PublicResource.Designer.cs │ │ │ ├── PublicResource.resx │ │ │ ├── Resource.Designer.cs │ │ │ ├── Resource.fr.resx │ │ │ ├── Resource.resx │ │ │ ├── Resources │ │ │ ├── ImageInBothCultures.bmp │ │ │ ├── ImageInBothCultures.fr.bmp │ │ │ ├── ImageOnlyInEnglish.bmp │ │ │ ├── ImageOnlyInFrench.bmp │ │ │ ├── ImageUnused.bmp │ │ │ ├── ImageUsed.bmp │ │ │ ├── StringInEnglishImageInFrench.bmp │ │ │ ├── XMLFileNotInResX.fr.xml │ │ │ ├── XMLFileNotInResX.xml │ │ │ └── XMLFileNotInResXOnlyInFrench.fr.xml │ │ │ ├── SatelliteResourceMismatchTest.cs │ │ │ └── Tests.Rules.Globalization.csproj │ ├── Gendarme.Rules.Interoperability.Com │ │ ├── .gitignore │ │ ├── AutoLayoutTypesShouldNotBeComVisibleRule.cs │ │ ├── AvoidInt64ArgumentsInComVisibleMethodsRule.cs │ │ ├── AvoidNonPublicFieldsInComVisibleValueTypesRule.cs │ │ ├── AvoidOverloadsInComVisibleInterfacesRule.cs │ │ ├── AvoidStaticMembersInComVisibleTypesRule.cs │ │ ├── ComRocks.cs │ │ ├── ComVisibleShouldInheritFromComVisibleRule.cs │ │ ├── ComVisibleTypesShouldBeCreatableRule.cs │ │ ├── DoNotUseAutoDualClassInterfaceTypeRule.cs │ │ ├── Gendarme.Rules.Interoperability.Com.csproj │ │ ├── Makefile.am │ │ ├── MarkComSourceInterfacesAsIDispatchRule.cs │ │ ├── README.md │ │ ├── ReviewComRegistrationMethodsRule.cs │ │ └── Test │ │ │ ├── AutoLayoutTypesShouldNotBeComVisibleTest.cs │ │ │ ├── AvoidInt64ArgumentsInComVisibleMethodsTest.cs │ │ │ ├── AvoidNonPublicFieldsInComVisibleValueTypesTest.cs │ │ │ ├── AvoidOverloadsInComVisibleInterfacesTest.cs │ │ │ ├── AvoidStaticMembersInComVisibleTypesTest.cs │ │ │ ├── ComRocksTest.cs │ │ │ ├── ComVisibleShouldInheritFromComVisibleTest.cs │ │ │ ├── ComVisibleTypesShouldBeCreatableTest.cs │ │ │ ├── DoNotUseAutoDualClassInterfaceTypeTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MarkComSourceInterfacesAsIDispatchTest.cs │ │ │ ├── ReviewComRegistrationMethodsTest.cs │ │ │ └── Tests.Rules.Interoperability.Com.csproj │ ├── Gendarme.Rules.Interoperability │ │ ├── .gitignore │ │ ├── CentralizePInvokesIntoNativeMethodsTypeRule.cs │ │ ├── ChangeLog │ │ ├── DelegatesPassedToNativeCodeMustIncludeExceptionHandlingRule.cs │ │ ├── DoNotCastIntPtrToInt32Rule.cs │ │ ├── Gendarme.Rules.Interoperability.csproj │ │ ├── GetLastErrorMustBeCalledRightAfterPInvokeRule.cs │ │ ├── Makefile.am │ │ ├── MarshalBooleansInPInvokeDeclarationsRule.cs │ │ ├── MarshalStringsInPInvokeDeclarationsRule.cs │ │ ├── PInvokeShouldNotBeVisibleRule.cs │ │ ├── README.md │ │ ├── Test │ │ │ ├── CentralizePInvokesIntoNativeMethodsTypeTest.cs │ │ │ ├── ChangeLog │ │ │ ├── DelegatesPassedToNativeCodeMustIncludeExceptionHandlingTest.cs │ │ │ ├── DoNotCastIntPtrToInt32Test.cs │ │ │ ├── GetLastErrorMustBeCalledRightAfterPInvokeTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MarshalBooleansInPInvokeDeclarationsTest.cs │ │ │ ├── MarshalStringsInPInvokeDeclarationsTest.cs │ │ │ ├── PInvokeShouldNotBeVisibleTest.cs │ │ │ ├── Tests.Rules.Interoperability.csproj │ │ │ └── UseManagedAlternativesToPInvokeTest.cs │ │ └── UseManagedAlternativesToPInvokeRule.cs │ ├── Gendarme.Rules.Maintainability │ │ ├── .gitignore │ │ ├── AvoidAlwaysNullFieldRule.cs │ │ ├── AvoidComplexMethodsRule.cs │ │ ├── AvoidDeepInheritanceTreeRule.cs │ │ ├── AvoidLackOfCohesionOfMethodsRule.cs │ │ ├── AvoidUnnecessarySpecializationRule.cs │ │ ├── ChangeLog │ │ ├── ConsiderUsingStopwatchRule.cs │ │ ├── Gendarme.Rules.Maintainability.csproj │ │ ├── Makefile.am │ │ ├── PreferStringIsNullOrEmptyRule.cs │ │ ├── README.md │ │ ├── RemoveDependenceOnObsoleteCodeRule.cs │ │ ├── ReviewMisleadingFieldNamesRule.cs │ │ ├── Test │ │ │ ├── AvoidAlwaysNullFieldTest.cs │ │ │ ├── AvoidComplexMethodsTest.cs │ │ │ ├── AvoidDeepInheritanceTreeTest.cs │ │ │ ├── AvoidLackOfCohesionOfMethodsTest.cs │ │ │ ├── AvoidUnnecessarySpecializationTest.cs │ │ │ ├── ChangeLog │ │ │ ├── ConsiderUsingStopwatchTest.cs │ │ │ ├── Makefile.am │ │ │ ├── PreferStringIsNullOrEmptyTest.cs │ │ │ ├── RemoveDependenceOnObsoleteCodeTest.cs │ │ │ ├── ReviewMisleadingFieldNamesTest.cs │ │ │ ├── Tests.Rules.Maintainability.csproj │ │ │ └── VariableNamesShouldNotMatchFieldNamesTest.cs │ │ └── VariableNamesShouldNotMatchFieldNamesRule.cs │ ├── Gendarme.Rules.NUnit │ │ ├── .gitignore │ │ ├── Gendarme.Rules.NUnit.csproj │ │ ├── Makefile.am │ │ ├── NUnitRocks.cs │ │ ├── NUnitRule.cs │ │ ├── ProvideMessageOnAssertCallsRule.cs │ │ ├── README.md │ │ ├── Test │ │ │ ├── Helpers.cs │ │ │ ├── Makefile.am │ │ │ ├── NUnitRocksTest.cs │ │ │ ├── ProvideMessageOnAssertCallsTest.cs │ │ │ ├── TestMethodsMustBePublicTest.cs │ │ │ ├── Tests.Rules.NUnit.csproj │ │ │ └── UnitTestsMissingTestFixtureTest.cs │ │ ├── TestMethodsMustBePublicRule.cs │ │ └── UnitTestsMissingTestFixtureRule.cs │ ├── Gendarme.Rules.Naming │ │ ├── .gitignore │ │ ├── AvoidDeepNamespaceHierarchyRule.cs │ │ ├── AvoidRedundancyInMethodNameRule.cs │ │ ├── AvoidRedundancyInTypeNameRule.cs │ │ ├── AvoidTypeInterfaceInconsistencyRule.cs │ │ ├── ChangeLog │ │ ├── DetectNonAlphaNumericsInTypeNamesRule.cs │ │ ├── DoNotPrefixEventsWithAfterOrBeforeRule.cs │ │ ├── DoNotPrefixValuesWithEnumNameRule.cs │ │ ├── DoNotUseReservedInEnumValueNamesRule.cs │ │ ├── Gendarme.Rules.Naming.csproj │ │ ├── Makefile.am │ │ ├── ParameterNamesShouldMatchOverridenMethodRule.cs │ │ ├── README.md │ │ ├── Test │ │ │ ├── AvoidDeepNamespaceHierarchyTest.cs │ │ │ ├── AvoidRedundancyInMethodNameTest.cs │ │ │ ├── AvoidRedundancyInTypeNameTest.cs │ │ │ ├── AvoidTypeInterfaceInconsistencyTest.cs │ │ │ ├── ChangeLog │ │ │ ├── DetectNonAlphaNumericsInTypeNamesTest.cs │ │ │ ├── DoNotPrefixEventsWithAfterOrBeforeTest.cs │ │ │ ├── DoNotPrefixValuesWithEnumNameTest.cs │ │ │ ├── DoNotUseReservedInEnumValueNamesTest.cs │ │ │ ├── Makefile.am │ │ │ ├── ParameterNamesShouldMatchOverridenMethodTest.cs │ │ │ ├── Tests.Rules.Naming.csproj │ │ │ ├── UseCorrectCasingTest.cs │ │ │ ├── UseCorrectPrefixTest.cs │ │ │ ├── UseCorrectSuffixTest.cs │ │ │ ├── UsePluralNameInEnumFlagsTest.cs │ │ │ ├── UsePreferredTermsTest.cs │ │ │ └── UseSingularNameInEnumsUnlessAreFlagsTest.cs │ │ ├── UseCorrectCasingRule.cs │ │ ├── UseCorrectPrefixRule.cs │ │ ├── UseCorrectSuffixRule.cs │ │ ├── UsePluralNameInEnumFlagsRule.cs │ │ ├── UsePreferredTermsRule.cs │ │ └── UseSingularNameInEnumsUnlessAreFlagsRule.cs │ ├── Gendarme.Rules.Performance │ │ ├── .gitignore │ │ ├── AvoidConcatenatingCharsRule.cs │ │ ├── AvoidLargeNumberOfLocalVariablesRule.cs │ │ ├── AvoidLargeStructureRule.cs │ │ ├── AvoidLocalDataStoreSlotRule.cs │ │ ├── AvoidMethodWithLargeMaximumStackSizeRule.cs │ │ ├── AvoidRepetitiveCallsToPropertiesRule.cs │ │ ├── AvoidRepetitiveCastsRule.cs │ │ ├── AvoidReturningArraysOnPropertiesRule.cs │ │ ├── AvoidTypeGetTypeForConstantStringsRule.cs │ │ ├── AvoidUncalledPrivateCodeRule.cs │ │ ├── AvoidUninstantiatedInternalClassesRule.cs │ │ ├── AvoidUnnecessaryOverridesRule.cs │ │ ├── AvoidUnneededCallsOnStringRule.cs │ │ ├── AvoidUnneededFieldInitializationRule.cs │ │ ├── AvoidUnneededUnboxingRule.cs │ │ ├── AvoidUnsealedConcreteAttributesRule.cs │ │ ├── AvoidUnsealedUninheritedInternalClassesRule.cs │ │ ├── AvoidUnusedParametersRule.cs │ │ ├── AvoidUnusedPrivateFieldsRule.cs │ │ ├── ChangeLog │ │ ├── CompareWithStringEmptyEfficientlyRule.cs │ │ ├── ConsiderCustomAccessorsForNonVisibleEventsRule.cs │ │ ├── DontIgnoreMethodResultRule.cs │ │ ├── EmptyDestructorRule.cs │ │ ├── Gendarme.Rules.Performance.csproj │ │ ├── IDisposableWithDestructorWithoutSuppressFinalizeRule.cs │ │ ├── ImplementEqualsTypeRule.cs │ │ ├── Makefile.am │ │ ├── MathMinMaxCandidateRule.cs │ │ ├── OverrideValueTypeDefaultsRule.cs │ │ ├── PreferCharOverloadRule.cs │ │ ├── PreferInterfaceConstraintOnGenericParameterForPrimitiveInterfaceRule.cs │ │ ├── PreferLiteralOverInitOnlyFieldsRule.cs │ │ ├── README.md │ │ ├── RemoveUnusedLocalVariablesRule.cs │ │ ├── ReviewLinqMethodRule.cs │ │ ├── Test │ │ │ ├── AvoidConcatenatingCharsTest.cs │ │ │ ├── AvoidLargeNumberOfLocalVariablesTest.cs │ │ │ ├── AvoidLargeStructureTest.cs │ │ │ ├── AvoidLocalDataStoreSlotTest.cs │ │ │ ├── AvoidMethodWithLargeMaximumStackSizeTest.cs │ │ │ ├── AvoidRepetitiveCallsToPropertiesTest.cs │ │ │ ├── AvoidRepetitiveCastsTest.cs │ │ │ ├── AvoidReturningArraysOnPropertiesTest.cs │ │ │ ├── AvoidTypeGetTypeForConstantStringsTest.cs │ │ │ ├── AvoidUncalledPrivateCodeTest.cs │ │ │ ├── AvoidUninstantiatedInternalClassesTest.cs │ │ │ ├── AvoidUnnecessaryOverridesTest.cs │ │ │ ├── AvoidUnneededCallsOnStringTest.cs │ │ │ ├── AvoidUnneededFieldInitializationTest.cs │ │ │ ├── AvoidUnneededUnboxingTest.cs │ │ │ ├── AvoidUnsealedConcreteAttributesTest.cs │ │ │ ├── AvoidUnsealedUninheritedInternalClassesTest.cs │ │ │ ├── AvoidUnusedParametersTest.cs │ │ │ ├── AvoidUnusedPrivateFieldsTest.cs │ │ │ ├── ChangeLog │ │ │ ├── CompareWithStringEmptyEfficientlyTest.cs │ │ │ ├── ConsiderCustomAccessorsForNonVisibleEventsTest.cs │ │ │ ├── DontIgnoreMethodResultTest.cs │ │ │ ├── EmptyDestructorTest.cs │ │ │ ├── GlobalSuppressions.cs │ │ │ ├── IDisposableWithDestructorWithoutSuppressFinalizeTest.cs │ │ │ ├── ImplementEqualsTypeTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MathMinMaxCandidateTest.cs │ │ │ ├── OverrideValueTypeDefaultsTest.cs │ │ │ ├── PreferCharOverloadTest.cs │ │ │ ├── PreferInterfaceConstraintOnGenericParameterForPrimitiveInterfaceTest.cs │ │ │ ├── PreferLiteralOverInitOnlyFieldsTest.cs │ │ │ ├── RemoveUnusedLocalVariablesTest.cs │ │ │ ├── ReviewLinqMethodTest.cs │ │ │ ├── Tests.Rules.Performance.csproj │ │ │ ├── UseIsOperatorTest.cs │ │ │ ├── UseStringEmptyTest.cs │ │ │ └── UseTypeEmptyTypesTest.cs │ │ ├── UseIsOperatorRule.cs │ │ ├── UseStringEmptyRule.cs │ │ └── UseTypeEmptyTypesRule.cs │ ├── Gendarme.Rules.Portability │ │ ├── .gitignore │ │ ├── ChangeLog │ │ ├── DoNotHardcodePathsRule.cs │ │ ├── ExitCodeIsLimitedOnUnixRule.cs │ │ ├── FeatureRequiresRootPrivilegeOnUnixRule.cs │ │ ├── Gendarme.Rules.Portability.csproj │ │ ├── Makefile.am │ │ ├── MoMAWebService.cs │ │ ├── MonoCompatibilityReviewRule.cs │ │ ├── NewLineLiteralRule.cs │ │ ├── README.md │ │ └── Test │ │ │ ├── ChangeLog │ │ │ ├── DoNotHardcodePathsTest.cs │ │ │ ├── ExitCodeIsLimitedOnUnixTest.cs │ │ │ ├── FeatureRequiresRootPrivilegeOnUnixTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MonoCompatibilityReviewTest.cs │ │ │ ├── NewLineLiteralTest.cs │ │ │ └── Tests.Rules.Portability.csproj │ ├── Gendarme.Rules.Security.Cas │ │ ├── .gitignore │ │ ├── AddMissingTypeInheritanceDemandRule.cs │ │ ├── ChangeLog │ │ ├── DoNotExposeFieldsInSecuredTypeRule.cs │ │ ├── DoNotExposeMethodsProtectedByLinkDemandRule.cs │ │ ├── DoNotReduceTypeSecurityOnMethodsRule.cs │ │ ├── Gendarme.Rules.Security.Cas.csproj │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── ReviewNonVirtualMethodWithInheritanceDemandRule.cs │ │ ├── ReviewSealedTypeWithInheritanceDemandRule.cs │ │ ├── ReviewSuppressUnmanagedCodeSecurityUsageRule.cs │ │ ├── SecureGetObjectDataOverridesRule.cs │ │ ├── SecurityDeclarationRocks.cs │ │ └── Test │ │ │ ├── AddMissingTypeInheritanceDemandTest.cs │ │ │ ├── ChangeLog │ │ │ ├── DoNotExposeFieldsInSecuredTypeTest.cs │ │ │ ├── DoNotExposeMethodsProtectedByLinkDemandTest.cs │ │ │ ├── DoNotReduceTypeSecurityOnMethodsTest.cs │ │ │ ├── Makefile.am │ │ │ ├── ReviewNonVirtualMethodWithInheritanceDemandTest.cs │ │ │ ├── ReviewSealedTypeWithInheritanceDemandTest.cs │ │ │ ├── ReviewSuppressUnmanagedCodeSecurityUsageTest.cs │ │ │ ├── SecureGetObjectDataOverridesTest.cs │ │ │ ├── SecurityDeclarationRocksTest.cs │ │ │ └── Tests.Rules.Security.Cas.csproj │ ├── Gendarme.Rules.Security │ │ ├── .gitignore │ │ ├── ArrayFieldsShouldNotBeReadOnlyRule.cs │ │ ├── ChangeLog │ │ ├── DoNotShortCircuitCertificateCheckRule.cs │ │ ├── Gendarme.Rules.Security.csproj │ │ ├── Makefile.am │ │ ├── NativeFieldsShouldNotBeVisibleRule.cs │ │ ├── README.md │ │ ├── StaticConstructorsShouldBePrivateRule.cs │ │ └── Test │ │ │ ├── ArrayFieldsShouldNotBeReadOnlyTest.cs │ │ │ ├── ChangeLog │ │ │ ├── DoNotShortCircuitCertificateCheckTest.cs │ │ │ ├── Makefile.am │ │ │ ├── NativeFieldsShouldNotBeVisibleTest.cs │ │ │ ├── StaticConstructorsShouldBePrivateTest.cs │ │ │ └── Tests.Rules.Security.csproj │ ├── Gendarme.Rules.Serialization │ │ ├── .gitignore │ │ ├── CallBaseMethodsOnISerializableTypesRule.cs │ │ ├── ChangeLog │ │ ├── DeserializeOptionalFieldRule.cs │ │ ├── Gendarme.Rules.Serialization.csproj │ │ ├── ImplementISerializableCorrectlyRule.cs │ │ ├── Makefile.am │ │ ├── MarkAllNonSerializableFieldsRule.cs │ │ ├── MarkEnumerationsAsSerializableRule.cs │ │ ├── MissingSerializableAttributeOnISerializableTypeRule.cs │ │ ├── MissingSerializationConstructorRule.cs │ │ ├── README.md │ │ ├── Test │ │ │ ├── CallBaseMethodsOnISerializableTypesTest.cs │ │ │ ├── ChangeLog │ │ │ ├── DeserializeOptionalFieldTest.cs │ │ │ ├── ImplementISerializableCorrectlyTest.cs │ │ │ ├── Makefile.am │ │ │ ├── MarkAllNonSerializableFieldsTest.cs │ │ │ ├── MarkEnumerationsAsSerializableTest.cs │ │ │ ├── MissingSerializableAttributeOnISerializableTypeTest.cs │ │ │ ├── MissingSerializationConstructorTest.cs │ │ │ ├── Tests.Rules.Serialization.csproj │ │ │ └── UseCorrectSignatureForSerializationMethodsTest.cs │ │ └── UseCorrectSignatureForSerializationMethodsRule.cs │ ├── Gendarme.Rules.Smells │ │ ├── .gitignore │ │ ├── AvoidCodeDuplicatedInSameClassRule.cs │ │ ├── AvoidCodeDuplicatedInSiblingClassesRule.cs │ │ ├── AvoidLargeClassesRule.cs │ │ ├── AvoidLongMethodsRule.cs │ │ ├── AvoidLongParameterListsRule.cs │ │ ├── AvoidMessageChainsRule.cs │ │ ├── AvoidSpeculativeGeneralityRule.cs │ │ ├── AvoidSwitchStatementsRule.cs │ │ ├── ChangeLog │ │ ├── CodeDuplicatedLocator.cs │ │ ├── Gendarme.Rules.Smells.csproj │ │ ├── InstructionMatcher.cs │ │ ├── Makefile.am │ │ ├── Pattern.cs │ │ ├── README.md │ │ └── Test │ │ │ ├── AvoidCodeDuplicatedInSameClassTest.cs │ │ │ ├── AvoidCodeDuplicatedInSiblingClassesTest.cs │ │ │ ├── AvoidLargeClassesTest.cs │ │ │ ├── AvoidLongMethodsTest.cs │ │ │ ├── AvoidLongParameterListsTest.cs │ │ │ ├── AvoidMessageChainsTest.cs │ │ │ ├── AvoidSpeculativeGeneralityTest.cs │ │ │ ├── AvoidSwitchStatementsTest.cs │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ └── Tests.Rules.Smells.csproj │ ├── Gendarme.Rules.Ui │ │ ├── .gitignore │ │ ├── AddMatchingArrangeMeasureOverrideRule.cs │ │ ├── ChangeLog │ │ ├── ExecutableTargetRule.cs │ │ ├── Gendarme.Rules.Ui.csproj │ │ ├── GtkSharpExecutableTargetRule.cs │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── SystemWindowsFormsExecutableTargetRule.cs │ │ ├── Test │ │ │ ├── AddMatchingArrangeMeasureOverrideTest.cs │ │ │ ├── ChangeLog │ │ │ ├── ExecutableTargetTest.cs │ │ │ ├── GtkSharpExecutableTargetTest.cs │ │ │ ├── Makefile.am │ │ │ ├── SystemWindowsFormsExecutableTargetTest.cs │ │ │ ├── Tests.Rules.Ui.csproj │ │ │ └── UseSTAThreadAttributeOnSWFEntryPointsTest.cs │ │ └── UseSTAThreadAttributeOnSWFEntryPointsRule.cs │ ├── Makefile.am │ ├── README.md │ ├── Test.Rules │ │ ├── ChangeLog │ │ ├── Definitions │ │ │ ├── ChangeLog │ │ │ ├── SimpleMethods.cs │ │ │ └── SimpleTypes.cs │ │ ├── Fixtures │ │ │ ├── AssemblyRuleTestFixture.cs │ │ │ ├── ChangeLog │ │ │ ├── MethodRuleTestFixture.cs │ │ │ ├── RuleTestFixture.cs │ │ │ └── TypeRuleTestFixture.cs │ │ ├── Helpers │ │ │ ├── AssemblyCache.cs │ │ │ ├── ChangeLog │ │ │ ├── DefinitionLoader.cs │ │ │ └── TestRunner.cs │ │ ├── Makefile.am │ │ └── Test.Rules.csproj │ ├── common.make │ ├── rules.md-nunit │ └── rules.xml ├── self-test.ignore ├── swf-wizard-runner │ ├── .gitignore │ ├── ChangeLog │ ├── Gendarme.cs │ ├── GuiRunner.cs │ ├── Makefile.am │ ├── Page.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── gendarme.ico │ │ └── gendarme.png │ ├── Wizard.Designer.cs │ ├── Wizard.cs │ ├── Wizard.resx │ ├── gendarme-wizard.desktop.in │ └── swf-wizard-runner.csproj ├── tools │ ├── Makefile.am │ ├── README │ ├── supported │ │ ├── Makefile.am │ │ ├── gd2i │ │ │ ├── .gitignore │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── gd2i.cs │ │ │ └── gd2i.csproj │ │ └── templates │ │ │ ├── .gitignore │ │ │ ├── AssemblyRule.cs │ │ │ ├── AssemblyRule.vstemplate │ │ │ ├── AssemblyTest.cs │ │ │ ├── AssemblyTest.vstemplate │ │ │ ├── Makefile.am │ │ │ ├── MethodRule.cs │ │ │ ├── MethodRule.vstemplate │ │ │ ├── MethodTest.cs │ │ │ ├── MethodTest.vstemplate │ │ │ ├── README │ │ │ ├── README.vsnet │ │ │ ├── Templates.RuleProject.csproj │ │ │ ├── Templates.RuleProject.vstemplate │ │ │ ├── Templates.TestProject.csproj │ │ │ ├── Templates.TestProject.vstemplate │ │ │ ├── TypeRule.cs │ │ │ ├── TypeRule.vstemplate │ │ │ ├── TypeTest.cs │ │ │ └── TypeTest.vstemplate │ └── unsupported │ │ ├── Makefile.am │ │ ├── mapper │ │ ├── FxCopMapBuilder.cs │ │ ├── FxCopRule.cs │ │ ├── Makefile.am │ │ ├── README │ │ └── fxcop.missing │ │ ├── typeref │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── typeref.cs │ │ └── typeref.csproj │ │ └── xmldoc2wiki │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── README │ │ ├── xmldoc2wiki.cs │ │ └── xmldoc2wiki.csproj ├── unit-test.list └── wix │ ├── Bitmaps │ ├── bannrbmp.bmp │ ├── dlgbmp.bmp │ └── gendarme.ico │ ├── ChangeLog │ ├── Libraries │ └── ICSharpCode.SharpZipLib.dll │ ├── Makefile.am │ ├── Product.wxs │ ├── license.rtf │ └── wix.wixproj ├── gsharp ├── .gitignore ├── AssemblyInfo.cs ├── ChangeLog ├── DescribeType.cs ├── InteractiveGraphicsBase.cs ├── Main.cs ├── MainWindow.cs ├── Makefile.am ├── Mono.CSharp.Gui.csproj ├── Options.cs ├── ProcessSelector.cs ├── Shell.cs ├── SysDrawing.cs ├── TypeView.cs ├── close.png ├── gsharp.desktop.in ├── gsharp.exe.config.in ├── gsharp.in ├── gsharp.sln ├── gtk-gui │ ├── Mono.CSharp.Gui.DescribeType.cs │ ├── Mono.CSharp.Gui.MainWindow.cs │ ├── Mono.CSharp.Gui.ProcessSelector.cs │ ├── generated.cs │ └── gui.stetic └── outline.cs ├── gui-compare ├── AssemblyInfo.cs ├── CecilMetadata.cs ├── ChangeLog ├── CompareContext.cs ├── CompareWindow.cs ├── Comparison.cs ├── Config.cs ├── CustomCompare.cs ├── InfoManager.cs ├── Main.cs ├── MainWindow.cs ├── Makefile.am ├── Makefile.include ├── MasterMetadata.cs ├── Masterinfo.cs ├── Metadata.cs ├── ProviderSelector.cs ├── cm │ ├── c.gif │ ├── d.gif │ ├── e.gif │ ├── en.gif │ ├── f.gif │ ├── i.gif │ ├── m.gif │ ├── mn.png │ ├── n.gif │ ├── p.gif │ ├── r.gif │ ├── s.gif │ ├── sc.gif │ ├── se.gif │ ├── sm.gif │ ├── st.gif │ ├── sx.gif │ ├── tb.gif │ ├── tm.gif │ ├── tp.gif │ ├── w.gif │ └── y.gif ├── config.make ├── driver.cs ├── gtk-gui │ ├── GuiCompare.CustomCompare.cs │ ├── MainWindow.cs │ ├── generated.cs │ ├── gui.stetic │ ├── guicompare.ProviderSelector.cs │ └── objects.xml ├── gui-compare.csproj ├── gui-compare.in ├── gui-compare.make ├── gui-compare.mdp ├── gui-compare.mds └── rules.make ├── ilcontrast ├── .gitignore ├── Application.cs ├── ChangeLog ├── ComparisonInfo.cs ├── Global.cs.in ├── Makefile.am ├── Window.cs ├── deploy.tar ├── ilcontrast.desktop.in ├── ilcontrast.in ├── ilcontrast.png ├── mono-api-diff.cs ├── mono-api-info.cs └── mono-api.xsl ├── minvoke ├── .gitignore ├── Makefile.am ├── MapAssembly.cs ├── MapDllImportAttribute.cs ├── RetargetAssembly.cs ├── minvoke.cs └── minvoke.in ├── mono-tools.spec.in ├── mperfmon ├── .gitignore ├── AddSet.cs ├── AssemblyInfo.cs ├── ChangeLog ├── Config.cs ├── Main.cs ├── MainWindow.cs ├── Makefile.am ├── NewCounter.cs ├── Preferences.cs ├── config ├── gtk-gui │ ├── MainWindow.cs │ ├── generated.cs │ ├── gui.stetic │ ├── mperfmon.AddSet.cs │ ├── mperfmon.NewCounter.cs │ └── mperfmon.Preferences.cs ├── mperfmon.1 └── mperfmon.in ├── po ├── .cvsignore ├── .gitignore ├── ChangeLog ├── LINGUAS ├── POTFILES.in ├── README ├── ca.po ├── da.po ├── es.po ├── fr.po └── pt_BR.po ├── webcompare ├── App_Code │ ├── CompareParameters.cs │ ├── NodeUtils.cs │ └── StatusPage.cs ├── ChangeLog ├── INSTALL ├── Makefile ├── Web.config-EDITME ├── db │ ├── AssemblyResolver.cs │ ├── DataAccess.cs │ ├── Makefile │ ├── MySqlDataAccess.cs │ ├── createdb.sql │ ├── update-moonlight-20.sh │ ├── update-moonlight-30.sh │ ├── update-webcompare.sh │ ├── web.config │ ├── webcompare-db.cs │ └── webcompare-db.exe.config-EDITME ├── images │ ├── c.gif │ ├── collapse.gif │ ├── d.gif │ ├── e.gif │ ├── en.gif │ ├── expand.gif │ ├── f.gif │ ├── header-logo.png │ ├── i.gif │ ├── m.gif │ ├── mn.png │ ├── n.gif │ ├── noexpand.gif │ ├── p.gif │ ├── r.gif │ ├── s.gif │ ├── sc.gif │ ├── se.gif │ ├── sm.gif │ ├── st.gif │ ├── sx.gif │ ├── tb.gif │ ├── tm.gif │ ├── tp.gif │ ├── w.gif │ └── y.gif ├── index.aspx ├── main.css └── status.aspx ├── webdoc ├── .gitignore ├── App_Code │ └── Plugins │ │ └── Plugin.cs ├── Global.asax ├── Makefile.am ├── README.md ├── TODO ├── api.master ├── index.aspx ├── monodoc.ashx ├── monodoc.css ├── plugins.def ├── plugins │ ├── iframe-plugin │ │ ├── iframe.js │ │ └── jquery.iframe-auto-height-plugin.1.9.0.min.js │ ├── search-plugin │ │ ├── fastsearch │ │ │ ├── fsearch.css │ │ │ └── search.js │ │ ├── fullsearch │ │ │ ├── fullsearch.js │ │ │ ├── search.css │ │ │ └── search.html │ │ └── images │ │ │ └── spinner.gif │ ├── sidebar-plugin │ │ ├── dependencies │ │ │ ├── ptree │ │ │ │ ├── searching.gif │ │ │ │ ├── tree.css │ │ │ │ └── tree.js │ │ │ └── xtree │ │ │ │ ├── images │ │ │ │ ├── I.png │ │ │ │ ├── L.png │ │ │ │ ├── Lminus.png │ │ │ │ ├── Lplus.png │ │ │ │ ├── T.png │ │ │ │ ├── Tminus.png │ │ │ │ ├── Tplus.png │ │ │ │ ├── blank.png │ │ │ │ ├── clean │ │ │ │ │ ├── I.gif │ │ │ │ │ ├── L.gif │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ ├── T.gif │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ └── blank.gif │ │ │ │ ├── file.png │ │ │ │ ├── foldericon.png │ │ │ │ ├── msdn │ │ │ │ │ ├── I.gif │ │ │ │ │ ├── L.gif │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ ├── T.gif │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── menu_bar.gif │ │ │ │ │ ├── menu_corner.gif │ │ │ │ │ ├── menu_corner_minus.gif │ │ │ │ │ ├── menu_corner_plus.gif │ │ │ │ │ ├── menu_tee.gif │ │ │ │ │ ├── menu_tee_minus.gif │ │ │ │ │ └── menu_tee_plus.gif │ │ │ │ ├── msdn2 │ │ │ │ │ ├── I.gif │ │ │ │ │ ├── L.gif │ │ │ │ │ ├── Lminus.gif │ │ │ │ │ ├── Lplus.gif │ │ │ │ │ ├── T.gif │ │ │ │ │ ├── Tminus.gif │ │ │ │ │ ├── Tplus.gif │ │ │ │ │ └── blank.gif │ │ │ │ ├── openfoldericon.png │ │ │ │ └── xp │ │ │ │ │ ├── I.png │ │ │ │ │ ├── L.png │ │ │ │ │ ├── Lminus.png │ │ │ │ │ ├── Lplus.png │ │ │ │ │ ├── T.png │ │ │ │ │ ├── Tminus.png │ │ │ │ │ ├── Tplus.png │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ └── openfolder.png │ │ │ │ ├── xloadtree.js │ │ │ │ ├── xmlextras.js │ │ │ │ ├── xtree.css │ │ │ │ └── xtree.js │ │ ├── make-tree.js │ │ ├── sidebar.css │ │ └── sidebar.js │ └── tooltip-plugin │ │ └── bootstrap.tooltip.js ├── robots.txt ├── skins │ └── mono-external │ │ ├── common-extension.css │ │ ├── footer.html │ │ ├── header.html │ │ └── images │ │ ├── link.png │ │ ├── mono-logo.png │ │ ├── mono_logo_g.gif │ │ ├── native-browser-icon.png │ │ ├── print.png │ │ ├── slide-toggle.png │ │ └── spinner.gif ├── views │ ├── common.css │ ├── common.js │ ├── images │ │ ├── favicon.ico │ │ └── native-browser-icon.png │ └── reset.css └── web.config └── windoc ├── WinDoc.sln └── WinDoc ├── AnimatedTreeNode.cs ├── BookmarkEditor.Designer.cs ├── BookmarkEditor.cs ├── BookmarkEditor.resx ├── BookmarkManager.cs ├── CustomDrawing.cs ├── DocTools.cs ├── IndexSearcher.cs ├── IndexUpdateManager.cs ├── Logger.cs ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Options.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── ResultDataSet.cs ├── SearchTextBox.Designer.cs ├── SearchTextBox.cs ├── SearchTextBox.resx ├── UIUtils.cs ├── UrlLauncher.cs ├── WinDoc.csproj ├── data ├── add.png ├── back.png ├── book.png ├── book_add.png ├── book_delete.png ├── book_edit.png ├── cog.png ├── delete.png ├── find.png ├── forward.png ├── monodoc.icns ├── monodoc.ico ├── monodoc.png ├── monodoc │ ├── class.png │ ├── delegate.png │ ├── empty.png │ ├── enumeration.png │ ├── event.png │ ├── extension.png │ ├── field.png │ ├── interface.png │ ├── members.png │ ├── method.png │ ├── namespace.png │ ├── property.png │ └── structure.png └── spinner │ ├── Frame0.png │ ├── Frame1.png │ ├── Frame10.png │ ├── Frame11.png │ ├── Frame2.png │ ├── Frame3.png │ ├── Frame4.png │ ├── Frame5.png │ ├── Frame6.png │ ├── Frame7.png │ ├── Frame8.png │ └── Frame9.png ├── history.cs ├── lib ├── ICSharpCode.SharpZipLib.dll └── monodoc.dll ├── monodoc.dll.config └── monodoc.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /MIT.X11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/MIT.X11 -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Makefile.am -------------------------------------------------------------------------------- /Mono.Profiler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/.gitignore -------------------------------------------------------------------------------- /Mono.Profiler/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Makefile.am -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/AllocationsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/AllocationsStore.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/AllocationsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/AllocationsView.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/CallsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/CallsStore.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/CallsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/CallsView.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/DisplayOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/DisplayOptions.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/History.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/Makefile.am -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/Monodevelop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/Monodevelop-logo.png -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/Node.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/ProfileConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/ProfileConfiguration.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/ProfileSetupDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/ProfileSetupDialog.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/ProfileStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/ProfileStore.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/ProfileView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/ProfileView.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/ProfilerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/ProfilerProcess.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/StartPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/StartPage.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/StatDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/StatDetail.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/StatList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/StatList.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/StatStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/StatStore.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.Widgets/StatView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.Widgets/StatView.cs -------------------------------------------------------------------------------- /Mono.Profiler/Mono.Profiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/Mono.Profiler.sln -------------------------------------------------------------------------------- /Mono.Profiler/adjust-makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/adjust-makefiles.sh -------------------------------------------------------------------------------- /Mono.Profiler/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/compile -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/ChangeLog -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/HeapExplorerActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/HeapExplorerActions.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/HeapExplorerTreeModel.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/HeapSnapshotExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/HeapSnapshotExplorer.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/LoadedClassChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/LoadedClassChooser.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/Main.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/MainWindow.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/Makefile.am -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/MyClass.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/gtk-gui/generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/gtk-gui/generated.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-explorer/gtk-gui/objects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-explorer/gtk-gui/objects.xml -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/ChangeLog -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/Main.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/MainWindow.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/Makefile.am -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/app.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/app.desktop -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/gtk-gui/generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/gtk-gui/generated.cs -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/gtk-gui/objects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/gtk-gui/objects.xml -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/heap-snapshot-viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/heap-snapshot-viewer.csproj -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/man/man1/mprof-heap-viewer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/heap-snapshot-viewer/man/man1/mprof-heap-viewer.1 -------------------------------------------------------------------------------- /Mono.Profiler/heap-snapshot-viewer/mprof-heap-viewer.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec mono "@prefix@/lib/@PACKAGE@/mprof-heap-viewer.exe" "$@" 4 | -------------------------------------------------------------------------------- /Mono.Profiler/mprof-gui/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-gui/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Profiler/mprof-gui/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-gui/ChangeLog -------------------------------------------------------------------------------- /Mono.Profiler/mprof-gui/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-gui/Main.cs -------------------------------------------------------------------------------- /Mono.Profiler/mprof-gui/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-gui/MainWindow.cs -------------------------------------------------------------------------------- /Mono.Profiler/mprof-gui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-gui/Makefile.am -------------------------------------------------------------------------------- /Mono.Profiler/mprof-gui/emveepee.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec mono "@prefix@/lib/@PACKAGE@/emveepee.exe" "$@" 4 | -------------------------------------------------------------------------------- /Mono.Profiler/mprof-gui/mprof-gui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-gui/mprof-gui.csproj -------------------------------------------------------------------------------- /Mono.Profiler/mprof-runtime/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-runtime/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Profiler/mprof-runtime/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-runtime/Runtime.cs -------------------------------------------------------------------------------- /Mono.Profiler/mprof-runtime/mprof-runtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/mprof-runtime/mprof-runtime.csproj -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/BaseTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/BaseTypes.cs -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/ChangeLog -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/Decoder.cs -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/EventProcessor.cs -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/Makefile.am -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/NativeLibraryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/NativeLibraryReader.cs -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/ObjectModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/ObjectModel.cs -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/Reader.cs -------------------------------------------------------------------------------- /Mono.Profiler/profiler-decoder-library/doc/design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-decoder-library/doc/design.txt -------------------------------------------------------------------------------- /Mono.Profiler/profiler-file-decoder/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-file-decoder/ChangeLog -------------------------------------------------------------------------------- /Mono.Profiler/profiler-file-decoder/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-file-decoder/Main.cs -------------------------------------------------------------------------------- /Mono.Profiler/profiler-file-decoder/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-file-decoder/Makefile.am -------------------------------------------------------------------------------- /Mono.Profiler/profiler-file-decoder/man/man1/mprof-decoder.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/profiler-file-decoder/man/man1/mprof-decoder.1 -------------------------------------------------------------------------------- /Mono.Profiler/profiler-file-decoder/mprof-decoder.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec mono "@prefix@/lib/@PACKAGE@/mprof-decoder.exe" "$@" 4 | -------------------------------------------------------------------------------- /Mono.Profiler/rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/Mono.Profiler/rules.make -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/README -------------------------------------------------------------------------------- /asn1view/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/AUTHORS -------------------------------------------------------------------------------- /asn1view/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/ChangeLog -------------------------------------------------------------------------------- /asn1view/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS= art gtk common 2 | 3 | -------------------------------------------------------------------------------- /asn1view/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/README -------------------------------------------------------------------------------- /asn1view/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/TODO -------------------------------------------------------------------------------- /asn1view/art/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/art/Makefile.am -------------------------------------------------------------------------------- /asn1view/art/export-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/art/export-16.png -------------------------------------------------------------------------------- /asn1view/art/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/art/export.png -------------------------------------------------------------------------------- /asn1view/art/text_hilight-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/art/text_hilight-16.png -------------------------------------------------------------------------------- /asn1view/art/text_lolight-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/art/text_lolight-16.png -------------------------------------------------------------------------------- /asn1view/common/ASN1Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/common/ASN1Decoder.cs -------------------------------------------------------------------------------- /asn1view/common/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/common/AssemblyInfo.cs -------------------------------------------------------------------------------- /asn1view/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/common/Makefile.am -------------------------------------------------------------------------------- /asn1view/common/OidCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/common/OidCache.cs -------------------------------------------------------------------------------- /asn1view/common/PrettyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/common/PrettyPrinter.cs -------------------------------------------------------------------------------- /asn1view/gtk/.gitignore: -------------------------------------------------------------------------------- 1 | gasnview -------------------------------------------------------------------------------- /asn1view/gtk/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/gtk/Main.cs -------------------------------------------------------------------------------- /asn1view/gtk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/gtk/Makefile.am -------------------------------------------------------------------------------- /asn1view/gtk/gui.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/gtk/gui.glade -------------------------------------------------------------------------------- /asn1view/gtk/gui.gladep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/asn1view/gtk/gui.gladep -------------------------------------------------------------------------------- /asn1view/gtk/script.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec @RUNTIME@ @mono_one_instdir@/@exe_file@ "$@" 3 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/configure.in -------------------------------------------------------------------------------- /create-native-map/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/ChangeLog -------------------------------------------------------------------------------- /create-native-map/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = bin src lib man 2 | -------------------------------------------------------------------------------- /create-native-map/bin/.gitignore: -------------------------------------------------------------------------------- 1 | create-native-map -------------------------------------------------------------------------------- /create-native-map/bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/bin/Makefile.am -------------------------------------------------------------------------------- /create-native-map/bin/create-native-map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/bin/create-native-map.in -------------------------------------------------------------------------------- /create-native-map/lib/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = create-native-map pkgconfig 2 | -------------------------------------------------------------------------------- /create-native-map/lib/create-native-map/Makefile.am: -------------------------------------------------------------------------------- 1 | # do nothing 2 | 3 | -------------------------------------------------------------------------------- /create-native-map/lib/pkgconfig/.gitignore: -------------------------------------------------------------------------------- 1 | create-native-map.pc -------------------------------------------------------------------------------- /create-native-map/lib/pkgconfig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/lib/pkgconfig/Makefile.am -------------------------------------------------------------------------------- /create-native-map/lib/pkgconfig/create-native-map.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/lib/pkgconfig/create-native-map.pc.in -------------------------------------------------------------------------------- /create-native-map/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/man/Makefile.am -------------------------------------------------------------------------------- /create-native-map/man/create-native-map.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/man/create-native-map.1 -------------------------------------------------------------------------------- /create-native-map/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/Makefile.am -------------------------------------------------------------------------------- /create-native-map/src/MapAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/MapAttribute.cs -------------------------------------------------------------------------------- /create-native-map/src/TestMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/TestMap.cs -------------------------------------------------------------------------------- /create-native-map/src/create-native-map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/create-native-map.cs -------------------------------------------------------------------------------- /create-native-map/src/test-overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/test-overflow.c -------------------------------------------------------------------------------- /create-native-map/src/test-overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/test-overflow.h -------------------------------------------------------------------------------- /create-native-map/src/test.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/test.c.ref -------------------------------------------------------------------------------- /create-native-map/src/test.cs.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/test.cs.ref -------------------------------------------------------------------------------- /create-native-map/src/test.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/test.h.ref -------------------------------------------------------------------------------- /create-native-map/src/test.xml.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/create-native-map/src/test.xml.ref -------------------------------------------------------------------------------- /docbrowser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/.gitignore -------------------------------------------------------------------------------- /docbrowser/AssemblyInfo.cs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/AssemblyInfo.cs.in -------------------------------------------------------------------------------- /docbrowser/BookmarkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/BookmarkManager.cs -------------------------------------------------------------------------------- /docbrowser/BrowserWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/BrowserWidget.cs -------------------------------------------------------------------------------- /docbrowser/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/ChangeLog -------------------------------------------------------------------------------- /docbrowser/Contributions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/Contributions.cs -------------------------------------------------------------------------------- /docbrowser/GeckoHtmlRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/GeckoHtmlRender.cs -------------------------------------------------------------------------------- /docbrowser/GtkHtmlHtmlRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/GtkHtmlHtmlRender.cs -------------------------------------------------------------------------------- /docbrowser/IHtmlRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/IHtmlRender.cs -------------------------------------------------------------------------------- /docbrowser/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/Makefile.am -------------------------------------------------------------------------------- /docbrowser/MonoWebBrowserHtmlRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/MonoWebBrowserHtmlRender.cs -------------------------------------------------------------------------------- /docbrowser/PrintManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/PrintManager.cs -------------------------------------------------------------------------------- /docbrowser/ProgressPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/ProgressPanel.cs -------------------------------------------------------------------------------- /docbrowser/README.ADMIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/README.ADMIN -------------------------------------------------------------------------------- /docbrowser/WebKitHtmlRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/WebKitHtmlRender.cs -------------------------------------------------------------------------------- /docbrowser/XmlNodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/XmlNodeWriter.cs -------------------------------------------------------------------------------- /docbrowser/admin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/admin.cs -------------------------------------------------------------------------------- /docbrowser/admin.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/admin.glade -------------------------------------------------------------------------------- /docbrowser/browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/browser.cs -------------------------------------------------------------------------------- /docbrowser/browser.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/browser.glade -------------------------------------------------------------------------------- /docbrowser/editing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/editing.cs -------------------------------------------------------------------------------- /docbrowser/elabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/elabel.cs -------------------------------------------------------------------------------- /docbrowser/gtkhtml-osx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/gtkhtml-osx.patch -------------------------------------------------------------------------------- /docbrowser/history.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/history.cs -------------------------------------------------------------------------------- /docbrowser/list.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/list.cs -------------------------------------------------------------------------------- /docbrowser/macbuild/IgeMacMenuGlobal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/macbuild/IgeMacMenuGlobal.cs -------------------------------------------------------------------------------- /docbrowser/macbuild/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/macbuild/Info.plist -------------------------------------------------------------------------------- /docbrowser/macbuild/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/macbuild/Makefile -------------------------------------------------------------------------------- /docbrowser/macbuild/monodoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/macbuild/monodoc -------------------------------------------------------------------------------- /docbrowser/monodoc.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/monodoc.desktop.in -------------------------------------------------------------------------------- /docbrowser/monodoc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/monodoc.in -------------------------------------------------------------------------------- /docbrowser/monodoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/monodoc.png -------------------------------------------------------------------------------- /docbrowser/theme-icons/GNOME/monodoc-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/GNOME/monodoc-16.png -------------------------------------------------------------------------------- /docbrowser/theme-icons/GNOME/monodoc-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/GNOME/monodoc-22.png -------------------------------------------------------------------------------- /docbrowser/theme-icons/GNOME/monodoc-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/GNOME/monodoc-24.png -------------------------------------------------------------------------------- /docbrowser/theme-icons/GNOME/monodoc-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/GNOME/monodoc-256.png -------------------------------------------------------------------------------- /docbrowser/theme-icons/GNOME/monodoc-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/GNOME/monodoc-32.png -------------------------------------------------------------------------------- /docbrowser/theme-icons/GNOME/monodoc-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/GNOME/monodoc-48.png -------------------------------------------------------------------------------- /docbrowser/theme-icons/GNOME/monodoc-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/GNOME/monodoc-512.png -------------------------------------------------------------------------------- /docbrowser/theme-icons/Mac/monodoc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/Mac/monodoc.icns -------------------------------------------------------------------------------- /docbrowser/theme-icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/Makefile.am -------------------------------------------------------------------------------- /docbrowser/theme-icons/icon-theme-installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/icon-theme-installer -------------------------------------------------------------------------------- /docbrowser/theme-icons/src/mono-documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/docbrowser/theme-icons/src/mono-documentation.svg -------------------------------------------------------------------------------- /gendarme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/.gitignore -------------------------------------------------------------------------------- /gendarme/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/AUTHORS -------------------------------------------------------------------------------- /gendarme/AssemblyInfo.cs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/AssemblyInfo.cs.in -------------------------------------------------------------------------------- /gendarme/AssemblyStaticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/AssemblyStaticInfo.cs -------------------------------------------------------------------------------- /gendarme/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/ChangeLog -------------------------------------------------------------------------------- /gendarme/MIT.X11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/MIT.X11 -------------------------------------------------------------------------------- /gendarme/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/Makefile.am -------------------------------------------------------------------------------- /gendarme/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/NEWS -------------------------------------------------------------------------------- /gendarme/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/README -------------------------------------------------------------------------------- /gendarme/README.vsnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/README.vsnet -------------------------------------------------------------------------------- /gendarme/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/TODO -------------------------------------------------------------------------------- /gendarme/console/.gitignore: -------------------------------------------------------------------------------- 1 | gendarme.exe.config -------------------------------------------------------------------------------- /gendarme/console/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/ChangeLog -------------------------------------------------------------------------------- /gendarme/console/ConsoleRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/ConsoleRunner.cs -------------------------------------------------------------------------------- /gendarme/console/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/Helpers.cs -------------------------------------------------------------------------------- /gendarme/console/HtmlResultWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/HtmlResultWriter.cs -------------------------------------------------------------------------------- /gendarme/console/IgnoreFileList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/IgnoreFileList.cs -------------------------------------------------------------------------------- /gendarme/console/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/Makefile.am -------------------------------------------------------------------------------- /gendarme/console/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/Options.cs -------------------------------------------------------------------------------- /gendarme/console/ResultWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/ResultWriter.cs -------------------------------------------------------------------------------- /gendarme/console/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/Settings.cs -------------------------------------------------------------------------------- /gendarme/console/TextResultWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/TextResultWriter.cs -------------------------------------------------------------------------------- /gendarme/console/XmlResultWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/XmlResultWriter.cs -------------------------------------------------------------------------------- /gendarme/console/gendarme.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/gendarme.csproj -------------------------------------------------------------------------------- /gendarme/console/gendarme.exe.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/gendarme.exe.config.in -------------------------------------------------------------------------------- /gendarme/console/gendarme.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/gendarme.xsd -------------------------------------------------------------------------------- /gendarme/console/gendarme.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/gendarme.xsl -------------------------------------------------------------------------------- /gendarme/console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/console/packages.config -------------------------------------------------------------------------------- /gendarme/framework/.gitignore: -------------------------------------------------------------------------------- 1 | doc 2 | gendarme-framework.pc 3 | *.dll.config 4 | TestResult.xml 5 | 6 | -------------------------------------------------------------------------------- /gendarme/framework/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Engines/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Engines/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Engines/OpCodeEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Engines/OpCodeEngine.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Helpers/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Helpers/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Helpers/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Helpers/Log.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Helpers/MethodPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Helpers/MethodPrinter.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Helpers/Namespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Helpers/Namespace.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Helpers/OpCodeBitmask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Helpers/OpCodeBitmask.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/AssemblyRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/AssemblyRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/CecilRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/CecilRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/CommonRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/CommonRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/FieldRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/FieldRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/InstructionRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/InstructionRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/MethodRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/MethodRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/ModuleRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/ModuleRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/ParameterRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/ParameterRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/PropertyRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/PropertyRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.Rocks/TypeRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.Rocks/TypeRocks.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework.csproj -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/ApplicabilityScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/ApplicabilityScope.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/AssemblyResolver.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/BasicIgnoreList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/BasicIgnoreList.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/Bitmask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/Bitmask.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/Confidence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/Confidence.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/Defect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/Defect.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/Engine.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/EngineController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/EngineController.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/EngineEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/EngineEventArgs.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/HierarchicalEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/HierarchicalEventArgs.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/IAssemblyRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/IAssemblyRule.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/IIgnoreList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/IIgnoreList.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/IMethodRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/IMethodRule.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/IRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/IRule.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/IRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/IRunner.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/ITypeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/ITypeRule.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/ProblemAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/ProblemAttribute.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/Rule.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/RuleResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/RuleResult.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/Runner.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/RunnerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/RunnerEventArgs.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/Severity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/Severity.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/SolutionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/SolutionAttribute.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/Symbols.cs -------------------------------------------------------------------------------- /gendarme/framework/Gendarme.Framework/ThreadModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Gendarme.Framework/ThreadModelAttribute.cs -------------------------------------------------------------------------------- /gendarme/framework/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Makefile.am -------------------------------------------------------------------------------- /gendarme/framework/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Test/Gendarme.Framework.Engines/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/Gendarme.Framework.Engines/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Test/Gendarme.Framework.Helpers/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/Gendarme.Framework.Helpers/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Test/Gendarme.Framework.Rocks/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/Gendarme.Framework.Rocks/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Test/Gendarme.Framework.Rocks/RocksTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/Gendarme.Framework.Rocks/RocksTest.cs -------------------------------------------------------------------------------- /gendarme/framework/Test/Gendarme.Framework/BitmaskTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/Gendarme.Framework/BitmaskTest.cs -------------------------------------------------------------------------------- /gendarme/framework/Test/Gendarme.Framework/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/Gendarme.Framework/ChangeLog -------------------------------------------------------------------------------- /gendarme/framework/Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /gendarme/framework/Test/Makefile.am: -------------------------------------------------------------------------------- 1 | DISTCLEANFILES = Makefile.in 2 | 3 | all: 4 | -------------------------------------------------------------------------------- /gendarme/framework/Test/Test.Framework.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/Test.Framework.mdp -------------------------------------------------------------------------------- /gendarme/framework/Test/Tests.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/Test/Tests.Framework.csproj -------------------------------------------------------------------------------- /gendarme/framework/gendarme-framework.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/gendarme-framework.pc.in -------------------------------------------------------------------------------- /gendarme/framework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/framework/packages.config -------------------------------------------------------------------------------- /gendarme/gd2i.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/gd2i.in -------------------------------------------------------------------------------- /gendarme/gendarme-win.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/gendarme-win.sln -------------------------------------------------------------------------------- /gendarme/gendarme-wizard.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/gendarme-wizard.in -------------------------------------------------------------------------------- /gendarme/gendarme.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/gendarme.in -------------------------------------------------------------------------------- /gendarme/gendarme.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/gendarme.sln -------------------------------------------------------------------------------- /gendarme/gendarme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/gendarme.svg -------------------------------------------------------------------------------- /gendarme/man/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/man/.gitignore -------------------------------------------------------------------------------- /gendarme/man/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/man/ChangeLog -------------------------------------------------------------------------------- /gendarme/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/man/Makefile.am -------------------------------------------------------------------------------- /gendarme/man/gd2i.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/man/gd2i.1.in -------------------------------------------------------------------------------- /gendarme/man/gendarme.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/man/gendarme.1.in -------------------------------------------------------------------------------- /gendarme/man/gendarme.5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/man/gendarme.5.in -------------------------------------------------------------------------------- /gendarme/man/gendarme.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/man/gendarme.config -------------------------------------------------------------------------------- /gendarme/man/gendarme.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/man/gendarme.source -------------------------------------------------------------------------------- /gendarme/mono-options.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/mono-options.ignore -------------------------------------------------------------------------------- /gendarme/options.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/options.make -------------------------------------------------------------------------------- /gendarme/rules/.gitignore: -------------------------------------------------------------------------------- 1 | doc -------------------------------------------------------------------------------- /gendarme/rules/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.BadPractice/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.BadPractice/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.BadPractice/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.BadPractice/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.BadPractice/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.BadPractice/PreferTryParseRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.BadPractice/PreferTryParseRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.BadPractice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.BadPractice/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.BadPractice/ReturnNullRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.BadPractice/ReturnNullRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.BadPractice/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.BadPractice/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.BadPractice/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.BadPractice/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Concurrency/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Concurrency/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Concurrency/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Concurrency/LockAnalyzerRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Concurrency/LockAnalyzerRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Concurrency/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Concurrency/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Concurrency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Concurrency/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Concurrency/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Concurrency/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Concurrency/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Concurrency/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Concurrency/ThreadRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Concurrency/ThreadRocks.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/NonNullAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/NonNullAttribute.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/NullDerefAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/NullDerefAnalysis.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/NullDerefFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/NullDerefFrame.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/NullDerefRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/NullDerefRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/Nullity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/Nullity.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/Test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/Test/.gitignore -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/Test/NullDerefTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/Test/NullDerefTest.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/Test/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/Test/Resource.resx -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/dataflow/CFG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/dataflow/CFG.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/dataflow/CFGEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/dataflow/CFGEdge.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/dataflow/Dataflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/dataflow/Dataflow.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/graph/DFS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/graph/DFS.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/graph/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/graph/Edge.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/graph/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/graph/Graph.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/graph/IEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/graph/IEdge.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/graph/IGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/graph/IGraph.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/graph/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/graph/INode.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Correctness/graph/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Correctness/graph/Node.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Generic/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Generic/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Generic/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Generic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Generic/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Generic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Generic/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Generic/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Generic/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Generic/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Generic/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Linq/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Linq/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Linq/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Linq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Linq/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Linq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Linq/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Linq/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Linq/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design.Linq/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design.Linq/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/AvoidEmptyInterfaceRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/AvoidEmptyInterfaceRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/AvoidSmallNamespaceRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/AvoidSmallNamespaceRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/DefineAZeroValueRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/DefineAZeroValueRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/EnumsShouldUseInt32Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/EnumsShouldUseInt32Rule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/PreferUriOverStringRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/PreferUriOverStringRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/StronglyTypedRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/StronglyTypedRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Design/UseFlagsAttributeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Design/UseFlagsAttributeRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/Impl/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/Impl/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/Impl/ExecutionBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/Impl/ExecutionBlock.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/Impl/ExecutionPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/Impl/ExecutionPath.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/NewExceptionRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/NewExceptionRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Exceptions/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Exceptions/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Gendarme/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.Gendarme.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Gendarme/GendarmeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Gendarme/GendarmeRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Gendarme/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Gendarme/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Gendarme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Gendarme/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Gendarme/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Gendarme/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Gendarme/UseCorrectSuffixRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Gendarme/UseCorrectSuffixRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Globalization/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | *.resources 4 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Globalization/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Globalization/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Globalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Globalization/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Globalization/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Globalization/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Globalization/Test/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Globalization/Test/Resource.resx -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Interoperability.Com/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Interoperability.Com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Interoperability.Com/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Interoperability/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Interoperability/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Interoperability/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Interoperability/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Interoperability/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Interoperability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Interoperability/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Interoperability/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Interoperability/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Maintainability/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Maintainability/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Maintainability/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Maintainability/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Maintainability/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Maintainability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Maintainability/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Maintainability/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Maintainability/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.NUnit/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.NUnit.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.NUnit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.NUnit/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.NUnit/NUnitRocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.NUnit/NUnitRocks.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.NUnit/NUnitRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.NUnit/NUnitRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.NUnit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.NUnit/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.NUnit/Test/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.NUnit/Test/Helpers.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.NUnit/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.NUnit/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.NUnit/Test/NUnitRocksTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.NUnit/Test/NUnitRocksTest.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/UseCorrectCasingRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/UseCorrectCasingRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/UseCorrectPrefixRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/UseCorrectPrefixRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/UseCorrectSuffixRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/UseCorrectSuffixRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Naming/UsePreferredTermsRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Naming/UsePreferredTermsRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Performance/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Performance/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Performance/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Performance/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Performance/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Performance/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Performance/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Performance/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Performance/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Performance/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Portability/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Portability/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Portability/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Portability/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Portability/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Portability/MoMAWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Portability/MoMAWebService.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Portability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Portability/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Portability/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Portability/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Portability/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Portability/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security.Cas/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security.Cas/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security.Cas/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security.Cas/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security.Cas/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security.Cas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security.Cas/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security.Cas/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security.Cas/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security.Cas/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security.Cas/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Security/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Security/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Serialization/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Serialization/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Serialization/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Serialization/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Serialization/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Serialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Serialization/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Serialization/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Serialization/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Serialization/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Serialization/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/AvoidLargeClassesRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/AvoidLargeClassesRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/AvoidLongMethodsRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/AvoidLongMethodsRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/CodeDuplicatedLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/CodeDuplicatedLocator.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/InstructionMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/InstructionMatcher.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/Pattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/Pattern.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Smells/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Smells/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/.gitignore: -------------------------------------------------------------------------------- 1 | Test.Rules.*.dll.config 2 | TestResult.xml 3 | -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/ExecutableTargetRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/ExecutableTargetRule.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/Gendarme.Rules.Ui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/Gendarme.Rules.Ui.csproj -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/README.md -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/Test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/Test/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/Test/ExecutableTargetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/Test/ExecutableTargetTest.cs -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/Test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/Test/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Gendarme.Rules.Ui/Test/Tests.Rules.Ui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Gendarme.Rules.Ui/Test/Tests.Rules.Ui.csproj -------------------------------------------------------------------------------- /gendarme/rules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/README.md -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Definitions/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Definitions/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Definitions/SimpleMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Definitions/SimpleMethods.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Definitions/SimpleTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Definitions/SimpleTypes.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Fixtures/AssemblyRuleTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Fixtures/AssemblyRuleTestFixture.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Fixtures/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Fixtures/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Fixtures/MethodRuleTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Fixtures/MethodRuleTestFixture.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Fixtures/RuleTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Fixtures/RuleTestFixture.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Fixtures/TypeRuleTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Fixtures/TypeRuleTestFixture.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Helpers/AssemblyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Helpers/AssemblyCache.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Helpers/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Helpers/ChangeLog -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Helpers/DefinitionLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Helpers/DefinitionLoader.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Helpers/TestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Helpers/TestRunner.cs -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Makefile.am -------------------------------------------------------------------------------- /gendarme/rules/Test.Rules/Test.Rules.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/Test.Rules/Test.Rules.csproj -------------------------------------------------------------------------------- /gendarme/rules/common.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/common.make -------------------------------------------------------------------------------- /gendarme/rules/rules.md-nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/rules.md-nunit -------------------------------------------------------------------------------- /gendarme/rules/rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/rules/rules.xml -------------------------------------------------------------------------------- /gendarme/self-test.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/self-test.ignore -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/.gitignore: -------------------------------------------------------------------------------- 1 | *.resources 2 | *.desktop -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/ChangeLog -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Gendarme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Gendarme.cs -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/GuiRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/GuiRunner.cs -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Makefile.am -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Page.cs -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Properties/Resources.resx -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Properties/Settings.settings -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Resources/gendarme.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Resources/gendarme.ico -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Resources/gendarme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Resources/gendarme.png -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Wizard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Wizard.Designer.cs -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Wizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Wizard.cs -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/Wizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/Wizard.resx -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/gendarme-wizard.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/gendarme-wizard.desktop.in -------------------------------------------------------------------------------- /gendarme/swf-wizard-runner/swf-wizard-runner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/swf-wizard-runner/swf-wizard-runner.csproj -------------------------------------------------------------------------------- /gendarme/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/Makefile.am -------------------------------------------------------------------------------- /gendarme/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/README -------------------------------------------------------------------------------- /gendarme/tools/supported/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = gd2i templates 2 | 3 | -------------------------------------------------------------------------------- /gendarme/tools/supported/gd2i/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/gd2i/.gitignore -------------------------------------------------------------------------------- /gendarme/tools/supported/gd2i/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/gd2i/ChangeLog -------------------------------------------------------------------------------- /gendarme/tools/supported/gd2i/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/gd2i/Makefile.am -------------------------------------------------------------------------------- /gendarme/tools/supported/gd2i/gd2i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/gd2i/gd2i.cs -------------------------------------------------------------------------------- /gendarme/tools/supported/gd2i/gd2i.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/gd2i/gd2i.csproj -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/AssemblyRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/AssemblyRule.cs -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/AssemblyRule.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/AssemblyRule.vstemplate -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/AssemblyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/AssemblyTest.cs -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/AssemblyTest.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/AssemblyTest.vstemplate -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/Makefile.am -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/MethodRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/MethodRule.cs -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/MethodRule.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/MethodRule.vstemplate -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/MethodTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/MethodTest.cs -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/MethodTest.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/MethodTest.vstemplate -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/README -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/README.vsnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/README.vsnet -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/TypeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/TypeRule.cs -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/TypeRule.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/TypeRule.vstemplate -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/TypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/TypeTest.cs -------------------------------------------------------------------------------- /gendarme/tools/supported/templates/TypeTest.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/supported/templates/TypeTest.vstemplate -------------------------------------------------------------------------------- /gendarme/tools/unsupported/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = typeref xmldoc2wiki mapper 2 | 3 | -------------------------------------------------------------------------------- /gendarme/tools/unsupported/mapper/FxCopMapBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/mapper/FxCopMapBuilder.cs -------------------------------------------------------------------------------- /gendarme/tools/unsupported/mapper/FxCopRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/mapper/FxCopRule.cs -------------------------------------------------------------------------------- /gendarme/tools/unsupported/mapper/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/mapper/Makefile.am -------------------------------------------------------------------------------- /gendarme/tools/unsupported/mapper/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/mapper/README -------------------------------------------------------------------------------- /gendarme/tools/unsupported/mapper/fxcop.missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/mapper/fxcop.missing -------------------------------------------------------------------------------- /gendarme/tools/unsupported/typeref/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/typeref/ChangeLog -------------------------------------------------------------------------------- /gendarme/tools/unsupported/typeref/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/typeref/Makefile.am -------------------------------------------------------------------------------- /gendarme/tools/unsupported/typeref/typeref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/typeref/typeref.cs -------------------------------------------------------------------------------- /gendarme/tools/unsupported/typeref/typeref.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/typeref/typeref.csproj -------------------------------------------------------------------------------- /gendarme/tools/unsupported/xmldoc2wiki/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/xmldoc2wiki/ChangeLog -------------------------------------------------------------------------------- /gendarme/tools/unsupported/xmldoc2wiki/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/xmldoc2wiki/Makefile.am -------------------------------------------------------------------------------- /gendarme/tools/unsupported/xmldoc2wiki/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/xmldoc2wiki/README -------------------------------------------------------------------------------- /gendarme/tools/unsupported/xmldoc2wiki/xmldoc2wiki.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/xmldoc2wiki/xmldoc2wiki.cs -------------------------------------------------------------------------------- /gendarme/tools/unsupported/xmldoc2wiki/xmldoc2wiki.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/tools/unsupported/xmldoc2wiki/xmldoc2wiki.csproj -------------------------------------------------------------------------------- /gendarme/unit-test.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/unit-test.list -------------------------------------------------------------------------------- /gendarme/wix/Bitmaps/bannrbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/Bitmaps/bannrbmp.bmp -------------------------------------------------------------------------------- /gendarme/wix/Bitmaps/dlgbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/Bitmaps/dlgbmp.bmp -------------------------------------------------------------------------------- /gendarme/wix/Bitmaps/gendarme.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/Bitmaps/gendarme.ico -------------------------------------------------------------------------------- /gendarme/wix/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/ChangeLog -------------------------------------------------------------------------------- /gendarme/wix/Libraries/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/Libraries/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /gendarme/wix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/Makefile.am -------------------------------------------------------------------------------- /gendarme/wix/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/Product.wxs -------------------------------------------------------------------------------- /gendarme/wix/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/license.rtf -------------------------------------------------------------------------------- /gendarme/wix/wix.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gendarme/wix/wix.wixproj -------------------------------------------------------------------------------- /gsharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/.gitignore -------------------------------------------------------------------------------- /gsharp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/AssemblyInfo.cs -------------------------------------------------------------------------------- /gsharp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/ChangeLog -------------------------------------------------------------------------------- /gsharp/DescribeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/DescribeType.cs -------------------------------------------------------------------------------- /gsharp/InteractiveGraphicsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/InteractiveGraphicsBase.cs -------------------------------------------------------------------------------- /gsharp/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/Main.cs -------------------------------------------------------------------------------- /gsharp/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/MainWindow.cs -------------------------------------------------------------------------------- /gsharp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/Makefile.am -------------------------------------------------------------------------------- /gsharp/Mono.CSharp.Gui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/Mono.CSharp.Gui.csproj -------------------------------------------------------------------------------- /gsharp/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/Options.cs -------------------------------------------------------------------------------- /gsharp/ProcessSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/ProcessSelector.cs -------------------------------------------------------------------------------- /gsharp/Shell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/Shell.cs -------------------------------------------------------------------------------- /gsharp/SysDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/SysDrawing.cs -------------------------------------------------------------------------------- /gsharp/TypeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/TypeView.cs -------------------------------------------------------------------------------- /gsharp/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/close.png -------------------------------------------------------------------------------- /gsharp/gsharp.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gsharp.desktop.in -------------------------------------------------------------------------------- /gsharp/gsharp.exe.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gsharp.exe.config.in -------------------------------------------------------------------------------- /gsharp/gsharp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gsharp.in -------------------------------------------------------------------------------- /gsharp/gsharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gsharp.sln -------------------------------------------------------------------------------- /gsharp/gtk-gui/Mono.CSharp.Gui.DescribeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gtk-gui/Mono.CSharp.Gui.DescribeType.cs -------------------------------------------------------------------------------- /gsharp/gtk-gui/Mono.CSharp.Gui.MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gtk-gui/Mono.CSharp.Gui.MainWindow.cs -------------------------------------------------------------------------------- /gsharp/gtk-gui/Mono.CSharp.Gui.ProcessSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gtk-gui/Mono.CSharp.Gui.ProcessSelector.cs -------------------------------------------------------------------------------- /gsharp/gtk-gui/generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gtk-gui/generated.cs -------------------------------------------------------------------------------- /gsharp/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /gsharp/outline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gsharp/outline.cs -------------------------------------------------------------------------------- /gui-compare/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/AssemblyInfo.cs -------------------------------------------------------------------------------- /gui-compare/CecilMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/CecilMetadata.cs -------------------------------------------------------------------------------- /gui-compare/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/ChangeLog -------------------------------------------------------------------------------- /gui-compare/CompareContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/CompareContext.cs -------------------------------------------------------------------------------- /gui-compare/CompareWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/CompareWindow.cs -------------------------------------------------------------------------------- /gui-compare/Comparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/Comparison.cs -------------------------------------------------------------------------------- /gui-compare/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/Config.cs -------------------------------------------------------------------------------- /gui-compare/CustomCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/CustomCompare.cs -------------------------------------------------------------------------------- /gui-compare/InfoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/InfoManager.cs -------------------------------------------------------------------------------- /gui-compare/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/Main.cs -------------------------------------------------------------------------------- /gui-compare/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/MainWindow.cs -------------------------------------------------------------------------------- /gui-compare/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/Makefile.am -------------------------------------------------------------------------------- /gui-compare/Makefile.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/Makefile.include -------------------------------------------------------------------------------- /gui-compare/MasterMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/MasterMetadata.cs -------------------------------------------------------------------------------- /gui-compare/Masterinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/Masterinfo.cs -------------------------------------------------------------------------------- /gui-compare/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/Metadata.cs -------------------------------------------------------------------------------- /gui-compare/ProviderSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/ProviderSelector.cs -------------------------------------------------------------------------------- /gui-compare/cm/c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/c.gif -------------------------------------------------------------------------------- /gui-compare/cm/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/d.gif -------------------------------------------------------------------------------- /gui-compare/cm/e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/e.gif -------------------------------------------------------------------------------- /gui-compare/cm/en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/en.gif -------------------------------------------------------------------------------- /gui-compare/cm/f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/f.gif -------------------------------------------------------------------------------- /gui-compare/cm/i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/i.gif -------------------------------------------------------------------------------- /gui-compare/cm/m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/m.gif -------------------------------------------------------------------------------- /gui-compare/cm/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/mn.png -------------------------------------------------------------------------------- /gui-compare/cm/n.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/n.gif -------------------------------------------------------------------------------- /gui-compare/cm/p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/p.gif -------------------------------------------------------------------------------- /gui-compare/cm/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/r.gif -------------------------------------------------------------------------------- /gui-compare/cm/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/s.gif -------------------------------------------------------------------------------- /gui-compare/cm/sc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/sc.gif -------------------------------------------------------------------------------- /gui-compare/cm/se.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/se.gif -------------------------------------------------------------------------------- /gui-compare/cm/sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/sm.gif -------------------------------------------------------------------------------- /gui-compare/cm/st.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/st.gif -------------------------------------------------------------------------------- /gui-compare/cm/sx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/sx.gif -------------------------------------------------------------------------------- /gui-compare/cm/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/tb.gif -------------------------------------------------------------------------------- /gui-compare/cm/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/tm.gif -------------------------------------------------------------------------------- /gui-compare/cm/tp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/tp.gif -------------------------------------------------------------------------------- /gui-compare/cm/w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/w.gif -------------------------------------------------------------------------------- /gui-compare/cm/y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/cm/y.gif -------------------------------------------------------------------------------- /gui-compare/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/config.make -------------------------------------------------------------------------------- /gui-compare/driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/driver.cs -------------------------------------------------------------------------------- /gui-compare/gtk-gui/GuiCompare.CustomCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gtk-gui/GuiCompare.CustomCompare.cs -------------------------------------------------------------------------------- /gui-compare/gtk-gui/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gtk-gui/MainWindow.cs -------------------------------------------------------------------------------- /gui-compare/gtk-gui/generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gtk-gui/generated.cs -------------------------------------------------------------------------------- /gui-compare/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /gui-compare/gtk-gui/guicompare.ProviderSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gtk-gui/guicompare.ProviderSelector.cs -------------------------------------------------------------------------------- /gui-compare/gtk-gui/objects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gtk-gui/objects.xml -------------------------------------------------------------------------------- /gui-compare/gui-compare.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gui-compare.csproj -------------------------------------------------------------------------------- /gui-compare/gui-compare.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gui-compare.in -------------------------------------------------------------------------------- /gui-compare/gui-compare.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gui-compare.make -------------------------------------------------------------------------------- /gui-compare/gui-compare.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gui-compare.mdp -------------------------------------------------------------------------------- /gui-compare/gui-compare.mds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/gui-compare.mds -------------------------------------------------------------------------------- /gui-compare/rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/gui-compare/rules.make -------------------------------------------------------------------------------- /ilcontrast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/.gitignore -------------------------------------------------------------------------------- /ilcontrast/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/Application.cs -------------------------------------------------------------------------------- /ilcontrast/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/ChangeLog -------------------------------------------------------------------------------- /ilcontrast/ComparisonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/ComparisonInfo.cs -------------------------------------------------------------------------------- /ilcontrast/Global.cs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/Global.cs.in -------------------------------------------------------------------------------- /ilcontrast/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/Makefile.am -------------------------------------------------------------------------------- /ilcontrast/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/Window.cs -------------------------------------------------------------------------------- /ilcontrast/deploy.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/deploy.tar -------------------------------------------------------------------------------- /ilcontrast/ilcontrast.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/ilcontrast.desktop.in -------------------------------------------------------------------------------- /ilcontrast/ilcontrast.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/ilcontrast.in -------------------------------------------------------------------------------- /ilcontrast/ilcontrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/ilcontrast.png -------------------------------------------------------------------------------- /ilcontrast/mono-api-diff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/mono-api-diff.cs -------------------------------------------------------------------------------- /ilcontrast/mono-api-info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/mono-api-info.cs -------------------------------------------------------------------------------- /ilcontrast/mono-api.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/ilcontrast/mono-api.xsl -------------------------------------------------------------------------------- /minvoke/.gitignore: -------------------------------------------------------------------------------- 1 | minvoke 2 | 3 | -------------------------------------------------------------------------------- /minvoke/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/minvoke/Makefile.am -------------------------------------------------------------------------------- /minvoke/MapAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/minvoke/MapAssembly.cs -------------------------------------------------------------------------------- /minvoke/MapDllImportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/minvoke/MapDllImportAttribute.cs -------------------------------------------------------------------------------- /minvoke/RetargetAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/minvoke/RetargetAssembly.cs -------------------------------------------------------------------------------- /minvoke/minvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/minvoke/minvoke.cs -------------------------------------------------------------------------------- /minvoke/minvoke.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/minvoke/minvoke.in -------------------------------------------------------------------------------- /mono-tools.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mono-tools.spec.in -------------------------------------------------------------------------------- /mperfmon/.gitignore: -------------------------------------------------------------------------------- 1 | mperfmon -------------------------------------------------------------------------------- /mperfmon/AddSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/AddSet.cs -------------------------------------------------------------------------------- /mperfmon/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/AssemblyInfo.cs -------------------------------------------------------------------------------- /mperfmon/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/ChangeLog -------------------------------------------------------------------------------- /mperfmon/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/Config.cs -------------------------------------------------------------------------------- /mperfmon/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/Main.cs -------------------------------------------------------------------------------- /mperfmon/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/MainWindow.cs -------------------------------------------------------------------------------- /mperfmon/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/Makefile.am -------------------------------------------------------------------------------- /mperfmon/NewCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/NewCounter.cs -------------------------------------------------------------------------------- /mperfmon/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/Preferences.cs -------------------------------------------------------------------------------- /mperfmon/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/config -------------------------------------------------------------------------------- /mperfmon/gtk-gui/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/gtk-gui/MainWindow.cs -------------------------------------------------------------------------------- /mperfmon/gtk-gui/generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/gtk-gui/generated.cs -------------------------------------------------------------------------------- /mperfmon/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /mperfmon/gtk-gui/mperfmon.AddSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/gtk-gui/mperfmon.AddSet.cs -------------------------------------------------------------------------------- /mperfmon/gtk-gui/mperfmon.NewCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/gtk-gui/mperfmon.NewCounter.cs -------------------------------------------------------------------------------- /mperfmon/gtk-gui/mperfmon.Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/gtk-gui/mperfmon.Preferences.cs -------------------------------------------------------------------------------- /mperfmon/mperfmon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/mperfmon.1 -------------------------------------------------------------------------------- /mperfmon/mperfmon.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/mperfmon/mperfmon.in -------------------------------------------------------------------------------- /po/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/.cvsignore -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- 1 | *.gmo 2 | POTFILES -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/README -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/da.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /webcompare/App_Code/CompareParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/App_Code/CompareParameters.cs -------------------------------------------------------------------------------- /webcompare/App_Code/NodeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/App_Code/NodeUtils.cs -------------------------------------------------------------------------------- /webcompare/App_Code/StatusPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/App_Code/StatusPage.cs -------------------------------------------------------------------------------- /webcompare/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/ChangeLog -------------------------------------------------------------------------------- /webcompare/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/INSTALL -------------------------------------------------------------------------------- /webcompare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/Makefile -------------------------------------------------------------------------------- /webcompare/Web.config-EDITME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/Web.config-EDITME -------------------------------------------------------------------------------- /webcompare/db/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/AssemblyResolver.cs -------------------------------------------------------------------------------- /webcompare/db/DataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/DataAccess.cs -------------------------------------------------------------------------------- /webcompare/db/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/Makefile -------------------------------------------------------------------------------- /webcompare/db/MySqlDataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/MySqlDataAccess.cs -------------------------------------------------------------------------------- /webcompare/db/createdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/createdb.sql -------------------------------------------------------------------------------- /webcompare/db/update-moonlight-20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/update-moonlight-20.sh -------------------------------------------------------------------------------- /webcompare/db/update-moonlight-30.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/update-moonlight-30.sh -------------------------------------------------------------------------------- /webcompare/db/update-webcompare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/update-webcompare.sh -------------------------------------------------------------------------------- /webcompare/db/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/web.config -------------------------------------------------------------------------------- /webcompare/db/webcompare-db.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/webcompare-db.cs -------------------------------------------------------------------------------- /webcompare/db/webcompare-db.exe.config-EDITME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/db/webcompare-db.exe.config-EDITME -------------------------------------------------------------------------------- /webcompare/images/c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/c.gif -------------------------------------------------------------------------------- /webcompare/images/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/collapse.gif -------------------------------------------------------------------------------- /webcompare/images/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/d.gif -------------------------------------------------------------------------------- /webcompare/images/e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/e.gif -------------------------------------------------------------------------------- /webcompare/images/en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/en.gif -------------------------------------------------------------------------------- /webcompare/images/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/expand.gif -------------------------------------------------------------------------------- /webcompare/images/f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/f.gif -------------------------------------------------------------------------------- /webcompare/images/header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/header-logo.png -------------------------------------------------------------------------------- /webcompare/images/i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/i.gif -------------------------------------------------------------------------------- /webcompare/images/m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/m.gif -------------------------------------------------------------------------------- /webcompare/images/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/mn.png -------------------------------------------------------------------------------- /webcompare/images/n.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/n.gif -------------------------------------------------------------------------------- /webcompare/images/noexpand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/noexpand.gif -------------------------------------------------------------------------------- /webcompare/images/p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/p.gif -------------------------------------------------------------------------------- /webcompare/images/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/r.gif -------------------------------------------------------------------------------- /webcompare/images/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/s.gif -------------------------------------------------------------------------------- /webcompare/images/sc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/sc.gif -------------------------------------------------------------------------------- /webcompare/images/se.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/se.gif -------------------------------------------------------------------------------- /webcompare/images/sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/sm.gif -------------------------------------------------------------------------------- /webcompare/images/st.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/st.gif -------------------------------------------------------------------------------- /webcompare/images/sx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/sx.gif -------------------------------------------------------------------------------- /webcompare/images/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/tb.gif -------------------------------------------------------------------------------- /webcompare/images/tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/tm.gif -------------------------------------------------------------------------------- /webcompare/images/tp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/tp.gif -------------------------------------------------------------------------------- /webcompare/images/w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/w.gif -------------------------------------------------------------------------------- /webcompare/images/y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/images/y.gif -------------------------------------------------------------------------------- /webcompare/index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/index.aspx -------------------------------------------------------------------------------- /webcompare/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/main.css -------------------------------------------------------------------------------- /webcompare/status.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webcompare/status.aspx -------------------------------------------------------------------------------- /webdoc/.gitignore: -------------------------------------------------------------------------------- 1 | mdocimages 2 | -------------------------------------------------------------------------------- /webdoc/App_Code/Plugins/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/App_Code/Plugins/Plugin.cs -------------------------------------------------------------------------------- /webdoc/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/Global.asax -------------------------------------------------------------------------------- /webdoc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/Makefile.am -------------------------------------------------------------------------------- /webdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/README.md -------------------------------------------------------------------------------- /webdoc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/TODO -------------------------------------------------------------------------------- /webdoc/api.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/api.master -------------------------------------------------------------------------------- /webdoc/index.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/index.aspx -------------------------------------------------------------------------------- /webdoc/monodoc.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/monodoc.ashx -------------------------------------------------------------------------------- /webdoc/monodoc.css: -------------------------------------------------------------------------------- 1 | /*This file is referenced in monodoc 2 | -------------------------------------------------------------------------------- /webdoc/plugins.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins.def -------------------------------------------------------------------------------- /webdoc/plugins/iframe-plugin/iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/iframe-plugin/iframe.js -------------------------------------------------------------------------------- /webdoc/plugins/search-plugin/fastsearch/fsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/search-plugin/fastsearch/fsearch.css -------------------------------------------------------------------------------- /webdoc/plugins/search-plugin/fastsearch/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/search-plugin/fastsearch/search.js -------------------------------------------------------------------------------- /webdoc/plugins/search-plugin/fullsearch/fullsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/search-plugin/fullsearch/fullsearch.js -------------------------------------------------------------------------------- /webdoc/plugins/search-plugin/fullsearch/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/search-plugin/fullsearch/search.css -------------------------------------------------------------------------------- /webdoc/plugins/search-plugin/fullsearch/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/search-plugin/fullsearch/search.html -------------------------------------------------------------------------------- /webdoc/plugins/search-plugin/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/search-plugin/images/spinner.gif -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/ptree/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/ptree/tree.css -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/ptree/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/ptree/tree.js -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/xtree/images/I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/xtree/images/I.png -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/xtree/images/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/xtree/images/L.png -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/xtree/images/T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/xtree/images/T.png -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/xtree/xloadtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/xtree/xloadtree.js -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/xtree/xmlextras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/xtree/xmlextras.js -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/xtree/xtree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/xtree/xtree.css -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/dependencies/xtree/xtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/dependencies/xtree/xtree.js -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/make-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/make-tree.js -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/sidebar.css -------------------------------------------------------------------------------- /webdoc/plugins/sidebar-plugin/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/sidebar-plugin/sidebar.js -------------------------------------------------------------------------------- /webdoc/plugins/tooltip-plugin/bootstrap.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/plugins/tooltip-plugin/bootstrap.tooltip.js -------------------------------------------------------------------------------- /webdoc/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /webdoc/skins/mono-external/common-extension.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/common-extension.css -------------------------------------------------------------------------------- /webdoc/skins/mono-external/footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /webdoc/skins/mono-external/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/header.html -------------------------------------------------------------------------------- /webdoc/skins/mono-external/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/images/link.png -------------------------------------------------------------------------------- /webdoc/skins/mono-external/images/mono-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/images/mono-logo.png -------------------------------------------------------------------------------- /webdoc/skins/mono-external/images/mono_logo_g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/images/mono_logo_g.gif -------------------------------------------------------------------------------- /webdoc/skins/mono-external/images/native-browser-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/images/native-browser-icon.png -------------------------------------------------------------------------------- /webdoc/skins/mono-external/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/images/print.png -------------------------------------------------------------------------------- /webdoc/skins/mono-external/images/slide-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/images/slide-toggle.png -------------------------------------------------------------------------------- /webdoc/skins/mono-external/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/skins/mono-external/images/spinner.gif -------------------------------------------------------------------------------- /webdoc/views/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/views/common.css -------------------------------------------------------------------------------- /webdoc/views/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/views/common.js -------------------------------------------------------------------------------- /webdoc/views/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/views/images/favicon.ico -------------------------------------------------------------------------------- /webdoc/views/images/native-browser-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/views/images/native-browser-icon.png -------------------------------------------------------------------------------- /webdoc/views/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/views/reset.css -------------------------------------------------------------------------------- /webdoc/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/webdoc/web.config -------------------------------------------------------------------------------- /windoc/WinDoc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc.sln -------------------------------------------------------------------------------- /windoc/WinDoc/AnimatedTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/AnimatedTreeNode.cs -------------------------------------------------------------------------------- /windoc/WinDoc/BookmarkEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/BookmarkEditor.Designer.cs -------------------------------------------------------------------------------- /windoc/WinDoc/BookmarkEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/BookmarkEditor.cs -------------------------------------------------------------------------------- /windoc/WinDoc/BookmarkEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/BookmarkEditor.resx -------------------------------------------------------------------------------- /windoc/WinDoc/BookmarkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/BookmarkManager.cs -------------------------------------------------------------------------------- /windoc/WinDoc/CustomDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/CustomDrawing.cs -------------------------------------------------------------------------------- /windoc/WinDoc/DocTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/DocTools.cs -------------------------------------------------------------------------------- /windoc/WinDoc/IndexSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/IndexSearcher.cs -------------------------------------------------------------------------------- /windoc/WinDoc/IndexUpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/IndexUpdateManager.cs -------------------------------------------------------------------------------- /windoc/WinDoc/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/Logger.cs -------------------------------------------------------------------------------- /windoc/WinDoc/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/MainWindow.Designer.cs -------------------------------------------------------------------------------- /windoc/WinDoc/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/MainWindow.cs -------------------------------------------------------------------------------- /windoc/WinDoc/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/MainWindow.resx -------------------------------------------------------------------------------- /windoc/WinDoc/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/Options.cs -------------------------------------------------------------------------------- /windoc/WinDoc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/Program.cs -------------------------------------------------------------------------------- /windoc/WinDoc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /windoc/WinDoc/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /windoc/WinDoc/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/Properties/Resources.resx -------------------------------------------------------------------------------- /windoc/WinDoc/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /windoc/WinDoc/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/Properties/Settings.settings -------------------------------------------------------------------------------- /windoc/WinDoc/ResultDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/ResultDataSet.cs -------------------------------------------------------------------------------- /windoc/WinDoc/SearchTextBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/SearchTextBox.Designer.cs -------------------------------------------------------------------------------- /windoc/WinDoc/SearchTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/SearchTextBox.cs -------------------------------------------------------------------------------- /windoc/WinDoc/SearchTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/SearchTextBox.resx -------------------------------------------------------------------------------- /windoc/WinDoc/UIUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/UIUtils.cs -------------------------------------------------------------------------------- /windoc/WinDoc/UrlLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/UrlLauncher.cs -------------------------------------------------------------------------------- /windoc/WinDoc/WinDoc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/WinDoc.csproj -------------------------------------------------------------------------------- /windoc/WinDoc/data/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/add.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/back.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/book.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/book_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/book_add.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/book_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/book_delete.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/book_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/book_edit.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/cog.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/delete.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/find.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/forward.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc.icns -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc.ico -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/class.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/delegate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/delegate.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/empty.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/enumeration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/enumeration.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/event.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/extension.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/field.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/interface.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/members.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/method.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/namespace.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/property.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/monodoc/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/monodoc/structure.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame0.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame1.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame10.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame11.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame2.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame3.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame4.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame5.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame6.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame7.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame8.png -------------------------------------------------------------------------------- /windoc/WinDoc/data/spinner/Frame9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/data/spinner/Frame9.png -------------------------------------------------------------------------------- /windoc/WinDoc/history.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/history.cs -------------------------------------------------------------------------------- /windoc/WinDoc/lib/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/lib/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /windoc/WinDoc/lib/monodoc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/lib/monodoc.dll -------------------------------------------------------------------------------- /windoc/WinDoc/monodoc.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/monodoc.dll.config -------------------------------------------------------------------------------- /windoc/WinDoc/monodoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/mono-tools/HEAD/windoc/WinDoc/monodoc.ico --------------------------------------------------------------------------------