r299210 - clang-format vs plugin support for Visual Studio 2017
Hans Wennborg via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 31 05:50:43 PDT 2017
Author: hans
Date: Fri Mar 31 07:50:42 2017
New Revision: 299210
URL: http://llvm.org/viewvc/llvm-project?rev=299210&view=rev
Log:
clang-format vs plugin support for Visual Studio 2017
With the release of Visual Studio 2017, we need to at the very least
claim support for it in the current manifest file. With the changes
introducted in this patch we can install the extension again, but a
warning message will be shown stating that it's not supported
(https://twitter.com/parsley72/status/846558416751411200).
To get the rid of the warning more work is necessary, as VS 2017 changed
some things about extensions, see more here:
https://docs.microsoft.com/en-us/visualstudio/extensibility/how-to-migrate-extensibility-projects-to-visual-studio-2017.
While working on those changes, it has been suggested in the
mail list that this first patch is integrated in the meantime.
Patch by Hugo Puhlmann!
Differential Revision: https://reviews.llvm.org/D31522
Modified:
cfe/trunk/tools/clang-format-vs/source.extension.vsixmanifest.in
Modified: cfe/trunk/tools/clang-format-vs/source.extension.vsixmanifest.in
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/clang-format-vs/source.extension.vsixmanifest.in?rev=299210&r1=299209&r2=299210&view=diff
==============================================================================
--- cfe/trunk/tools/clang-format-vs/source.extension.vsixmanifest.in (original)
+++ cfe/trunk/tools/clang-format-vs/source.extension.vsixmanifest.in Fri Mar 31 07:50:42 2017
@@ -22,6 +22,9 @@
<VisualStudio Version="14.0">
<Edition>Pro</Edition>
</VisualStudio>
+ <VisualStudio Version="15.0">
+ <Edition>Pro</Edition>
+ </VisualStudio>
</SupportedProducts>
<SupportedFrameworkRuntimeEdition MinVersion="4.0" MaxVersion="4.0" />
</Identifier>
More information about the cfe-commits
mailing list