2024-01-06 22:24:22 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-26 21:15:29 +00:00
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2024-01-06 22:24:22 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<LangVersion>$(LangVersion)</LangVersion>
|
|
|
|
|
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
|
|
|
|
|
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
|
|
|
|
|
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
|
2024-01-22 02:39:42 +00:00
|
|
|
<OutputPath>$(SolutionDir)packages</OutputPath>
|
2024-01-06 22:24:22 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-02-02 22:36:05 +00:00
|
|
|
<ItemGroup>
|
2024-07-10 04:36:49 +00:00
|
|
|
<None Remove="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\handle_http_request.json" />
|
|
|
|
|
<None Remove="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\templates\handle_http_request.fn.liquid" />
|
2024-02-02 22:36:05 +00:00
|
|
|
<None Remove="data\agents\87c458fc-ec5f-40ae-8ed6-05dda8a07523\agent.json" />
|
|
|
|
|
<None Remove="data\agents\87c458fc-ec5f-40ae-8ed6-05dda8a07523\functions.json" />
|
|
|
|
|
<None Remove="data\agents\87c458fc-ec5f-40ae-8ed6-05dda8a07523\instruction.liquid" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="data\agents\87c458fc-ec5f-40ae-8ed6-05dda8a07523\agent.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="data\agents\87c458fc-ec5f-40ae-8ed6-05dda8a07523\instruction.liquid">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2024-07-10 04:36:49 +00:00
|
|
|
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\functions\handle_http_request.json">
|
2024-06-26 16:37:55 +00:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2024-07-10 04:36:49 +00:00
|
|
|
<Content Include="data\agents\6745151e-6d46-4a02-8de4-1c4f21c7da95\templates\handle_http_request.fn.liquid">
|
2024-06-26 16:37:55 +00:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2024-02-02 22:36:05 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-20 21:50:45 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-01-06 22:24:22 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|