We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3816a0b commit f6ba0e6Copy full SHA for f6ba0e6
2 files changed
GVFS/GVFS.Build/GVFS.cs.props
@@ -25,4 +25,8 @@
25
<DefaultItemExcludes>$(DefaultItemExcludes);StyleCop.Cache;TestResults.xml</DefaultItemExcludes>
26
</PropertyGroup>
27
28
+ <PropertyGroup>
29
+ <NoError>NU1603</NoError>
30
+ <NoWarn>NU1603</NoWarn>
31
+ </PropertyGroup>
32
</Project>
Scripts/push-all-packages.sh
@@ -3,7 +3,7 @@
3
# Run this script from the repo root (in Git Bash) to
4
# push all local packages to the custom package repository.
5
6
-for pkg in $(find $(pwd)/../packages -type f -name '*.nupkg')
+for pkg in $(find /c/Users/dstolee/.nuget/packages -type f -name '*.nupkg')
7
do
8
nuget push -Source "Dependencies" -SkipDuplicate -ApiKey az "$pkg"
9
-done
+done
0 commit comments