add product version runtime parameter to MSI (#603)

* add product version runtime parameter

* add comment

Co-authored-by: Steve Lee <slee@microsoft.com>

Co-authored-by: Steve Lee <slee@microsoft.com>
This commit is contained in:
Tess Gauthier 2022-05-04 18:13:22 -04:00 committed by GitHub
parent cf06f991f9
commit ff6cfe6fdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">x64</Platform>
<ProductVersion>1.1.0</ProductVersion>
<!-- This ensures there is a default version if it is not defined as part of the release process with the actual product version -->
<ProductVersion Condition="'$(ProductVersion)' == ''">1.0.0</ProductVersion>
<OutputName>openssh</OutputName>
<OutputType>package</OutputType>
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>