Skip to content

Commit

Permalink
Update Config & Installer for master branch (DynamoDS#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZiyunShang authored and AndyDu1985 committed Apr 29, 2019
1 parent bd81112 commit cf255b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Config/CS.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<RevitVersionNumber Condition=" '$(RevitVersionNumber)' == '' ">2020</RevitVersionNumber>
<RevitVersionNumber Condition=" '$(RevitVersionNumber)' == '' ">Preview Release</RevitVersionNumber>
<OutputPath Condition=" '$(OutputPath)' == '' ">$(SolutionDir)..\bin\$(Platform)\$(Configuration)</OutputPath>
<NunitPath Condition=" '$(NunitPath)' == '' ">$(SolutionDir)..\lib\NUnit</NunitPath>
<REVITAPI Condition=" '$(REVITAPI)' == '' ">$(SolutionDir)..\lib\Revit $(RevitVersionNumber)\net47</REVITAPI>
Expand All @@ -21,7 +21,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<RevitVersionNumber Condition=" '$(RevitVersionNumber)' == '' ">2020</RevitVersionNumber>
<RevitVersionNumber Condition=" '$(RevitVersionNumber)' == '' ">Preview Release</RevitVersionNumber>
<OutputPath Condition=" '$(OutputPath)' == '' ">$(SolutionDir)..\bin\$(Platform)\$(Configuration)</OutputPath>
<NunitPath Condition=" '$(NunitPath)' == '' ">$(SolutionDir)..\lib\NUnit</NunitPath>
<REVITAPI Condition=" '$(REVITAPI)' == '' ">$(SolutionDir)..\lib\Revit $(RevitVersionNumber)\net47</REVITAPI>
Expand Down
2 changes: 1 addition & 1 deletion src/Framework/Runner/RunnerSetupData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static IList<RevitProduct> FindRevit()
//might return Unknown version.
//if (products.Any())
//{
// products = products.Where(x => x.Version == RevitVersion.Revit2015 || x.Version==RevitVersion.Revit2016 || x.Version==RevitVersion.Revit2017 || x.Version==RevitVersion.Revit2018 || x.Version==RevitVersion.Revit2019 || x.Version==RevitVersion.Revit2020).ToList();
// products = products.Where(x => x.Version == RevitVersion.Revit2015 || x.Version==RevitVersion.Revit2016 || x.Version==RevitVersion.Revit2017 || x.Version==RevitVersion.Revit2018 || x.Version==RevitVersion.Revit2019 || x.Version==RevitVersion.Revit2020 || x.Version==RevitVersion.Revit Preview Release).ToList();
//}

return products;
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions tools/RTFInstaller.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Revit Test Framework"
#define MyAppVersion "2020"
#define MyAppVersion "Preview Release"
#define MyAppPublisher "Dynamo"
#define MyAppExeName "RevitTestFrameworkGUI.exe"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{CFEA4B42-27F7-444C-A802-4A65F0F9BB27}
AppId={{A6DA06E6-5DC3-4FF8-BAD7-77BC22C607BE}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
DefaultDirName={pf}\{#MyAppName}\2020
DefaultDirName={pf}\{#MyAppName}\Preview Release
DefaultGroupName={#MyAppName}
OutputBaseFilename=RevitTestFrameworkInstaller2020
OutputBaseFilename=RevitTestFrameworkInstallerPreview
Compression=lzma
SolidCompression=yes

Expand Down

0 comments on commit cf255b6

Please sign in to comment.