-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
25 lines (23 loc) · 1.13 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
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net7.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="*" PrivateAssets="All" />
<None Include="../../README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup>
<Title>$(AssemblyName)</Title>
<PackageId>$(AssemblyName)</PackageId>
<Description>An easy way to perform animations when a Blazor component enters or leaves the DOM.</Description>
<Authors>le-nn</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/le-nn/blazor-transition-group</PackageProjectUrl>
<RepositoryUrl>https://github.com/le-nn/blazor-transition-group</RepositoryUrl>
<PackageTags>blazor;blazor-transition-group;blazor-component</PackageTags>
<Copyright>Copyright (c) 2022 le-nn</Copyright>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
</Project>