2023-05-26 01:36:15 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-01-27 07:57:56 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-05-26 01:36:15 +00:00
|
|
|
<Nullable>enable</Nullable>
|
2023-09-06 12:58:02 +00:00
|
|
|
<LangVersion>$(LangVersion)</LangVersion>
|
2023-09-19 16:29:25 +00:00
|
|
|
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
|
2023-09-06 12:58:02 +00:00
|
|
|
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
|
2023-11-27 21:00:26 +00:00
|
|
|
<GenerateDocumentationFile>$(GenerateDocumentationFile)</GenerateDocumentationFile>
|
2024-01-22 02:39:42 +00:00
|
|
|
<OutputPath>$(SolutionDir)packages</OutputPath>
|
2023-05-26 01:36:15 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-27 15:35:27 +00:00
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
2023-06-08 03:43:16 +00:00
|
|
|
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
|
2024-01-15 19:15:18 +00:00
|
|
|
<ProjectReference Include="..\..\Infrastructure\BotSharp.OpenAPI\BotSharp.OpenAPI.csproj" />
|
2023-05-26 01:36:15 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|