Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailshilkov committed Feb 10, 2020
1 parent 0abe0d9 commit 67dcb5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion alicloud-csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ static Task<int> Main()
var bucket = new Bucket("my-bucket");

// Export the name of the bucket
return new Dictionary<string, object>
return new Dictionary<string, object?>
{
{ "bucketName", bucket.Id },
};
Expand Down
2 changes: 1 addition & 1 deletion azure-csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static Task<int> Main()
});

// Export the connection string for the storage account
return new Dictionary<string, object>
return new Dictionary<string, object?>
{
{ "connectionString", storageAccount.PrimaryConnectionString },
};
Expand Down
2 changes: 1 addition & 1 deletion gcp-csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ static Task<int> Main()
var bucket = new Bucket("my-bucket");

// Export the DNS name of the bucket
return new Dictionary<string, object>
return new Dictionary<string, object?>
{
{ "bucketName", bucket.Url },
};
Expand Down

0 comments on commit 67dcb5c

Please sign in to comment.