-
-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathBootstrapBlazor.csproj
More file actions
37 lines (31 loc) · 1.22 KB
/
BootstrapBlazor.csproj
File metadata and controls
37 lines (31 loc) · 1.22 KB
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
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup Condition="'$(VisualStudioVersion)' == '17.0'">
<Version>9.11.5-beta03</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(VisualStudioVersion)' == '18.0'">
<Version>10.0.0-rc.2.1.2</Version>
</PropertyGroup>
<ItemGroup>
<Content Remove="Locales\*.json" />
<EmbeddedResource Include="Locales\*.json" />
</ItemGroup>
<ItemGroup>
<Content Remove="wwwroot\core\bootstrap\**\*.*" />
<Content Remove="wwwroot\lib\animate\*.css" />
<Content Remove="wwwroot\lib\swal\*.css" />
<Content Remove="wwwroot\scss\*" />
<Content Remove="wwwroot\css\bootstrapblazor.min.css" />
<None Include="wwwroot\core\bootstrap\**\*.*" />
<None Include="wwwroot\lib\animate\*.css" />
<None Include="wwwroot\lib\swal\*.css" />
<None Include="wwwroot\scss\*" />
<None Include="wwwroot\css\bootstrapblazor.min.css" />
</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>