Skip to content

Instantly share code, notes, and snippets.

@Red-Folder
Created November 3, 2018 17:33
Show Gist options
  • Save Red-Folder/3ca85e86d96bc0c966e8d769241b8581 to your computer and use it in GitHub Desktop.
Save Red-Folder/3ca85e86d96bc0c966e8d769241b8581 to your computer and use it in GitHub Desktop.
Sample function.proj for a private/ custom nuget feed for Azure Functions V2
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RestoreSources>
https://www.myget.org/F/red-folder/api/v3/index.json;
https://api.nuget.org/v3/index.json;
</RestoreSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Red-Folder.WebCrawl.Data" Version="0.1.87"/>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment