Skip to content

- fixed missing Launch button when viewing app details after installi… #178

- fixed missing Launch button when viewing app details after installi…

- fixed missing Launch button when viewing app details after installi… #178

Workflow file for this run

name: .NET
on:
push:
branches: [ 'master', 'development' ]
defaults:
run:
working-directory: Spixi
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Spixi
uses: actions/checkout@v2
with:
path: Spixi
- name: Checkout Ixian-Core
uses: actions/checkout@v2
with:
repository: ProjectIxian/Ixian-Core
path: Ixian-Core
ref: ${{ github.event.push.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Install MAUI workload
run: dotnet workload install maui
- name: Restore dependencies
run: dotnet restore
- name: Building Spixi
run: dotnet build Spixi/Spixi.csproj -f net8.0-windows10.0.19041.0 -p:Platform=x64 -v:n
#- name: Running Unit Tests
# run: dotnet test UnitTests\bin\Debug\unittests.dll --verbosity normal