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:
reunion-maestro[bot] 2023-01-09 16:51:32 -08:00 коммит произвёл GitHub
Родитель fc443820e4
Коммит 77761e2442
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 8 добавлений и 7 удалений

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

@ -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"
}
}