mics fixes

This commit is contained in:
alterNERDtive 2022-06-16 12:06:28 +02:00
parent bb8d1067b5
commit 35c26e930f
3 changed files with 6 additions and 3 deletions

View file

@ -3,7 +3,8 @@
on: on:
push: push:
tags: tags:
- 'release/*' - 'release/*.*'
- 'release/*.*.*'
jobs: jobs:
build: build:

View file

@ -17,6 +17,8 @@
// along with alterNERDtive VoiceAttack profiles for Elite Dangerous. If not, see <https://www.gnu.org/licenses/>. // along with alterNERDtive VoiceAttack profiles for Elite Dangerous. If not, see <https://www.gnu.org/licenses/>.
// </copyright> // </copyright>
#nullable enable
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Windows; using System.Windows;
@ -105,7 +107,7 @@ namespace alterNERDtive
foreach (Setting setting in this.values) foreach (Setting setting in this.values)
{ {
dynamic state = null; dynamic? state = null;
try try
{ {

View file

@ -39,7 +39,7 @@ namespace alterNERDtive
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1649:File name should match first type name", Justification = "F off :)")] [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1649:File name should match first type name", Justification = "F off :)")]
public class BasePlugin public class BasePlugin
{ {
private static readonly Version VERSION = new ("4.4.1-dev"); private static readonly Version VERSION = new ("4.4.1");
private static readonly Dictionary<Guid, string> Profiles = new () private static readonly Dictionary<Guid, string> Profiles = new ()
{ {