-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Havit.Blazor.Components.Web.Bootstrap.Smart.csproj
63 lines (52 loc) · 2.64 KB
/
Havit.Blazor.Components.Web.Bootstrap.Smart.csproj
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>1591;1701;1702;SA1134;BL0007</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Content Include="css\lib.css" />
</ItemGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Havit.Blazor.Documentation" />
</ItemGroup>
<!-- NuGet -->
<Import Project="../NuGet.targets" />
<PropertyGroup>
<!-- ComponentsPackagesVersion - variable from Directory.Build.props -->
<PackageVersion>$(ComponentsPackagesVersion)-preview04</PackageVersion>
<Description>HAVIT Blazor Library - Free Bootstrap 5 components for ASP.NET Blazor - Smart (AI) components</Description>
<!--<PackageLicenseExpression>MIT</PackageLicenseExpression>-->
<PackageProjectUrl>https://havit.blazor.eu</PackageProjectUrl>
<!--<PackageReadmeFile>README.md</PackageReadmeFile>-->
<PackageReleaseNotes>https://github.com/havit/Havit.Blazor/releases</PackageReleaseNotes>
<PackageTags>blazor bootstrap components webassembly wasm bootstrap5 BlazorBootstrap BootstrapBlazor ai smart</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" />
<PackageReference Include="SmartComponents.AspNetCore.Components" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Havit.Blazor.Components.Web.Bootstrap\Havit.Blazor.Components.Web.Bootstrap.csproj" />
</ItemGroup>
<Target Name="CopyCustomContent" AfterTargets="AfterBuild">
<Copy SourceFiles="$(TargetDir)\Havit.Blazor.Components.Web.Bootstrap.Smart.xml" DestinationFolder="$(OutDir)\..\..\..\..\Havit.Blazor.Documentation\xmldoc" />
</Target>
<!-- Causes CSS file to be included in the bundle of scoped CSS, even though it's not scoped -->
<Target Name="AttachCssAsScoped" BeforeTargets="ComputeCssScope">
<ItemGroup>
<_CssToAttach Include="css\lib.css" />
<_CssToAttachWithIntermediatePath Include="@(_CssToAttach)">
<IntermediatePath>$(IntermediateOutputPath)scopedcss\%(Filename).rz.scp.css</IntermediatePath>
</_CssToAttachWithIntermediatePath>
</ItemGroup>
<Copy SourceFiles="@(_CssToAttachWithIntermediatePath)" DestinationFiles="@(_CssToAttachWithIntermediatePath->'%(IntermediatePath)')" />
<ItemGroup>
<_ScopedCssCandidateFile Include="@(_CssToAttachWithIntermediatePath->'%(IntermediatePath)')" RelativePath="@(_CssToAttachWithIntermediatePath->'%(Filename).rz.scp.css')" OriginalItemSpec="@(_CssToAttachWithIntermediatePath->'%(Filename)')" />
</ItemGroup>
</Target>
</Project>