Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix error NU5030: The license file 'LICENSE' does not exist in the pa…
…ckage. Context https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5030#issue When the filename of the license file has no extension NuGet reports an error. ``` error NU5030: The license file 'LICENSE' does not exist in the package. ``` Even though we have the `PackagePath` set. According to the error page, the `PackagePath` in these cases should be empty. To fix this we need to split out the `LicenceName` tag into two values so that they can be set independently. So we add `LicenceNamePackagePath` tag so that we can do so. Existing code should behave the same way.
- Loading branch information