-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34a5e8d
commit 18dc68b
Showing
271 changed files
with
25,045 additions
and
60,556 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ tags | |
.vs/ | ||
**/*.lock.json | ||
large_file.png | ||
test/fixtures/empty_file.png |
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 was deleted.
Oops, something went wrong.
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,23 +1,17 @@ | ||
.PHONY: console mono core core2 build build-mono build-core build-core2 | ||
.PHONY: console mono build build-mono build-core3 | ||
|
||
console: core2 | ||
console: core3 | ||
|
||
mono: build-mono | ||
docker run -it -v="$(PWD):/home/admin/bt/braintree-dotnet" --net="host" braintree-dotnet-mono /bin/bash -l | ||
|
||
core: build-core | ||
docker run -it -v="$(PWD):/home/admin/bt/braintree-dotnet" --net="host" braintree-dotnet-core /bin/bash -l -c "dotnet restore;bash" | ||
core3: build-core3 | ||
docker run -it -v="$(PWD):/home/admin/bt/braintree-dotnet" --net="host" braintree-dotnet-core3 /bin/bash -l -c "dotnet restore;bash" | ||
|
||
core2: build-core2 | ||
docker run -it -v="$(PWD):/home/admin/bt/braintree-dotnet" --net="host" braintree-dotnet-core2 /bin/bash -l -c "dotnet restore;bash" | ||
|
||
build: build-mono build-core | ||
build: build-mono build-core3 | ||
|
||
build-mono: | ||
docker build -t braintree-dotnet-mono -f Dockerfile-mono . | ||
|
||
build-core: | ||
docker build -t braintree-dotnet-core -f Dockerfile-core . | ||
|
||
build-core2: | ||
docker build -t braintree-dotnet-core2 -f Dockerfile-core2 . | ||
build-core3: | ||
docker build -t braintree-dotnet-core3 -f Dockerfile-core3 . |
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.