Skip to content

Commit 4cf8422

Browse files
committed
Add icon
1 parent 7c92c2d commit 4cf8422

File tree

4 files changed

+54
-0
lines changed

4 files changed

+54
-0
lines changed

Assets/icon.png

4.12 KB
Loading

Assets/icon.svg

Lines changed: 47 additions & 0 deletions
Loading

ExpressionDelegates.Generation/ExpressionDelegates.Generation.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ If your project doesn't have linq expressions to generate delegates from and you
4242

4343
<PropertyGroup>
4444
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);CopyProjectReferencesToPackage</TargetsForTfmSpecificBuildOutput>
45+
<PackageIcon>icon.png</PackageIcon>
4546
</PropertyGroup>
4647
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
4748
<ItemGroup>
@@ -51,6 +52,7 @@ If your project doesn't have linq expressions to generate delegates from and you
5152

5253
<ItemGroup>
5354
<Content Include="build/**/*.*" Pack="true" PackagePath="build" />
55+
<None Include="..\Assets\icon.png" Pack="true" PackagePath="\" />
5456
</ItemGroup>
5557

5658
</Project>

ExpressionDelegates/ExpressionDelegates.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818

1919
This package contains only the base classes required for expression delegates' usage. It should be used in projects that do not contain any linq expressions to generate delegates from, but make use of the delegates generated for other assemblies.
2020
Delegates generation is provided via the main `ExpressionDelegates.Generation` package.</Description>
21+
<PackageIcon>icon.png</PackageIcon>
2122
</PropertyGroup>
23+
24+
<ItemGroup>
25+
<None Include="..\Assets\icon.png" Pack="true" PackagePath="\" />
26+
</ItemGroup>
2227

2328
</Project>

0 commit comments

Comments
 (0)