| 123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <UseWPF>true</UseWPF>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Prism.DryIoc" />
- <PackageReference Include="CommunityToolkit.Mvvm" />
- <PackageReference Include="Hardcodet.NotifyIcon.Wpf" />
- </ItemGroup>
- <ItemGroup>
- <Resource Include="Logo.ico" />
- </ItemGroup>
- </Project>
|