2026-02-03 16:55:37 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<UserSecretsId>9bafa5c2-cfce-4fd2-89f6-91b06916b038</UserSecretsId>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter" Version="9.0.12" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.12" />
|
2026-04-25 22:45:59 -05:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.12" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="9.0.12" />
|
2026-02-03 16:55:37 -06:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.12" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.12" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.9" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.12">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.12" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-05-01 19:48:34 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Folder Include="wwwroot\uploads\" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2026-02-03 16:55:37 -06:00
|
|
|
|
</Project>
|