-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPSWinCom.Gateway.Client.NetStandard20.csproj
More file actions
71 lines (67 loc) · 3.22 KB
/
PSWinCom.Gateway.Client.NetStandard20.csproj
File metadata and controls
71 lines (67 loc) · 3.22 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>PSWinCom.Gateway.Client</AssemblyName>
<RootNamespace>PSWinCom.Gateway.Client</RootNamespace>
<Company>LINK Mobility AS</Company>
<Authors>LINK Mobility AS</Authors>
<Copyright>Copyright © 2018</Copyright>
<Version>1.0.0</Version>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\gateway_client.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\PSWinCom.Gateway.Client\BatchStatus.cs">
<Link>BatchStatus.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\Gateway.cs" Link="Gateway.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\GatewayClient.cs" Link="GatewayClient.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\GatewayClientBase.cs">
<Link>GatewayClientBase.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\GatewayFactory.cs">
<Link>GatewayFactory.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\GatewayResponse.cs">
<Link>GatewayResponse.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\Interfaces\IAsyncGatewayClient.cs" Link="Interfaces\IAsyncGatewayClient.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\Interfaces\IAsyncTransport.cs" Link="Interfaces\IAsyncTransport.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\Interfaces\IGatewayClient.cs" Link="Interfaces\IGatewayClient.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\Interfaces\ITransport.cs" Link="Interfaces\ITransport.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\Message.cs">
<Link>Message.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\MessageResult.cs">
<Link>MessageResult.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\MessageStatus.cs">
<Link>MessageStatus.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\MmsMessage.cs">
<Link>MmsMessage.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\NetworkSpecification.cs">
<Link>NetworkSpecification.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\SMSException.cs">
<Link>SMSException.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\SmsMessage.cs">
<Link>SmsMessage.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\TransportResult.cs">
<Link>TransportResult.cs</Link>
</Compile>
<Compile Include="..\PSWinCom.Gateway.Client\Transports\HttpTransport.cs" Link="Transports\HttpTransport.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\Transports\HttpTransportAsync.cs" Link="Transports\HttpTransportAsync.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\Transports\TcpTransport.cs" Link="Transports\TcpTransport.cs" />
<Compile Include="..\PSWinCom.Gateway.Client\Transports\TcpTransportAsync.cs" Link="Transports\TcpTransportAsync.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Interfaces\" />
<Folder Include="Properties\" />
<Folder Include="Transports\" />
</ItemGroup>
</Project>