Adjust MSIs for Dev and Production channels (#43)

This commit is contained in:
Marcus Markiewicz 2021-07-26 17:34:32 -04:00 коммит произвёл GitHub
Родитель 5135fb78f3
Коммит ed1a18772f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 6 добавлений и 6 удалений

2
.github/workflows/CD.yml поставляемый
Просмотреть файл

@ -6,9 +6,7 @@ on:
- '*'
jobs:
build:
strategy:
matrix:
channel: [Dev, Production]

Просмотреть файл

@ -3,10 +3,12 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<Channel Condition=" '$(Configuration)' == 'Debug' ">Dev</Channel>
<Channel Condition=" '$(Configuration)' == 'Release' ">Production</Channel>
<ProductVersion>3.10</ProductVersion>
<ProjectGuid>d8f90795-e254-441c-b231-d4611e574915</ProjectGuid>
<SchemaVersion>2.0</SchemaVersion>
<OutputName>Microsoft.Tools.TeamMate</OutputName>
<OutputName>Microsoft.Tools.TeamMate.$(Channel)</OutputName>
<OutputType>Package</OutputType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
@ -18,6 +20,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<SuppressIces>ICE38</SuppressIces>
</PropertyGroup>
<ItemGroup>
<Compile Include="Product.wxs" />

Просмотреть файл

@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="TeamMate" Language="1033" Version="1.0.0.0" Manufacturer="https://github.com/microsoft/teammate" UpgradeCode="df0aeb4a-f671-4641-af7f-9629a80544d5">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<Product Id="*" Name="TeamMate" Language="1033" Version="2.1.21106.0" Manufacturer="https://github.com/microsoft/teammate" UpgradeCode="df0aeb4a-f671-4641-af7f-9629a80544d5">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perUser" />
<Icon Id="TeamMate.ico" SourceFile=".\TeamMate.ico"/>
<Property Id="ARPPRODUCTICON" Value="TeamMate.ico" />