-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathAmiClient.csproj
34 lines (34 loc) · 1.58 KB
/
AmiClient.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>AmiClient</PackageId>
<Title>AmiClient</Title>
<PackageVersion>1.3.1</PackageVersion>
<RepositoryUrl>https://github.com/alexforster/AmiClient/tree/v1.3.1</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>asterisk asterisk-ami asterisk-pbx voip sip csharp csharp-library netstandard netcore</PackageTags>
<Copyright>Copyright © Alex Forster</Copyright>
<Description>Asterisk Management Interface (AMI) client library for .NET</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>true</IsPackable>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RootNamespace>Ami</RootNamespace>
<PackageProjectUrl>https://github.com/alexforster/AmiClient</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<LangVersion>7.3</LangVersion>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<LangVersion>7.3</LangVersion>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Reactive.Interfaces" Version="4.*" />
</ItemGroup>
</Project>