2025-02-14 16:10:20 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-11-15 13:33:46 +00:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-26 21:15:29 +00:00
|
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2023-11-15 13:33:46 +00:00
|
|
|
|
<Nullable>enable</Nullable>
|
2024-12-21 00:39:35 +00:00
|
|
|
|
<LangVersion>$(LangVersion)</LangVersion>
|
2023-12-31 18:08:56 +00:00
|
|
|
|
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
|
|
|
|
|
|
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
|
|
|
|
|
|
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
|
2024-01-22 02:39:42 +00:00
|
|
|
|
<OutputPath>$(SolutionDir)packages</OutputPath>
|
2023-11-15 13:33:46 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2024-04-29 14:13:17 +00:00
|
|
|
|
<ItemGroup>
|
2025-02-14 16:07:45 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Playwright" Version="1.50.0" />
|
|
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />
|
2024-01-03 04:43:37 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Remove="README.md" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
|
2023-11-15 13:33:46 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|