├── .editorconfig ├── .gitattributes ├── .gitignore ├── Build.proj ├── Build.tasks ├── BuildClean.cmd ├── BuildDebug.cmd ├── BuildRelease.cmd ├── License.md ├── NuGet.config ├── Readme.md ├── VSEssentials.sln ├── Version.xml ├── doc └── ContributorCovenant.md ├── snk ├── Community.pub └── Community.snk └── src ├── Common └── LocalizationHelper │ ├── LocalizationHelper.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── Sources │ ├── ILocalizationProvider.cs │ ├── LocalizableDescriptionAttribute.cs │ ├── LocalizableDisplayNameAttribute.cs │ └── LocalizationProvider.cs │ └── packages.config ├── Extensions ├── CommentFormatter │ ├── CommentFormatter.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResources.de-DE.resx │ │ ├── ExtensionResources.en-US.resx │ │ ├── Icon.png │ │ ├── Package.ico │ │ ├── PreviewImage.png │ │ ├── VSPackage.de-DE.resx │ │ └── VSPackage.en-US.resx │ ├── Sources │ │ ├── BooleanOptionConverter.cs │ │ ├── ClassificationFormatter.cs │ │ ├── ClassificationTypeDefinitions.cs │ │ ├── ClassificationTypeNames.cs │ │ ├── CommentFormatter.cs │ │ ├── CommentFormatterActions.cs │ │ ├── CommentFormatterGuids.cs │ │ ├── CommentFormatterLocalizationProvider.cs │ │ ├── CommentFormatterLocalizedResourceNames.cs │ │ ├── CommentFormatterOptionPage.cs │ │ ├── CommentFormatterOptions.cs │ │ ├── CommentFormatterPackage.cs │ │ ├── ContentTypeNames.cs │ │ ├── KnownClassificationTypeNames.cs │ │ ├── MultiLineCommentFormatDefinition.cs │ │ ├── MultiLineCommentTagger.cs │ │ ├── MultiLineCommentTaggerContext.cs │ │ ├── MultiLineCommentTaggerProvider.cs │ │ └── TextViewCreationListener.cs │ ├── app.config │ ├── de-DE │ │ ├── License.txt │ │ └── extension.vsixlangpack │ ├── en-US │ │ ├── License.txt │ │ └── ReleaseNotes.txt │ ├── packages.config │ └── source.extension.vsixmanifest ├── DocumentInsights │ ├── DocumentInsights.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResources.de-DE.resx │ │ ├── ExtensionResources.resx │ │ ├── Icon.png │ │ ├── Package.ico │ │ ├── PreviewImage.png │ │ ├── VSPackage.de-DE.resx │ │ └── VSPackage.resx │ ├── Sources │ │ ├── DocumentInsightsGuids.cs │ │ ├── DocumentInsightsMargin.cs │ │ ├── DocumentInsightsMarginProvider.cs │ │ ├── DocumentInsightsOptionPage.cs │ │ ├── DocumentInsightsOptions.cs │ │ ├── DocumentInsightsPackage.cs │ │ ├── DocumentInsightsView.xaml │ │ ├── DocumentInsightsView.xaml.cs │ │ ├── DocumentInsightsViewModel.cs │ │ ├── EncodingToStringConverter.cs │ │ ├── LocalLocalizationProvider.cs │ │ └── LocalLocalizationResourceNames.cs │ ├── app.config │ ├── de-DE │ │ ├── License.txt │ │ └── extension.vsixlangpack │ ├── en-US │ │ ├── License.txt │ │ └── ReleaseNotes.txt │ ├── packages.config │ └── source.extension.vsixmanifest ├── InsertGuidCommand │ ├── InsertGuidCommand.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── ExtensionResources.de-DE.resx │ │ ├── ExtensionResources.en-US.resx │ │ ├── Icon.png │ │ ├── Package.ico │ │ ├── VSPackage.de-DE.resx │ │ ├── VSPackage.de-DE.vsct │ │ ├── VSPackage.en-US.resx │ │ └── VSPackage.en-US.vsct │ ├── Sources │ │ ├── EnumOptionConverter.cs │ │ ├── GuidLetterCase.cs │ │ ├── GuidParenthesis.cs │ │ ├── InsertGuidCommandGuids.cs │ │ ├── InsertGuidCommandLocalizationProvider.cs │ │ ├── InsertGuidCommandLocalizedResourceNames.cs │ │ ├── InsertGuidCommandOptionPage.cs │ │ ├── InsertGuidCommandOptions.cs │ │ ├── InsertGuidCommandPackage.cs │ │ ├── InsertLastGuidCommand.cs │ │ └── InsertNewGuidCommand.cs │ ├── app.config │ ├── de-DE │ │ ├── License.txt │ │ └── extension.vsixlangpack │ ├── en-US │ │ ├── License.txt │ │ └── ReleaseNotes.txt │ ├── packages.config │ └── source.extension.vsixmanifest └── SemanticFormatter │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── ExtensionResources.de-DE.resx │ ├── ExtensionResources.resx │ ├── Icon.png │ ├── PreviewImage.png │ ├── VSPackage.de-DE.resx │ ├── VSPackage.ico │ └── VSPackage.resx │ ├── SemanticFormatter.csproj │ ├── Sources │ ├── ClassificationTypeDefinitions.cs │ ├── ClassificationTypeNames.cs │ ├── ContentTypeNames.cs │ ├── Empty.cs │ ├── ExtensionMethodIdentifierFormat.cs │ ├── FieldIdentifierFormatDefinition.cs │ ├── KnownClassificationTypeNames.cs │ ├── LocalLocalizationProvider.cs │ ├── LocalLocalizationResourceNames.cs │ ├── OrdinaryMethodIdentifierFormat.cs │ ├── OutputLogger.cs │ ├── SemanticFormatter.cs │ ├── SemanticFormatterContext.cs │ ├── SemanticFormatterGuids.cs │ ├── SemanticFormatterOptionPage.cs │ ├── SemanticFormatterOptions.cs │ ├── SemanticFormatterPackage.cs │ └── SemanticFormatterProvider.cs │ ├── app.config │ ├── de-DE │ ├── License.txt │ └── extension.vsixlangpack │ ├── en-US │ ├── License.txt │ └── ReleaseNotes.txt │ ├── packages.config │ └── source.extension.vsixmanifest └── Shared └── CommonAssemblyInfo.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/Build.proj -------------------------------------------------------------------------------- /Build.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/Build.tasks -------------------------------------------------------------------------------- /BuildClean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/BuildClean.cmd -------------------------------------------------------------------------------- /BuildDebug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/BuildDebug.cmd -------------------------------------------------------------------------------- /BuildRelease.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/BuildRelease.cmd -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/License.md -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/NuGet.config -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/Readme.md -------------------------------------------------------------------------------- /VSEssentials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/VSEssentials.sln -------------------------------------------------------------------------------- /Version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/Version.xml -------------------------------------------------------------------------------- /doc/ContributorCovenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/doc/ContributorCovenant.md -------------------------------------------------------------------------------- /snk/Community.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/snk/Community.pub -------------------------------------------------------------------------------- /snk/Community.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/snk/Community.snk -------------------------------------------------------------------------------- /src/Common/LocalizationHelper/LocalizationHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Common/LocalizationHelper/LocalizationHelper.csproj -------------------------------------------------------------------------------- /src/Common/LocalizationHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Common/LocalizationHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Common/LocalizationHelper/Sources/ILocalizationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Common/LocalizationHelper/Sources/ILocalizationProvider.cs -------------------------------------------------------------------------------- /src/Common/LocalizationHelper/Sources/LocalizableDescriptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Common/LocalizationHelper/Sources/LocalizableDescriptionAttribute.cs -------------------------------------------------------------------------------- /src/Common/LocalizationHelper/Sources/LocalizableDisplayNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Common/LocalizationHelper/Sources/LocalizableDisplayNameAttribute.cs -------------------------------------------------------------------------------- /src/Common/LocalizationHelper/Sources/LocalizationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Common/LocalizationHelper/Sources/LocalizationProvider.cs -------------------------------------------------------------------------------- /src/Common/LocalizationHelper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Common/LocalizationHelper/packages.config -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/CommentFormatter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/CommentFormatter.csproj -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Resources/ExtensionResources.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Resources/ExtensionResources.de-DE.resx -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Resources/ExtensionResources.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Resources/ExtensionResources.en-US.resx -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Resources/Icon.png -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Resources/Package.ico -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Resources/PreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Resources/PreviewImage.png -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Resources/VSPackage.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Resources/VSPackage.de-DE.resx -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Resources/VSPackage.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Resources/VSPackage.en-US.resx -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/BooleanOptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/BooleanOptionConverter.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/ClassificationFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/ClassificationFormatter.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/ClassificationTypeDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/ClassificationTypeDefinitions.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/ClassificationTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/ClassificationTypeNames.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/CommentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/CommentFormatter.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/CommentFormatterActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/CommentFormatterActions.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/CommentFormatterGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/CommentFormatterGuids.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/CommentFormatterLocalizationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/CommentFormatterLocalizationProvider.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/CommentFormatterLocalizedResourceNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/CommentFormatterLocalizedResourceNames.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/CommentFormatterOptionPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/CommentFormatterOptionPage.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/CommentFormatterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/CommentFormatterOptions.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/CommentFormatterPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/CommentFormatterPackage.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/ContentTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/ContentTypeNames.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/KnownClassificationTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/KnownClassificationTypeNames.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/MultiLineCommentFormatDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/MultiLineCommentFormatDefinition.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/MultiLineCommentTagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/MultiLineCommentTagger.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/MultiLineCommentTaggerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/MultiLineCommentTaggerContext.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/MultiLineCommentTaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/MultiLineCommentTaggerProvider.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/Sources/TextViewCreationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/Sources/TextViewCreationListener.cs -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/app.config -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/de-DE/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/de-DE/License.txt -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/de-DE/extension.vsixlangpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/de-DE/extension.vsixlangpack -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/en-US/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/en-US/License.txt -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/en-US/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/en-US/ReleaseNotes.txt -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/packages.config -------------------------------------------------------------------------------- /src/Extensions/CommentFormatter/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/CommentFormatter/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/DocumentInsights.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/DocumentInsights.csproj -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Resources/ExtensionResources.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Resources/ExtensionResources.de-DE.resx -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Resources/ExtensionResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Resources/ExtensionResources.resx -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Resources/Icon.png -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Resources/Package.ico -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Resources/PreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Resources/PreviewImage.png -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Resources/VSPackage.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Resources/VSPackage.de-DE.resx -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Resources/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Resources/VSPackage.resx -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsGuids.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsMargin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsMargin.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsMarginProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsMarginProvider.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsOptionPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsOptionPage.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsOptions.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsPackage.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsView.xaml -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsView.xaml.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/DocumentInsightsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/DocumentInsightsViewModel.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/EncodingToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/EncodingToStringConverter.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/LocalLocalizationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/LocalLocalizationProvider.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/Sources/LocalLocalizationResourceNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/Sources/LocalLocalizationResourceNames.cs -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/app.config -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/de-DE/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/de-DE/License.txt -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/de-DE/extension.vsixlangpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/de-DE/extension.vsixlangpack -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/en-US/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/en-US/License.txt -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/en-US/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/en-US/ReleaseNotes.txt -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/packages.config -------------------------------------------------------------------------------- /src/Extensions/DocumentInsights/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/DocumentInsights/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/InsertGuidCommand.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/InsertGuidCommand.csproj -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Resources/ExtensionResources.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Resources/ExtensionResources.de-DE.resx -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Resources/ExtensionResources.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Resources/ExtensionResources.en-US.resx -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Resources/Icon.png -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Resources/Package.ico -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Resources/VSPackage.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Resources/VSPackage.de-DE.resx -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Resources/VSPackage.de-DE.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Resources/VSPackage.de-DE.vsct -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Resources/VSPackage.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Resources/VSPackage.en-US.resx -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Resources/VSPackage.en-US.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Resources/VSPackage.en-US.vsct -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/EnumOptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/EnumOptionConverter.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/GuidLetterCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/GuidLetterCase.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/GuidParenthesis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/GuidParenthesis.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandGuids.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandLocalizationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandLocalizationProvider.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandLocalizedResourceNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandLocalizedResourceNames.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandOptionPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandOptionPage.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandOptions.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/InsertGuidCommandPackage.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/InsertLastGuidCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/InsertLastGuidCommand.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/Sources/InsertNewGuidCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/Sources/InsertNewGuidCommand.cs -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/app.config -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/de-DE/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/de-DE/License.txt -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/de-DE/extension.vsixlangpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/de-DE/extension.vsixlangpack -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/en-US/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/en-US/License.txt -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/en-US/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/en-US/ReleaseNotes.txt -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/packages.config -------------------------------------------------------------------------------- /src/Extensions/InsertGuidCommand/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/InsertGuidCommand/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Resources/ExtensionResources.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Resources/ExtensionResources.de-DE.resx -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Resources/ExtensionResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Resources/ExtensionResources.resx -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Resources/Icon.png -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Resources/PreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Resources/PreviewImage.png -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Resources/VSPackage.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Resources/VSPackage.de-DE.resx -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Resources/VSPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Resources/VSPackage.ico -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Resources/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Resources/VSPackage.resx -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/SemanticFormatter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/SemanticFormatter.csproj -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/ClassificationTypeDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/ClassificationTypeDefinitions.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/ClassificationTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/ClassificationTypeNames.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/ContentTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/ContentTypeNames.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/Empty.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/ExtensionMethodIdentifierFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/ExtensionMethodIdentifierFormat.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/FieldIdentifierFormatDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/FieldIdentifierFormatDefinition.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/KnownClassificationTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/KnownClassificationTypeNames.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/LocalLocalizationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/LocalLocalizationProvider.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/LocalLocalizationResourceNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/LocalLocalizationResourceNames.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/OrdinaryMethodIdentifierFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/OrdinaryMethodIdentifierFormat.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/OutputLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/OutputLogger.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/SemanticFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/SemanticFormatter.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/SemanticFormatterContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/SemanticFormatterContext.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/SemanticFormatterGuids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/SemanticFormatterGuids.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/SemanticFormatterOptionPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/SemanticFormatterOptionPage.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/SemanticFormatterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/SemanticFormatterOptions.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/SemanticFormatterPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/SemanticFormatterPackage.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/Sources/SemanticFormatterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/Sources/SemanticFormatterProvider.cs -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/app.config -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/de-DE/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/de-DE/License.txt -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/de-DE/extension.vsixlangpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/de-DE/extension.vsixlangpack -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/en-US/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/en-US/License.txt -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/en-US/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/en-US/ReleaseNotes.txt -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/packages.config -------------------------------------------------------------------------------- /src/Extensions/SemanticFormatter/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Extensions/SemanticFormatter/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Shared/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fschneidereit/VSEssentials/HEAD/src/Shared/CommonAssemblyInfo.cs --------------------------------------------------------------------------------