Skip to content

Update README.md

Update README.md #506

Workflow file for this run

name: CI
on: [push]
jobs:
Android:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup NuGet
uses: NuGet/[email protected]
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1
- name : restore LocalNotification.Sample.sln
run: nuget restore Sample/NuGet/LocalNotification.Sample.sln
- name: build LocalNotification.Sample.Android.csproj
run: msbuild Sample/NuGet/LocalNotification.Sample.Android/LocalNotification.Sample.Android.csproj /verbosity:normal /t:Rebuild /p:Configuration=Debug
iOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Setup NuGet
uses: NuGet/[email protected]
- name : restore LocalNotification.Sample.sln
run: nuget restore Sample/NuGet/LocalNotification.Sample.sln
- name: build LocalNotification.Sample.iOS.csproj
run: msbuild Sample/NuGet/LocalNotification.Sample.iOS/LocalNotification.Sample.iOS.csproj /verbosity:normal /t:Rebuild /p:Platform=iPhoneSimulator /p:Configuration=Debug