LANCommander/LANCommander.UI/LANCommander.UI.csproj
Pat Hartl e1c1469614 Fix chat component rendering
- Load thread after creation
- Change thread list from DataList to Flex
- Move unread badge to right side of chat thread list item
- Fix avatar rerendering after another message is added to message group
- Add styling to thread list
- Change message input to support markdown and add markdown rendering for message contents
2025-12-30 18:08:20 -06:00

41 lines
1.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<Target Name="CompileFrontendResources" BeforeTargets="Compile">
<Message Text="Compiling frontend" Importance="high" />
<Exec Command="npm run package" />
</Target>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AntDesign" />
<PackageReference Include="BlazorMonaco" />
<PackageReference Include="BootstrapBlazor.PdfReader" />
<PackageReference Include="ByteSize" />
<PackageReference Include="EasyMDE.Blazor" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" />
<PackageReference Include="PSC.Blazor.Components.MarkdownEditor" />
<PackageReference Include="XtermBlazor" />
</ItemGroup>
<ItemGroup>
<Content Remove="package.json;package-lock.json;tsconfig.json;webpack.config.js" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LANCommander.SDK\LANCommander.SDK.csproj" />
</ItemGroup>
</Project>