Skip to content

Commit 8f5cbe5

Browse files
committed
Bumped .net version in gha.
1 parent 0fd00a8 commit 8f5cbe5

185 files changed

Lines changed: 27 additions & 58 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/nuget.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ jobs:
3838

3939
- name: Pack SIPSorcery.OpenAI.Realtime
4040
run: dotnet pack src/SIPSorcery.OpenAI.Realtime/SIPSorcery.OpenAI.Realtime.csproj -c Release --no-build -o ./artifacts
41+
42+
- name: Pack SIPSorcery.VP8
43+
run: dotnet pack src/SIPSorcery.VP8/SIPSorcery.VP8.csproj -c Release --no-build -o ./artifacts
4144

4245
# Publish to NuGet (only on tag pushes)
4346
- name: Publish all packages to NuGet

.github/workflows/sipsorcery-core-mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
build:
1313
strategy:
1414
matrix:
15-
framework: [ 'net8.0' ]
15+
framework: [ 'net10.0' ]
1616
runs-on: macos-latest
1717
steps:
1818
- uses: actions/checkout@v1
1919
- uses: actions/setup-dotnet@v1
2020
with:
21-
dotnet-version: '8.0.x'
21+
dotnet-version: '10.0.x'
2222
- name: Unit tests
2323
run: dotnet test test/unit/SIPSorcery.UnitTests.csproj --framework ${{ matrix.framework }} -c Release

.github/workflows/sipsorcery-core-win.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: windows-2022
13+
runs-on: windows-2026
1414
name: dotnet windows sipsorcery core
1515
steps:
1616
- uses: actions/checkout@v2
@@ -19,4 +19,4 @@ jobs:
1919
- name: Build
2020
run: dotnet build SIPSorcery.slnf -c Release --no-restore
2121
- name: Test
22-
run: dotnet test test/unit/SIPSorcery.UnitTests.csproj -c Release --no-restore --verbosity normal -f net8.0
22+
run: dotnet test test/unit/SIPSorcery.UnitTests.csproj -c Release --no-restore --verbosity normal -f net10.0

.github/workflows/windows-dev.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

Libraries.slnf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"src\\SIPSorceryMedia.Windows\\SIPSorceryMedia.Windows.csproj",
88
"src\\SIPSorcery\\SIPSorcery.csproj",
99
"src\\SIPSorcery.OpenAI.Realtime\\SIPSorcery.OpenAI.Realtime.csproj",
10+
"src\\SIPSorcery.VP8\\SIPSorcery.VP8.csproj",
1011
"test\\SIPSorceryMedia.Abstractions.UnitTest\\SIPSorceryMedia.Abstractions.UnitTest.csproj",
1112
"test\\integration\\SIPSorcery.IntegrationTests.csproj",
1213
"test\\unit\\SIPSorcery.UnitTests.csproj"

README.md

Lines changed: 2 additions & 12 deletions

SIPSorcery.VP8.slnf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"solution": {
3+
"path": "SIPSorcery.slnx",
4+
"projects": [
5+
"src\\SIPSorcery.VP8\\SIPSorcery.VP8.csproj",
6+
"test\\SIPSorcery.VP8.UnitTest\\SIPSorcery.VP8.UnitTest.csproj"
7+
]
8+
}
9+
}

SIPSorcery.slnx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<Project Path="test/SIPSorceryMedia.Abstractions.UnitTest/SIPSorceryMedia.Abstractions.UnitTest.csproj" />
1818
<Project Path="test/unit/SIPSorcery.UnitTests.csproj" />
1919
<Project Path="test/VideoCaptureTest/VideoCaptureTest.csproj" />
20-
<Project Path="test/VP8.Net.TestVectors/VP8.Net.TestVectors.csproj" />
21-
<Project Path="test/VP8.Net.UnitTest/VP8.Net.UnitTest.csproj" />
20+
<Project Path="test/SIPSorcery.VP8.TestVectors/SIPSorcery.VP8.TestVectors.csproj" />
21+
<Project Path="test/SIPSorcery.VP8.UnitTest/SIPSorcery.VP8.UnitTest.csproj" />
2222
</Folder>
2323
<Folder Name="/examples/">
2424
<Project Path="examples/sipcmdline/sipcmdline.csproj" />
@@ -136,7 +136,7 @@
136136
<Project Path="src/SIPSorceryMedia.Abstractions/SIPSorceryMedia.Abstractions.csproj" />
137137
<Project Path="src/SIPSorceryMedia.FFmpeg/SIPSorceryMedia.FFmpeg.csproj" />
138138
<Project Path="src/SIPSorceryMedia.Windows/SIPSorceryMedia.Windows.csproj" />
139-
<Project Path="src/VP8.Net/VP8.Net.csproj" />
139+
<Project Path="src/SIPSOrcery.VP8/SIPSorcery.VP8.csproj" />
140140
</Folder>
141141
<Properties Name="TestCaseManagementSettings" Scope="PostLoad">
142142
<Property Name="CategoryFile" Value="SIPSorcery-Core.vsmdi" />

Vp8.Net.slnf

Lines changed: 0 additions & 9 deletions
This file was deleted.

examples/WebRTCExamples/WebRTCClientVP8Net/WebRTCClientVP8Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ItemGroup>
1717
<ProjectReference Include="..\..\..\src\SIPSorcery\SIPSorcery.csproj" />
18-
<ProjectReference Include="..\..\..\src\VP8.Net\VP8.Net.csproj" />
18+
<ProjectReference Include="..\..\..\src\SIPSorcery.VP8\SIPSorcery.VP8.csproj" />
1919
</ItemGroup>
2020

2121
</Project>

0 commit comments

Comments
 (0)