Microsoft.WinAppSDK.EngCommon
 From Version 1.2.220923.1 -> To Version 1.2.220923.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
This commit is contained in:
reunion-maestro[bot] 2022-09-23 17:49:46 -07:00 коммит произвёл GitHub
Родитель a6913a728c
Коммит dd7cabacd3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 28 добавлений и 13 удалений

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

@ -23,9 +23,9 @@
<Uri>https://github.com/microsoft/CsWinRT</Uri> <Uri>https://github.com/microsoft/CsWinRT</Uri>
<Sha>fa7f5565cb53353dc15c28a09ebd500577dc0b72</Sha> <Sha>fa7f5565cb53353dc15c28a09ebd500577dc0b72</Sha>
</Dependency> </Dependency>
<Dependency Name="Microsoft.WinAppSDK.EngCommon" Version="1.2.220923.1"> <Dependency Name="Microsoft.WinAppSDK.EngCommon" Version="1.2.220923.2">
<Uri>https://dev.azure.com/microsoft/ProjectReunion/_git/ProjectReunionInternal</Uri> <Uri>https://dev.azure.com/microsoft/ProjectReunion/_git/ProjectReunionInternal</Uri>
<Sha>1a9fa3a608b65139548ed8c1dc600e539c61b10d</Sha> <Sha>2d121ebc5bb8953726f46337535f28a2e0292734</Sha>
</Dependency> </Dependency>
</ToolsetDependencies> </ToolsetDependencies>
</Dependencies> </Dependencies>

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

@ -1,8 +1,17 @@
# This yml template is use to facilitate syncing public repositories to private mirrored repository.
# These steps must be run on the target repository that is being synced.
# Requirements:
# The pipeline agent that runs this must have "Contribute" permissions on the target repository.
parameters: parameters:
- name: PublicRepository - name: SourceRepository
type: string type: string
default: "" default: ""
- name: Branch - name: SourceBranch
type: string
default: ""
- name: TargetBranch
type: string type: string
default: "" default: ""
@ -14,15 +23,21 @@ steps:
inputs: inputs:
targetType: 'inline' targetType: 'inline'
script: | script: |
$publicRepo = "${{ parameters.PublicRepository }}" Write-Host "Sourcebranch " + "${{ parameters.SourceBranch }}"
$branch = "${{ parameters.Branch }}" Write-Host "TargetBranch " + "${{ parameters.TargetBranch }}"
git fetch
git checkout $branch $repo = "${{ parameters.SourceRepository }}"
git pull origin $branch git remote add mirror $repo
git remote add public $publicRepo
git remote git remote
git fetch public
git pull public $branch $target = "${{ parameters.TargetBranch }}"
git fetch origin $target
git checkout $target
git pull origin $target
$source = "${{ parameters.SourceBranch }}"
git fetch mirror $source
git pull mirror $source
- task: CmdLine@2 - task: CmdLine@2
inputs: inputs:

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

@ -3,6 +3,6 @@
"dotnet": "6.0.104" "dotnet": "6.0.104"
}, },
"msbuild-sdks": { "msbuild-sdks": {
"Microsoft.WinAppSDK.EngCommon": "1.2.220923.1" "Microsoft.WinAppSDK.EngCommon": "1.2.220923.2"
} }
} }