Skip to content

Commit

Permalink
Merge branch 'dotnet8'
Browse files Browse the repository at this point in the history
  • Loading branch information
yaakov-h committed Feb 4, 2024
2 parents 828ba1e + 3429010 commit 366f98e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
run: dotnet publish DepotDownloader/DepotDownloader.csproj --configuration Release -p:PublishSingleFile=true -p:DebugType=embedded --self-contained --runtime osx-x64 --output selfcontained-osx-x64

- name: Publish macOS-arm64
if: matrix.configuration == 'Release' && matrix.runs-on == 'macos-latest'
if: matrix.configuration == 'Release' && matrix.runs-on == 'macos-14'
run: dotnet publish DepotDownloader/DepotDownloader.csproj --configuration Release -p:PublishSingleFile=true -p:DebugType=embedded --self-contained --runtime osx-arm64 --output selfcontained-osx-arm64

- name: Upload Windows-x64
Expand Down
2 changes: 1 addition & 1 deletion DepotDownloader/ContentDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace DepotDownloader
{
public class ContentDownloaderException : Exception
class ContentDownloaderException : Exception
{
public ContentDownloaderException(String value) : base(value) { }
}
Expand Down
7 changes: 4 additions & 3 deletions DepotDownloader/DepotDownloader.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -9,11 +9,12 @@
<Authors>SteamRE Team</Authors>
<Copyright>Copyright © SteamRE Team 2021</Copyright>
<ApplicationIcon>..\Icon\DepotDownloader.ico</ApplicationIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="protobuf-net" Version="3.2.26" />
<PackageReference Include="protobuf-net" Version="3.2.30" />
<PackageReference Include="QRCoder" Version="1.4.3" />
<PackageReference Include="SteamKit2" Version="2.5.0-Beta.1" />
<PackageReference Include="SteamKit2" Version="2.5.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion DepotDownloader/PlatformUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace DepotDownloader
{
public static class PlatformUtilities
static class PlatformUtilities
{
private const int ModeExecuteOwner = 0x0040;
private const int ModeExecuteGroup = 0x0008;
Expand Down
1 change: 0 additions & 1 deletion DepotDownloader/Steam3Session.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ public Steam3Session(SteamUser.LogOnDetails details)
this.callbacks.Subscribe<SteamApps.LicenseListCallback>(LicenseListCallback);

Console.Write("Connecting to Steam3...");

Connect();
}

Expand Down

0 comments on commit 366f98e

Please sign in to comment.