2024-01-08 18:06:13 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-08-19 00:15:02 +00:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-01-27 15:35:27 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-08-19 00:15:02 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<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>
|
2024-01-22 02:39:42 +00:00
|
|
|
<OutputPath>$(SolutionDir)packages</OutputPath>
|
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>
|
2024-01-27 15:35:27 +00:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
2023-12-19 13:16:43 +00:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
2024-01-27 07:57:56 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="8.0.1" />
|
2024-01-27 15:35:27 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1" />
|
2023-08-19 00:15:02 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-01-27 15:35:27 +00:00
|
|
|
<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>
|
|
|
|
|
|
2024-01-27 15:35:27 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Properties\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-08-19 00:15:02 +00:00
|
|
|
</Project>
|