Admin.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net10.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <None Include=".github\copilot-instructions.md" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.2" />
  12. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.2" />
  13. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.2">
  14. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  15. <PrivateAssets>all</PrivateAssets>
  16. </PackageReference>
  17. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.2" />
  18. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.2">
  19. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  20. <PrivateAssets>all</PrivateAssets>
  21. </PackageReference>
  22. <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="10.0.2" />
  23. <PackageReference Include="System.Management" Version="10.0.2" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\Application\Application.csproj" />
  27. <ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Folder Include="Middleware\" />
  31. <Folder Include="wwwroot\uploads\basic\" />
  32. <Folder Include="wwwroot\uploads\banner\" />
  33. </ItemGroup>
  34. </Project>