Compare commits

..

No commits in common. "224d79e1df79a8a51151a628ed5030a4215c5f6f" and "5beba9f9f48246bf1afbc58724c34819ed3140ac" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

View File

@ -3,7 +3,7 @@
<PropertyGroup>
<Version>0.3.0</Version>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SelfContained>true</SelfContained>
@ -17,7 +17,7 @@
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="TinyEmbree" Version="1.1.0" />
<PackageReference Include="TinyEmbree" Version="1.0.3" />
</ItemGroup>
<ItemGroup>

View File

@ -17,7 +17,7 @@ internal static class Program
Log.Logger = config
.WriteTo.Console(theme: AnsiConsoleTheme.Sixteen, outputTemplate: outputTemplate)
.WriteTo.File(logPath, outputTemplate: outputTemplate, buffered: true)
.WriteTo.File(logPath, outputTemplate: outputTemplate)
.CreateLogger();
}