-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDisplayManager.csproj
More file actions
31 lines (25 loc) · 944 Bytes
/
DisplayManager.csproj
File metadata and controls
31 lines (25 loc) · 944 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net4.6.1</TargetFramework>
<Copyright>© 2019 Mateusz Karcz</Copyright>
<AssemblyTitle>Celones SmartLED Display Manager</AssemblyTitle>
<AssemblyName>Celones.DisplayManager</AssemblyName>
<Version>0.1.0</Version>
<Authors>Mateusz Karcz</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Portable.Xaml" Version="0.24.0" />
<PackageReference Include="Unosquare.Raspberry.IO" Version="0.24.0" />
<PackageReference Include="Unosquare.WiringPi" Version="0.4.2" />
<PackageReference Include="Unosquare.RaspberryIO.Peripherals" Version="0.4.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Update="Simulation\ControlPanel.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>