Category: vscode

  • [Programmer Tools] VSCode Extensions

    The list have been obtained with the help of VisualAPI,former BlocklyAutomation. You can obtain a list on your device by running dotnet tool update –global programmerall –no-cache programerall Then browse to http://localhost:37283/blocklyAutomation/automation/loadexample/extVsCode and press Execute ( You can have automation the same for your site – just contact me) Those are my VSCode extensions Angular…

  • Web site–Angular- part 40

    Creating  Angular app ng new InfovalutarWebAng Then customizing to add angular material ng add @angular/material and https://material.angular.io/guide/schematics#navigation-schematic  ng generate @angular/material:nav banks Delete everyhing in app component ( without <div class=”content” role=”main”> add <app-banks></app-banks> ) See if it works. If yes,move the router outlet and footer to app-banks. Now,I want to solve the CD and to…

  • Debug Application under VSCode and Docker–part 22

    What I wanted is that people that have only a container application ( docker) and  VSCode ( not Visual Studio,nor .NET Core Framework) be able to debug the application and run it. That means,I no longer require to install .NET Core SDK on the local PC Read a lot https://code.visualstudio.com/docs/remote/containers#_devcontainerjson-reference https://github.com/microsoft/vscode-dev-containers/tree/master/containers/dotnetcore-3.0 https://code.visualstudio.com/docs/remote/containers Some important things…

  • VSCode and Docker

    I am super-excited about Docker – because it gives a new meaning about “ it works on my PC”! ( I have a presentation ready –   https://github.com/ignatandrei/presentations/tree/master/2019/shorts/DockerForDevs/ ) However,I want to state something more important: VSCode is now ready to open Docker Containers! You have to install: 1. Name: Docker Id: ms-azuretools.vscode-docker Description: Adds syntax…