-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWechatBot.csproj
More file actions
40 lines (35 loc) · 1.42 KB
/
Copy pathWechatBot.csproj
File metadata and controls
40 lines (35 loc) · 1.42 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
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>app.ico</ApplicationIcon>
<Version>1.0.0</Version>
<AssemblyTitle>微信自动化 - 排序小助手</AssemblyTitle>
<Product>猪猪自动化工具</Product>
<Company>猪猪工作室</Company>
<Authors>猪猪</Authors>
<Description>基于图像识别的微信自动化工具 🐷</Description>
</PropertyGroup>
<ItemGroup>
<None Remove="app.ico" />
<Resource Include="app.ico" />
</ItemGroup>
<!-- 排除测试项目目录 -->
<ItemGroup>
<Compile Remove="WechatBot.Tests\**" />
<EmbeddedResource Remove="WechatBot.Tests\**" />
<None Remove="WechatBot.Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HandyControl" Version="3.5.1" />
<PackageReference Include="OpenCvSharp4" Version="4.9.0.20240103" />
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.9.0.20240103" />
<PackageReference Include="OpenCvSharp4.Extensions" Version="4.9.0.20240103" />
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
</ItemGroup>
</Project>