bulletboards/ImageBoardServerApp/ImageBoardServerApp.csproj

31 lines
1.1 KiB
XML
Raw Normal View History

2023-01-18 12:56:24 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
2023-01-19 12:00:30 +00:00
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
2023-01-18 12:56:24 +00:00
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.13" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.13">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.13" />
<PackageReference Include="Radzen.Blazor" Version="4.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
</ItemGroup>
2023-01-18 13:49:53 +00:00
<ItemGroup>
<Folder Include="wwwroot\static" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="Shared\Components\Forms\CommentForm.razor" />
<AdditionalFiles Include="Shared\Components\Forms\PostForm.razor" />
</ItemGroup>
2023-01-18 12:56:24 +00:00
</Project>