Skip to content

Commit 349797a

Browse files
committed
Adjust generation scripts to build using dotnet msbuild
1 parent 7083d5c commit 349797a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

eng/scripts/GenerateProjectList.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ param(
44
$ErrorActionPreference = 'stop'
55

66
$repoRoot = Resolve-Path "$PSScriptRoot/../.."
7+
$msbuildEngine = 'dotnet'
78

89
& "$repoRoot\eng\common\msbuild.ps1" -ci:$ci "$repoRoot/eng/CodeGen.proj" `
910
/t:GenerateProjectList `

eng/scripts/GenerateReferenceAssemblies.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ $ErrorActionPreference = 'stop'
55

66
$repoRoot = Resolve-Path "$PSScriptRoot/../.."
77

8+
& "$repoRoot\build.ps1" -ci:$ci -buildNative
9+
10+
$msbuildEngine = 'dotnet'
811
& "$repoRoot\eng\common\msbuild.ps1" -ci:$ci "$repoRoot/eng/CodeGen.proj" `
912
/t:GenerateReferenceSources `
1013
/bl:artifacts/log/genrefassemblies.binlog

0 commit comments

Comments
 (0)