Skip to content

Commit 87ec32a

Browse files
committed
Added fake debug info generated code #164
1 parent 5bbf9c0 commit 87ec32a

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: dotnet test -c $app_conf --no-build -f net5.0
4646
- name: Pack
4747
working-directory: nuget
48-
run: dotnet pack -c $app_conf --no-build -o `pwd`/artifacts -p:Version=$app_version
48+
run: dotnet pack -c $app_conf --no-build -o `pwd`/artifacts -p:Version=$app_version -p:CommitSHA=$GITHUB_SHA
4949
- uses: actions/upload-artifact@v1
5050
with:
5151
name: artifacts

external/FluentIL

nuget/AspectInjector.Package.csproj

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<PackageId>AspectInjector</PackageId>
55
<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.
88

99
Create your aspect by marking class with [Aspect], its methods with [Advice] and create trigger attribute with [Injection].
1010
That's it! Cross-cutting concerns made easy! Just apply your attribute where you need and everything automagicaly works!
@@ -13,22 +13,25 @@
1313

1414
See release notes for this version here:
1515
https://github.com/pamidur/aspect-injector/releases/tag/$(Version)
16-
</Description>
16+
</PackageDescription>
1717
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1818
<PackageProjectUrl>https://github.com/pamidur/aspect-injector</PackageProjectUrl>
1919
<RepositoryUrl>https://github.com/pamidur/aspect-injector</RepositoryUrl>
2020
<PackageIconUrl>https://raw.githubusercontent.com/pamidur/aspect-injector/master/package.png</PackageIconUrl>
2121
<PackageIcon>package.png</PackageIcon>
22+
<PackageReadmeFile>README.md</PackageReadmeFile>
2223
<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>
2426
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
2527
<IncludeBuildOutput>False</IncludeBuildOutput>
2628
<PackageReleaseNotes>See here => https://github.com/pamidur/aspect-injector/releases/tag/$(Version)</PackageReleaseNotes>
2729
<Version>0.0.0</Version>
2830
</PropertyGroup>
2931

3032
<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="/"/>
3235
</ItemGroup>
3336

3437
<ItemGroup>

0 commit comments

Comments
 (0)