This commit is contained in:
2025-11-26 19:26:02 +08:00
parent c07d1c4f10
commit b1631a1fb7
3 changed files with 3 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<LangVersion>9.0</LangVersion> <LangVersion>9.0</LangVersion>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net10.0</TargetFramework>
<RootNamespace>Convention</RootNamespace> <RootNamespace>Convention</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup> </PropertyGroup>

View File

@@ -12,6 +12,7 @@ public class Program
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
Console.OutputEncoding = Encoding.UTF8;
Console.WriteLine(PlatformIndicator.PrettyFace); Console.WriteLine(PlatformIndicator.PrettyFace);
} }
} }