2023-03-27 13:30:27 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<UserSecretsId>7266505b-0943-45eb-844c-c657e5e93634</UserSecretsId>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-05-20 18:28:51 +00:00
|
|
|
<PackageReference Include="Blazored.LocalStorage" Version="4.3.0" />
|
2023-03-27 13:30:27 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="7.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.4">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration" Version="7.0.5" />
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore" Version="7.0.5" />
|
2023-05-20 18:28:51 +00:00
|
|
|
<PackageReference Include="Profanity.Detector" Version="0.1.8" />
|
2023-03-27 13:30:27 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-20 18:28:51 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Utils\" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-03-27 13:30:27 +00:00
|
|
|
</Project>
|