-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlazor.Bootstrap.Icons.csproj
More file actions
36 lines (30 loc) · 984 Bytes
/
Blazor.Bootstrap.Icons.csproj
File metadata and controls
36 lines (30 loc) · 984 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
34
35
36
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>1.0.1</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<Compile Remove="node_modules" />
<Compile Remove="buildScripts" />
</ItemGroup>
<ItemGroup>
<Content Remove="package-lock.json" />
<Content Remove="package.json" />
</ItemGroup>
<ItemGroup>
<None Include="package-lock.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Include="package.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>