File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,19 @@ jobs:
26
26
path : Ixian-Core
27
27
ref : ${{ github.event.push.ref }}
28
28
29
- # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
30
- - name : Setup MSBuild.exe
31
- uses : microsoft/setup-msbuild@2008f912f56e61277eefaac6d1888b750582aa16
32
- env :
33
- ACTIONS_ALLOW_UNSECURE_COMMANDS : ' true'
29
+ - name : Setup .NET
30
+ uses : actions/setup-dotnet@v3
31
+ with :
32
+ dotnet-version : ' 8.0.x'
33
+
34
+ - name : Install MAUI workload
35
+ run : dotnet workload install maui
34
36
35
37
- name : Restore dependencies
36
- run : nuget restore Spixi.sln
38
+ run : dotnet restore
37
39
38
40
- name : Building Spixi
39
- run : msbuild Spixi.sln -target:SPIXI_WPF
41
+ run : dotnet build Spixi/Spixi.csproj -f net8.0-windows10.0.19041.0 -p:Platform=x64 -v:n
40
42
41
43
# - name: Running Unit Tests
42
44
# run: dotnet test UnitTests\bin\Debug\unittests.dll --verbosity normal
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk" >
1
+ <Project Sdk =" Microsoft.NET.Sdk" Condition = " $(TargetFramework.Contains('-ios')) " >
2
2
<PropertyGroup >
3
3
<TargetFrameworks >net8.0-ios</TargetFrameworks >
4
4
<OutputType >Library</OutputType >
You can’t perform that action at this time.
0 commit comments