-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathLumexUI.Docs.Client.csproj
More file actions
26 lines (21 loc) · 833 Bytes
/
LumexUI.Docs.Client.csproj
File metadata and controls
26 lines (21 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="12.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\LumexUI\LumexUI.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Pages/**/*.html" />
<EmbeddedResource Include="Samples/**/*.html" />
</ItemGroup>
</Project>