2025-05-31 20:30:22 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
2025-06-07 01:13:39 +08:00
|
|
|
|
<ApplicationIcon>resource\chat.ico</ApplicationIcon>
|
2025-05-31 20:30:22 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-06-07 01:13:39 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-06-07 16:10:38 +08:00
|
|
|
|
<Content Include="resource\chat.ico">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2025-06-07 01:13:39 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-06-01 02:57:57 +08:00
|
|
|
|
<ItemGroup>
|
2025-06-07 01:13:39 +08:00
|
|
|
|
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="2.0.1" />
|
2025-06-01 20:33:52 +08:00
|
|
|
|
<PackageReference Include="log4net" Version="3.1.0" />
|
2025-06-01 02:57:57 +08:00
|
|
|
|
<PackageReference Include="MaterialDesignThemes" Version="5.2.1" />
|
|
|
|
|
<PackageReference Include="MaterialDesignThemes.MahApps" Version="5.2.1" />
|
|
|
|
|
<PackageReference Include="MaterialDesignThemes.Wpf" Version="1.0.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-06-01 20:33:52 +08:00
|
|
|
|
<ItemGroup>
|
2025-06-07 01:13:39 +08:00
|
|
|
|
<Resource Include="resource\user.png" />
|
2025-06-01 20:33:52 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-06-07 11:01:45 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Data\DataSet.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>DataSet.xsd</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-06-01 22:34:58 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="config\log4net.config">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2025-06-07 11:01:45 +08:00
|
|
|
|
<None Update="Data\DataSet.xsd">
|
|
|
|
|
<Generator>MSDataSetGenerator</Generator>
|
|
|
|
|
<LastGenOutput>DataSet.Designer.cs</LastGenOutput>
|
|
|
|
|
</None>
|
2025-06-01 22:34:58 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-05-31 20:30:22 +08:00
|
|
|
|
</Project>
|