2024-08-03 20:40:34 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
<PropertyGroup>
|
2024-12-29 00:12:46 +08:00
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2024-08-03 20:40:34 +08:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<AssemblyName>ASG后端</AssemblyName>
|
|
|
|
|
<PublishAot>False</PublishAot>
|
2024-10-02 12:35:39 +08:00
|
|
|
|
<UserSecretsId>90d25478-1c0b-47a3-bc23-326e0e4905d9</UserSecretsId>
|
|
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
2024-10-02 14:03:22 +08:00
|
|
|
|
<RuntimeIdentifiers>linux-x64</RuntimeIdentifiers>
|
|
|
|
|
<EnableSdkContainerDebugging>True</EnableSdkContainerDebugging>
|
|
|
|
|
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0</ContainerBaseImage>
|
2024-08-03 20:40:34 +08:00
|
|
|
|
</PropertyGroup>
|
2024-12-29 00:12:46 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<IsPublishable>True</IsPublishable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<IsPublishable>True</IsPublishable>
|
|
|
|
|
</PropertyGroup>
|
2024-08-17 17:37:47 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="Controllers\PlayerC\**" />
|
|
|
|
|
<Content Remove="Controllers\PlayerC\**" />
|
|
|
|
|
<EmbeddedResource Remove="Controllers\PlayerC\**" />
|
|
|
|
|
<None Remove="Controllers\PlayerC\**" />
|
|
|
|
|
</ItemGroup>
|
2024-08-03 20:40:34 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\.editorconfig" Link=".editorconfig" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2025-01-27 20:32:23 +08:00
|
|
|
|
<PackageReference Include="ChatGPT.Net" />
|
|
|
|
|
<PackageReference Include="EPPlus" />
|
|
|
|
|
<PackageReference Include="Flandre.Adapters.OneBot.Extensions" />
|
|
|
|
|
<PackageReference Include="Flandre.Core" />
|
|
|
|
|
<PackageReference Include="IGeekFan.AspNetCore.Knife4jUI" />
|
|
|
|
|
<PackageReference Include="MailKit" />
|
|
|
|
|
<PackageReference Include="Masuit.Tools.Abstractions" />
|
|
|
|
|
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" />
|
|
|
|
|
<PackageReference Include="Mirai.Net" />
|
|
|
|
|
<PackageReference Include="MrHuo.OAuth.Core" />
|
|
|
|
|
<PackageReference Include="MrHuo.OAuth.Github" />
|
|
|
|
|
<PackageReference Include="MrHuo.OAuth.Microsoft" />
|
|
|
|
|
<PackageReference Include="NLog" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
|
|
|
|
<PackageReference Include="RestSharp" />
|
|
|
|
|
<PackageReference Include="Scalar.AspNetCore" />
|
|
|
|
|
<PackageReference Include="SkiaSharp" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" />
|
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
|
|
|
|
|
<PackageReference Include="Zack.EventBus" />
|
2024-08-03 20:40:34 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2024-11-17 13:37:37 +08:00
|
|
|
|
<Folder Include="Controllers\Team\" />
|
2024-08-11 00:16:14 +08:00
|
|
|
|
<Folder Include="Model\" />
|
2024-08-03 20:40:34 +08:00
|
|
|
|
</ItemGroup>
|
2024-10-02 12:35:39 +08:00
|
|
|
|
<ItemGroup>
|
2024-10-02 14:03:22 +08:00
|
|
|
|
<ContainerPort Include="8081" />
|
2024-10-02 12:35:39 +08:00
|
|
|
|
</ItemGroup>
|
2024-10-02 17:53:16 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Dockerfile">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2025-01-27 20:32:23 +08:00
|
|
|
|
</Project>
|