-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStepOverModel.csproj
More file actions
85 lines (77 loc) · 3.2 KB
/
StepOverModel.csproj
File metadata and controls
85 lines (77 loc) · 3.2 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
74
75
76
77
78
79
80
81
82
83
84
85
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<StartupObject></StartupObject>
<ApplicationIcon>img\logo.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="tmp\**" />
<EmbeddedResource Remove="tmp\**" />
<None Remove="tmp\**" />
</ItemGroup>
<ItemGroup>
<Content Include="img\logo.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="itext7" Version="8.0.3" />
<PackageReference Include="itext7.bouncy-castle-adapter" Version="8.0.3" />
<PackageReference Include="PDFtoImage" Version="4.0.1" />
<PackageReference Include="SigDeviceAPI" Version="3.0.1" />
<PackageReference Include="SigSignAPI" Version="3.0.7" />
<PackageReference Include="SkiaSharp" Version="2.88.7" />
<PackageReference Include="SkiaSharp.NativeAssets.Win32" Version="2.88.7" />
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="Google.Protobuf">
<HintPath>bin\Debug\net6.0-windows\Google.Protobuf.dll</HintPath>
</Reference>
<Reference Include="Grpc.Core.Api">
<HintPath>bin\Debug\net6.0-windows\Grpc.Core.Api.dll</HintPath>
</Reference>
<Reference Include="Grpc.Net.Client">
<HintPath>bin\Debug\net6.0-windows\Grpc.Net.Client.dll</HintPath>
</Reference>
<Reference Include="Grpc.Net.Common">
<HintPath>bin\Debug\net6.0-windows\Grpc.Net.Common.dll</HintPath>
</Reference>
<Reference Include="LanguageExt.Core">
<HintPath>..\..\Test for StepOver Classic\NativeDeviceAPI-3.0.0-win-x64\NativeDeviceAPI-win-x64\LanguageExt.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Extensions.Logging.Abstractions">
<HintPath>bin\Debug\net6.0-windows\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
</Reference>
<Reference Include="SigDeviceAPI">
<HintPath>..\..\Test for StepOver Classic\NativeDeviceAPI-3.0.0-win-x64\NativeDeviceAPI-win-x64\SigDeviceAPI.dll</HintPath>
</Reference>
<Reference Include="SigPdfClient">
<HintPath>bin\Debug\net6.0-windows\SigPdfClient.dll</HintPath>
</Reference>
<Reference Include="SigPdfClientProtobuf">
<HintPath>bin\Debug\net6.0-windows\SigPdfClientProtobuf.dll</HintPath>
</Reference>
<Reference Include="SigPdfService">
<HintPath>bin\Debug\net6.0-windows\SigPdfService.dll</HintPath>
</Reference>
<Reference Include="SkiaSharp">
<HintPath>..\..\Test for StepOver Classic\NativeDeviceAPI-3.0.0-win-x64\NativeDeviceAPI-win-x64\SkiaSharp.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>