2025-02-03 04:02:36 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-05-20 21:31:31 +00:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-26 21:15:29 +00:00
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2023-05-20 21:31:31 +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-06-08 04:17:41 +00:00
|
|
|
<PackageIcon>Icon.png</PackageIcon>
|
2023-09-06 12:58:02 +00:00
|
|
|
<GeneratePackageOnBuild>$(GeneratePackageOnBuild)</GeneratePackageOnBuild>
|
2024-01-22 02:39:42 +00:00
|
|
|
<OutputPath>$(SolutionDir)packages</OutputPath>
|
2025-02-01 21:11:28 +00:00
|
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
2023-05-20 21:31:31 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-06-15 18:40:00 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="packages\**" />
|
|
|
|
|
<EmbeddedResource Remove="packages\**" />
|
|
|
|
|
<None Remove="packages\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-06-08 04:17:41 +00:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\..\..\arts\Icon.png">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-27 01:58:31 +00:00
|
|
|
<ItemGroup>
|
2025-02-01 21:11:28 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" />
|
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
|
|
|
|
|
<PackageReference Include="System.Memory.Data" />
|
|
|
|
|
<PackageReference Include="System.Text.Json" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" />
|
|
|
|
|
<PackageReference Include="Rougamo.Fody" />
|
2023-05-27 01:58:31 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-20 21:31:31 +00:00
|
|
|
</Project>
|