-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeyPilot.csproj
More file actions
31 lines (27 loc) · 1.14 KB
/
Copy pathKeyPilot.csproj
File metadata and controls
31 lines (27 loc) · 1.14 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
<AssemblyName>KeyPilot</AssemblyName>
<RootNamespace>KeyPilot</RootNamespace>
<Version>1.0.0</Version>
<Authors>Hyper Tech Studios</Authors>
<Company>Hyper Tech Studios</Company>
<Copyright>Copyright © 2026 Hyper Tech Studios</Copyright>
<Description>Keyboard-to-mouse-click automation tool for Windows</Description>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\icon.ico" />
<Resource Include="Assets\icon.png" Condition="Exists('Assets\icon.png')" />
</ItemGroup>
</Project>