17 lines
511 B
XML
17 lines
511 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Configurations>Debug;Release;RASA;DIALOGFLOW;ARTICULATE</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>bin\RASA</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ARTICULATE|AnyCPU'">
|
|
<DefineConstants>TRACE;ARTICULATE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|