2024-07-21 02:17:11 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
|
|
|
|
|
|
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
|
|
|
|
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) >= 8">win-x86;win-x64;win-arm64</RuntimeIdentifiers>
|
|
|
|
|
|
<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) < 8">win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
|
|
|
|
|
|
<CsWinRTComponent>true</CsWinRTComponent>
|
|
|
|
|
|
<CsWinRTWindowsMetadata>10.0.22621.0</CsWinRTWindowsMetadata>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<StartupObject>Wino.Server.App</StartupObject>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="Images\Wino_Icon.ico" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Resource Include="Images\Wino_Icon.ico">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Resource>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
|
|
|
|
|
<PackageReference Include="H.NotifyIcon.Wpf" Version="2.1.0" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2024-07-21 05:45:02 +02:00
|
|
|
|
<ProjectReference Include="..\Wino.Core.Domain\Wino.Domain.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Wino.Messaging\Wino.Messaging.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Wino.Shared.WinRT\Wino.Shared.WinRT.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Wino.Synchronization\Wino.Synchronization.csproj" />
|
2024-07-21 02:17:11 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|