<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> <PropertyGroup> <AssemblyName>ControlApp</AssemblyName> <GenerateAssemblyInfo>False</GenerateAssemblyInfo> <OutputType>WinExe</OutputType> <UseWindowsForms>True</UseWindowsForms> <TargetFramework>net8.0-windows</TargetFramework> </PropertyGroup> <PropertyGroup> <LangVersion>12.0</LangVersion> <AllowUnsafeBlocks>True</AllowUnsafeBlocks> </PropertyGroup> <PropertyGroup> <RootNamespace /> <ApplicationIcon>App.ico</ApplicationIcon> <PlatformTarget>x64</PlatformTarget> </PropertyGroup> <ItemGroup> <PackageReference Include="System.Drawing.Common" Version="9.0.0" /> </ItemGroup> <ItemGroup> <Reference Include="HtmlAgilityPack"> <HintPath>C:\ControlApp\HtmlAgilityPack.dll</HintPath> </Reference> <Reference Include="AxInterop.WMPLib"> <HintPath>C:\ControlApp\AxInterop.WMPLib.dll</HintPath> </Reference> <Reference Include="Vlc.DotNet.Forms"> <HintPath>C:\ControlApp\Vlc.DotNet.Forms.dll</HintPath> </Reference> <Reference Include="Vlc.DotNet.Core"> <HintPath>C:\ControlApp\Vlc.DotNet.Core.dll</HintPath> </Reference> <Reference Include="Interop.WMPLib"> <HintPath>C:\ControlApp\Interop.WMPLib.dll</HintPath> </Reference> <Reference Include="System.Speech"> <HintPath>C:\ControlApp\System.Speech.dll</HintPath> </Reference> <Reference Include="Emgu.CV"> <HintPath>C:\ControlApp\Emgu.CV.dll</HintPath> </Reference> <Reference Include="Emgu.CV.Bitmap"> <HintPath>C:\ControlApp\Emgu.CV.Bitmap.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> <None Update="App.ico"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> <None Update="Readme.md"> <CopyToOutputDirectory>Never</CopyToOutputDirectory> </None> </ItemGroup> </Project>