Created
March 31, 2015 06:45
-
-
Save HowardvanRooijen/312a906ce895890db07c to your computer and use it in GitHub Desktop.
Custom NuGet Configuration file for performing a package restore against a private nuget feed. Useful for Azure Web Apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<activePackageSource> | |
<add key="All" value="(Aggregate source)" /> | |
</activePackageSource> | |
<packageSources> | |
<add key="nuget.org" value="https://www.nuget.org/api/v2/" /> | |
<add key="custom_package_source" value="https://custom_package_source/nuget/v1/FeedService.svc/" /> | |
</packageSources> | |
<disabledPackageSources /> | |
<packageSourceCredentials> | |
<custom_package_source> | |
<add key="Username" value="CustomUsername" /> | |
<add key="ClearTextPassword" value="CustomPassword" /> | |
</custom_package_source> | |
</packageSourceCredentials> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment