Skip to content

Commit f6ba0e6

Browse files
committed
Don't warn about higher packages
1 parent 3816a0b commit f6ba0e6

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

GVFS/GVFS.Build/GVFS.cs.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,8 @@
2525
<DefaultItemExcludes>$(DefaultItemExcludes);StyleCop.Cache;TestResults.xml</DefaultItemExcludes>
2626
</PropertyGroup>
2727

28+
<PropertyGroup>
29+
<NoError>NU1603</NoError>
30+
<NoWarn>NU1603</NoWarn>
31+
</PropertyGroup>
2832
</Project>

Scripts/push-all-packages.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Run this script from the repo root (in Git Bash) to
44
# push all local packages to the custom package repository.
55

6-
for pkg in $(find $(pwd)/../packages -type f -name '*.nupkg')
6+
for pkg in $(find /c/Users/dstolee/.nuget/packages -type f -name '*.nupkg')
77
do
88
nuget push -Source "Dependencies" -SkipDuplicate -ApiKey az "$pkg"
9-
done
9+
done

0 commit comments

Comments
 (0)