Skip to content

Commit

Permalink
Added fake debug info generated code #164
Browse files Browse the repository at this point in the history
  • Loading branch information
pamidur committed Oct 18, 2021
1 parent 5bbf9c0 commit 87ec32a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: dotnet test -c $app_conf --no-build -f net5.0
- name: Pack
working-directory: nuget
run: dotnet pack -c $app_conf --no-build -o `pwd`/artifacts -p:Version=$app_version
run: dotnet pack -c $app_conf --no-build -o `pwd`/artifacts -p:Version=$app_version -p:CommitSHA=$GITHUB_SHA
- uses: actions/upload-artifact@v1
with:
name: artifacts
Expand Down
2 changes: 1 addition & 1 deletion external/FluentIL
13 changes: 8 additions & 5 deletions nuget/AspectInjector.Package.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>AspectInjector</PackageId>
<Title>Aspect Injector - AOP Framework</Title>
<Description>
This library provides attributes-based compile-time AOP framework.
<PackageDescription>
Attributes-based compile-time AOP framework.

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

See release notes for this version here:
https://github.com/pamidur/aspect-injector/releases/tag/$(Version)
</Description>
</PackageDescription>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/pamidur/aspect-injector</PackageProjectUrl>
<RepositoryUrl>https://github.com/pamidur/aspect-injector</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/pamidur/aspect-injector/master/package.png</PackageIconUrl>
<PackageIcon>package.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<PackageTags>aop aspect aspects injector injection inpc dotnet core notify notifypropertychanged aot blazor attribute</PackageTags>
<RepositoryCommit>$(CommitSHA)</RepositoryCommit>
<PackageTags>aop aspect aspects injector inpc core notify aot blazor attribute</PackageTags>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<IncludeBuildOutput>False</IncludeBuildOutput>
<PackageReleaseNotes>See here => https://github.com/pamidur/aspect-injector/releases/tag/$(Version)</PackageReleaseNotes>
<Version>0.0.0</Version>
</PropertyGroup>

<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)../package.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)../package.png" Pack="true" PackagePath="/" />
<None Include="$(MSBuildThisFileDirectory)../README.md" Pack="true" PackagePath="/"/>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 87ec32a

Please sign in to comment.