-
-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathBootstrapBlazor.csproj
More file actions
33 lines (28 loc) · 1011 Bytes
/
BootstrapBlazor.csproj
File metadata and controls
33 lines (28 loc) · 1011 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
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<Version>9.5.0-beta07</Version>
</PropertyGroup>
<ItemGroup>
<Content Remove="Locales\*.json" />
<EmbeddedResource Include="Locales\*.json" />
</ItemGroup>
<ItemGroup>
<Content Remove="sasscompiler.json" />
<Content Remove="wwwroot\core\**\*.*" />
<Content Remove="wwwroot\lib\**\*.css" />
<Content Remove="wwwroot\scss\**\*.*" />
<Content Remove="wwwroot\src\**\*.*" />
<None Include="sasscompiler.json" />
<None Include="wwwroot\core\**\*.*" />
<None Include="wwwroot\lib\**\*.css" />
<None Include="wwwroot\scss\**\*.*" />
<None Include="wwwroot\src\**\*.*" />
</ItemGroup>
<ItemGroup>
<Using Include="BootstrapBlazor.Components" />
<Using Include="Microsoft.AspNetCore.Components" />
<Using Include="Microsoft.Extensions.Options" />
<Using Include="Microsoft.JSInterop" />
<Using Include="System.ComponentModel.DataAnnotations" />
</ItemGroup>
</Project>