Files
marechai/Marechai.Server/Marechai.Server.csproj

24 lines
942 B
XML
Raw Normal View History

2025-11-13 04:55:13 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
2025-11-13 04:55:13 +00:00
2025-11-13 05:16:58 +00:00
<ItemGroup>
<PackageReference Include="Aaru.CommonTypes"/>
<PackageReference Include="Markdig"/>
<PackageReference Include="Microsoft.AspNetCore.OpenApi"/>
<PackageReference Include="Svg.Skia"/>
2025-11-13 14:36:14 +00:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer"/>
<PackageReference Include="Microsoft.AspNetCore.Identity.UI"/>
2025-11-14 00:17:47 +00:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design"/>
2025-11-13 05:16:58 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Marechai.Database\Marechai.Database.csproj"/>
<ProjectReference Include="..\Marechai.Data\Marechai.Data.csproj"/>
2025-11-13 05:16:58 +00:00
</ItemGroup>
2025-11-13 04:55:13 +00:00
</Project>