-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReTranslator.csproj
More file actions
59 lines (54 loc) · 2.33 KB
/
Copy pathReTranslator.csproj
File metadata and controls
59 lines (54 loc) · 2.33 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>1.0.0</AssemblyVersion>
<OutputType>WinExe</OutputType>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="OpenAI" Version="2.2.0" />
<PackageReference Include="PaddleOCRSharp" Version="5.0.0.1" />
<PackageReference Include="Selenium.UndetectedChromeDriver" Version="1.1.3" />
<PackageReference Include="Selenium.WebDriver" Version="4.33.0" />
<PackageReference Include="System.Drawing.Common" Version="10.0.0-preview.5.25277.114" />
<PackageReference Include="System.Windows.Forms" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
</ItemGroup>
<ItemGroup>
<Content Include="OCRModel\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Remove="Assets\play.png" />
<Resource Include="Assets\play.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<None Remove="Assets\icon.png" />
<Resource Include="Assets\icon.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<None Remove="Assets\settings.png" />
<Resource Include="Assets\settings.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<None Remove="Assets\exit.png" />
<Resource Include="Assets\exit.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<None Remove="Assets\about.png" />
<Resource Include="Assets\about.png" />
<None Remove="Assets\icon.ico" />
<Resource Include="Assets\icon.ico" />
<None Remove="Assets\qq.png" />
<Resource Include="Assets\qq.png" />
<None Remove="Assets\github.png" />
<Resource Include="Assets\github.png" />
<None Remove="Assets\author.jpg" />
<Resource Include="Assets\author.jpg" />
<None Remove="Assets\bilibili.png" />
<Resource Include="Assets\bilibili.png" />
</ItemGroup>
</Project>