diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19107a2da1..ed7f34d51b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ env: jobs: build: name: Windows - runs-on: windows-2019 + runs-on: windows-2022 steps: - name: Checkout uses: actions/checkout@v3.1.0 diff --git a/src/ServicePulse.Host/Hosting/Options.cs b/src/ServicePulse.Host/Hosting/Options.cs index 00004a614c..89b5cc7f52 100644 --- a/src/ServicePulse.Host/Hosting/Options.cs +++ b/src/ServicePulse.Host/Hosting/Options.cs @@ -889,10 +889,7 @@ public List Parse(IEnumerable arguments) } } - if (c.Option != null) - { - c.Option.Invoke(c); - } + c.Option?.Invoke(c); return unprocessed; } diff --git a/src/ServicePulse.Host/vue/src/App.vue b/src/ServicePulse.Host/vue/src/App.vue index de33fccb32..8d630fff3c 100644 --- a/src/ServicePulse.Host/vue/src/App.vue +++ b/src/ServicePulse.Host/vue/src/App.vue @@ -1,271 +1,18 @@