Skip to content

Commit

Permalink
Renamed Licenses.txt to THIRD-PARTY-NOTICES.txt
Browse files Browse the repository at this point in the history
Updated licenses
  • Loading branch information
notscuffed committed Jan 10, 2020
1 parent 407a3dd commit fdc4c9a
Show file tree
Hide file tree
Showing 4 changed files with 288 additions and 130 deletions.
125 changes: 0 additions & 125 deletions Licenses.txt

This file was deleted.

6 changes: 2 additions & 4 deletions RePKG/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ private static void Main(string[] args)

Parser.Default.ParseArguments<ExtractOptions, InfoOptions>(args)
.WithParsed<ExtractOptions>(Extract.Action)
.WithParsed<InfoOptions>(Info.Action)
.WithNotParsed(NotParsedAction);
.WithParsed<InfoOptions>(Info.Action);
}

private static void Cancel(object sender, ConsoleCancelEventArgs e)
Expand All @@ -44,8 +43,7 @@ private static void InteractiveConsole()

Parser.Default.ParseArguments<ExtractOptions, InfoOptions>(interactiveArgs)
.WithParsed<ExtractOptions>(Extract.Action)
.WithParsed<InfoOptions>(Info.Action)
.WithNotParsed(NotParsedAction);
.WithParsed<InfoOptions>(Info.Action);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion RePKG/RePKG.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
</ItemGroup>

<ItemGroup>
<None Include="$(ProjectDir)/../Licenses.txt" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
<None Include="$(ProjectDir)/../THIRD-PARTY-NOTICES.txt" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
</Project>
Loading

0 comments on commit fdc4c9a

Please sign in to comment.