We've recently started to migrate our .NET Full-Framework (net472) projects to the new SDK-style project format. Some tools were previously distributed usingClickOnce and we just manually deployed them from Visual Studio in the project settings' "Publish" tab.
<TargetFramework>net472</TargetFramework>Even though all the MSBuild properties are still in place in the .csproj file (e.g.PublishUrl, PublisherName, ...) Visual Studio doesn't seem to detect that it's a ClickOnce application anymore and the "Publish" tab is gone.
When calling msbuild /t:publish ... the application is just published to the "normal" output directory into theapp.publish folder. No .application or other deployment files are created. To me it seems like Visual Studio is just assuming that it should "dotnet publish" if it's an SDK-style project.
Maybe ClickOnce support was explicitly dropped? I couldn't find any official announcement on this.