-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibVideoCapture.NET.csproj
More file actions
20 lines (17 loc) · 886 Bytes
/
Copy pathlibVideoCapture.NET.csproj
File metadata and controls
20 lines (17 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Stavros Vagionitis <stavros.vagionitis@gmail.com></Authors>
<Description>A C# library for getting information for video capture devices using DirectShowLib library.</Description>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/svagionitis/libMotionDetection.NET</RepositoryUrl>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<SourceRevisionId>build$([System.DateTime]::UtcNow.ToString("yyyyMMddHHmmss"))</SourceRevisionId>
<Platforms>AnyCPU;x86;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DirectShowLib.Standard" Version="2.1.0" />
<PackageReference Include="Serilog" Version="2.10.0" />
</ItemGroup>
</Project>