forked from vladkol/gstreamer-netcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgstreamer-sharp-netcore.csproj
33 lines (33 loc) · 1.62 KB
/
gstreamer-sharp-netcore.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Gst</RootNamespace>
<AssemblyName>gstreamer-sharp-netcore</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>108;114;168;169;618;659</NoWarn>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<PropertyGroup>
<Title>GstSharp for .NET Core</Title>
<PackageDescription>GStreamer .NET Core Bindings</PackageDescription>
<Version>0.0.8</Version>
<Authors>vladkol</Authors>
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<RepositoryUrl>https://github.com/vladkol/gstreamer-netcore</RepositoryUrl>
<Copyright>Copyright 2020</Copyright>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>GStreamer GstSharp bindings</PackageTags>
<IncludeContentInPack>true</IncludeContentInPack>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GioSharp" Version="3.24.24.34" />
<PackageReference Include="GLibSharp" Version="3.24.24.34" />
</ItemGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="" />
<EmbeddedResource Include="gstreamer-sharp\sources\gstreamer-sharp.dll.config" />
<Compile Include="gstreamer-sharp\sources\custom\**\*.cs" />
<Compile Include="gstreamer-sharp\sources\generated\**\*.cs" Exclude="gstreamer-sharp\sources\generated\Gst\PadTemplate.cs" />
<Compile Include="gst-netcore\**\*.cs" />
</ItemGroup>
</Project>