dlxjj/imradv3
0262
1<Project Sdk="Microsoft.NET.Sdk">2 3 <PropertyGroup>4 <OutputType>WinExe</OutputType>5 <TargetFramework>net8.0-windows</TargetFramework>6 <Nullable>enable</Nullable>7 <ImplicitUsings>enable</ImplicitUsings>8 <UseWPF>true</UseWPF>9 </PropertyGroup>10 11 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">12 <Optimize>False</Optimize>13 </PropertyGroup>14 15 <ItemGroup>16 <None Remove="nuget.png" />17 </ItemGroup>18 19 <ItemGroup>20 <PackageReference Include="NHotkey" Version="3.0.0" />21 <PackageReference Include="NHotkey.Wpf" Version="3.0.0" />22 <PackageReference Include="WPF-UI" Version="3.0.5" />23 <PackageReference Include="WPF-UI.Tray" Version="3.0.5" />24 </ItemGroup>25 26 <ItemGroup>27 <ProjectReference Include="..\ScreenGrab\ScreenGrab.csproj" />28 </ItemGroup>29 30 <ItemGroup>31 <Resource Include="nuget.png" />32 </ItemGroup>33 34</Project>35 