Install VsVim in Visual Studio 2013 - visual-studio-2013

When I try to install VsVim in Visual Studio 2013, I receive the error:
The installation was unable to install the extension to all the selected products. For more information, click on the install log link at the bottom of the dialog.
This extension is not installable on any currently installed products.
11/27/2013 6:32:49 PM - Microsoft VSIX Installer
11/27/2013 6:32:49 PM - -------------------------------------------
11/27/2013 6:32:49 PM - Initializing Install...
11/27/2013 6:32:49 PM - Extension Details...
11/27/2013 6:32:49 PM - Identifier : VsVim.Microsoft.e214908b-0458-4ae2-a583-4310f29687c3
11/27/2013 6:32:49 PM - Name : VsVim
11/27/2013 6:32:49 PM - Author : Jared Parsons
11/27/2013 6:32:49 PM - Version : 1.4.2.0
11/27/2013 6:32:49 PM - Description : VIM emulation layer for Visual Studio
11/27/2013 6:32:49 PM - Locale : en-US
11/27/2013 6:32:49 PM - MoreInfoURL : http://blogs.msdn.com/b/jaredpar
11/27/2013 6:32:49 PM - InstalledByMSI : False
11/27/2013 6:32:49 PM - SupportedFrameworkVersionRange : [4.0,5.0]
11/27/2013 6:32:49 PM -
11/27/2013 6:32:49 PM - Supported Products :
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Ultimate
11/27/2013 6:32:49 PM - Version : [10.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Ultimate
11/27/2013 6:32:49 PM - Version : [11.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Ultimate
11/27/2013 6:32:49 PM - Version : [12.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Premium
11/27/2013 6:32:49 PM - Version : [10.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Premium
11/27/2013 6:32:49 PM - Version : [11.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Premium
11/27/2013 6:32:49 PM - Version : [12.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Pro
11/27/2013 6:32:49 PM - Version : [10.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Pro
11/27/2013 6:32:49 PM - Version : [11.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.Pro
11/27/2013 6:32:49 PM - Version : [12.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.IntegratedShell
11/27/2013 6:32:49 PM - Version : [10.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.IntegratedShell
11/27/2013 6:32:49 PM - Version : [11.0]
11/27/2013 6:32:49 PM - Microsoft.VisualStudio.IntegratedShell
11/27/2013 6:32:49 PM - Version : [12.0]
11/27/2013 6:32:49 PM - AtmelStudio
11/27/2013 6:32:49 PM - Version : [6.0]
11/27/2013 6:32:49 PM - AtmelStudio
11/27/2013 6:32:49 PM - Version : [6.1]
11/27/2013 6:32:49 PM -
11/27/2013 6:32:49 PM - References :
11/27/2013 6:32:49 PM -
11/27/2013 6:32:49 PM - Searching for applicable products...
11/27/2013 6:32:49 PM - Found installed product - Microsoft Visual Studio Express 2013 for Windows Desktop
11/27/2013 6:32:49 PM - Found installed product - Global Location
11/27/2013 6:32:49 PM - VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products.
at VSIXInstaller.App.InitializeInstall()
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
Any ideas? I really like this extension!

You have Visual Studio Express 2013 installed. The express editions do not support extensions so VsVim cannot be installed. Only the full versions support extensions so you would to buy Visual Studio 2013 to be able to install VsVim.

Download VsVim.
This is a Vim Emulation layer for Visual Studio 2010 and above. It integrates the familiar key binding experience of Vim directly into Visual Studio's editor.
And this works fine in VS-Community edition also.
To install plugin just double click on VsVim.vsix

Related

.NET 6 - msbuild takes wrong SDK on VS2022 for Mac

I get an NETSDK1045 error on Visual Studio 2022 for Mac (both, Stable and 17.3 preview version) when I try to build my netcore webapp project with .NET 6.0.
Even though I set the target framework to 6.0, Visual Studio calls dotnet sdk 5.0 msbuild
/usr/local/share/dotnet/sdk/5.0.408/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.TargetFrameworkInference.targets(141,5): error NETSDK1045: Das aktuelle .NET SDK unterstützt .NET 6.0 nicht als Ziel. Geben Sie entweder .NET 5.0 oder niedriger als Ziel an, oder verwenden Sie eine .NET SDK-Version, die .NET 6.0 unterstützt.
0 Warnung(en)
1 Fehler
Project File:
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
</PropertyGroup>
The runtimes are installed if I call dotnet on the command line:
[/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.6 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.11 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.15 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.16 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.17 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 6.0.5 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 6.0.6 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.NETCore.App 5.0.0 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.6 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.11 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.15 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.16 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.17 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.5 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.6 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]
as well as the SDKs
5.0.402 [/usr/local/share/dotnet/sdk]
5.0.406 [/usr/local/share/dotnet/sdk]
5.0.407 [/usr/local/share/dotnet/sdk]
5.0.408 [/usr/local/share/dotnet/sdk]
6.0.300 [/usr/local/share/dotnet/sdk]
6.0.301 [/usr/local/share/dotnet/sdk]
How can I force visual studio to call msbuild of the .net6 sdk?
Use a global.json file
Create a file named global.json in the root of your project folder (where the solution file is or even one level above, depending on your folder structure). It's contents should be something like
{
"sdk": {
"version": "6.0.301"
}
}
The version should be the SDK version you want to build with (not the runtime version).
Visual Studio may need a restart after you have created this file to work correctly.

Visual Studio 2022 : Console template has .NET 5 as current

On my post, I used Visual Studio 2019, but recently I installed in addition Visual Studio 2022.
In Visual Studio 2022, when I create a new console project ("Console App" template), by default the selected target framework is .NET 5 :
Moreover, .NET 5 is marked as "(Current)" when .NET 6 is installed :
> dotnet --info
.NET SDK (reflecting any global.json):
Version: 6.0.200
Commit: 4c30de7899
Runtime Environment:
OS Name: Windows
OS Version: 10.0.14393
OS Platform: Windows
RID: win10-x64
Base Path: C:\Program Files\dotnet\sdk\6.0.200\
Host (useful for support):
Version: 6.0.2
Commit: 839cdfb0ec
.NET SDKs installed:
2.1.526 [C:\Program Files\dotnet\sdk]
2.1.602 [C:\Program Files\dotnet\sdk]
2.1.700 [C:\Program Files\dotnet\sdk]
2.1.811 [C:\Program Files\dotnet\sdk]
2.2.402 [C:\Program Files\dotnet\sdk]
3.0.100 [C:\Program Files\dotnet\sdk]
3.1.120 [C:\Program Files\dotnet\sdk]
3.1.408 [C:\Program Files\dotnet\sdk]
5.0.100 [C:\Program Files\dotnet\sdk]
5.0.405 [C:\Program Files\dotnet\sdk]
6.0.200 [C:\Program Files\dotnet\sdk]
.NET runtimes installed:
Microsoft.AspNetCore.All 2.1.9 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.All 2.1.11 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.All 2.1.13 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.All 2.1.18 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.All 2.1.23 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.All 2.1.30 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.All 2.2.7 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
Microsoft.AspNetCore.App 2.1.9 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 2.1.11 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 2.1.13 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 2.1.18 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 2.1.23 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 2.1.30 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 2.2.7 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 3.0.0 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 3.1.14 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 3.1.17 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 3.1.20 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 3.1.22 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.0 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.14 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 6.0.2 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 2.1.9 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.1.11 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.1.13 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.1.18 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.1.23 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.1.30 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 2.2.7 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 3.0.0 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 3.1.14 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 3.1.17 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 3.1.20 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 3.1.22 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.0 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.14 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.1 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.2 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 3.0.0 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 3.1.14 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 3.1.17 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 3.1.20 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 3.1.22 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 5.0.0 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 5.0.14 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 6.0.1 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 6.0.2 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Often I create new console project to do some test. Each time, I need to select ".NET 6.0" (when I don't forget) to use the latest functionality. It's distasteful.
How configure VS 2022 to have .NET by default in the target framework combo box?
Optionally, what do mean "Current"?
#HereticMonkey, thank you for showing me the light.
The computer has two install of dotnet :
C:\Program Files\dotnet
C:\Program Files (x86)\dotnet
The x86 cli give a different result :
>"C:\Program Files (x86)\dotnet\dotnet.exe" --info
.NET SDK (reflecting any global.json):
Version: 5.0.100-preview.7.20366.6
Commit: 0684df3a5b
Runtime Environment:
OS Name: Windows
OS Version: 10.0.14393
OS Platform: Windows
RID: win10-x86
Base Path: C:\Program Files (x86)\dotnet\sdk\5.0.100-preview.7.20366.6\
Host (useful for support):
Version: 6.0.2
Commit: 839cdfb0ec
.NET SDKs installed:
5.0.100-preview.7.20366.6 [C:\Program Files (x86)\dotnet\sdk]
.NET runtimes installed:
Microsoft.AspNetCore.App 3.1.22 [C:\Program Files (x86)\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.0-preview.7.20365.19 [C:\Program Files (x86)\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 5.0.14 [C:\Program Files (x86)\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.AspNetCore.App 6.0.2 [C:\Program Files (x86)\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 3.1.22 [C:\Program Files (x86)\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.0-preview.7.20364.11 [C:\Program Files (x86)\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 5.0.14 [C:\Program Files (x86)\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.2 [C:\Program Files (x86)\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 3.1.22 [C:\Program Files (x86)\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 5.0.0-preview.7.20366.1 [C:\Program Files (x86)\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 5.0.14 [C:\Program Files (x86)\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 6.0.2 [C:\Program Files (x86)\dotnet\shared\Microsoft.WindowsDesktop.App]
To install additional .NET runtimes or SDKs:
https://aka.ms/dotnet-download
With the tool dotnet-core-uninstall tool, I list all SDKs :
>dotnet-core-uninstall list
This tool cannot uninstall versions of the runtime or SDK that are 
- SDKs installed using Visual Studio 2019 Update 3 or later.
- SDKs and runtimes installed via zip/scripts.
- Runtimes installed with SDKs (these should be removed by removing that SDK).
The versions that can be uninstalled with this tool are:
.NET Core SDKs:
5.0.100-preview.7.20366.6 x86
5.0.100 x64 [Used by Visual Studio. Specify individually or use --force to remove]
3.1.408 x64
3.1.120 x64
3.0.100 x64
2.2.402 x64 [Used by Visual Studio 2019. Specify individually or use --force to remove]
2.1.811 x64 [Used by Visual Studio 2019. Specify individually or use --force to remove]
2.1.700 x64
2.1.602 x64
2.1.526 x64 [Used by Visual Studio 2017. Specify individually or use --force to remove]
.NET Core Runtimes:
ASP.NET Core Runtimes:
.NET Core Runtime & Hosting Bundles:
The x86 come from a preview version... Like explained in this link .NET known-issues.
When upgrading Visual Studio to preview 5 or the .NET SDK to RC2 from an earlier build, the installer will uninstall the prior version of the .NET Host (dotnet.exe) and then install a new version. This results in the path to the x64 copy of dotnet being removed from the PATH then added back. If you have the x86 .NET Host installed, it will end up ahead of the x64 one and will be picked up first.
...
To fix this, edit your PATH environment variable to either remove the c:\Program Files (x86)\dotnet entry or move it after the entry for c:\Program Files\dotnet. Now reopen your console window.
I remove all x86 entries (only 5.0.100-preview.7.20366.6 in my case) :
>dotnet-core-uninstall remove --sdk 5.0.100-preview.7.20366.6
The following items will be removed:
Microsoft .NET SDK 5.0.100-preview.7.20366.6 (x86)
To avoid breaking Visual Studio or other problems, read https://aka.ms/dotnet-core-uninstall-docs.
Do you want to continue? [y/n] y
Uninstalling: Microsoft .NET SDK 5.0.100-preview.7.20366.6 (x86).
The folder "C:\Program Files (x86)\dotnet" has been removed.
Now, when I create a new console project in Visual Studio 2022, the target framework .NET 6 is selected by default.

How to remove Microsoft.NETCore.App 6.0.0-rc.2.21480.5

I am trying to remove the preview versions of dot net 6.
if I run dotnet --info i see
.NET SDK (reflecting any global.json):
Version: 6.0.100
Commit: 9e8b04bbff
Runtime Environment:
OS Name: Windows
OS Version: 10.0.22000
OS Platform: Windows
RID: win10-x64
Base Path: C:\Program Files\dotnet\sdk\6.0.100\
Host (useful for support):
Version: 6.0.0
Commit: 4822e3c3aa
.NET SDKs installed:
6.0.100 [C:\Program Files\dotnet\sdk]
.NET runtimes installed:
Microsoft.AspNetCore.App 6.0.0 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 5.0.8 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.0-rc.2.21480.5 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.NETCore.App 6.0.0 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 5.0.8 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 6.0.0-rc.2.21501.6 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.WindowsDesktop.App 6.0.0 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
To install additional .NET runtimes or SDKs:
https://aka.ms/dotnet-download
When I run dotnet-core-uninstall.exe list I see
This tool cannot uninstall versions of the runtime or SDK that are 
- SDKs installed using Visual Studio 2019 Update 3 or later.
- SDKs and runtimes installed via zip/scripts.
- Runtimes installed with SDKs (these should be removed by removing that SDK).
The versions that can be uninstalled with this tool are:
.NET Core SDKs:
6.0.100 x64 [Used by Visual Studio. Specify individually or use —-force to remove]
.NET Core Runtimes:
ASP.NET Core Runtimes:
.NET Core Runtime & Hosting Bundles:
It does not show the preview versions, so how do I remove them?
I removed the folder directly from C:\Program Files\dotnet\shared\ which sems to do the trick

Limit systemd service memory for docker

I've got a very wierd problem with docker.service. I try to limit memory using that MemoryLimit=8Gbut when I do that containers won't to start after service restart. Other limitatnions which I use works fine:
CPUWeight=60
CPUQuota=80%
IOWeight=20
MemorySwapMax=1
Some details:
Version: 19.03.8
API version: 1.40
Go version: go1.12.17
Git commit: afacb8b7f0
Built: Wed Mar 11 01:25:46 2020
OS/Arch: linux/amd64
Experimental: false
Server: Docker Engine - Community
Engine:
Version: 19.03.8
API version: 1.40 (minimum version 1.12)
Go version: go1.12.17
Git commit: afacb8b7f0
Built: Wed Mar 11 01:24:19 2020
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.2.13
GitCommit: 7ad184331fa3e55e52b890ea95e65ba581ae3429
runc:
Version: 1.0.0-rc10
GitCommit: dc9208a3303feef5b3839f4323d9beb36df0a9dd
docker-init:
Version: 0.18.0
GitCommit: fec3683
system: Ubuntu 18 LTS (5.0.0-1032-azure)

while deploying spring boot application on docker i am getting this error

this is my docker details.
Client: Docker Engine - Community
Version: 19.03.8
API version: 1.40
Go version: go1.12.17
Git commit: afacb8b
Built: Wed Mar 11 01:23:10 2020
OS/Arch: windows/amd64
Experimental: true
Server: Docker Engine - Community
Engine:
Version: 19.03.8
API version: 1.40 (minimum version 1.24)
Go version: go1.12.17
Git commit: afacb8b
Built: Wed Mar 11 01:37:20 2020
OS/Arch: windows/amd64
Experimental: true

Resources