-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathApiAiSDK.csproj
75 lines (75 loc) · 3.19 KB
/
ApiAiSDK.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{162D1664-491D-41A3-B4E7-332EAAF87CCA}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ApiAiSDK</RootNamespace>
<AssemblyName>ApiAiSDK</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<ReleaseVersion>1.3.2</ReleaseVersion>
<SynchReleaseVersion>False</SynchReleaseVersion>
<Description>Library provides simple programming interface for making text and voice requests to the API.AI service.</Description>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net35\Newtonsoft.Json.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="LibraryInfo.cs" />
<Compile Include="Model\AIRequest.cs" />
<Compile Include="Model\AIResponse.cs" />
<Compile Include="Model\OriginalRequest.cs" />
<Compile Include="Model\QuestionMetadata.cs" />
<Compile Include="Model\Result.cs" />
<Compile Include="Model\Status.cs" />
<Compile Include="Http\MultipartHttpClient.cs" />
<Compile Include="ApiAi.cs" />
<Compile Include="AIDataService.cs" />
<Compile Include="AIConfiguration.cs" />
<Compile Include="AIServiceException.cs" />
<Compile Include="SupportedLanguage.cs" />
<Compile Include="Model\AIOutputContext.cs" />
<Compile Include="Model\Metadata.cs" />
<Compile Include="Util\VoiceActivityDetector.cs" />
<Compile Include="Util\ActionExtensions.cs" />
<Compile Include="Util\ByteBuffer.cs" />
<Compile Include="Model\Fulfillment.cs" />
<Compile Include="ApiAiBase.cs" />
<Compile Include="RequestExtras.cs" />
<Compile Include="Model\Entity.cs" />
<Compile Include="Model\EntityEntry.cs" />
<Compile Include="Model\AIContext.cs" />
<Compile Include="Util\VoiceActivityDetectorV2.cs" />
<Compile Include="Util\FFT2.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup />
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
</Project>