diff options
author | Antonio Maiorano <amaiorano@gmail.com> | 2017-04-05 14:13:45 +0000 |
---|---|---|
committer | Antonio Maiorano <amaiorano@gmail.com> | 2017-04-05 14:13:45 +0000 |
commit | a16ab5aee5264a10c651db1804f84ded7a5828ea (patch) | |
tree | f7cba399a476df5fb7c390f707113fa16f0cff6a /clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj | |
parent | b2f1621bb1edf6f054fdc0b5e2771dfdd79ca87a (diff) | |
download | bcm5719-llvm-a16ab5aee5264a10c651db1804f84ded7a5828ea.tar.gz bcm5719-llvm-a16ab5aee5264a10c651db1804f84ded7a5828ea.zip |
clang-format-vsix: Add "Format on Save" feature
This change adds a feature to the clang-format VS extension that optionally
enables the automatic formatting of documents when saving. Since developers
always need to save their files, this eases the workflow of making sure source
files are properly formatted.
Differential Revision: https://reviews.llvm.org/D29221
llvm-svn: 299543
Diffstat (limited to 'clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj')
-rw-r--r-- | clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj b/clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj index 5ce601d649b..db34a689d5d 100644 --- a/clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj +++ b/clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj @@ -214,6 +214,8 @@ </Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PkgCmdID.cs" />
+ <Compile Include="RunningDocTableEventsDispatcher.cs" />
+ <Compile Include="Vsix.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources.resx">
|