-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFAC1-Controller-Windows.csproj
More file actions
32 lines (27 loc) · 1.2 KB
/
FAC1-Controller-Windows.csproj
File metadata and controls
32 lines (27 loc) · 1.2 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<AssemblyName>FAC1-Controller-Windows</AssemblyName>
<RootNamespace>FAC1_Controller_Windows</RootNamespace>
<!-- ApplicationIcon>AppIcon.ico</ApplicationIcon -->
<AssemblyTitle>FAC1 Pan & Tilt Controller</AssemblyTitle>
<AssemblyDescription>Windows native controller for FAC1 Camera pan and tilt servos</AssemblyDescription>
<AssemblyCompany>Fyrby Additive Manufacturing & Engineering</AssemblyCompany>
<AssemblyProduct>FAC1 Controller</AssemblyProduct>
<AssemblyCopyright>Copyright 2025, Timothy Ellis, Fyrby Additive Manufacturing & Engineering</AssemblyCopyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\feetech-servo-sdk-csharp\FeetechServoSDK\FeetechServoSDK.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="FAME-150-150.png" />
</ItemGroup>
</Project>