-
-
Notifications
You must be signed in to change notification settings - Fork 851
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #299 from SixLabors/beta-1
Beta 1
- Loading branch information
Showing
1,093 changed files
with
28,888 additions
and
16,157 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "tests/Images/External"] | ||
path = tests/Images/External | ||
url = https://github.com/SixLabors/Imagesharp.Tests.Images.git | ||
branch = master |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
// Use IntelliSense to find out which attributes exist for C# debugging | ||
// Use hover for the description of the existing attributes | ||
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": ".NET Core Launch (console)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
// If you have changed target frameworks, make sure to update the program path. | ||
"program": "${workspaceRoot}/samples/AvatarWithRoundedCorner/bin/Debug/netcoreapp1.1/AvatarWithRoundedCorner.dll", | ||
"args": [], | ||
"cwd": "${workspaceRoot}/samples/AvatarWithRoundedCorner", | ||
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window | ||
"console": "internalConsole", | ||
"stopAtEntry": false, | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": ".NET Core Attach", | ||
"type": "coreclr", | ||
"request": "attach", | ||
"processId": "${command:pickProcess}" | ||
} | ||
] | ||
} |
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,39 @@ | ||
@echo Off | ||
call build\build.cmd | ||
|
||
SET versionCommand= | ||
if not "%GitVersion_NuGetVersion%" == "" ( | ||
SET versionCommand=/p:packageversion=%GitVersion_NuGetVersion% | ||
@echo building with version set to '%GitVersion_NuGetVersion%' | ||
) | ||
|
||
dotnet restore %versionCommand% | ||
|
||
ECHO Building projects | ||
dotnet build -c Release %versionCommand% | ||
|
||
if not "%errorlevel%"=="0" goto failure | ||
|
||
if not "%CI%" == "True" ( | ||
ECHO NOT on CI server running tests | ||
dotnet test ./tests/ImageSharp.Tests/ImageSharp.Tests.csproj --no-build -c Release | ||
) | ||
if not "%errorlevel%"=="0" goto failure | ||
|
||
ECHO Packaging projects | ||
dotnet pack ./src/ImageSharp/ -c Release --output ../../artifacts --no-build %versionCommand% | ||
if not "%errorlevel%"=="0" goto failure | ||
|
||
dotnet pack ./src/ImageSharp.Drawing/ -c Release --output ../../artifacts --no-build %versionCommand% | ||
if not "%errorlevel%"=="0" goto failure | ||
|
||
:success | ||
ECHO successfully built project | ||
REM exit 0 | ||
goto end | ||
|
||
:failure | ||
ECHO failed to build. | ||
REM exit -1 | ||
goto end | ||
|
||
:end |
Oops, something went wrong.