-
Notifications
You must be signed in to change notification settings - Fork 351
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
Fix code coverage analysis #3062
Fix code coverage analysis #3062
Conversation
@@ -37,6 +37,10 @@ | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.0" /> | |||
</ItemGroup> | |||
|
|||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.1' or '$(TargetFramework)' == 'net452'"> |
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.
why do we still support 'netcoreapp1.1'?
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.
Seems that this PR is targeted at 7.x branch.
@@ -28,7 +28,7 @@ | |||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.0" /> | |||
</ItemGroup> | |||
|
|||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.1'"> | |||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.1' or '$(TargetFramework)' == 'net452'"> |
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.
Shall we remove 'netcoreapp1.1'?
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 pull request is targeted at 7.x
2da5746
to
20767ad
Compare
20767ad
to
ad2cb08
Compare
Co-authored-by: David W <1511024+marabooy@users.noreply.github.com>
Description
Fix code coverage analysis
Restrict code coverage analysis to only the ODL libraries:
Checklist (Uncheck if it is not completed)