Skip to content

Fix Crash-reporting by using "properties.TryAdd()" instead of properties.Add to avoid throwing and… #6

Fix Crash-reporting by using "properties.TryAdd()" instead of properties.Add to avoid throwing and…

Fix Crash-reporting by using "properties.TryAdd()" instead of properties.Add to avoid throwing and… #6

Workflow file for this run

name: PR
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install Maui
run: dotnet workload install maui
- name: Restore dependencies
run: dotnet restore TinyInsights/TinyInsights.csproj
- name: Build
run: dotnet build TinyInsights/TinyInsights.csproj --no-restore
- name: Pack
run: dotnet pack TinyInsights/TinyInsights.csproj -p:PackageVersion=${{ github.ref_name }}