-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenCamInterop.csproj
More file actions
37 lines (32 loc) · 1.34 KB
/
Copy pathOpenCamInterop.csproj
File metadata and controls
37 lines (32 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<PackageId>OpenCamInterop</PackageId>
<Version>0.1.0-alpha.1</Version>
<Authors>Kalytera Systems contributors</Authors>
<Description>CloudEvents-compatible camera event models and safe adapters for local interoperability.</Description>
<RepositoryUrl>https://github.com/KalyteraSystems/OpenCamInterop</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>camera;cloudevents;frigate;onvif;interoperability</PackageTags>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CloudNative.CloudEvents.SystemTextJson" Version="2.9.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="tools\**\*.cs" />
<Compile Remove="tests\**\*.cs" />
</ItemGroup>
<ItemGroup>
<None Update="README.md" Pack="true" PackagePath="/" />
<None Include="schemas\v1\*.schema.json"
Link="schemas\v1\%(Filename)%(Extension)"
Pack="true"
PackagePath="schemas/v1" />
</ItemGroup>
</Project>