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 MyBiz.DataAccess; | |
using MyBiz.DataAccess.Extensions; | |
using MyBiz.DataAccess.Models; | |
using MyBiz.DataAccess.Tests.Extensions; | |
using MyBiz.DataAccess.TextTemplating; | |
using MyBiz.Extensions; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
using Newtonsoft.Json; | |
using Oracle.ManagedDataAccess.Client; | |
using System; |
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
----- Running test method "Songhay.Publications.Tests.MarkdownEntryTests.ShouldExpandUris" ----- | |
Microsoft (R) Build Engine version 16.4.0+e901037fe for .NET Core | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
Songhay.Publications.Tests -> ..\Blog\shell\Songhay.Publications.Tests\bin\Debug\netcoreapp2.2\Songhay.Publications.Tests.dll | |
Build succeeded. | |
0 Warning(s) | |
0 Error(s) |
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 Microsoft.Azure.WebJobs; | |
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.Logging; | |
using Songhay.Diagnostics; | |
using Songhay.Extensions; | |
using Songhay.Models; | |
using Songhay.Player.Activities; | |
using Songhay.Player.Models; | |
using System; | |
using System.Collections.Generic; |
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 System; | |
using Microsoft.AspNetCore.Mvc; | |
using Xunit; | |
namespace My.Tests.Models | |
{ | |
/// <summary> | |
/// Defines all subclasses of <see cref="ActionResult"/> | |
/// that have status codes and <see cref="object"/> values. | |
/// </summary> |
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
import { async, ComponentFixture, TestBed | |
} from '@angular/core/testing'; | |
import { By } from '@angular/platform-browser'; | |
import { DebugElement } from '@angular/core'; | |
import { addMatchers, click } from '../../testing'; | |
import { Hero } from '../model/hero'; |
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 Microsoft.Extensions.DependencyInjection; | |
using Microsoft.Extensions.Logging; | |
using System; | |
namespace Songhay.HelloWorlds.Shell | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
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 System; | |
using System.Collections; | |
using System.Data; | |
using System.Data.Common; | |
namespace Songhay.DataAccess | |
{ | |
/// <summary> | |
/// Generic procedures for data access. | |
/// </summary> |
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 Songhay.DataAccess.Oracle.Models; | |
using System.Collections.Generic; | |
namespace Songhay.DataAccess.Oracle.TextTemplating | |
{ | |
public partial class OracleEntityGenerator | |
{ | |
public OracleEntityGenerator(IEnumerable<OracleTableMetadata> metadata) | |
{ | |
this.TableOrViewMetadata = metadata; |
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
trap | |
{ | |
Write-Output $_ | |
exit 1 | |
} | |
$id = [System.Security.Principal.WindowsIdentity]::GetCurrent() | |
Write-Output "Running as $($id.Name)..." | |
Add-Type -AssemblyName "System.IO" |
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.Linq; | |
using Songhay.Extensions; | |
using Songhay.Web.Extensions; | |
using System; | |
using System.Collections.Generic; | |
using System.Configuration; | |
using System.IO; | |
using System.Linq; | |
using System.ServiceModel.Syndication; | |
using System.Web.Http; |
NewerOlder