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/windowsservercore | |
ADD hello.ps1 . | |
ADD world.ps1 . | |
CMD powershell .\hello.ps1 ; .\world.ps1 |
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
/app/src/src/Npgsql/NpgsqlCommand.cs(1266,30): error CS0103: The name 'ExecuteNonQueryInternalAsync' does not exist in the current context | |
/app/src/src/Npgsql/NpgsqlCommand.cs(1330,30): error CS0103: The name 'ExecuteScalarInternalAsync' does not exist in the current context | |
/app/src/src/Npgsql/NpgsqlCommand.cs(1418,30): error CS0103: The name 'ExecuteDbDataReaderInternalAsync' does not exist in the current context | |
/app/src/src/Npgsql/TlsClientStream/EllipticCurve.cs(1111,29): error CS0246: The type or namespace name 'ECDsaCng' could not be found (are you missing a using directive or an assembly reference?) | |
/app/src/src/Npgsql/TlsClientStream/EllipticCurve.cs(1111,64): error CS0103: The name 'CngKeyBlobFormat' does not exist in the current context | |
/app/src/src/Npgsql/TlsClientStream/EllipticCurve.cs(1111,38): error CS0103: The name 'CngKey' does not exist in the current context | |
/app/src/src/Npgsql/NpgsqlCommand.cs(1259,32): warning CS0114: 'NpgsqlCommand.ExecuteNonQueryAsync(CancellationToken)' hides inherite |
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
Existing: | |
if not exist "$(TargetDir)x86" md "$(TargetDir)x86" | |
xcopy /s /y "$(SolutionDir)packages\SqlServerCompact.4.0.8482.1\NativeBinaries\x86\*.*" "$(TargetDir)x86" | |
if not exist "$(TargetDir)amd64" md "$(TargetDir)amd64" | |
xcopy /s /y "$(SolutionDir)packages\SqlServerCompact.4.0.8482.1\NativeBinaries\amd64\*.*" "$(TargetDir)amd64"</PostBuildEvent> | |
Proposed: | |
if not exist "$(TargetDir)x86" md "$(TargetDir)x86" | |
start /MIN xcopy /s /y "$(SolutionDir)packages\SqlServerCompact.4.0.8482.1\NativeBinaries\x86\*.*" "$(TargetDir)x86" | |
if not exist "$(TargetDir)amd64" md "$(TargetDir)amd64" |
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 ddb62c47a66e4435d3e53d224a8952c77cd57787 Mon Sep 17 00:00:00 2001 | |
From: Michael Friis <[email protected]> | |
Date: Fri, 28 Oct 2011 18:43:38 -0700 | |
Subject: [PATCH] Make solution build on AppHarbor | |
--- | |
AppHarbor.sln | 694 ++++++++++++++++++++ | |
.../Nop.Web.Framework/Nop.Web.Framework.csproj | 3 +- | |
Tests/Nop.Data.Tests/Nop.Data.Tests.csproj | 9 +- | |
.../Helpers/DateTimeHelperTests.cs | 18 - |
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
protected void Application_Error(object sender, EventArgs e) | |
{ | |
try | |
{ | |
var exception = Server.GetLastError(); | |
var logEntry = new LogEntry | |
{ | |
Date = DateTime.Now, | |
Message = exception.Message, | |
StackTrace = exception.StackTrace, |
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
[Oo]bj | |
[Bb]in | |
deploy | |
deploy/* | |
*.csproj.user | |
*.suo | |
*.cache | |
TestResults/ |