71 lines
2.3 KiB
XML
71 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
<PropertyGroup>
|
||
<AssemblyName>VideoReader-Global</AssemblyName>
|
||
<AssemblyTitle>VideoReader Global Edition</AssemblyTitle>
|
||
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
||
<OutputType>Exe</OutputType>
|
||
<TargetFramework>net8.0</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>
|
||
|
||
<!-- Исключаем файлы с Windows Forms -->
|
||
<ItemGroup>
|
||
<Compile Remove="VideoReader\Form1.cs" />
|
||
<Compile Remove="VideoReader\Form1.Designer.cs" />
|
||
<Compile Remove="VideoReader\InOutSocket.cs" />
|
||
<Compile Remove="VideoReader\Program.cs" />
|
||
</ItemGroup>
|
||
|
||
<!-- Внешние библиотеки - используем готовые 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>
|
||
|
||
<!-- Системные ссылки не нужны - используем NuGet -->
|
||
|
||
<!-- NuGet пакеты -->
|
||
<ItemGroup>
|
||
<PackageReference Include="System.Text.Json" Version="8.0.0" />
|
||
</ItemGroup>
|
||
|
||
<!-- Ресурсы -->
|
||
<ItemGroup>
|
||
<EmbeddedResource Include="VideoReader.Form1.resx">
|
||
<DependentUpon>VideoReader\Form1.cs</DependentUpon>
|
||
</EmbeddedResource>
|
||
</ItemGroup>
|
||
|
||
</Project> |