Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pharma #215

Open
wants to merge 10 commits into
base: PatAltimore-patch-1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
topic: sample
page_type: sample
languages:
- csharp
- java
Expand All @@ -8,7 +8,13 @@ languages:
- rest
- solidity
products:
- azure-blockchain
- dotnet
- azure
- azure-blockchain-workbench
- azure-blockchain-service
description: "This repository contains content and samples for the Azure Blockchain Workbench."
urlFragment: blockchain-samples
name: "Microsoft Azure Blockchain Workbench Samples"
---

# ![Microsoft Azure Blockchain Workbench](https://raw.githubusercontent.com/Azure-Samples/blockchain/master/blockchain-workbench/media/logo_small.png) Microsoft Azure Blockchain Workbench
Expand Down
2 changes: 1 addition & 1 deletion blockchain-workbench/latest
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.2
1.7.3
4 changes: 2 additions & 2 deletions blockchain-workbench/rest-api-samples/dotnet/readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Azure Blockchain Workbench .NET SDK

This project contains a .NET stanard Client SDK for Azure Blockchain Workbench.
This project contains a .NET standard Client SDK for Azure Blockchain Workbench.

You can interact with a Workbench instance via this SDK
You can interact with a Workbench instance via this SDK.

## Features
1. Polly.NET (https://github.com/App-vNext/Polly) a .NET resiliency library with exponential retry backing
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<#
.SYNOPSIS

Upgrades Azure Blockchain Workbench to version 1.7.2.
Upgrades Azure Blockchain Workbench to version 1.7.3.


.DESCRIPTION

Upgrades Azure Blockchain Workbench to version 1.7.2.
Upgrades Azure Blockchain Workbench to version 1.7.3.

.PARAMETER SubscriptionID
SubscriptionID to create or locate all resources.
Expand All @@ -24,16 +24,16 @@ None. You cannot pipe objects to this script.
None. This script does not generate any output.
.EXAMPLE

C:\tmp> .\azureBlockchainWorkbenchUpgradeTov1_7_1.ps1 -SubscriptionID "<subscription_id>" -ResourceGroupName "<workbench-resource-group-name>"
C:\tmp> .\azureBlockchainWorkbenchUpgradeTov1_7_3.ps1 -SubscriptionID "<subscription_id>" -ResourceGroupName "<workbench-resource-group-name>"

#>


param(
[Parameter(Mandatory = $true)][string]$SubscriptionID,
[Parameter(Mandatory = $true)][string]$ResourceGroupName,
[Parameter(Mandatory = $false)][string]$TargetDockerTag = "1.7.2",
[Parameter(Mandatory = $false)][string]$ArtifactsRoot = "https://catalogartifact.azureedge.net/publicartifacts/microsoft-azure-blockchain.azure-blockchain-workbench-c92dd56c-382d-4a3d-9d9b-0d74fd3fa2e4-azure-blockchain-workbench/Artifacts",
[Parameter(Mandatory = $false)][string]$TargetDockerTag = "1.7.3",
[Parameter(Mandatory = $false)][string]$ArtifactsRoot = "https://catalogartifact.azureedge.net/publicartifacts/microsoft-azure-blockchain.azure-blockchain-workbench-fbfa6ed1-74c3-4c74-a0f8-373bf89b5fc8-azure-blockchain-workbench/Artifacts",
[Parameter(Mandatory = $false)][string]$DockerRepository = "blockchainworkbenchprod.azurecr.io",
[Parameter(Mandatory = $false)][string]$DockerLogin = $null,
[Parameter(Mandatory = $false)][string]$DockerPw = $null,
Expand Down Expand Up @@ -586,4 +586,4 @@ if ($TestApi) {
# Script exit
#############################################

Write-Output "Azure Blockchain Workbench in Resource Group $ResourceGroupName was successfully updated to version 1.7.2."
Write-Output "Azure Blockchain Workbench in Resource Group $ResourceGroupName was successfully updated to version 1.7.3."
2 changes: 1 addition & 1 deletion blockchain-workbench/scripts/upgrade/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cd; Invoke-WebRequest -Uri https://aka.ms/workbenchUpgradeScript -OutFile azureB
When the upgrade completes, you will see the following message:

```powershell
Azure Blockchain Workbench in Resource Group $ResourceGroupName was successfully updated to version 1.7.2.
Azure Blockchain Workbench in Resource Group $ResourceGroupName was successfully updated to version 1.7.3.

```

Expand Down