-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBootstrapBlazor.DriverJs.csproj
More file actions
28 lines (22 loc) · 862 Bytes
/
BootstrapBlazor.DriverJs.csproj
File metadata and controls
28 lines (22 loc) · 862 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<RootNamespace>BootstrapBlazor.Components</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<PackageTags>Bootstrap Blazor WebAssembly wasm UI Components</PackageTags>
<Description>Bootstrap UI components extensions of driver.js</Description>
</PropertyGroup>
<ItemGroup>
<Content Remove="Locales\*.json" />
<EmbeddedResource Include="Locales\*.json" />
</ItemGroup>
<ItemGroup Condition="'$(VisualStudioVersion)' == '17.0'">
<PackageReference Include="BootstrapBlazor" Version="$(BBVersion)" />
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.AspNetCore.Components" />
<Using Include="Microsoft.Extensions.Localization" />
<Using Include="Microsoft.JSInterop" />
<Using Include="System.Text.Json.Serialization" />
</ItemGroup>
</Project>