-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBCv1.csproj
45 lines (37 loc) · 1.48 KB
/
BCv1.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
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!--<TargetFramework>netcoreapp3.1</TargetFramework>-->
<TargetFrameworks>net461;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netcoreapp2.2</TargetFrameworks>
<RuntimeIdentifier>linux-arm</RuntimeIdentifier>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="_private\**" />
<EmbeddedResource Remove="_private\**" />
<None Remove="_private\**" />
</ItemGroup>
<!--<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>-->
<ItemGroup>
<Compile Remove="Extra.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="WinSCPnet.dll" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta11" />
<PackageReference Include="System.Device.Gpio" Version="1.3.0" />
<PackageReference Include="Unosquare.Raspberry.Abstractions" Version="0.4.1" />
<PackageReference Include="Unosquare.Raspberry.IO" Version="0.27.1" />
<PackageReference Include="Unosquare.RaspberryIO.Peripherals" Version="0.5.0" />
<PackageReference Include="Unosquare.Swan" Version="3.0.0" />
<PackageReference Include="Unosquare.WiringPi" Version="0.5.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>