Files
TechHelper/TechHelper.Server/TechHelper.Server.csproj
SpecialX ac900159ba
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
重构项目结构,移除Assignment相关功能,优化Submission模块
2025-10-09 18:57:28 +08:00

70 lines
3.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>cfc9a23f-c045-4d10-84d4-e096cf8502ef</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Context\Configuration\AssignmentAttachmentConfiguration.cs" />
<Compile Remove="Context\Configuration\AssignmentClassConfiguration.cs" />
<Compile Remove="Context\Configuration\AssignmentConfiguration.cs" />
<Compile Remove="Context\Configuration\AssignmentQuestionConfiguration.cs" />
<Compile Remove="Context\Configuration\ClassConfiguration.cs" />
<Compile Remove="Context\Configuration\KeyPointConfiguration.cs" />
<Compile Remove="Context\Configuration\QuestionConfiguration.cs" />
<Compile Remove="Context\Configuration\RoleConfiguration.cs" />
<Compile Remove="Context\Configuration\SubmissionConfiguration.cs" />
<Compile Remove="Context\Configuration\SubmissionDetailConfiguration.cs" />
<Compile Remove="Context\Configuration\UserConfiguration.cs" />
<Compile Remove="Services\ClassService.cs" />
<Compile Remove="Services\ExamService.cs" />
<Compile Remove="Services\IClassService.cs" />
<Compile Remove="Services\IExamService.cs" />
<Compile Remove="Services\INoteService.cs" />
<Compile Remove="Services\IQuestionService.cs" />
<Compile Remove="Services\IStudentSubmissionDetailService.cs" />
<Compile Remove="Services\IStudentSubmissionService.cs" />
<Compile Remove="Services\ISubmissionServices.cs" />
<Compile Remove="Services\NoteService.cs" />
<Compile Remove="Services\QuestionService.cs" />
<Compile Remove="Services\StudentSubmissionDetailService.cs" />
<Compile Remove="Services\StudentSubmissionService.cs" />
<Compile Remove="Services\SubmissionServices.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="14.0.0" />
<PackageReference Include="MailKit" Version="4.12.1" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.16" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.16" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.16" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.16">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.0.16" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.16">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EmailLib\EmailLib.csproj" />
<ProjectReference Include="..\Entities\Entities.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Context\Configuration\" />
</ItemGroup>
</Project>