-
Notifications
You must be signed in to change notification settings - Fork 1.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
License expression #6674
License expression #6674
Conversation
@@ -4,6 +4,7 @@ | |||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | |||
<IncludeBuildOutput Condition="'$(TargetFramework)' == 'netstandard2.0'">false</IncludeBuildOutput> | |||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | |||
<PackageLicenseExpression></PackageLicenseExpression> |
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.
The MKL redist has a different license so we have to blank the PackageLicenseExpression
for it to work correctly.
@@ -4,6 +4,7 @@ | |||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | |||
<IncludeBuildOutput Condition="'$(TargetFramework)' == 'netstandard2.0'">false</IncludeBuildOutput> | |||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | |||
<PackageLicenseExpression></PackageLicenseExpression> |
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 package is not MIT licence ?
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.
Nope. This package is actually code from Intel that we are compiling to remove the code we don't need (reduces the size by a LARGE amount. Like 90% or so). So its one of Intel's licenses and not MIT. Only package we have that is different like this.
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #6674 +/- ##
=======================================
Coverage 68.77% 68.77%
=======================================
Files 1215 1215
Lines 251556 251556
Branches 26228 26228
=======================================
+ Hits 173004 173009 +5
+ Misses 71737 71726 -11
- Partials 6815 6821 +6
Flags with carried forward coverage won't be shown. Click here to find out more. |
Changed packages to use LicenseExpression instead of LicenseFile.