Skip to content

Commit

Permalink
Updating to v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tpill90 committed Aug 15, 2022
1 parent 0ef78c9 commit f03c056
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BattleNetPrefill/BattleNetPrefill.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<StartupObject>BattleNetPrefill.Program</StartupObject>
<AssemblyName>BattleNetPrefill</AssemblyName>
<RootNamespace>BattleNetPrefill</RootNamespace>
<Version>1.3.0</Version>
<Version>1.4.0</Version>
<Authors>tpill90</Authors>

<!-- Code analysis settings -->
Expand Down
14 changes: 14 additions & 0 deletions LancachePrefill.Common/LancachePrefill.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@
<Nullable>disable</Nullable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<WarningLevel>2</WarningLevel>
<DebugType>portable</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants />
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ByteSize" Version="2.0.0" />
<PackageReference Include="CliFx" Version="2.0.6" />
Expand Down
2 changes: 1 addition & 1 deletion LancachePrefill.Common/UpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static async Task CheckForUpdatesAsync(Type executingAppType, string repo
var fileInfo = new FileInfo(lastUpdateCheckFile);
if (fileInfo.Exists && fileInfo.LastWriteTimeUtc.AddDays(3) > DateTime.UtcNow)
{
//return;
return;
}

using var httpClient = new HttpClient();
Expand Down
3 changes: 1 addition & 2 deletions LogFileGenerator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@
using System.Diagnostics;
using System.IO;
using System.IO.Compression;
using System.Net;
using System.Net.Http;
using BattleNetPrefill;
using BattleNetPrefill.Handlers;
using BattleNetPrefill.Structs;
using BattleNetPrefill.Utils.Debug;
using BattleNetPrefill.Web;
using Spectre.Console;
using static BattleNetPrefill.Utils.SpectreColors;
using static LancachePrefill.Common.SpectreColors;

namespace LogFileGenerator
{
Expand Down

0 comments on commit f03c056

Please sign in to comment.