This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trigger: | |
- develop | |
pool: | |
vmImage: ubuntu-latest | |
variables: | |
solution: 'path-to-solution' | |
project: 'path-to-project' | |
buildPlatform: 'Any CPU' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
{ |