Skip to content

Commit

Permalink
#19
Browse files Browse the repository at this point in the history
  • Loading branch information
Suplanus committed Mar 14, 2024
1 parent b440da7 commit 95daa39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/GitHubReleaser/GitHubReleaser.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net48;netcoreapp3.1</TargetFrameworks>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<Version>1.0.0.0</Version>
<LangVersion>latest</LangVersion>
<AssemblyVersion>1.0.3.104</AssemblyVersion>
<FileVersion>1.0.3.104</FileVersion>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>pdbonly</DebugType>
Expand All @@ -29,7 +29,7 @@

<ItemGroup>
<PackageReference Include="FluentCommandLineParser-netstandard" Version="1.4.3.13" />
<PackageReference Include="Octokit" Version="0.48.0" />
<PackageReference Include="Octokit" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>
Expand Down
9 changes: 1 addition & 8 deletions src/GitHubReleaser/Model/ReleaserSettings.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Xml.Serialization;
using System.Text.Json.Serialization.Converters;
using Serilog;
using System.Collections.Generic;

namespace GitHubReleaser.Model
{
Expand Down
3 changes: 3 additions & 0 deletions src/GitHubReleaser/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ static async Task<int> Main(string[] args)
}
catch
{
#if DEBUG
throw;
#endif
return 100;
}
}
Expand Down

0 comments on commit 95daa39

Please sign in to comment.