This file contains hidden or 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
| #! /bin/bash | |
| version=`git diff HEAD^..HEAD -- "$(git rev-parse --show-toplevel)"/package.json | grep '^\+.*version' | sed -s 's/[^0-9\.]//g'` | |
| if [ "$version" != "" ]; then | |
| git tag -a "v$version" -m "`git log -1 --format=%s`" | |
| echo "Created a new tag, v$version" | |
| fi |
This file contains hidden or 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
| div { | |
| background: | |
| linear-gradient(45deg, red 25%, transparent 25%), | |
| linear-gradient(125deg, red 25%, transparent 25%); | |
| } |
This file contains hidden or 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
| // dotnet add package Azure.Storage.Blobs | |
| // dotnet add package Azure.Storage.Blobs.Batch | |
| using Azure.Storage.Blobs; | |
| using Azure.Storage.Blobs.Models; | |
| using Azure.Storage.Blobs.Specialized; | |
| // Get a connection string to our Azure Storage account. | |
| const string connectionString = ""; | |
| const string containerName = ""; |
OlderNewer