|
3 | 3 | <TargetFramework>netstandard2.0</TargetFramework>
|
4 | 4 | <PackageId>AspectInjector</PackageId>
|
5 | 5 | <Title>Aspect Injector - AOP Framework</Title>
|
6 |
| - <Description> |
7 |
| - This library provides attributes-based compile-time AOP framework. |
| 6 | + <PackageDescription> |
| 7 | + Attributes-based compile-time AOP framework. |
8 | 8 |
|
9 | 9 | Create your aspect by marking class with [Aspect], its methods with [Advice] and create trigger attribute with [Injection].
|
10 | 10 | That's it! Cross-cutting concerns made easy! Just apply your attribute where you need and everything automagicaly works!
|
|
13 | 13 |
|
14 | 14 | See release notes for this version here:
|
15 | 15 | https://github.com/pamidur/aspect-injector/releases/tag/$(Version)
|
16 |
| - </Description> |
| 16 | + </PackageDescription> |
17 | 17 | <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
18 | 18 | <PackageProjectUrl>https://github.com/pamidur/aspect-injector</PackageProjectUrl>
|
19 | 19 | <RepositoryUrl>https://github.com/pamidur/aspect-injector</RepositoryUrl>
|
20 | 20 | <PackageIconUrl>https://raw.githubusercontent.com/pamidur/aspect-injector/master/package.png</PackageIconUrl>
|
21 | 21 | <PackageIcon>package.png</PackageIcon>
|
| 22 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
22 | 23 | <RepositoryType>git</RepositoryType>
|
23 |
| - <PackageTags>aop aspect aspects injector injection inpc dotnet core notify notifypropertychanged aot blazor attribute</PackageTags> |
| 24 | + <RepositoryCommit>$(CommitSHA)</RepositoryCommit> |
| 25 | + <PackageTags>aop aspect aspects injector inpc core notify aot blazor attribute</PackageTags> |
24 | 26 | <GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
25 | 27 | <IncludeBuildOutput>False</IncludeBuildOutput>
|
26 | 28 | <PackageReleaseNotes>See here => https://github.com/pamidur/aspect-injector/releases/tag/$(Version)</PackageReleaseNotes>
|
27 | 29 | <Version>0.0.0</Version>
|
28 | 30 | </PropertyGroup>
|
29 | 31 |
|
30 | 32 | <ItemGroup>
|
31 |
| - <None Include="$(MSBuildThisFileDirectory)../package.png" Pack="true" PackagePath="\" /> |
| 33 | + <None Include="$(MSBuildThisFileDirectory)../package.png" Pack="true" PackagePath="/" /> |
| 34 | + <None Include="$(MSBuildThisFileDirectory)../README.md" Pack="true" PackagePath="/"/> |
32 | 35 | </ItemGroup>
|
33 | 36 |
|
34 | 37 | <ItemGroup>
|
|
0 commit comments