Skip to content

Commit 36b13c5

Browse files
authored
Merge pull request #22 from OctopusDeploy/sjc/update-build-process
Update to build process
2 parents 0dc07df + 8219c8d commit 36b13c5

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
strategy:
4040
matrix:
4141
arch: [ x64 ]
42-
os: [ windows-2022, macos-13 ]
43-
tfm: [ net472, net6.0, net8.0, net9.0 ]
42+
os: [ windows-2022, macos-14 ]
43+
tfm: [ net472, net8.0, net9.0 ]
4444
exclude:
45-
- os: macos-13
45+
- os: macos-14
4646
tfm: net472
4747
include:
4848
- arch: arm64
@@ -63,7 +63,6 @@ jobs:
6363
dotnet-version: |
6464
9.0.x
6565
8.0.x
66-
6.0.x
6766
- name: Run ${{ matrix.tfm }} tests
6867
run: dotnet test LibGit2Sharp.sln --configuration Release --framework ${{ matrix.tfm }} --logger "GitHubActions" /p:ExtraDefine=LEAKS_IDENTIFYING
6968
test-linux:
@@ -82,8 +81,6 @@ jobs:
8281
- distro: alpine.3.19
8382
sdk: '9.0'
8483
include:
85-
- sdk: '6.0'
86-
tfm: net6.0
8784
- sdk: '8.0'
8885
tfm: net8.0
8986
- sdk: '9.0'

LibGit2Sharp/LibGit2Sharp.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net472;net8.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net472;net8.0</TargetFrameworks>
55
<LangVersion>12.0</LangVersion>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
<Description>LibGit2Sharp brings all the might and speed of libgit2, a native Git implementation, to the managed world of .NET</Description>
@@ -28,9 +28,6 @@
2828
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
2929
<IsTrimmable>true</IsTrimmable>
3030
</PropertyGroup>
31-
<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0'">
32-
<IsTrimmable>true</IsTrimmable>
33-
</PropertyGroup>
3431

3532
<ItemGroup>
3633
<PackageReference Include="LibGit2Sharp.NativeBinaries" Version="[2.0.323]" PrivateAssets="none" />

0 commit comments

Comments
 (0)