-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solution changes for multi-release building (#58)
* Solution changes for multi-release building * Add MSI installer, AIP file for Advanced Installer * Sign the MSI file * Update solution Use Visual Studio 2015 Remove extraneous configurations Co-authored-by: Harry Mattison <[email protected]>
- Loading branch information
1 parent
6885dda
commit 67395aa
Showing
8 changed files
with
223 additions
and
79 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 |
---|---|---|
@@ -1,25 +1,28 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 14 | ||
VisualStudioVersion = 14.0.25123.0 | ||
VisualStudioVersion = 14.0.25420.1 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RevitLookup", "RevitLookup.csproj", "{05C77115-2277-4DFC-8F95-BE37E5F1130F}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug (For Release build of Revit)|Any CPU = Debug (For Release build of Revit)|Any CPU | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
2019|Any CPU = 2019|Any CPU | ||
2020|Any CPU = 2020|Any CPU | ||
2021|Any CPU = 2021|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.Debug (For Release build of Revit)|Any CPU.ActiveCfg = Debug (For Release build of Revit)|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.Debug (For Release build of Revit)|Any CPU.Build.0 = Debug (For Release build of Revit)|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.2019|Any CPU.ActiveCfg = 2019|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.2019|Any CPU.Build.0 = 2019|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.2020|Any CPU.ActiveCfg = 2020|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.2020|Any CPU.Build.0 = 2020|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.2021|Any CPU.ActiveCfg = 2021|Any CPU | ||
{05C77115-2277-4DFC-8F95-BE37E5F1130F}.2021|Any CPU.Build.0 = 2021|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {CDC9D108-9880-46A7-B5BE-86ED4F593005} | ||
EndGlobalSection | ||
EndGlobal |
Binary file not shown.
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,2 @@ | ||
"C:\Program Files (x86)\Windows Kits\8.0\bin\x64\signtool.exe" sign /f "C:\Users\harry_000\Documents\Boost Your BIM\BoostYourBIM.pfx" /t "http://timestamp.comodoca.com/authenticode" /p %CodeSignPassword% /v *.msi | ||
pause |
Oops, something went wrong.