-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCore.csproj
31 lines (26 loc) · 1.05 KB
/
Core.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net47</TargetFramework>
<LangVersion>10</LangVersion>
<RootNamespace>SipgateVirtualFax</RootNamespace>
<Nullable>enable</Nullable>
<UICulture>en-US</UICulture>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<Prefer32bit>false</Prefer32bit>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="iTextSharp" Version="5.5.13.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NLog" Version="5.0.4" />
<PackageReference Include="NTwain" Version="3.7.5" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Net" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Web" />
</ItemGroup>
</Project>