-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGetImageNet.csproj
More file actions
44 lines (37 loc) · 1.79 KB
/
Copy pathGetImageNet.csproj
File metadata and controls
44 lines (37 loc) · 1.79 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net8.0-windows</TargetFrameworks>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<RootNamespace>GetImageNet</RootNamespace>
<AssemblyName>GetImageNet</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>GetImageNet - MICR Check Processor</Title>
<Description>MICR Check Processing System with Clarion Integration</Description>
<Company>GetImageNet</Company>
<Product>GetImageNet</Product>
<Version>2.0.0</Version>
<LangVersion>latest</LangVersion>
<!-- Windows-specific settings -->
<UseWindowsForms Condition="'$(TargetFramework)' == 'net8.0-windows'">true</UseWindowsForms>
<OutputType Condition="'$(TargetFramework)' == 'net8.0-windows'">WinExe</OutputType>
<ApplicationManifest Condition="'$(TargetFramework)' == 'net8.0-windows'">app.manifest</ApplicationManifest>
<!-- Linux-specific settings -->
<OutputType Condition="'$(TargetFramework)' == 'net8.0'">Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="src\GetImageNet.Core\**\*.cs" />
<Compile Include="src\GetImageNet.UI\**\*.cs" Condition="'$(TargetFramework)' == 'net8.0-windows'" />
<Compile Include="src\GetImageNet.Console\**\*.cs" Condition="'$(TargetFramework)' == 'net8.0'" />
</ItemGroup>
<ItemGroup>
<None Include="docs\**\*.*" />
<None Include="scripts\**\*.*" />
</ItemGroup>
</Project>