28 lines
1.4 KiB
XML
28 lines
1.4 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<Description>This library uses WiringPi to enables developers to use the various Raspberry Pi's hardware modules including the Camera to capture images and video, the GPIO pins, and both, the SPI and I2C buses.</Description>
|
|||
|
<Copyright>Unosquare (c) 2016-2019</Copyright>
|
|||
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|||
|
<AssemblyName>Unosquare.WiringPi</AssemblyName>
|
|||
|
<PackageId>Unosquare.WiringPi</PackageId>
|
|||
|
<Version>0.4.2</Version>
|
|||
|
<Authors>Unosquare</Authors>
|
|||
|
<PackageIconUrl>https://github.com/unosquare/wiringpi-dotnet/raw/master/logos/raspberryio-logo-32.png</PackageIconUrl>
|
|||
|
<PackageProjectUrl>https://github.com/unosquare/wiringpi-dotnet</PackageProjectUrl>
|
|||
|
<PackageLicenseUrl>https://raw.githubusercontent.com/unosquare/wiringpi-dotnet/master/LICENSE</PackageLicenseUrl>
|
|||
|
<PackageTags>Raspberry Pi GPIO Camera SPI I2C Embedded IoT Mono C# .NET wiringPi</PackageTags>
|
|||
|
<LangVersion>8.0</LangVersion>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<EmbeddedResource Include="Resources\gpio" />
|
|||
|
<EmbeddedResource Include="Resources\libwiringPi.so.2.50" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Swan.Tiny\Swan.Tiny.csproj" />
|
|||
|
<ProjectReference Include="..\Unosquare.RaspberryIO.Abstractions\Unosquare.RaspberryIO.Abstractions.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|