-
Notifications
You must be signed in to change notification settings - Fork 50
/
FluentCMS.Web.UI.Components.csproj
42 lines (40 loc) · 1.5 KB
/
FluentCMS.Web.UI.Components.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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>FluentCMS.Web.UI.Components</PackageId>
<Version>0.0.1</Version>
<Authors>Amir Pournasserian</Authors>
<Company>FluentCMS</Company>
<Description>Web UI Components.</Description>
<PackageTags>fluentcms;cms;components;plugin;core</PackageTags>
<RepositoryUrl>https://github.com/fluentcms/FluentCMS</RepositoryUrl>
<PackageProjectUrl>https://fluentcms.com</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Components\Icon\IconResource.resx">
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="..\..\icon.png" Pack="true" PackagePath="icon.png" />
<None Include="README.md" Pack="true" PackagePath="README.md" />
</ItemGroup>
</Project>