-
.Net Framework to .NET (.Net Core) Migration
In this article, we will discuss about the things we should consider when migrating code from .NET Framework to .NET. The Migration of project from .NET Framework to .NET is relatively a straightforward task but the complexity of the project determines how much effort is involved after the initial migration. Applications which are created on…
-
Supercharging GitHub Actions with Job Summaries and Pull Request comments
Job Summaries A new feature on GitHub allows you to write job descriptions for your actions. It enables you to produce markdown as part of your workflow, render it as an output of the run in the GitHub UI, and publish it as a job summary. Custom Markdown content can be used for a wide…
-
9 Easy Steps to Create a Custom Docker File
As it is the time of cloud technology, and everyone is interested in knowing how these cloud will work. There are mainly categorized the cloud into 3 types namely: Iaas (Infrastructure as a Service), Paas (Platform as a Service) and SaaS (Software as a Service). Out of these 3 categories let’s talk about PaaS with…
-
Capabilities of Dependabot in GitHub with Azure Artifacts
In GitHub, while you can see a list of packages the organization level, the packages are installed to a specific repository. We can see here the instructions for pushing various package ecosystems to GitHub npm, NuGet, Maven, Docker. In case you are storing artifacts/packages in Azure Artifacts, Dependabot also supports private feeds, including Azure Artifacts.…
-
Protect and discover secrets using Git-leaks
Git-leaks is a SAST tool for detecting and preventing hardcoded secrets like Passwords, API keys and tokens in GitHub Repository. Git-leaks is an easy-to-use, all-in-one solution for detecting secrets, past or present, in your code. Git-leaks would be configured as part of GitHub actions workflow for all the repositories we want to monitor for any…
-
Code Scanning Results From Azure DevOps Pipelines to GitHub
Overview: In this blog I will demonstrate how to integrate the GitHub Advance Security Code scanning capability into the Azure DevOps pipelines. I will provide example of the Repository that can guide you or your developer working to integrate code scanning into Azure DevOps . I will walk you through a simple implementation of GitHub…
-
3 Strategies to Optimize Cloud Costs
While enterprises have realized the benefits of the cloud such as agility and scalability helping them achieve business goals, performance Efficiency, reliability, Security and Cost considerations in the cloud are key decision criteria for Enterprises to move their workloads to cloud. Post the COVID-19 pandemic Enterprises have seen greater usage of cloud services and consequent…
-
Migrating Work Item from Azure DevOps to GitHub Issues
Overview: This blog will let you know migrating work items from Azure DevOps to GitHub. Work Item are nothing but we can say In Azure DevOps, a need can be stated by generating a work item Here in this scenario we have one PowerShell script which help to migrate the work items from Azure DevOps…
-
CxO Roundtable at C-SOaP- SUMMIT 2013
CxO Roundtable at C-SOaP (Canarys – Software Offshore and Partner) SUMMIT 2013 http://ecanarys.com/ is recognized by Microsoft as among India’s premier Visual Studio IDE partners. The roundtable discussion will include Shesh, Director – Technology Solutions of Microsoft development and Vineeth, Microsoft mobile architect, with a focus on best practices of Visual Studio – Application Lifecycle Management (ALM). We will review our Microsoft Product practices applied…
-
Entity Framework CodeFirst Approach
Entity Framework Code First Approach Entity Framework is an enhancement to an existing ADO.Net technique and ORM framework we used for Microsoft technologies. The Entity framework is an object-relation mapper, means it takes the structure of the database and turns it into objects that the .Net framework can understand. Developers use those object to interact…