This repository has been archived by the owner on Apr 28, 2021. It is now read-only.
forked from llvm-mirror/clang
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix VS2015 build of clang-format-vsix by using NuGet to pull in requi…
…red assemblies Also added a gitignore to help track the right items to commit. Patch by Antonio Maiorano <amaiorano@gmail.com>! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@288393 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
5 changed files
with
138 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Visual Studio files | ||
.vs/ | ||
/packages/ | ||
/ClangFormat/obj/ | ||
/ClangFormat/bin/ | ||
|
||
# Generated and copied files | ||
/ClangFormat/Key.snk | ||
/ClangFormat/license.txt | ||
/ClangFormat/clang-format.exe | ||
/ClangFormat/source.extension.vsixmanifest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="VSSDK.CoreUtility" version="10.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.CoreUtility.10" version="10.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.DTE" version="7.0.3" targetFramework="net40" /> | ||
<package id="VSSDK.Editor" version="10.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.Editor.10" version="10.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.IDE" version="7.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.IDE.10" version="10.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.IDE.8" version="8.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.IDE.9" version="9.0.3" targetFramework="net40" /> | ||
<package id="VSSDK.OLE.Interop" version="7.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.Shell.10" version="10.0.3" targetFramework="net40" /> | ||
<package id="VSSDK.Shell.Immutable.10" version="10.0.3" targetFramework="net40" /> | ||
<package id="VSSDK.Shell.Interop" version="7.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.Shell.Interop.8" version="8.0.3" targetFramework="net40" /> | ||
<package id="VSSDK.Shell.Interop.9" version="9.0.3" targetFramework="net40" /> | ||
<package id="VSSDK.Text" version="10.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.Text.10" version="10.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.TextManager.Interop" version="7.0.4" targetFramework="net40" /> | ||
<package id="VSSDK.TextManager.Interop.8" version="8.0.4" targetFramework="net40" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters