Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit 1610d41

Browse files
authored
Merge pull request #3 from PatrickFarley/patch1
fix free subscription region
2 parents 5cf9497 + d300527 commit 1610d41

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

ComputerVision/AnalyzeImage/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static void Main(string[] args)
3333
ComputerVisionClient computerVision = new ComputerVisionClient(
3434
new ApiKeyServiceClientCredentials(subscriptionKey),
3535
new System.Net.Http.DelegatingHandler[] { });
36-
36+
3737
// Add your Computer Vision endpoint to your environment variables.
3838
computerVision.Endpoint = Environment.GetEnvironmentVariable("COMPUTER_VISION_ENDPOINT");
3939

Face/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ namespace DetectFace
1010
{
1111
class Program
1212
{
13+
1314
// Add your Azure Computer Vision subscription key and endpoint to your environment variables
1415
private const string subscriptionKey = Environment.GetEnvironmentVariable("COMPUTER_VISION_SUBSCRIPTION_KEY");
1516
private const string faceEndpoint = Environment.GetEnvironmentVariable("COMPUTER_VISION_ENDPOINT");

0 commit comments

Comments
 (0)