File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -86,12 +86,9 @@ public override async Task RunAsync(BuildContext context)
86
86
var readMePath = $ "{ readMeName } ";
87
87
88
88
var licensePath = context . PackContext . LicensePath ;
89
- var licenseName = "LICENSE" ;
89
+ var licenseName = System . IO . Path . GetFileName ( licensePath ) ;
90
90
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")
95
92
select $ "<Content Include=\" { filePath } \" ><PackagePath>runtimes/{ rid } /native</PackagePath></Content>";
96
93
97
94
// Generate Project
You can’t perform that action at this time.
0 commit comments