2026-01-21 19:03:59 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2026-01-31 10:43:41 +08:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
|
<PackageIcon>notifyIcon.ico</PackageIcon>
|
|
|
|
|
|
<ApplicationIcon>notifyIcon.ico</ApplicationIcon>
|
2026-01-21 19:03:59 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2026-01-22 14:06:44 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="Bat\**" />
|
|
|
|
|
|
<EmbeddedResource Remove="Bat\**" />
|
|
|
|
|
|
<None Remove="Bat\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-01-31 10:43:41 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="notifyIcon.ico" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-01-21 19:03:59 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="CoreWCF.Http" Version="1.8.0" />
|
|
|
|
|
|
<PackageReference Include="CoreWCF.Primitives" Version="1.8.0" />
|
|
|
|
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.76.0" />
|
|
|
|
|
|
<PackageReference Include="Prism.Core" Version="8.1.97" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Ayay.SerilogLogs\Ayay.SerilogLogs.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\SHH.Contracts.Grpc\SHH.Contracts.Grpc.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-01-31 10:43:41 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="notifyIcon.ico">
|
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-01-21 19:03:59 +08:00
|
|
|
|
</Project>
|