-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
31 lines (27 loc) · 1.27 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="*" PrivateAssets="All" />
<None Include="../../README.md" Pack="true" PackagePath="\"/>
<None Include="../../logo.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<!-- package info -->
<PropertyGroup>
<Title>$(ProjectName)</Title>
<PackageId>$(AssemblyName)</PackageId>
<AssemblyName>$(AssemblyName)</AssemblyName>
<Description>An amazing Figma squircle corner-smoothing for Blazor component like border radius in iOS</Description>
<Authors>le-nn</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/le-nn/blazor-squircle</PackageProjectUrl>
<RepositoryUrl>https://github.com/le-nn/blazor-squircle</RepositoryUrl>
<Copyright>Copyright (c) 2024 le-nn</Copyright>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
</Project>