I hereby claim:
- I am bdukes on github.
- I am bdukes (https://keybase.io/bdukes) on keybase.
- I have a public key ASCVs2dNc1jhIFUKQJc92LncaJOs71DrhS7Q21JfCzYNQgo
To claim this, I am signing this object:
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace Engage.MsBuild.Logger.Vso | |
{ | |
using System.Globalization; | |
using Microsoft.Build.Framework; | |
using Microsoft.Build.Utilities; |
@@ -1040,7 +1040,8 @@ BEGIN | |
DECLARE @TabOrder Int | |
DECLARE @ParentId Int | |
DECLARE @ContentItemId Int | |
- SELECT @TabOrder = TabOrder, @ParentId = ParentID, @ContentItemID = ContentItemID FROM {databaseOwner}[{objectQualifier}Tabs] WHERE TabID = @TabId | |
+ DECLARE @PortalId int | |
+ SELECT @TabOrder = TabOrder, @ParentId = ParentID, @ContentItemID = ContentItemID, @PortalId = PortalID FROM {databaseOwner}[{objectQualifier}Tabs] WHERE TabID = @TabId | |
-- Delete Tab -- | |
DELETE FROM {databaseOwner}[{objectQualifier}Tabs] WHERE TabID = @TabId |
I hereby claim:
To claim this, I am signing this object:
<system.webServer> | |
<rewrite> | |
<rules> | |
<rule name="Redirect HTTP to HTTPS" stopProcessing="true"> | |
<match url="(.*)"/> | |
<conditions> | |
<add input="{HTTPS}" pattern="^OFF$"/> | |
</conditions> | |
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent"/> | |
</rule> |
/* eslint-env node*/ | |
'use strict'; | |
const fs = require('fs'); | |
const path = require('path'); | |
const _ = require('lodash'); | |
const ignore = require('ignore'); | |
const gulpFilter = require('gulp-filter'); | |
const filters = new Map(); |