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
public static class MappingExtensions | |
{ | |
/// <summary> | |
/// Applies the specified <paramref name="transformation"/> on the <paramref name="source"/>. | |
/// </summary> | |
/// <typeparam name="TSource"></typeparam> | |
/// <typeparam name="T"></typeparam> | |
/// <param name="source"></param> | |
/// <param name="transformation"></param> | |
/// <returns></returns> |
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 Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Linq; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Good_Gaz.Services.SirsConsoleClient | |
{ |
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
public ([^\s ]+) ([^\s]+) { get; set; } |
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
# $Env:SubDirectoryFilter is a custom parameter | |
$searchPath = "$Env:BUILD_SOURCESDIRECTORY\$Env:SubDirectoryFilter" | |
$shortCommit = "$Env:BUILD_SOURCEVERSION".Substring(0, 8) | |
$shortCommit = "@$shortCommit" | |
$date = [System.DateTime]::Now.ToString("s") | |
Write-Host "Searching in $searchPath" | |
Get-ChildItem -Path $searchPath -Recurse -Filter "AssemblyInfo.*" | foreach { | |
$file = $_.FullName |
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 Newtonsoft.Json; | |
using Serialize.Linq.Extensions; | |
using Serialize.Linq.Nodes; | |
using System; | |
using System.Linq.Expressions; | |
namespace TestingLinqSerializer | |
{ | |
class Program | |
{ |
OlderNewer