Skip to content

Commit

Permalink
chore: Upgrade - All Samples to run with latest uno and latest VS 2022
Browse files Browse the repository at this point in the history
chore: Upgrade - All Samples to run with latest uno and latest VS 2022

chore: Upgrade - All Samples to run with latest uno and latest VS 2022

chore: Upgrade - All Samples to run with latest uno and latest VS 2022

chore: Upgrade - All Samples to run with latest uno and latest VS 2022

chore: Upgrade - All Samples to run with latest uno and latest VS 2022

chore: Upgrade - All Samples to run with latest uno and latest VS 2022

chore: Upgrade - All Samples to run with latest uno and latest VS 2022
  • Loading branch information
aesteves900 committed Sep 26, 2022
1 parent 4ed2863 commit 3499454
Show file tree
Hide file tree
Showing 131 changed files with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .vsts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,27 @@ jobs:
- powershell: |
Set-PSDebug -Trace 1
$SolutionsToBuild = Get-ChildItem -Path **\*.sln -Recurse
$SolutionsToBuild = Get-ChildItem -Path **\*.sln -Recurse | Where-Object {$_.FullName -notmatch "\\ArchivedProjects\\"}
foreach ($SolutionName in $SolutionsToBuild) {
$solutionPath=[System.IO.Path]::GetDirectoryName($SolutionName);
git diff --quiet HEAD "origin/$(System.PullRequest.TargetBranch)" -- "$solutionPath"
# Only build if there a change in the solution path for the current PR, if we're in a PR
if( ('$(System.PullRequest.PullRequestId)' -eq '') -or ($global:LASTEXITCODE -ne 0)) {
& $env:msbuildpath $SolutionName /r /p:Configuration=Release /p:AotAssemblies=false /p:WasmShellILLinkerEnabled=false /ds ;
& $env:msbuildpath $SolutionName /r /p:Configuration=Release /p:AotAssemblies=false /p:WasmShellILLinkerEnabled=false /ds ;
if (($lastexitcode -ne 0)) {
if (($lastexitcode -ne 0)) {
exit $lastexitcode
}
}
# Clean the whole tree after every build to avoid disk space issues
git clean -fdx
# Clean the whole tree after every build to avoid disk space issues
git clean -fdx
}
}
displayName: Build samples
Expand Down
File renamed without changes.

0 comments on commit 3499454

Please sign in to comment.