Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…on/_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>
  • Loading branch information
reunion-maestro[bot] and dotnet-maestro[bot] authored Jan 10, 2023
1 parent fc44382 commit 77761e2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
9 changes: 5 additions & 4 deletions eng/common/VersionInfo/GenerateVersionInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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 = @"
Expand All @@ -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
Expand Down Expand Up @@ -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)
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"dotnet": "6.0.104"
},
"msbuild-sdks": {
"Microsoft.WinAppSDK.EngCommon": "1.3.230104100"
"Microsoft.WinAppSDK.EngCommon": "1.3.230109100"
}
}

0 comments on commit 77761e2

Please sign in to comment.