forked from yangzhongke/NetAutoGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetAutoGUI.Windows.csproj
More file actions
27 lines (23 loc) · 1.02 KB
/
Copy pathNetAutoGUI.Windows.csproj
File metadata and controls
27 lines (23 loc) · 1.02 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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>.NET version of pyAutoGUI</Title>
<PackageProjectUrl>https://github.com/yangzhongke/NetAutoGUI</PackageProjectUrl>
<RepositoryUrl>https://github.com/yangzhongke/NetAutoGUI</RepositoryUrl>
<Version>2.0.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.10.0.20241108" />
<PackageReference Include="SkiaSharp" Version="3.116.1" />
<PackageReference Include="System.Drawing.Common" Version="8.0.11" />
<PackageReference Include="Vanara.PInvoke.DwmApi" Version="4.0.6" />
<PackageReference Include="Vanara.PInvoke.User32" Version="4.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetAutoGUI\NetAutoGUI.csproj" />
</ItemGroup>
</Project>