2025-12-29 08:09:14 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2026-01-17 19:17:49 +08:00
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
2026-01-21 19:03:59 +08:00
|
|
|
|
<ApplicationIcon>notifyIcon.ico</ApplicationIcon>
|
2025-12-29 08:09:14 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2026-01-07 10:59:03 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="Dels\**" />
|
|
|
|
|
|
<EmbeddedResource Remove="Dels\**" />
|
|
|
|
|
|
<None Remove="Dels\**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-01-21 19:03:59 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="notifyIcon.ico" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2025-12-29 08:09:14 +08:00
|
|
|
|
<ItemGroup>
|
2026-01-15 09:31:57 +08:00
|
|
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.76.0" />
|
|
|
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.76.0">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
2025-12-29 08:09:14 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-01-15 18:56:39 +08:00
|
|
|
|
<ProjectReference Include="..\Ayay.SerilogLogs\Ayay.SerilogLogs.csproj" />
|
2025-12-29 08:09:14 +08:00
|
|
|
|
<ProjectReference Include="..\SHH.CameraSdk\SHH.CameraSdk.csproj" />
|
2026-01-15 09:31:57 +08:00
|
|
|
|
<ProjectReference Include="..\SHH.Contracts.Grpc\SHH.Contracts.Grpc.csproj" />
|
2025-12-29 08:09:14 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|