Skip to content

Commit 5cd1ee3

Browse files
authored
Merge pull request #8 from MonoGame/dominique-LicenseName
Use Filename from licensepath for licensename for consistency.
2 parents 69ab74f + af7e45b commit 5cd1ee3

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Tasks/PublishPackageTask.cs

+2-5
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,9 @@ public override async Task RunAsync(BuildContext context)
8686
var readMePath = $"{readMeName}";
8787

8888
var licensePath = context.PackContext.LicensePath;
89-
var licenseName = "LICENSE";
89+
var licenseName = System.IO.Path.GetFileName(licensePath);
9090

91-
if (licensePath.EndsWith(".txt")) licenseName += ".txt";
92-
else if (licensePath.EndsWith(".md")) licenseName += ".md";
93-
94-
var librariesToInclude = from rid in downloadedRids from filePath in Directory.GetFiles($"runtimes/{rid}/native")
91+
var librariesToInclude = from rid in downloadedRids from filePath in Directory.GetFiles($"runtimes/{rid}/native")
9592
select $"<Content Include=\"{filePath}\"><PackagePath>runtimes/{rid}/native</PackagePath></Content>";
9693

9794
// Generate Project

0 commit comments

Comments
 (0)