.net core 3.1 not support ShowMeTheXaml, use .net5 instead

This commit is contained in:
appleneko2001
2022-07-05 10:43:09 +09:00
parent 67a87ef640
commit 31b3902740
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
+1
View File
@@ -1,6 +1,7 @@
using System;
using Avalonia;
using Avalonia.Controls;
using ShowMeTheXaml;
namespace Material.Demo
{