Skip to content
This repository has been archived by the owner on Jul 19, 2022. It is now read-only.

Commit

Permalink
Renamed dependencies folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Laiteux committed May 22, 2020
1 parent 6eec926 commit f10e512
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Matt
Copyright (c) 2019-2020 Matt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/Milky/ConsoleManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ public async Task StartListeningKeysAsync(ConsoleKey? pauseKey = ConsoleKey.P, C
lock (_checker.Info.Locker)
{
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine($"{Environment.NewLine} Checker paused, press \"{resumeKey}\" to resume...{Environment.NewLine}");
Console.WriteLine($"{Environment.NewLine}Checker paused, press \"{resumeKey}\" to resume...{Environment.NewLine}");
}
}
else if (_checker.Info.Status == CheckerStatus.Paused)
{
lock (_checker.Info.Locker)
{
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine($"Checker resumed! Pause duration: {TimeSpan.FromSeconds((int)_checker.Resume().TotalSeconds)}" + Environment.NewLine);
Console.WriteLine($"Checker resumed! Pause duration: " + TimeSpan.FromSeconds((int)_checker.Resume().TotalSeconds) + Environment.NewLine);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Milky/Milky.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<ItemGroup>
<Reference Include="SocksSharp">
<HintPath>..\..\dependencies\SocksSharp.dll</HintPath>
<HintPath>..\..\deps\SocksSharp.dll</HintPath>
</Reference>
</ItemGroup>

Expand Down

0 comments on commit f10e512

Please sign in to comment.