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
<?xml version="1.0" encoding="utf-8"?> | |
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<xs:element name="manifest"> | |
<xs:annotation> | |
<xs:documentation> | |
Manifest is the metadata file that defines a component. It is an XML file that describes: | |
- The namespace of the component. | |
- The kind of data it can be configured, either a field or a dataset. | |
- Any properties that can be configured in the application when the component is added. |
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
Set-StrictMode -Version 3.0 | |
function Out-Tree { | |
<# | |
.SYNOPSIS | |
View object parent/child relationship within a hierarchy | |
.DESCRIPTION | |
Outputs objects as a hierarchy, outputted as string. It is important that properties are sorted. | |
It is very important to sort list before Out-Tree cmdlet by ParentValueProperty. Because if objects come in NOT within sequence, the hierarchy will be "interrupted" and restart |
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
/** | |
* File: Cell.cs | |
*/ | |
declare module Slick { | |
export class CellSelection { | |
public row : number; | |
public cell : number; | |
public grid : Slick.Grid; | |
} | |
} |
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 Microsoft.SqlServer.Dts.Pipeline; | |
using Microsoft.SqlServer.Dts.Runtime.Wrapper; | |
using System; | |
using System.Collections.Generic; | |
using System.Data; | |
using System.Data.OleDb; | |
using System.Reflection; | |
using System.Text; | |
//Not using any syntax after .net 4.5 as won't be debuggable until 3.2 Preview https://marketplace.visualstudio.com/items?itemName=SSIS.SqlServerIntegrationServicesProjects |