BotSharp/BotSharp.Voice/BotSharp.Voice.csproj

26 lines
783 B
XML
Raw Normal View History

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>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\RASA</OutputPath>
2018-09-06 04:45:09 +00:00
</PropertyGroup>
<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>
<ItemGroup>
<PackageReference Include="NAudio" Version="1.8.4" />
</ItemGroup>
2018-09-06 04:45:09 +00:00
</Project>