forked from SixLabors/ImageSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
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 SixLabors#297 from SixLabors/tocsoft/sixlabors_rename
Update namespaces & package names
- Loading branch information
Showing
79 changed files
with
773 additions
and
873 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
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,36 @@ | ||
@echo Off | ||
call build\build.cmd | ||
|
||
if not "%GitVersion_NuGetVersion%" == "" ( | ||
SET versionCommand=/p:packageversion=%GitVersion_NuGetVersion% | ||
@echo building with version set to '%GitVersion_NuGetVersion%' | ||
) | ||
|
||
dotnet restore %versionCommand% | ||
|
||
|
||
ECHO Building nuget packages | ||
dotnet build -c Release %versionCommand% | ||
if not "%errorlevel%"=="0" goto failure | ||
|
||
if not %CI% == "True" ( | ||
dotnet test ./tests/ImageSharp.Tests/ImageSharp.Tests.csproj --no-build -c Release | ||
if not "%errorlevel%"=="0" goto failure | ||
) | ||
|
||
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 |
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
15 changes: 6 additions & 9 deletions
15
src/ImageSharp.Drawing/Brushes/Processors/BrushApplicator.cs
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
Oops, something went wrong.