Fix folder version for global module to only have 3 numbers (#9211)
This commit is contained in:
parent
4134d02dab
commit
cacf9aa9f1
|
|
@ -173,7 +173,7 @@
|
|||
<RegistryValue Name="TypesSupported" Type="integer" Value="7"/>
|
||||
</RegistryKey>
|
||||
</Component>
|
||||
<Directory Id="HandlerVersionDir" Name="$(var.ANCMMsiVersion)" >
|
||||
<Directory Id="HandlerVersionDir" Name="$(var.ANCMFolderVersion)" >
|
||||
<Component Id="AspNetCoreModuleHandler" Guid="559EF726-B25C-480F-AFA4-32D0BA8B2376" Win64="$(var.IsWin64)">
|
||||
<File Id="AspNetCoreModuleHandlerDll"
|
||||
Name="aspnetcorev2_outofprocess.dll"
|
||||
|
|
@ -216,7 +216,7 @@
|
|||
<RegistryValue Name="TypesSupported" Type="integer" Value="7"/>
|
||||
</RegistryKey>
|
||||
</Component>
|
||||
<Directory Id="HandlerVersionDir32" Name="$(var.ANCMMsiVersion)" >
|
||||
<Directory Id="HandlerVersionDir32" Name="$(var.ANCMFolderVersion)" >
|
||||
<Component Id="AspNetCoreModuleHandler.wow" Guid="0A8EDB50-7D85-4825-8010-D27EFAF061B6" Win64="no">
|
||||
<File Id="AspNetCoreModuleHandlerDll.wow"
|
||||
Name="aspnetcorev2_outofprocess.dll"
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@
|
|||
<RegistryValue Name="TypesSupported" Type="integer" Value="7"/>
|
||||
</RegistryKey>
|
||||
</Component>
|
||||
<Directory Id="HandlerVersionDir" Name="$(var.ANCMMsiVersion)" >
|
||||
<Directory Id="HandlerVersionDir" Name="$(var.ANCMFolderVersion)" >
|
||||
<Component Id="AspNetCoreModuleHandler" Guid="4b62060a-deb8-4de3-9557-9c0be21dc844" Win64="$(var.IsWin64)">
|
||||
<File Id="AspNetCoreModuleHandlerDll"
|
||||
Name="aspnetcorev2_outofprocess.dll"
|
||||
|
|
@ -192,7 +192,7 @@
|
|||
<RegistryValue Name="TypesSupported" Type="integer" Value="7"/>
|
||||
</RegistryKey>
|
||||
</Component>
|
||||
<Directory Id="HandlerVersionDir32" Name="$(var.ANCMMsiVersion)" SourceName="WowOnly">
|
||||
<Directory Id="HandlerVersionDir32" Name="$(var.ANCMFolderVersion)" SourceName="WowOnly">
|
||||
<Component Id="AspNetCoreModuleHandler.wow" Guid="d927e5d3-c8b2-400c-b85c-ae5c2772d6c3" Win64="no">
|
||||
<File Id="AspNetCoreModuleHandlerDll.wow"
|
||||
Name="aspnetcorev2_outofprocess.dll"
|
||||
|
|
|
|||
|
|
@ -15,7 +15,8 @@
|
|||
<BLDNUMMINOR>$(BUILD_MINOR)</BLDNUMMINOR>
|
||||
|
||||
<!-- ANCM msi version is prepended with a 1 due to previous msi versions starting with 8.x.x.0 -->
|
||||
<ANCMMsiVersion>1$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$(BUILD_MAJOR).0</ANCMMsiVersion>
|
||||
<ANCMFolderVersion>1$(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$(BUILD_MAJOR)</ANCMFolderVersion>
|
||||
<ANCMMsiVersion>$(ANCMFolderVersion).0</ANCMMsiVersion>
|
||||
|
||||
<!-- The handler version in the M.A.AspNetCoreV2 nuget package. Today, this is hard coded to 2.0.0
|
||||
The actual handler folder version is dependent on the ANCMMsiVersion -->
|
||||
|
|
@ -31,7 +32,7 @@
|
|||
|
||||
<_ServerIISBasePath>$(RepositoryRoot)\src\Servers\IIS\</_ServerIISBasePath>
|
||||
<DefineConstants>BLDVERMAJOR=$(BLDVERMAJOR);BLDVERMINOR=$(BLDVERMINOR);BLDNUMMAJOR=$(BLDNUMMAJOR);BLDNUMMINOR=$(BLDNUMMINOR);$(DefineConstants)</DefineConstants>
|
||||
<DefineConstants>ANCMMsiVersion=$(ANCMMsiVersion);ANCMOutOfProcessNugetPackageHandlerVersion=$(ANCMOutOfProcessNugetPackageHandlerVersion);$(DefineConstants)</DefineConstants>
|
||||
<DefineConstants>ANCMMsiVersion=$(ANCMMsiVersion);ANCMFolderVersion=$(ANCMFolderVersion);ANCMOutOfProcessNugetPackageHandlerVersion=$(ANCMOutOfProcessNugetPackageHandlerVersion);$(DefineConstants)</DefineConstants>
|
||||
<DefineConstants>
|
||||
AspNetCoreSchemaPath=$(_ServerIISBasePath)AspNetCoreModuleV2\AspNetCore\aspnetcore_schema_v2.xml;
|
||||
AspNetCoreMofPath=$(_ServerIISBasePath)AspNetCoreModuleV2\AspNetCore\ancm.mof;
|
||||
|
|
|
|||
Loading…
Reference in New Issue