This repository was archived by the owner on Jul 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 153
Fix warnings showing in the wrong pane in Visual Studio 2015 #166
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
0c1060b
Interact with the SVsErrorList service instead of SVsTaskList
sharwell acab546
Use the correct interfaces when requesting services
sharwell 1e0abee
Update MSBuild references
sharwell 56e778f
Fix the Code Tools build and incorporate it into buildCC
sharwell 8ef6173
Remove unnecessary reference to MFC header afxres.h
sharwell df349bc
Updated path to tlbexp.exe
sharwell 27ebcaf
Update to use Visual Studio 2015 RTM build machines
sharwell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -7,7 +7,8 @@ | |
| // | ||
| // Generated from the TEXTINCLUDE 2 resource. | ||
| // | ||
| #include "afxres.h" | ||
| #include "WinResrc.h" | ||
| #define IDC_STATIC -1 | ||
|
|
||
| ///////////////////////////////////////////////////////////////////////////// | ||
| #undef APSTUDIO_READONLY_SYMBOLS | ||
|
|
@@ -34,7 +35,8 @@ END | |
|
|
||
| 2 TEXTINCLUDE | ||
| BEGIN | ||
| "#include ""afxres.h""\r\n" | ||
| "#include ""WinResrc.h""\r\n" | ||
| "#define IDC_STATIC -1\r\n" | ||
| "\0" | ||
| END | ||
|
|
||
|
|
@@ -44,7 +46,29 @@ BEGIN | |
| "#define VER_FILEDESCRIPTION_STR ""PropertyPage Package Resources\\0""\r\n" | ||
| "#define VER_INTERNALNAME_STR ""PropertyPageUI.dll\\0""\r\n" | ||
| "#define VER_ORIGINALFILENAME_STR ""PropertyPageUI.dll\\0""\r\n" | ||
| "#include ""EnvSdkVersion.ver""\r\n" | ||
| "VS_VERSION_INFO VERSIONINFO\r\n" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📝 The other option is creating the EnvSdkVersion.ver file with these contents. |
||
| "FILEVERSION 7,0,4,0\r\n" | ||
| "PRODUCTVERSION 7,1,1,0\r\n" | ||
| "BEGIN\r\n" | ||
| " BLOCK ""StringFileInfo""\r\n" | ||
| " BEGIN\r\n" | ||
| " BLOCK ""040904E4""\r\n" | ||
| " BEGIN\r\n" | ||
| " VALUE ""FileDescription"", VER_FILEDESCRIPTION_STR\r\n" | ||
| " VALUE ""FileVersion"", ""7.0.4.0\\0""\r\n" | ||
| " VALUE ""InternalName"", VER_INTERNALNAME_STR\r\n" | ||
| " VALUE ""LegalCopyright"", ""Copyright (C) Microsoft Corp.\\0""\r\n" | ||
| " VALUE ""OriginalFileName"", VER_ORIGINALFILENAME_STR\r\n" | ||
| " VALUE ""ProductName"", ""Microsoft Visual Studio Environment SDK\\0""\r\n" | ||
| " VALUE ""ProductVersion"", ""7.01.0001.0\\0""\r\n" | ||
| " END\r\n" | ||
| " END\r\n" | ||
| "\r\n" | ||
| " BLOCK ""VarFileInfo""\r\n" | ||
| " BEGIN\r\n" | ||
| " VALUE ""Translation"", 0x409, 1252\r\n" | ||
| " END\r\n" | ||
| "END\r\n" | ||
| "\0" | ||
| END | ||
|
|
||
|
|
@@ -84,7 +108,29 @@ END | |
| #define VER_FILEDESCRIPTION_STR "PropertyPage Package Resources\0" | ||
| #define VER_INTERNALNAME_STR "PropertyPageUI.dll\0" | ||
| #define VER_ORIGINALFILENAME_STR "PropertyPageUI.dll\0" | ||
| #include "EnvSdkVersion.ver" | ||
| VS_VERSION_INFO VERSIONINFO | ||
| FILEVERSION 7,0,4,0 | ||
| PRODUCTVERSION 7,1,1,0 | ||
| BEGIN | ||
| BLOCK "StringFileInfo" | ||
| BEGIN | ||
| BLOCK "040904E4" | ||
| BEGIN | ||
| VALUE "FileDescription", VER_FILEDESCRIPTION_STR | ||
| VALUE "FileVersion", "7.0.4.0\0" | ||
| VALUE "InternalName", VER_INTERNALNAME_STR | ||
| VALUE "LegalCopyright", "Copyright (C) Microsoft Corp.\0" | ||
| VALUE "OriginalFileName", VER_ORIGINALFILENAME_STR | ||
| VALUE "ProductName", "Microsoft Visual Studio Environment SDK\0" | ||
| VALUE "ProductVersion", "7.01.0001.0\0" | ||
| END | ||
| END | ||
|
|
||
| BLOCK "VarFileInfo" | ||
| BEGIN | ||
| VALUE "Translation", 0x409, 1252 | ||
| END | ||
| END | ||
|
|
||
| ///////////////////////////////////////////////////////////////////////////// | ||
| #endif // not APSTUDIO_INVOKED | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,4 +1,10 @@ | ||
| @echo off | ||
|
|
||
| cd Microsoft.VisualStudio.CodeTools\CodeToolsSetup | ||
| call buildMSM release | ||
| call export release | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 It would be better if the return codes from these calls were checked. It's not the only place where this type of check is omitted, but it does cause AppVeyor to report success even if the build fails. |
||
| cd ..\.. | ||
|
|
||
| cd Microsoft.Research\ManagedContract.Setup | ||
| call buildmsi %1 devlab9ts | ||
| call buildnuget %1 devlab9ts | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❓ Just curious what was the reason for this switch?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From the documentation for
ILocalRegistry2: