1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-08 07:17:01 +09:00

Fix up deprecated attribute usages

This commit is contained in:
smoogipoo 2019-08-09 15:37:18 +09:00
parent 0902327163
commit b06c23bce9
5 changed files with 11 additions and 11 deletions

View file

@ -12,10 +12,10 @@ using PerformanceCalculator.Simulate;
namespace PerformanceCalculator
{
[Command("dotnet PerformanceCalculator.dll")]
[Subcommand("difficulty", typeof(DifficultyCommand))]
[Subcommand("performance", typeof(PerformanceCommand))]
[Subcommand("profile", typeof(ProfileCommand))]
[Subcommand("simulate", typeof(SimulateListingCommand))]
[Subcommand(typeof(DifficultyCommand))]
[Subcommand(typeof(PerformanceCommand))]
[Subcommand(typeof(ProfileCommand))]
[Subcommand(typeof(SimulateListingCommand))]
[HelpOption("-?|-h|--help")]
public class Program
{