Blog

Blog posts on .NET, Azure, and more.

Customize Create and initialize field option in Visual Studio Code and Visual Studio

November 13, 2019 by Anuraj

VisualStudio VSCode Visual Studio Code

This post is Customize Create and initialize field refactoring option in Visual Studio Code and Visual Studio. When you add a parameter to a constructor, VS Code and Visual Studio gives an option to Create and initialize field. But if you haven’t configured any custom naming conventions, it will create field with same name and in the constructor it will load using the this. prefix.

How to use Bootstrap style validation in ASP.NET Core

October 20, 2019 by Anuraj

ASPNET Core Bootstrap

This post is about using Bootstrap 4 style validation in ASP.NET Core. By default ASP.NET Core validation messages will be displayed in the bottom of the invalid control. And even if we are using bootstrap, the validation styles won’t be applied. In this post I will explain how to configure Bootstrap validation styles to ASP.NET Core.

Write your first GitHub action - Part 3

September 01, 2019 by Anuraj

CI GitHub Actions ASPNET Core

In the last post we learned about deploying a NuGet package to nuget.org using dotnet nuget push command. In this post, we will learn how to deploy an ASP.NET Core Web API application to Azure App Service.

Write your first GitHub action - Part 2

August 25, 2019 by Anuraj

CI GitHub Actions ASPNET Core

In the last post we learned about working with GitHub actions and creating a CI workflow for our dotnet core application. In this post, we will learn how to deploy the middleware to nuget.org using dotnet nuget push command.

Write your first GitHub action - Part 1

August 19, 2019 by Anuraj

CI GitHub Actions ASPNET Core

GitHub Actions makes it easy to automate all your software workflows. GitHub actions is still in Beta and it is free for Open source projects. This post is writing your first GitHub action for implementing continuous integration for a dotnet core application. Similar to Azure DevOps or Travis CI, it is also supports YAML scripts to implement automation.

Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub