I have an ASP.NET project (NET6) and I removed Docker support by:
- Deleting the 'targets' file
- Deleting the 'docker' file
- Removing 'Docker' settings from the 'launchsettings.json' file
When I try to publish the project I get the following errors:
Visual Studio container tools require Docker Desktop. To get it, see https://go.microsoft.com/fwlink/?linkid=847268
The "KillAppInsideContainer" task failed unexpectedly.
I've installed Docker Desktop for Windows and I still get these errors when publishing:
The "KillAppInsideContainer" task failed unexpectedly.
Method not found: 'Void Microsoft.VisualStudio.Containers.Tools.Shared.Functions.AzureFunctionsFeedDataProvider..ctor(Microsoft.VisualStudio.Containers.Tools.Common.Services.Logging.ILoggingService)'.
Am I missing other settings / places where Docker is still referenced?