BotSharp/src/Infrastructure/BotSharp.OpenAPI/BotSharp.OpenAPI.csproj

22 lines
686 B
XML
Raw Normal View History

2023-08-30 02:48:59 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2023-08-19 00:15:02 +00:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>$(LangVersion)</LangVersion>
<VersionPrefix>$(BotSharpVersion)</VersionPrefix>
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
2023-08-19 00:15:02 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
2023-08-28 15:24:43 +00:00
<ProjectReference Include="..\BotSharp.Core\BotSharp.Core.csproj" />
2023-08-19 00:15:02 +00:00
</ItemGroup>
</Project>