This file contains hidden or 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.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Web; | |
using NUnit.Framework; | |
using OpenQA.Selenium; | |
using OpenQA.Selenium.Chrome; | |
using OpenQA.Selenium.Firefox; |
This file contains hidden or 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
Param( | |
[Parameter(Mandatory=$true)][string] $File, | |
[string]$Schema = "dbo", | |
[string]$PermissionSet = "safe" | |
) | |
Function Parse-Attr($attr) { | |
if ($attr) { | |
$result = @{ "TypeName" = $attr.AttributeType.Name } | |
$attr.Properties | % { $result[$_.Name] = $_.Argument.Value } |
This file contains hidden or 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
<#@ include file="SqlProxy.ttinc" #> | |
<#+ | |
static string connectionString = "Server=.; Integrated Security=true; Database=AdventureWorks"; | |
static string namespaceName = "DAL"; | |
static string databaseClassName = "DatabaseProxy"; | |
static bool includeProcedures = true; | |
static bool includeViews = true; | |
static bool includeTables = false; | |
static int commandTimeout = 600; | |
static bool generateSqlclr = false; |