Packaging tab missing in Project Properties in Visual Studio 2022 Community
Alex D
16
Reputation points
Hello,
I'm trying to follow this tutorial to create a NuGet package Artifact in Azure DevOps:
https://www.youtube.com/watch?v=lLKVdg3Vff0
However, I cannot continue as the Packaging tab is missing from the project:
I have tried deleting the .csproj file and replacing it with a new one generated from the "dotnet new classlib" command that only contains this:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
Still, no effect on the project in Visual Studio.
Any help would be welcome!
Sign in to answer