-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Havit.Blazor.Components.Web.csproj
38 lines (32 loc) · 1.66 KB
/
Havit.Blazor.Components.Web.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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<!-- VSTHRD003: Avoid awaiting or returning a Task representing work that was not started within your context as that can lead to deadlocks. -->
<!-- VSTHRD200: Allow HandleXyClick methods (without Async) -> Suppress 'Use "Async" suffix in names of methods that return an awaitable type' -->
<NoWarn>$(NoWarn);1591;1701;1702;SA1134;VSTHRD003;VSTHRD200</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
<InternalsVisibleTo Include="Havit.Blazor.Components.Web.Tests" />
<InternalsVisibleTo Include="Havit.Blazor.Components.Web.Bootstrap" />
</ItemGroup>
<!-- NuGet -->
<Import Project="../NuGet.targets" />
<PropertyGroup>
<!-- ComponentsPackagesVersion - variable from Directory.Build.props -->
<PackageVersion>$(ComponentsPackagesVersion)</PackageVersion>
<Description>HAVIT Blazor Library - Free UI components and supportive classes</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://havit.blazor.eu</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Havit.Core" />
<PackageReference Include="Microsoft.Extensions.Localization" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" />
</ItemGroup>
<Target Name="CopyCustomContent" AfterTargets="AfterBuild">
<Copy SourceFiles="$(TargetDir)\Havit.Blazor.Components.Web.xml" DestinationFolder="$(OutDir)\..\..\..\..\Havit.Blazor.Documentation\xmldoc" />
</Target>
</Project>