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

31 lines
1,014 B
XML
Raw Normal View History

2024-01-08 18:06:13 +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>
2024-01-08 18:06:13 +00:00
<ItemGroup>
<None Include="..\..\..\arts\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
2023-08-19 00:15:02 +00:00
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
2023-12-31 18:08:56 +00:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.25" />
2023-12-19 13:16:43 +00:00
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
2024-01-10 14:18:59 +00:00
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="6.0.26" />
2023-08-19 00:15:02 +00:00
</ItemGroup>
<ItemGroup>
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>