Files
EngineeringSync/EngineeringSync.TrayApp/EngineeringSync.TrayApp.csproj

28 lines
837 B
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\EngineeringSync.Domain\EngineeringSync.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.1" />
<PackageReference Include="H.NotifyIcon.Wpf" Version="2.4.1" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="10.0.5" />
</ItemGroup>
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<!-- Kein Konsolenfenster im Hintergrund -->
<ApplicationIcon>Assets\tray.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Resource Include="Assets\tray.ico" />
</ItemGroup>
</Project>