2024-12-03 23:06:06 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-09-26 20:34:16 +00:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Provider\**" />
|
|
|
|
|
<EmbeddedResource Remove="Provider\**" />
|
|
|
|
|
<None Remove="Provider\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-10-03 19:09:14 +00:00
|
|
|
<ItemGroup>
|
2024-12-04 22:12:02 +00:00
|
|
|
<None Remove="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-excel-handle_excel_request.json" />
|
|
|
|
|
<None Remove="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\templates\util-excel-handle_excel_request.fn.liquid" />
|
2024-10-03 19:09:14 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-12-04 22:12:02 +00:00
|
|
|
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\util-excel-handle_excel_request.json">
|
2024-10-03 19:09:14 +00:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2024-12-04 22:12:02 +00:00
|
|
|
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\templates\util-excel-handle_excel_request.fn.liquid">
|
2024-10-03 19:09:14 +00:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-09-26 20:34:16 +00:00
|
|
|
<ItemGroup>
|
2025-02-22 16:55:47 +00:00
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite" />
|
|
|
|
|
<PackageReference Include="MySql.Data" />
|
|
|
|
|
<PackageReference Include="NPOI" />
|
2024-09-26 20:34:16 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BotSharp.Plugin.SqlDriver\BotSharp.Plugin.SqlDriver.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|