Skip to content

Commit

Permalink
chore: add package icon
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Jul 21, 2024
1 parent bd0d7ad commit 03c5af5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 17 deletions.
Binary file added NotifyIcon/Favicon.ico
Binary file not shown.
Binary file added NotifyIcon/Favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 26 additions & 17 deletions NotifyIcon/NotifyIcon.csproj
Original file line number Diff line number Diff line change
@@ -1,29 +1,38 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net462;net472;net48;net5.0-windows;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks>
<PropertyGroup>
<TargetFrameworks>net462;net472;net48;net5.0-windows;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<PackageId>NotifyIconEx</PackageId>
<PackageId>NotifyIconEx</PackageId>
<RootNamespace>NotifyIconEx</RootNamespace>
<UseWPF>false</UseWPF>
<UseWinUI>false</UseWinUI>
<UseWindowsForms>true</UseWindowsForms>
<Version>1.0.7</Version>
<Authors>Lemutec</Authors>
<Company>Lemutec</Company>
<Product>NotifyIconEx</Product>
<Description>NotifyIcon is an easy-to-use library for displaying NotifyIcon (notification icon) in WPF / WinForms / Avalonia / WinUI / MAUI applications, offering non-intrusive system notifications and quick access functionality in the taskbar.</Description>
<PackageProjectUrl>https://github.com/lemutec/NotifyIconEx</PackageProjectUrl>
<RepositoryUrl>https://github.com/lemutec/NotifyIconEx</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>NotifyIcon .NET WPF WinForm Avalonia WinUI MAUI</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<Version>1.0.7</Version>
<Authors>Lemutec</Authors>
<Company>Lemutec</Company>
<Product>NotifyIconEx</Product>
<Description>NotifyIconEx is an easy-to-use library for displaying NotifyIcon (notification icon) in WPF / WinForms / Avalonia / WinUI / MAUI applications, offering non-intrusive system notifications and quick access functionality in the taskbar.</Description>
<PackageProjectUrl>https://github.com/lemutec/NotifyIconEx</PackageProjectUrl>
<RepositoryUrl>https://github.com/lemutec/NotifyIconEx</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>NotifyIcon .NET WPF WinForm Avalonia WinUI MAUI</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Favicon.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="" />
<ItemGroup>
<Content Include="Favicon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</Content>
</ItemGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="" />
<None Remove="Favicon.png" />
</ItemGroup>

</Project>

0 comments on commit 03c5af5

Please sign in to comment.