Skip to content

Commit

Permalink
Update to work on Apple Silicon (#8)
Browse files Browse the repository at this point in the history
* Update to work on Apple Silicon

* Upgrade
  • Loading branch information
dellis1972 authored Oct 9, 2024
1 parent cd9b7a1 commit 746dae5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.101
dotnet-version: 8.0.x
source-url: https://nuget.pkg.github.com/<owner>/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Pack nuget
run: dotnet pack -c Release
- name: Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: NuGets
path: |
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>

<PropertyGroup>
<ProductVersion>0.0.16</ProductVersion>
<ProductVersion>0.0.17</ProductVersion>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions adiff/adiff.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Company>Microsoft Corporation</Company>
<Copyright>2020 Microsoft Corporation</Copyright>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RollForward>Major</RollForward>
<Version>$(ProductVersion)</Version>
<Authors>Radek Doulik</Authors>
Expand All @@ -25,7 +25,7 @@
<Compile Include="..\apkdiff\SignatureDecoder.cs" Link="SignatureDecoder.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="K4os.Compression.LZ4" Version="1.1.11" />
<PackageReference Include="K4os.Compression.LZ4" Version="1.3.8" />
<PackageReference Include="Mono.Options" Version="6.6.0.161" />
<PackageReference Include="System.Reflection.Metadata" Version="1.8.0" />
</ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions apkdiff/apkdiff.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
<PropertyGroup>
<Company>Microsoft Corporation</Company>
<Copyright>2020 Microsoft Corporation</Copyright>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RollForward>Major</RollForward>
<Version>$(ProductVersion)</Version>
<Authors>Radek Doulik</Authors>
<OutputType>Exe</OutputType>
<PlatformTarget>x64</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
<PackAsTool>true</PackAsTool>
<ToolCommandName>apkdiff</ToolCommandName>
<PackageOutputPath>nupkg</PackageOutputPath>
<PackageDescription>A tool to compare Android packages</PackageDescription>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/radekdoulik/apkdiff</RepositoryUrl>
<LibZipSharpVersion>1.0.20</LibZipSharpVersion>
<LibZipSharpVersion>3.3.0</LibZipSharpVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="K4os.Compression.LZ4" Version="1.1.11" />
<PackageReference Include="K4os.Compression.LZ4" Version="1.3.8" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Mono.Options" Version="6.6.0.161" />
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
Expand Down

0 comments on commit 746dae5

Please sign in to comment.