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"?> | |
<configuration> | |
<system.webServer> | |
<rewrite> | |
<rules> | |
<rule name="Index Request" enabled="true" stopProcessing="true"> | |
<match url="^$"/> | |
<action type="Rewrite" url="App/app.html" logRewrittenUrl="true"/> | |
</rule> | |
</rules> |
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
public class StandardNoStopWordsAnalyser : StandardAnalyzer | |
{ | |
public StandardNoStopWordsAnalyser() : base(Version.LUCENE_29, new HashSet<string>()) { } | |
} |
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
input { | |
tcp { | |
type => "eventlog" | |
host => "10.1.1.2" | |
port => 3515 | |
format => 'json' | |
} | |
} | |
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
$packagesInUse = @() | |
[xml] $nugetConfig = [xml](Get-Content nuget.config) | |
[System.Xml.XmlElement] $nugetConfigRoot = $nugetConfig.get_DocumentElement() | |
$repositoryPath = $nugetConfigRoot.SelectSingleNode("repositoryPath").InnerText | |
Write-Host "repositoryPath:" $repositoryPath | |
[xml] $repositories = [xml](Get-Content $repositoryPath\repositories.config) | |
[System.Xml.XmlElement] $repositoriesRoot = $repositories.get_DocumentElement() |
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
$head = "<style> | |
body { | |
color: #151515; | |
font-family: helvetica neue,arial,sans-serif; | |
font-size: 82%; | |
line-height: 1.5em; | |
text-rendering: optimizelegibility; | |
} | |
th { | |
text-align: left; |
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
AppDomain.CurrentDomain.AssemblyResolve += (s, ea) => ea.Name.StartsWith("NHibernate,") ? Assembly.GetAssembly(typeof(NHibernate.ISession)) : null; |
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 global-ignores to a set of whitespace-delimited globs | |
### which Subversion will ignore in its 'status' output, and | |
### while importing or adding files and directories. | |
global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store *.dat bin Bin obj Obj *.user *.suo *.sln.cache *.xap licences.licx licenses.licx _ReSharper.* *.resharper* *.g.cs ~$* StyleCop.Cache *.DotSettings |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\*\Shell\Run with PowerShell] | |
[HKEY_CLASSES_ROOT\*\Shell\Run with PowerShell\command] | |
@="C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -NoExit &'%1'" |
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.Management.Automation; | |
[Cmdlet(VerbsCommon.Get, "HelloWorld")] | |
public class GetHelloWorld : Cmdlet | |
{ | |
protected override void ProcessRecord() | |
{ | |
base.ProcessRecord(); | |
WriteObject("HelloWorld"); | |
} |
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
# Usage: cd \; . c:\SubversionTests.ps1; BranchingTest1 | |
function Create-LocalRepository | |
{ | |
param | |
( | |
[string]$basePath, | |
[string]$repositoryName | |
) |