Fix nullability errors

This commit is contained in:
Tyrrrz
2021-11-08 23:16:37 +02:00
parent f456297881
commit 214d5e3bdb
20 changed files with 72 additions and 48 deletions

View File

@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(TargetFramework)-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<AssemblyName>DiscordChatExporter</AssemblyName>
<UseWPF>true</UseWPF>
@@ -34,7 +35,7 @@
<Target Name="Format XAML" AfterTargets="BeforeBuild">
<Exec Command="dotnet tool restore" />
<Exec Command="dotnet xstyler -r -d ." />
<Exec Command="dotnet xstyler -r -d $(MSBuildProjectDirectory)" />
</Target>
</Project>