BotSharp/BotSharp.WebHost/BotSharp.WebHost.csproj

123 lines
4.7 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<RuntimeIdentifiers>Portable;win10-x64;centos.7-x64</RuntimeIdentifiers>
<Platforms>AnyCPU;x64</Platforms>
2018-09-28 00:49:43 +00:00
<Configurations>Debug;Release;DIALOGFLOW;RASA;ARTICULATE</Configurations>
</PropertyGroup>
2018-08-14 14:23:15 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG</DefineConstants>
</PropertyGroup>
2018-09-20 21:18:34 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RASA|AnyCPU'">
<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>
2018-10-05 12:52:02 +00:00
<OutputPath></OutputPath>
2018-09-21 20:11:57 +00:00
</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>
<ItemGroup>
<Compile Remove="App_Data\AgentArchive\**" />
<Compile Remove="App_Data\Corpus\**" />
<Compile Remove="App_Data\Projects\**" />
2018-08-13 12:26:12 +00:00
<Compile Remove="PublishOutput\**" />
2018-10-05 01:57:10 +00:00
<Compile Remove="publish\**" />
<Content Remove="App_Data\AgentArchive\**" />
<Content Remove="App_Data\Corpus\**" />
<Content Remove="App_Data\DbInitializer\**" />
<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-10-05 01:57:10 +00:00
<Content Remove="publish\**" />
<EmbeddedResource Remove="App_Data\AgentArchive\**" />
<EmbeddedResource Remove="App_Data\Corpus\**" />
<EmbeddedResource Remove="App_Data\Projects\**" />
2018-08-13 12:26:12 +00:00
<EmbeddedResource Remove="PublishOutput\**" />
2018-10-05 01:57:10 +00:00
<EmbeddedResource Remove="publish\**" />
<None Remove="App_Data\AgentArchive\**" />
<None Remove="App_Data\Corpus\**" />
<None Remove="App_Data\DbInitializer\**" />
<None Remove="App_Data\Projects\**" />
2018-08-13 12:26:12 +00:00
<None Remove="PublishOutput\**" />
2018-10-05 01:57:10 +00:00
<None Remove="publish\**" />
</ItemGroup>
<ItemGroup>
<None Remove="App_Data\BotSharp.db" />
</ItemGroup>
<ItemGroup>
2018-09-20 21:18:34 +00:00
<Content Include="App_Data\Corpus\CoNLL\conll2000_chunking_train.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.2" />
</ItemGroup>
<ItemGroup>
2018-10-04 02:40:00 +00:00
<PackageReference Include="DotNetToolkit" Version="1.6.0" />
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" />
<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" />
</ItemGroup>
2018-10-05 01:57:10 +00:00
<ItemGroup>
2018-10-12 02:42:56 +00:00
<ProjectReference Include="..\..\botsharp-dialogflow\BotSharp.Platform.Dialogflow\BotSharp.Platform.Dialogflow.csproj" />
2018-10-05 01:57:10 +00:00
<ProjectReference Include="..\BotSharp.Core\BotSharp.Core.csproj" />
</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\auth.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2018-10-03 17:21:19 +00:00
<Content Update="Settings\BotSharpNLU.json">
2018-10-02 16:46:24 +00:00
<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>
</Project>