-
Notifications
You must be signed in to change notification settings - Fork 1.3k
CSHARP-4442: Hide aws sdk in release package. #981
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
I would also consider the same changes for other 3rd parties we have even though it might be considered as minor BC |
@@ -31,6 +31,7 @@ | |||
<ItemGroup> | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | |||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> | |||
<PackageReference Include="AWSSDK.SecurityToken" Version="3.7.100.14" PrivateAssets="All" /> |
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.
this is needed because aws.sdk classes became invisible for all consumers including our tests
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
This reverts commit 77d144c.
Apparently this change broke our tests in core TFs. We need investigating how it can be fixed as a separate effort, reverted for now |
This reverts commit 77d144c.
This reverts commit 77d144c.
This reverts commit 77d144c.
Without applied fix, a consumer will see:


and therefore will be able to use aws sdk public classes.
The applied change hides this internal (for the driver) classes from consumers.
As a result, aws.sdk public classes will be unavailable for driver's consumers