-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build .NETCoreApp source gens in allconfigurations build #105247
Conversation
src/libraries/System.Text.RegularExpressions/gen/RegexGenerator.Emitter.cs
Outdated
Show resolved
Hide resolved
src/libraries/System.Text.RegularExpressions/gen/RegexGenerator.Emitter.cs
Outdated
Show resolved
Hide resolved
@@ -18,6 +18,7 @@ | |||
|
|||
<ItemGroup Condition="'$(BuildTargetFramework)' != '$(NetCoreAppCurrent)' or '$(BuildTargetFramework)' == ''"> | |||
<ProjectReference Include="oob-all.proj" SkipGetTargetFrameworkProperties="true" /> | |||
<ProjectReference Include="oob-gen.proj" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this references all library generators, not just OOB ones. You could name it all-gen.proj
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's the same with "oob-all.proj" which also references everything. I felt that it's better to follow the existing naming schema.
Failure is correctly reported on both Windows and Unix in the allconfigurations leg. Reverting the code change now.
|
Fixes #100346