Skip to content

Commit

Permalink
Fixed MaxLineNumber attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
martindevans committed Feb 28, 2020
1 parent 836abc5 commit 8d2d469
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion YololEmulator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private class Options
[Option('c', "client", HelpText = "IP/Port to connect on", Required = false)]
public string Client { get; set; }

[Option('m', "max_line", HelpText = "Set the max line number", Required = false, Default = 20)]
[Option('m', "max_line", HelpText = "Set the max line number", Required = false, Default = (ushort)20)]
public ushort MaxLineNumber { get; set; }

[Option('a', "auto", HelpText = "Automaticaly run each line", Required = false)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<PublishProtocol>FileSystem</PublishProtocol>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
<PublishDir>C:\Users\Martin\Desktop\Yolol.Emulator (Win)</PublishDir>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<_IsPortable>false</_IsPortable>
<PublishSingleFile>True</PublishSingleFile>
<PublishReadyToRun>True</PublishReadyToRun>
<PublishTrimmed>False</PublishTrimmed>
</PropertyGroup>
</Project>

0 comments on commit 8d2d469

Please sign in to comment.