-
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
Use property AutoreleasePoolSupport in test #76800
Use property AutoreleasePoolSupport in test #76800
Conversation
Tagging subscribers to this area: @dotnet/interop-contrib Issue DetailsThe SDK also sets the RuntimeHostConfigurationOption item. So setting in this project results in multiple copies of the same item. This MSBuild property is documented here. I'm not sure if this causes a problem with any currently supported configuration of .NET, but it is detectable when compiling this test with NativeAOT. ILC fails because multiple copies of the
|
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.
When the CI is green, I am good with this. Thanks!
/cc @MichalStrehovsky since this impacts NativeAOT testing. |
Error in the OSX pipeline was "The organization is currently offline for migration". Maybe closing and reopening will re-run the tests? |
The SDK also set the RuntimeHostConfigurationOption item. So setting in this project results in multiple copies of the same item. I'm not sure if this causes a problem with any currently supported configuration of .NET, but it is detectable when compiling this test with NativeAOT. ILC fails because multiple copies of the `--appcontextswitch` flag are passed with the same key.
95d14af
to
64b2f81
Compare
I also filed dotnet/sdk#28568. You can have multiple |
The SDK also sets the RuntimeHostConfigurationOption item. So setting in this project results in multiple copies of the same item.
This MSBuild property is documented here.
I'm not sure if this causes a problem with any currently supported configuration of .NET, but it is detectable when compiling this test with NativeAOT. ILC fails because multiple copies of the
--appcontextswitch
flag are passed with the same key.