I have Azure Functions project with the following settings in .csproj file:
<IsPackable>true</IsPackable>
<PackageId>Product.Services.Subscriptions</PackageId>
<Version>1.0.0</Version>
<Authors>MyCompany</Authors>
<Company>MyCompany</Company>
When I do dotnet pack
for it nothing happens (no .nupkg file creates).
The output I see:
Microsoft (R) Build Engine version 16.11.1+3e40a09f8 for .NET
Copyright (C) Microsoft Corporation. All rights reserved.
Determining projects to restore...
All projects are up-to-date for restore.
Do I do something wrong or how is it supposed to work?