-
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…
-
Using XMPP and Openfire server in ASP.NET C# – Part -1
Extensible Messaging and Presence Protocol (XMPP) The Extensible Messaging and Presence Protocol (XMPP) is a protocol for streaming XML elements in order to exchange messages and presence information. The XMPP Core uses main features like XML Streams TLS SASL IM The basic functionality expected of XMPP is instant messaging (IM) and for user presence in…
-
Introduction to GitHub Package Registry
GitHub Packages is a software-package hosting service, like npmjs.org, rubygems.org, or hub.docker.com, that allows you to host your packages and code in one place. You can host software packages privately or publicly and use them as dependencies in your projects. The GitHub Package Registry allows you to develop your code and host your packages in…
-
GitHub Integration with Marketplace Apps
In GitHub we have services that integrate with GitHub which can help you do anything from enabling continuous integration to closing stale issues and pull requests. A GitHub App acts on its own behalf, taking actions via the API directly using its own identity, which means you don’t need to maintain a bot or service…
-
Automate your workflow through GitHub Action
GitHub Action: GitHub Actions is a continues integration and continues delivery platform that allows you to automate your build, test, deployment pipeline. GitHub actions let you run workflows when other events happen in your repository. GitHub provides Linux, Windows, and macOS virtual machines to run your workflows, or you can host your own self-hosted runners…
-
GitHub Action context and its Capabilities
About Context Contexts basically helps to get the information about workflow runs, runner environments, jobs, and steps. Contexts, objects, and properties will vary importantly under different workflow run conditions. For example, the matrix context is only populated for a matrix job. Now we will talk about valuable Context GitHub Context The GitHub context contains information about the…