Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
<link rel="import" href="../topeka-elements/theme.html"> | |
<link rel="import" href="../topeka-elements/topeka-resources.html"> | |
<link rel="import" href="../topeka-elements/topeka-app.html"> | |
<link rel="import" href="../topeka-elements/topeka-datasource.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { |
private static void ProcessHelper(string fileName, string arguments, bool showResultsinConsole) | |
{ | |
// Start the child process. | |
using (var p = new Process{ | |
StartInfo = | |
{ | |
UseShellExecute = false, | |
CreateNoWindow = true, |
public static class MyExtensions | |
{ | |
static bool openBrowser = true; | |
public static string Dump<T>(this T o, string title) | |
{ | |
using (var writer = LINQPad.Util.CreateXhtmlWriter(true)) | |
{ | |
writer.Write(o); | |
if (openBrowser) | |
{ |
@echo on | |
set DbName="DB_name" | |
set Server="localhost" | |
for %%i in (*.sql) do sqlcmd -E -S %Server% -d %DbName% -i %%i |