62 lines
2.1 KiB
XML
62 lines
2.1 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>
|
|
|
|
<!-- Внешние библиотеки -->
|
|
<ItemGroup>
|
|
<Reference Include="FFmpeg.AutoGen">
|
|
<HintPath>../desktop/FFmpeg.AutoGen.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="AForge">
|
|
<HintPath>../desktop/AForge.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="AForge.Imaging">
|
|
<HintPath>../desktop/AForge.Imaging.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="AForge.Math">
|
|
<HintPath>../desktop/AForge.Math.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="BouncyCastle.Crypto">
|
|
<HintPath>../desktop/BouncyCastle.Crypto.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="MessagingToolkit.QRCode">
|
|
<HintPath>../desktop/MessagingToolkit.QRCode.dll</HintPath>
|
|
</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>
|
|
|
|
<!-- Ресурсы -->
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="VideoReader.Form1.resx">
|
|
<DependentUpon>VideoReader\Form1.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project> |