Add Swan.Tiny

This commit is contained in:
BlubbFish 2019-12-09 17:26:36 +01:00
parent f1c7a29b38
commit 3eb4f3a4ac
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>The Raspberry Pi's IO Functionality in an easy-to use API for Mono/.NET Core
This library 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>
<AssemblyTitle>Unosquare Raspberry IO</AssemblyTitle>
<TargetFramework>netcoreapp3.0</TargetFramework>
<AssemblyName>Unosquare.RaspberryIO</AssemblyName>
<PackageId>Unosquare.Raspberry.IO</PackageId>
<Version>0.26.0</Version>
<Authors>Unosquare</Authors>
<PackageIconUrl>https://github.com/unosquare/raspberryio/raw/master/logos/raspberryio-logo-32.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/unosquare/raspberryio</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/unosquare/raspberryio/master/LICENSE</PackageLicenseUrl>
<PackageTags>Raspberry Pi GPIO Camera SPI I2C Embedded IoT Mono C# .NET</PackageTags>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Swan.Tiny\Swan.Tiny.csproj" />
<ProjectReference Include="..\Unosquare.RaspberryIO.Abstractions\Unosquare.RaspberryIO.Abstractions.csproj" />
</ItemGroup>
</Project>

View File

@ -19,6 +19,7 @@ This library enables developers to use the various Raspberry Pi's hardware modul
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Swan.Lite\Swan.Lite.csproj" />
<ProjectReference Include="..\Swan\Swan.csproj" />
<ProjectReference Include="..\Unosquare.RaspberryIO.Abstractions\Unosquare.RaspberryIO.Abstractions.csproj" />
</ItemGroup>