Skip to content

Instantly share code, notes, and snippets.

View abhilashca's full-sized avatar
🎯
Focusing

Abhilash abhilashca

🎯
Focusing
View GitHub Profile
@abhilashca
abhilashca / azure-pipeline.yaml
Created July 4, 2023 05:42
Azure DevOps: CI/CD for Umbraco v11 deployment in Azure Web App Linux
trigger:
- develop
pool:
vmImage: ubuntu-latest
variables:
solution: 'path-to-solution'
project: 'path-to-project'
buildPlatform: 'Any CPU'
@abhilashca
abhilashca / DapperHelper.cs
Last active May 20, 2019 15:56
A simple helper class to address most of the database operations and use cases using Dapper
using Dapper;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using static Dapper.SqlMapper;
using System.Linq;
namespace YourProject.Helpers
{