73 lines
2.4 KiB
XML
73 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
<PropertyGroup>
|
|
<AssemblyName>VideoReader-Global</AssemblyName>
|
|
<AssemblyTitle>VideoReader Global Edition</AssemblyTitle>
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWindowsForms>True</UseWindowsForms>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<Version>1.0.0</Version>
|
|
<Description>Universal video surveillance client with configurable servers</Description>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<LangVersion>12.0</LangVersion>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ApplicationIcon>app.ico</ApplicationIcon>
|
|
<RootNamespace />
|
|
</PropertyGroup>
|
|
|
|
<!-- Внешние библиотеки - используем готовые DLL -->
|
|
<ItemGroup>
|
|
<Reference Include="FFmpeg.AutoGen">
|
|
<HintPath>FFmpeg.AutoGen.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
<Reference Include="AForge">
|
|
<HintPath>AForge.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
<Reference Include="AForge.Imaging">
|
|
<HintPath>AForge.Imaging.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
<Reference Include="AForge.Math">
|
|
<HintPath>AForge.Math.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
<Reference Include="BouncyCastle.Crypto">
|
|
<HintPath>BouncyCastle.Crypto.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
<Reference Include="MessagingToolkit.QRCode">
|
|
<HintPath>MessagingToolkit.QRCode.dll</HintPath>
|
|
<Private>true</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<!-- Системные ссылки -->
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Configuration" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
|
|
<!-- NuGet пакеты -->
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Text.Json" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
<!-- Ресурсы -->
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="VideoReader.Form1.resx">
|
|
<DependentUpon>VideoReader\Form1.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project> |