LEFT | RIGHT |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <configuration> | 2 <configuration> |
3 <solution> | 3 <solution> |
4 <add key="disableSourceControlIntegration" value="true" /> | 4 <add key="disableSourceControlIntegration" value="true" /> |
5 </solution> | 5 </solution> |
6 <packageSources> | 6 <packageSources> |
7 <add key="NuGet official package source" value="https://nuget.org/api/v2
/" /> | 7 <add key="NuGet official package source" value="https://nuget.org/api/v2
/" /> |
8 <add key="TestSource" value="C:\LocalNuGetFeed" /> | 8 <!-- In case of a new release, when the new core packages (e.g. Google.A
pis.1.5.0-beta.nupkg package) don't |
| 9 exist yet on the NuGet main repository, we use this local folder. |
| 10 In that case, this folder should contain the core library packages (Goog
le.Apis and Google.Apis.Authetnication) |
| 11 as part of following the steps in the release process.· |
| 12 By doing so, we would be able to test all the generated NuGet packages l
ocally before pushing to the main NuGet |
| 13 repository--> |
| 14 <add key="TestSource" value="C:\LocalNuGetFeed" />· |
9 </packageSources> | 15 </packageSources> |
10 </configuration> | 16 </configuration> |
LEFT | RIGHT |