Skip to content

Commit 4c7bfae

Browse files
committed
build updates
1 parent ac10fe9 commit 4c7bfae

File tree

5 files changed

+22
-14
lines changed

5 files changed

+22
-14
lines changed

.github/workflows/build.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
runs-on: windows-latest
2020

2121
env:
22-
PlatformBuildParameters: /p:Platform=Windows
22+
PlatformBuildParameters:
2323

2424
steps:
2525
- uses: actions/checkout@v2
2626

2727
- name: Setup .NET Core
2828
uses: actions/setup-dotnet@v1
2929
with:
30-
dotnet-version: '7.0.x'
30+
dotnet-version: '7.0.105'
3131

3232
- uses: actions/cache@v1
3333
with:
@@ -56,22 +56,18 @@ jobs:
5656
runs-on: macos-latest
5757

5858
env:
59-
PlatformBuildParameters: /p:Platform=Mac
59+
PlatformBuildParameters:
6060

6161
steps:
6262
- uses: actions/checkout@v2
6363

6464
- name: Setup .NET Core
6565
uses: actions/setup-dotnet@v1
6666
with:
67-
dotnet-version: '7.0.x'
67+
dotnet-version: '7.0.105'
6868

69-
- name: setup-xamarin
70-
uses: maxim-lobanov/setup-xamarin@v1
71-
with:
72-
mono-version: latest
73-
xamarin-mac-version: latest
74-
xcode-version: latest
69+
- name: Install macos workload
70+
run: sudo dotnet workload update --from-rollback-file dotnet-workloads.json
7571

7672
- uses: actions/cache@v1
7773
with:

Directory.Build.props

+6-3
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,15 @@
2727
<PropertyGroup>
2828
<!-- nuget properties -->
2929

30+
<DevVersion>0.1.0</DevVersion>
31+
3032
<!-- set version from tag -->
3133
<Version Condition="$(BuildBranch.StartsWith('refs/tags/'))">$(BuildBranch.Substring(10))</Version>
3234
<!-- set version for CI build -->
33-
<Version Condition="$(Version) == '' AND $(BuildVersion) != ''">$(BuildVersion)</Version>
34-
35-
<Version Condition="$(Version) == ''">0.1.0-dev</Version>
35+
<Version Condition="$(Version) == '' AND $(BuildVersion) != ''">$(DevVersion)-$(BuildVersion)</Version>
36+
<!-- set version for development -->
37+
<Version Condition="$(Version) == ''">$(DevVersion)-dev</Version>
38+
3639
<Authors>Eto.SkiaSharp Authors</Authors>
3740
<PackageLicenseExpression>MIT</PackageLicenseExpression>
3841
<PackageTags>Skia;SkiaSharp</PackageTags>

Eto.SkiaSharp.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{31436444-E
1717
EndProject
1818
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestEtoSkiaSharp", "test\TestEtoSkiaSharp\TestEtoSkiaSharp.csproj", "{0ACDF831-E0D8-4F1A-A3A7-7B5BF943E0FC}"
1919
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestEtoSkiaSharp.Mac", "test\TestEtoSkiaSharp.Mac\TestEtoSkiaSharp.Mac.csproj", "{C7D9211C-DBE6-4E1D-9046-88080A78990D}"
20+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestEtoSkiaSharp.macOS", "test\TestEtoSkiaSharp.Mac\TestEtoSkiaSharp.macOS.csproj", "{C7D9211C-DBE6-4E1D-9046-88080A78990D}"
2121
EndProject
2222
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestEtoSkiaSharp.Wpf", "test\TestEtoSkiaSharp.Wpf\TestEtoSkiaSharp.Wpf.csproj", "{E291AA9D-D707-40F3-ADB5-219CCF8E4EC3}"
2323
EndProject

dotnet-workloads.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"microsoft.net.sdk.macos": "12.3.2372"
3+
}

global.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"version": "7.0.100",
4+
"rollForward": "latestPatch"
5+
}
6+
}

0 commit comments

Comments
 (0)