-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Fix test build error when BuildAsStandalone is true #93457
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
Conversation
Build error of provider.ilproj test when BuildAsStandalone is true `EXEC : error : No entry point declared for executable` This is due to dotnet#92029 Restore OutputType to Library.
|
Tagging subscribers to this area: @hoyosjs Issue DetailsBuild error of provider.ilproj test when BuildAsStandalone is true This is due to #92029
|
trylek
left a comment
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.
Thanks for fixing this, I'm however somewhat surprised why we need to explicitly specify the Library OutputType, I was under the impression that it's the default, why isn't the default logic kicking in here?
|
Actually, I don't know well about tests in dotnet/runtime. I am just guessing that runtime/src/tests/Directory.Build.props Line 199 in 139f45e
|
|
CC @gbalykov Our internal CI fails for days because of this issue. Thank you. |
gbalykov
left a comment
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.
LGTM
|
@clamp03 thank you! |
Build error of provider.ilproj test when BuildAsStandalone is true
EXEC : error : No entry point declared for executableThis is due to #92029
Restore OutputType to Library.