2025-06-15 12:51:51 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-06-21 09:11:49 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-06-15 12:51:51 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="config\log4net.config" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="config\log4net.config">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="log4net" Version="3.1.0" />
|
|
|
|
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
|
|
|
|
|
<PackageReference Include="Ulid" Version="1.3.4" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-06-21 09:11:49 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="config\Settings1.Designer.cs">
|
|
|
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Settings1.settings</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="config\Settings1.settings">
|
|
|
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Settings1.Designer.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-06-15 12:51:51 +08:00
|
|
|
|
</Project>
|