Skip to content

Commit 44bf6e7

Browse files
Taritsynrhuanjl
authored andcommitted
NuGet: Add a package icon
1 parent b604219 commit 44bf6e7

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

Build/NuGet/icon.png

5.68 KB
Loading

Build/NuGet/package-data.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@
1414
<owners>Chakra Team</owners>
1515
<license type="file">LICENSE.txt</license>
1616
<projectUrl>https://github.com/Microsoft/ChakraCore</projectUrl>
17+
<icon>icon.png</icon>
18+
<iconUrl>https://raw.githubusercontent.com/chakra-core/ChakraCore/master/Build/NuGet/icon.png</iconUrl>
1719
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1820
<developmentDependency>true</developmentDependency>
1921
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
2022
<language>en-US</language>
2123
</commonMetadataElements>
2224
<commonFileElements>
25+
<file src="..\icon.png" target="icon.png" />
2326
<file src="..\..\..\LICENSE.txt" target="" />
2427
</commonFileElements>
2528
</commonProperties>

tools/StyleChecks/check_copyright.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ git diff --name-only `git merge-base origin/master HEAD` HEAD |
4343
grep -v -E '\.man$' |
4444
grep -v -E '\.testconfig$' |
4545
grep -v -E '\.proj$' |
46+
grep -v -E '\.png$' |
4647
grep -v -E 'packages.config$' |
4748
grep -v -E 'lib/wabt/.*' |
4849
grep -v -E 'test/WasmSpec.*$' |

tools/StyleChecks/check_eol.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fi
1616
ERRFILE=check_eol.sh.err
1717
rm -f $ERRFILE
1818

19-
git diff --name-only `git merge-base origin/master HEAD` HEAD | grep -v -E "(test/.*\\.js|\\.cmd|\\.baseline|\\.wasm|\\.wast|\\.vcxproj|\\.vcproj|\\.sln|\\.man)" | xargs -I % ./tools/StyleChecks/check_file_eol.sh %
19+
git diff --name-only `git merge-base origin/master HEAD` HEAD | grep -v -E "(test/.*\\.js|\\.cmd|\\.baseline|\\.wasm|\\.wast|\\.vcxproj|\\.vcproj|\\.sln|\\.man|\\.png)" | xargs -I % ./tools/StyleChecks/check_file_eol.sh %
2020

2121
if [ -e $ERRFILE ]; then # if error file exists then there were errors
2222
>&2 echo "--------------" # leading >&2 means echo to stderr

tools/StyleChecks/check_tabs.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ git diff --name-only `git merge-base origin/master HEAD` HEAD |
2828
grep -v -E '\.baseline$' |
2929
grep -v -E '\.wasm$' |
3030
grep -v -E '\.wast$' |
31+
grep -v -E '\.png$' |
3132
grep -v -E '^lib/wabt' |
3233
grep -v -E 'bin/External/.*$' |
3334
xargs -I % sh -c 'echo --- IN FILE % ---; git blame HEAD -- % | grep -P "(\t|--- IN FILE)"' > check_tabs.sh.err

0 commit comments

Comments
 (0)