File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
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 /c/Users/dstolee/.nuget/packages -type f -name ' *.nupkg' )
7+ do
8+ nuget push -Source " Dependencies" -SkipDuplicate -ApiKey az " $pkg "
9+ done
Original file line number Diff line number Diff line change 66 <packageSources >
77 <clear />
88 <add key =" Dependencies" value =" https://pkgs.dev.azure.com/gvfs/ci/_packaging/Dependencies/nuget/v3/index.json" />
9- <add key =" nuget.org" value =" https://api.nuget.org/v3/index.json" />
109 </packageSources >
1110 <activePackageSource >
1211 <add key =" All" value =" (Aggregate source)" />
You can’t perform that action at this time.
0 commit comments