Created
November 3, 2018 17:33
-
-
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
This file contains 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
<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