-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathPlivo.csproj
39 lines (39 loc) · 1.83 KB
/
Plivo.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard1.3</TargetFrameworks>
<ReleaseVersion>5.17.0</ReleaseVersion>
<Version />
<Authors>Plivo SDKs Team</Authors>
<Owners>Plivo Inc.</Owners>
<Summary>A .NET SDK to make voice calls & send SMS using Plivo and to generate Plivo XML</Summary>
<Title>Plivo</Title>
<Description>A .NET SDK to make voice calls & send SMS using Plivo and to generate Plivo XML</Description>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3'">
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<DefineConstants>NETSTANDARD1_3</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<NoStdLib>false</NoStdLib>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<NoStdLib>false</NoStdLib>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="System.Text.Encoding.Extensions" Version="4.3.0" />
<PackageReference Include="NuGet.Build.Packaging" Version="0.1.276" />
<PackageReference Include="JWT" Version="6.1.4" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resource\Address\" />
<Folder Include="Resource\Identity\" />
<Folder Include="Resource\RegulatoryCompliance" />
</ItemGroup>
</Project>