-
Notifications
You must be signed in to change notification settings - Fork 5
/
TransbankPosSDK.csproj
59 lines (53 loc) · 2.2 KB
/
TransbankPosSDK.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
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>
<TargetFramework>netstandard2.0</TargetFramework>
<ApplicationIcon />
<Win32Resource />
<OutputType>Library</OutputType>
<StartupObject />
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageId>TransbankPosSDK</PackageId>
<Description>This is the .Net SDK for Transbank's Verifone VX520, VX520c, Ingenico DESK 3500 POS and self service POS.</Description>
<License>LICENSE.md</License>
<PackageProjectUrl>http://www.transbankdevelopers.cl/</PackageProjectUrl>
<RepositoryUrl>https://github.com/TransbankDevelopers/transbank-pos-sdk-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageTags>payments, cl, chile, transbank, POS, Verifone, vx520, vx520c, integrated payment, selfservice,</PackageTags>
<PackageIcon>favicon.png</PackageIcon>
<VersionPrefix>2.3.1</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<Product>TransbankPOSSDK</Product>
<Copyright>2021 - Transbank</Copyright>
<RootNamespace>Transbank.POS</RootNamespace>
<Company>Transbank</Company>
<Authors>Transbank</Authors>
<Configurations>Release;Debug</Configurations>
</PropertyGroup>
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<Version>4.0.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Ports" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\favicon.png" Pack="true" PackagePath="">
<Link>favicon.png</Link>
</None>
<None Include="..\LICENSE.md" Pack="true" PackagePath="LICENSE.md">
<Link>LICENSE.md</Link>
</None>
</ItemGroup>
</Project>