-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScreenLookup.csproj
More file actions
73 lines (64 loc) · 2.72 KB
/
ScreenLookup.csproj
File metadata and controls
73 lines (64 loc) · 2.72 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows10.0.22621.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationManifest></ApplicationManifest>
<ApplicationIcon>src\images\applicationIcon.ico</ApplicationIcon>
<SupportedOSPlatformVersion>10.0.22621.0</SupportedOSPlatformVersion>
<PackageIcon>applicationIcon.ico</PackageIcon>
<Title>ScreenLookup</Title>
<Authors>H@mer</Authors>
<Copyright>Copyright (c) 2025 H@mer and other contributors</Copyright>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<None Remove="src\images\OnImage.png" />
<None Remove="src\images\OnLine.png" />
</ItemGroup>
<ItemGroup>
<Content Include="src\images\applicationIcon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="src\images\H@mer.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="src\images\OnImage.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="src\images\OnLine.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="33.1.0" />
<PackageReference Include="GTranslate" Version="2.3.1" />
<PackageReference Include="HotkeyUtility" Version="2.1.0" />
<PackageReference Include="HunspellSharp" Version="1.0.3" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.6" />
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="NAudio" Version="2.3.0" />
<PackageReference Include="TesseractOCR" Version="5.5.2" />
<PackageReference Include="WPF-UI" Version="4.2.0" />
<PackageReference Include="WPF-UI.Tray" Version="4.2.0" />
<PackageReference Include="WpfScreenHelper" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ScreenGrab\src\ScreenGrab\ScreenGrab.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="src\images\applicationIcon.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>