task-tracking-system / TaskTrackingSystem.WebApp /TaskTrackingSystem.WebApp.csproj
User
Fix: Notification, Remove toggle, add kanban board to menu, fix project ID to project name
64a3c1d
Raw
History Blame Contribute Delete
629 Bytes
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\TaskTrackingSystem.Shared\TaskTrackingSystem.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.*" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.*" />
</ItemGroup>
<ItemGroup>
<Folder Include="Components\Partial\" />
</ItemGroup>
</Project>