2018-07-13 12:21:40 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
|
|
|
|
<RuntimeIdentifiers>Portable;win10-x64;centos.7-x64</RuntimeIdentifiers>
|
2018-08-15 22:37:23 +00:00
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
2018-09-28 00:49:43 +00:00
|
|
|
|
<Configurations>Debug;Release;DIALOGFLOW;RASA;ARTICULATE</Configurations>
|
2018-07-13 12:21:40 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2018-08-14 14:23:15 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2018-09-04 20:39:51 +00:00
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2018-09-20 21:18:34 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RASA|AnyCPU'">
|
2018-09-21 11:02:58 +00:00
|
|
|
|
<DefineConstants>DEBUG;TRACE;RASA</DefineConstants>
|
|
|
|
|
|
<OutputPath>bin\RASA</OutputPath>
|
2018-09-20 21:18:34 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2018-09-21 20:11:57 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DIALOGFLOW|AnyCPU'">
|
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE;DIALOGFLOW;NETCOREAPP;NETCOREAPP2_1</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2018-09-28 00:49:43 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ARTICULATE|AnyCPU'">
|
2018-10-02 16:46:24 +00:00
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
2018-09-28 00:49:43 +00:00
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2018-08-07 22:13:55 +00:00
|
|
|
|
<ItemGroup>
|
2018-08-27 21:04:00 +00:00
|
|
|
|
<Compile Remove="App_Data\AgentArchive\**" />
|
|
|
|
|
|
<Compile Remove="App_Data\Corpus\**" />
|
2018-08-15 10:46:53 +00:00
|
|
|
|
<Compile Remove="App_Data\Projects\**" />
|
2018-08-13 12:26:12 +00:00
|
|
|
|
<Compile Remove="PublishOutput\**" />
|
2018-08-27 21:04:00 +00:00
|
|
|
|
<Content Remove="App_Data\AgentArchive\**" />
|
|
|
|
|
|
<Content Remove="App_Data\Corpus\**" />
|
|
|
|
|
|
<Content Remove="App_Data\DbInitializer\**" />
|
2018-08-15 10:46:53 +00:00
|
|
|
|
<Content Remove="App_Data\Projects\**" />
|
2018-08-08 21:39:00 +00:00
|
|
|
|
<Content Remove="App_Data\TrainingFiles\**" />
|
2018-08-13 12:26:12 +00:00
|
|
|
|
<Content Remove="PublishOutput\**" />
|
2018-08-27 21:04:00 +00:00
|
|
|
|
<EmbeddedResource Remove="App_Data\AgentArchive\**" />
|
|
|
|
|
|
<EmbeddedResource Remove="App_Data\Corpus\**" />
|
2018-08-15 10:46:53 +00:00
|
|
|
|
<EmbeddedResource Remove="App_Data\Projects\**" />
|
2018-08-13 12:26:12 +00:00
|
|
|
|
<EmbeddedResource Remove="PublishOutput\**" />
|
2018-08-27 21:04:00 +00:00
|
|
|
|
<None Remove="App_Data\AgentArchive\**" />
|
|
|
|
|
|
<None Remove="App_Data\Corpus\**" />
|
|
|
|
|
|
<None Remove="App_Data\DbInitializer\**" />
|
2018-08-15 10:46:53 +00:00
|
|
|
|
<None Remove="App_Data\Projects\**" />
|
2018-08-13 12:26:12 +00:00
|
|
|
|
<None Remove="PublishOutput\**" />
|
2018-08-07 22:13:55 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-07-13 12:21:40 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="App_Data\BotSharp.db" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-08-31 17:52:52 +00:00
|
|
|
|
<ItemGroup>
|
2018-09-20 21:18:34 +00:00
|
|
|
|
<Content Include="App_Data\Corpus\CoNLL\conll2000_chunking_train.txt">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2018-08-31 17:52:52 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-07-13 12:21:40 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.2" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-08-22 15:45:50 +00:00
|
|
|
|
<ProjectReference Include="..\BotSharp.Core\BotSharp.Core.csproj" />
|
2018-07-13 12:21:40 +00:00
|
|
|
|
<ProjectReference Include="..\BotSharp.RestApi\BotSharp.RestApi.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-10-03 11:58:34 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="2.1.4" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.3" />
|
2018-07-15 12:31:52 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
|
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="3.0.0" />
|
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="3.0.0" />
|
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="3.0.0" />
|
2018-07-13 12:21:40 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-10-02 16:46:24 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Update="Settings\app.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2018-10-03 01:44:11 +00:00
|
|
|
|
<Content Update="Settings\DialogflowAi.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2018-10-02 16:46:24 +00:00
|
|
|
|
<Content Update="Settings\ArticulateAi.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Update="Settings\auth.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Update="Settings\BotSharpAi.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Update="Settings\db.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Update="Settings\logging.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Update="Settings\swagger.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-09-20 21:18:34 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="App_Data\CRFLite\template.en">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="App_Data\Resources\dict.txt">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="App_Data\userdict.txt">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2018-07-13 12:21:40 +00:00
|
|
|
|
</Project>
|