Skip to content

Commit

Permalink
Don't warn about higher packages
Browse files Browse the repository at this point in the history
  • Loading branch information
derrickstolee committed Mar 26, 2021
1 parent 3816a0b commit 184cd2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions GVFS/GVFS.Build/GVFS.cs.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,7 @@
<DefaultItemExcludes>$(DefaultItemExcludes);StyleCop.Cache;TestResults.xml</DefaultItemExcludes>
</PropertyGroup>

<PropertyGroup>
<NoWarn>;NU1603</NoWarn>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions Scripts/push-all-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Run this script from the repo root (in Git Bash) to
# push all local packages to the custom package repository.

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

0 comments on commit 184cd2a

Please sign in to comment.