Skip to content

Commit e90b1c2

Browse files
committed
Update Icons and use Icon.png name instead
- Add `Icon.png` apart from `nuget.png` - This is used as a public reference point for NuGet icon URL. So, keep the original file. - If there's a need to update the icon, only update the new one `Icon.png` and keep the old one intact.
1 parent ae23543 commit e90b1c2

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

Microsoft.Toolkit.Uwp.Notifications/Microsoft.Toolkit.Uwp.Notifications.nuspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<requireLicenseAcceptance>true</requireLicenseAcceptance>
88
<license type="expression">MIT</license>
99
<projectUrl>https://github.com/CommunityToolkit/WindowsCommunityToolkit</projectUrl>
10-
<iconUrl>https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/nuget.png</iconUrl>
1110
<icon>Icon.png</icon>
1211
<description>The official way to send toast notifications on Windows 10 via code rather than XML, with the help of IntelliSense. Supports all C# app types, including WPF, UWP, WinForms, and Console, even without packaging your app as MSIX. Also supports C++ UWP apps.
1312

@@ -52,8 +51,8 @@
5251
</dependencies>
5352
</metadata>
5453
<files>
55-
<file src="..\build\nuget.png" target="Icon.png" />
56-
<file src="..\license.md" target="" />
54+
<file src="..\build\Icon.png" target="" />
55+
<file src="..\License.md" target="" />
5756
<file src="Microsoft.Toolkit.Uwp.Notifications.targets" target="build\native\Microsoft.Toolkit.Uwp.Notifications.targets" />
5857
<file src="$buildOutput$\net461\Microsoft.Toolkit.Uwp.Notifications.dll" target="lib\net461\Microsoft.Toolkit.Uwp.Notifications.dll" />
5958
<file src="$buildOutput$\net461\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\net461\Microsoft.Toolkit.Uwp.Notifications.pdb" />

Microsoft.Toolkit.Uwp.SampleApp/SamplePages/MarkdownTextBlock/InitialContent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -412,11 +412,11 @@ which renders in:
412412

413413
MarkdownTextblock supports links wrapped with Images.
414414

415-
>\[!\[image](https\://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/nuget.png)](https\://docs.microsoft.com/windows/uwpcommunitytoolkit/)
415+
>\[!\[image](https\://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/Icon.png)](https\://docs.microsoft.com/windows/uwpcommunitytoolkit/)
416416
417417
will render into
418418

419-
[![image](https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/nuget.png)](https://docs.microsoft.com/windows/uwpcommunitytoolkit/)
419+
[![image](https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/Icon.png)](https://docs.microsoft.com/windows/uwpcommunitytoolkit/)
420420

421421
and when clicked will go to the Linked Page.
422422

@@ -425,7 +425,7 @@ MarkdownTextBlock also supports Reference based links.
425425
```
426426
[![image][1]][2]
427427
428-
[1]:https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/nuget.png
428+
[1]:https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/Icon.png
429429
[2]:https://docs.microsoft.com/windows/uwpcommunitytoolkit/
430430
431431
```
@@ -434,7 +434,7 @@ will render into
434434

435435
[![image][1]][2]
436436

437-
[1]:https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/nuget.png
437+
[1]:https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/Icon.png
438438
[2]:https://docs.microsoft.com/windows/uwpcommunitytoolkit/
439439

440440
*****

build/Icon.png

32.7 KB
Loading

build/Windows.Toolkit.Common.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<PackageProjectUrl>https://github.com/CommunityToolkit/WindowsCommunityToolkit</PackageProjectUrl>
1212
<PackageReleaseNotes>https://github.com/CommunityToolkit/WindowsCommunityToolkit/releases</PackageReleaseNotes>
1313
<PackageIcon>Icon.png</PackageIcon>
14-
<PackageIconUrl>https://raw.githubusercontent.com/CommunityToolkit/WindowsCommunityToolkit/main/build/nuget.png</PackageIconUrl>
1514
</PropertyGroup>
1615

1716
<PropertyGroup>

build/Windows.Toolkit.Common.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup Condition="$(IsPackable)">
16-
<None Include="$(BuildToolsDirectory)nuget.png" Pack="true" PackagePath="\Icon.png" />
16+
<None Include="$(BuildToolsDirectory)Icon.png" Pack="true" PackagePath="\" />
1717
<None Include="$(RepositoryDirectory)License.md" Pack="true" PackagePath="\" />
1818
<None Include="$(RepositoryDirectory)ThirdPartyNotices.txt" Pack="true" PackagePath="\" />
1919
</ItemGroup>

build/nuget.png

32 KB
Loading

0 commit comments

Comments
 (0)