2018-09-06 04:45:09 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2018-09-28 00:49:43 +00:00
|
|
|
<Configurations>Debug;Release;RASA;DIALOGFLOW;ARTICULATE</Configurations>
|
2018-09-21 11:02:58 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<OutputPath>bin\RASA</OutputPath>
|
2018-09-06 04:45:09 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-09-23 15:16:29 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DIALOGFLOW|AnyCPU'">
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-09-28 00:49:43 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ARTICULATE|AnyCPU'">
|
|
|
|
|
<DefineConstants>TRACE;ARTICULATE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-09-23 15:16:29 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="NAudio" Version="1.8.4" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-09-06 04:45:09 +00:00
|
|
|
</Project>
|