Merge in 'release/5.0' changes
This commit is contained in:
commit
d873bafc56
|
|
@ -18,6 +18,14 @@
|
|||
</ItemDefinitionGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(OutputType)' == 'package'">
|
||||
<!-- Set package version for SharedFx & TargetingPack wixproj's -->
|
||||
<!-- Everything built in those projects _except_ the final package & MSI are shipping assets. -->
|
||||
<_GeneratedPackageVersion>$(PackageVersion)</_GeneratedPackageVersion>
|
||||
<_GeneratedPackageVersion
|
||||
Condition="! $(PackageVersion.Contains('$(_PreReleaseLabel)'))">$(PackageVersion)-$(_PreReleaseLabel)$(_BuildNumberLabels)</_GeneratedPackageVersion>
|
||||
<!-- Insert PackageVersion into OutputName for SharedFx & TargetingPack -->
|
||||
<OutputName Condition="'$(OutputNamePrefix)' != '' AND '$(OutputNameSuffix)' != ''">$(OutputNamePrefix)$(_GeneratedPackageVersion)$(OutputNameSuffix)</OutputName>
|
||||
|
||||
<EmbedCab Condition="'$(EmbedCab)' == ''">yes</EmbedCab>
|
||||
<Cabinet Condition="'$(Cabinet)' == ''">$(OutputName.Replace('-', '_')).cab</Cabinet>
|
||||
<InstallDir>$(ProductName)</InstallDir>
|
||||
|
|
@ -25,14 +33,6 @@
|
|||
<DefineConstants Condition="'$(Configuration)' == 'Debug'">$(DefineConstants);Debug</DefineConstants>
|
||||
<DefineConstants>$(DefineConstants);EmbedCab=$(EmbedCab)</DefineConstants>
|
||||
<DefineConstants>$(DefineConstants);Cabinet=$(Cabinet)</DefineConstants>
|
||||
|
||||
<!-- Set package version for SharedFx & TargetingPack wixproj's -->
|
||||
<!-- Everything built in those projects _except_ the final package & MSI are shipping assets. -->
|
||||
<_GeneratedPackageVersion>$(PackageVersion)</_GeneratedPackageVersion>
|
||||
<_GeneratedPackageVersion
|
||||
Condition="! $(PackageVersion.Contains('$(_PreReleaseLabel)'))">$(PackageVersion)-$(_PreReleaseLabel)$(_BuildNumberLabels)</_GeneratedPackageVersion>
|
||||
<!-- Insert PackageVersion into OutputName for SharedFx & TargetingPack -->
|
||||
<OutputName Condition="'$(OutputNamePrefix)' != '' AND '$(OutputNameSuffix)' != ''">$(OutputNamePrefix)$(_GeneratedPackageVersion)$(OutputNameSuffix)$(TargetExt)</OutputName>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Directory.Build.targets))\Directory.Build.targets" />
|
||||
|
||||
<PropertyGroup>
|
||||
<PackageFileName>$(OutputName)</PackageFileName>
|
||||
<PackageFileName>$(OutputName)$(TargetExt)</PackageFileName>
|
||||
<ProductName>Microsoft ASP.NET Core $(PackageBrandingVersion) Shared Framework ($(Platform))</ProductName>
|
||||
<DefineConstants>$(DefineConstants);ProductName=$(ProductName)</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
<PropertyGroup>
|
||||
<OutputNamePrefix>$(TargetingPackInstallerBaseName)-</OutputNamePrefix>
|
||||
<OutputNameSuffix>-win-$(Platform)</OutputNameSuffix>
|
||||
<ProductName>Microsoft ASP.NET Core $(PackageBrandingVersion) Targeting Pack ($(Platform))</ProductName>
|
||||
<ProductNameFolder>Microsoft ASP.NET Core Targeting Pack</ProductNameFolder>
|
||||
<ProductNameShort>AspNetCore.TargetingPack</ProductNameShort>
|
||||
<OutputType>Package</OutputType>
|
||||
|
|
@ -71,7 +70,8 @@
|
|||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Directory.Build.targets))\Directory.Build.targets" />
|
||||
|
||||
<PropertyGroup>
|
||||
<PackageFileName>$(OutputName)</PackageFileName>
|
||||
<ProductName>Microsoft ASP.NET Core $(PackageBrandingVersion) Targeting Pack ($(Platform))</ProductName>
|
||||
<PackageFileName>$(OutputName)$(TargetExt)</PackageFileName>
|
||||
<DefineConstants>$(DefineConstants);ProductName=$(ProductName)</DefineConstants>
|
||||
|
||||
<!-- Suppresses building this project completely during servicing builds. -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue