File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
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" `
9
11
/ t:GenerateProjectList `
10
- / bl:artifacts/ log/ genprojlist.binlog
12
+ / bl:artifacts/ log/ genprojlist.binlog `
13
+ / p:Configuration= $Configuration
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ $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" `
9
13
/ t:GenerateReferenceSources `
10
- / bl:artifacts/ log/ genrefassemblies.binlog
14
+ / bl:artifacts/ log/ genrefassemblies.binlog `
15
+ / p:Configuration= $Configuration
You can’t perform that action at this time.
0 commit comments