File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 3
3
)
4
4
$ErrorActionPreference = ' stop'
5
5
6
+ $Configuration = if ($ci ) { ' Release' } else { ' Debug' }
6
7
$repoRoot = Resolve-Path " $PSScriptRoot /../.."
8
+ $MsbuildEngine = ' dotnet'
7
9
8
10
& " $repoRoot \eng\common\msbuild.ps1" - ci:$ci " $repoRoot /eng/CodeGen.proj" `
11
+ - configuration $Configuration `
12
+ - msbuildEngine $MsbuildEngine `
9
13
/ t:GenerateProjectList `
10
14
/ bl:artifacts/ log/ genprojlist.binlog
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ $ErrorActionPreference = 'stop'
5
5
6
6
$repoRoot = Resolve-Path " $PSScriptRoot /../.."
7
7
8
+ $Configuration = if ($ci ) { ' Release' } else { ' Debug' }
9
+ & " $repoRoot \build.ps1" - ci:$ci - buildNative - configuration $Configuration
10
+
11
+ $MsbuildEngine = ' dotnet'
8
12
& " $repoRoot \eng\common\msbuild.ps1" - ci:$ci " $repoRoot /eng/CodeGen.proj" `
13
+ - configuration $Configuration `
14
+ - msbuildEngine $MsbuildEngine `
9
15
/ t:GenerateReferenceSources `
10
16
/ bl:artifacts/ log/ genrefassemblies.binlog
You can’t perform that action at this time.
0 commit comments