We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d905fcf commit f438578Copy full SHA for f438578
2 files changed
src/GitHubLabelSync.csproj
@@ -1,6 +1,6 @@
1
<Project Sdk="Microsoft.NET.Sdk">
2
<PropertyGroup>
3
- <Version>2.0.0</Version>
+ <Version>2.0.1</Version>
4
<OutputType>Exe</OutputType>
5
<PackAsTool>true</PackAsTool>
6
<ToolCommandName>sync-labels</ToolCommandName>
src/Program.cs
@@ -4,6 +4,6 @@ namespace GitHubLabelSync;
public static class Program
{
7
- public static async Task Main(string[] args)
+ public static async Task<int> Main(string[] args)
8
=> await new CommandApp<Command>().RunAsync(args);
9
}
0 commit comments