Update dependencies from https://dev.azure.com/microsoft/ProjectReunion/_git/WindowsAppSDKAggregator build Maestro-UpdateEngCommon_2301.09001 (#3317)
Microsoft.WinAppSDK.EngCommon From Version 1.3.230104100 -> To Version 1.3.230109100 Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
This commit is contained in:
Родитель
fc443820e4
Коммит
77761e2442
|
@ -37,9 +37,9 @@
|
|||
</Dependency>
|
||||
</ProductDependencies>
|
||||
<ToolsetDependencies>
|
||||
<Dependency Name="Microsoft.WinAppSDK.EngCommon" Version="1.3.230104100">
|
||||
<Dependency Name="Microsoft.WinAppSDK.EngCommon" Version="1.3.230109100">
|
||||
<Uri>https://dev.azure.com/microsoft/ProjectReunion/_git/WindowsAppSDKAggregator</Uri>
|
||||
<Sha>7a1603e6ce6e274d9bb6889dce9d134206716333</Sha>
|
||||
<Sha>471177124c73e330b44d6c7c271695e729e869ea</Sha>
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.Windows.CsWinRT" Version="2.0.0">
|
||||
<Uri>https://github.com/microsoft/CsWinRT</Uri>
|
||||
|
|
|
@ -21,6 +21,9 @@ Param(
|
|||
[int]$ProductMinor
|
||||
)
|
||||
|
||||
# Don't output file with Bom
|
||||
$utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False
|
||||
|
||||
$scriptFullPath = (Split-Path -Parent $MyInvocation.MyCommand.Definition)
|
||||
Write-Host "scriptFullPath: $scriptFullPath"
|
||||
|
||||
|
@ -46,7 +49,7 @@ using System.Runtime.InteropServices;
|
|||
Write-Host $assemblyInfoCs
|
||||
$assemblyInfoCsPath = "$scriptFullPath/AssemblyInfo.cs"
|
||||
Write-Host "Writing $assemblyInfoCsPath..."
|
||||
$assemblyInfoCs | Out-File -Encoding "UTF8" -FilePath $assemblyInfoCsPath
|
||||
[System.IO.File]::WriteAllLines($assemblyInfoCsPath, $assemblyInfoCs, $utf8NoBomEncoding)
|
||||
|
||||
# Generating AssemblyInfo.ver override
|
||||
$assemblyInfoVer = @"
|
||||
|
@ -57,7 +60,6 @@ $assemblyInfoVer = @"
|
|||
#define DELIM STR1(.)
|
||||
#define STR2(a,b) STR1(a) DELIM STR1(b)
|
||||
|
||||
|
||||
#ifndef WINDOWSAPPSDK_RELEASE_MAJOR
|
||||
#define WINDOWSAPPSDK_RELEASE_MAJOR $ProductMajor
|
||||
#endif
|
||||
|
@ -124,10 +126,9 @@ VS_VERSION_INFO VERSIONINFO
|
|||
VALUE "Translation", 0x409, 1200
|
||||
END
|
||||
END
|
||||
|
||||
"@
|
||||
|
||||
Write-Host $assemblyInfoVer
|
||||
$assemblyInfoVerPath = "$scriptFullPath/AssemblyInfo.ver"
|
||||
Write-Host "Writing $assemblyInfoVerPath..."
|
||||
$assemblyInfoVer | Out-File -Encoding "UTF8" -FilePath $assemblyInfoVerPath
|
||||
[System.IO.File]::WriteAllLines($assemblyInfoVerPath, $assemblyInfoVer, $utf8NoBomEncoding)
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
"dotnet": "6.0.104"
|
||||
},
|
||||
"msbuild-sdks": {
|
||||
"Microsoft.WinAppSDK.EngCommon": "1.3.230104100"
|
||||
"Microsoft.WinAppSDK.EngCommon": "1.3.230109100"
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче