I want to create a Nuget package of my Azure functions V2 project so that i can push it to octopus for deployment. But I am facing issues, Currently I am using dotnet pack <.csproj> to package my code into .nupkg. If I use simple console .net core application or library .net core than I am able to get nupkg file but if I run dotnet pack <.csproj> on my azure functions project than I get publish folder as bin\Debug\netcoreapp2.1\publish. And in publish folder my code files and dlls are present. But where is the nupkg file?
↧