-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed dynamic properties topic. - Fixed installer so that it runs the VSIX uninstalls first and then the installs to prevent later versions of the package uninstalling older packages that are installed first.
- Loading branch information
1 parent
f2a265d
commit 5fd011d
Showing
4 changed files
with
20 additions
and
17 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
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 |
---|---|---|
|
@@ -2,21 +2,21 @@ | |
// System : Sandcastle Guided Installation | ||
// File : AssemblyInfo.cs | ||
// Author : Eric Woodruff ([email protected]) | ||
// Updated : 12/28/2013 | ||
// Updated : 01/28/2017 | ||
// Compiler: Microsoft Visual C# | ||
// | ||
// Sandcastle Guided Installation application attributes. | ||
// | ||
// This code is published under the Microsoft Public License (Ms-PL). A copy of the license should be | ||
// distributed with the code. It can also be found at the project website: https://GitHub.com/EWSoftware/SHFB. This | ||
// distributed with the code and can be found at the project website: https://GitHub.com/EWSoftware/SHFB. This | ||
// notice and all copyright notices must remain intact in all applications, documentation, and source files. | ||
// | ||
// Version Date Who Comments | ||
// Date Who Comments | ||
// ============================================================================================================== | ||
// 1.0.0.0 02/05/2011 EFW Created the code | ||
// 1.1.0.0 03/05/2012 EFW Converted to use WPF | ||
// 1.1.0.1 10/06/2012 EFW Merged SHFB installer pages into the main project | ||
// ------- 12/28/2013 EFW Updated for use with the combined SHFB/Sandcastle tool set | ||
// 02/05/2011 EFW Created the code | ||
// 03/05/2012 EFW Converted to use WPF | ||
// 10/06/2012 EFW Merged SHFB installer pages into the main project | ||
// 12/28/2013 EFW Updated for use with the combined SHFB/Sandcastle tool set | ||
//=============================================================================================================== | ||
|
||
using System; | ||
|
@@ -25,7 +25,7 @@ | |
using System.Runtime.InteropServices; | ||
|
||
// Resources contained within the assembly are English | ||
[assembly: NeutralResourcesLanguageAttribute("en")] | ||
[assembly: NeutralResourcesLanguage("en")] | ||
|
||
// | ||
// General Information about an assembly is controlled through the following set of attributes. Change these | ||
|
@@ -37,7 +37,7 @@ | |
"tools needed to create a working setup to build help files with the Sandcastle Help File Builder and Tools.")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("Eric Woodruff")] | ||
[assembly: AssemblyCopyright("Copyright \xA9 2011-2013, Eric Woodruff, All Rights Reserved")] | ||
[assembly: AssemblyCopyright("Copyright \xA9 2011-2017, Eric Woodruff, All Rights Reserved")] | ||
[assembly: AssemblyTrademark("Eric Woodruff, All Rights Reserved")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
|
@@ -55,4 +55,4 @@ | |
// This versioning scheme allows build component and plug-in developers to use the same major, minor, and build | ||
// numbers as the Sandcastle Help File Builder to indicate with which version their components are compatible. | ||
// | ||
[assembly: AssemblyVersion("2013.12.28.0")] // NOTE: Update app.manifest with this version number when it changes | ||
[assembly: AssemblyVersion("2017.1.28.0")] // NOTE: Update app.manifest with this version number when it changes |
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