This file contains 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
> docker-compose.exe up -d | |
Starting hipchatconnect_hipchatconnect_1 | |
Starting hipchatconnect_https-portal_1 |
This file contains 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
C:\Users\Laurent | |
> docker-machine create --driver azure --azure-location westeurope --azure-subscription-id ADDYOURS hipchatconnect | |
Running pre-create checks... | |
(hipchatconnect) Completed machine pre-create checks. | |
Creating machine... | |
(hipchatconnect) Querying existing resource group. name="docker-machine" | |
(hipchatconnect) Resource group "docker-machine" already exists. | |
(hipchatconnect) Configuring availability set. name="docker-machine" | |
(hipchatconnect) Configuring network security group. name="hipchatconnect-firewall" location="westeurope" | |
(hipchatconnect) Querying if virtual network already exists. name="docker-machine-vnet" location="westeurope" |
This file contains 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
FROM microsoft/dotnet | |
# Set environment variables | |
ENV ASPNETCORE_URLS="http://*:5000" | |
ENV ASPNETCORE_ENVIRONMENT="Development" | |
# Copy files to app directory | |
COPY . /app | |
# Set working directory |
This file contains 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-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
cinst 7zip | |
cinst 7zip.install | |
cinst autohotkey.portable | |
cinst win32diskimager.portable | |
cinst testdisk-photorec | |
cinst crystaldiskmark |
This file contains 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
<# | |
.SYNOPSIS | |
This is a Powershell script to upload a file to DropBox using their REST API. | |
.DESCRIPTION | |
This Powershell script will upload file to DropBox using their REST API with the parameters you provide. | |
.PARAMETER SourceFilePath | |
The path of the file to upload. |
This file contains 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
////////////////////////////////////////////////////////////////////// | |
// ARGUMENTS | |
////////////////////////////////////////////////////////////////////// | |
var target = Argument("target", "Default"); | |
var configuration = Argument("configuration", "Release"); | |
////////////////////////////////////////////////////////////////////// | |
// PREPARATION | |
////////////////////////////////////////////////////////////////////// |
This file contains 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
Task("Run-Unit-Tests") | |
.IsDependentOn("Build") | |
.Does(() => | |
{ | |
DotCoverCover(tool => { | |
tool.NUnit3(testDlls, new NUnit3Settings { | |
NoResults = true, | |
TeamCity = isOnTeamCity | |
}); | |
}, |
This file contains 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
Task("ReSharper-Code-Inspection") | |
.IsDependentOn("Run-Unit-Tests") | |
.Does(() => | |
{ | |
var result = new FilePath(buildArtifacts + "/_ReSharperReports/inspectcode-report.xml"); | |
InspectCode("InspecCode.sln", | |
new InspectCodeSettings() { | |
SolutionWideAnalysis = true, | |
Profile = "InspectCode.DotSettings", |
This file contains 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
function vs([string]$solution) { | |
$env:TEMP = "R:\VsTemp"; | |
$env:TMP = "R:\VsTemp"; | |
& "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe" $solution | |
# startProcessHigh "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe" . $solution | |
} |
This file contains 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.Windows; | |
using Microsoft.Practices.Prism.Modularity; | |
namespace CodeProgression.Common.Prism | |
{ | |
public class Bootstrapper : StructureMapBootstrapper | |
{ | |
protected override void ConfigureContainer() | |
{ |