Skip to content
Closed
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
2 changes: 1 addition & 1 deletion DirectConnector/AzureBlobFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//------------------------------------------------------------

using System.Net;
using Microsoft.Azure.Connectors.DirectClient.Azureblob;
using Microsoft.Azure.Connectors.Sdk.Azureblob;

Check failure on line 6 in DirectConnector/AzureBlobFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Azureblob' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)
using Microsoft.Azure.Connectors.Sdk;
Comment on lines +6 to 7
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Http;
Expand Down
2 changes: 1 addition & 1 deletion DirectConnector/AzureLogAnalyticsFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//------------------------------------------------------------

using System.Net;
using Microsoft.Azure.Connectors.DirectClient.Azureloganalytics;
using Microsoft.Azure.Connectors.Sdk.Azureloganalytics;

Check failure on line 6 in DirectConnector/AzureLogAnalyticsFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Azureloganalytics' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)
using Microsoft.Azure.Connectors.Sdk;
Comment on lines +6 to 7
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Http;
Expand Down
10 changes: 5 additions & 5 deletions DirectConnector/ConnectorFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
using System.Net;
using System.Text;
using System.Text.Json;
using Microsoft.Azure.Connectors.DirectClient.Office365;
using Microsoft.Azure.Connectors.DirectClient.Sharepointonline;
using Microsoft.Azure.Connectors.DirectClient.Teams;
using Microsoft.Azure.Connectors.Sdk.Office365;

Check failure on line 8 in DirectConnector/ConnectorFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Office365' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)
using Microsoft.Azure.Connectors.Sdk.Sharepointonline;

Check failure on line 9 in DirectConnector/ConnectorFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Sharepointonline' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)
using Microsoft.Azure.Connectors.Sdk.Teams;

Check failure on line 10 in DirectConnector/ConnectorFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Teams' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)
using Microsoft.Azure.Connectors.Sdk;
Comment on lines +8 to 11
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Http;
using Microsoft.Extensions.Logging;
using SharePointBlobMetadata = Microsoft.Azure.Connectors.DirectClient.Sharepointonline.BlobMetadata;
using SharePointBlobMetadata = Microsoft.Azure.Connectors.Sdk.Sharepointonline.BlobMetadata;

Check failure on line 15 in DirectConnector/ConnectorFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Sharepointonline' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)

namespace DirectConnector;

Expand Down Expand Up @@ -1178,7 +1178,7 @@
// The actual message body properties are determined at runtime by the connector's schema
// discovery endpoint. With [JsonExtensionData] on AdditionalProperties, arbitrary properties
// are now serialized correctly. Populate the dictionary with the expected message fields.
var messageRequest = new Microsoft.Azure.Connectors.DirectClient.Teams.DynamicPostMessageRequest();
var messageRequest = new Microsoft.Azure.Connectors.Sdk.Teams.DynamicPostMessageRequest();
messageRequest.AdditionalProperties["recipient"] = JsonSerializer.SerializeToElement(
new
{
Expand Down
2 changes: 1 addition & 1 deletion DirectConnector/ConnectorTriggerMetadataAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public sealed class ConnectorTriggerMetadataAttribute : Attribute

/// <summary>
/// The trigger operation name. Use constants from the connector's <c>*TriggerOperations</c> class
/// (e.g., <see cref="Microsoft.Azure.Connectors.DirectClient.Office365.Office365TriggerOperations"/>).
/// (e.g., <see cref="Microsoft.Azure.Connectors.Sdk.Office365.Office365TriggerOperations"/>).
/// </summary>
public string OperationName { get; set; } = "";

Expand Down
2 changes: 1 addition & 1 deletion DirectConnector/MqFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

using System.Net;
using System.Text.Json;
using Microsoft.Azure.Connectors.DirectClient.Mq;
using Microsoft.Azure.Connectors.Sdk.Mq;

Check failure on line 7 in DirectConnector/MqFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Mq' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)
using Microsoft.Azure.Connectors.Sdk;
Comment on lines +7 to 8
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Http;
Expand Down
2 changes: 1 addition & 1 deletion DirectConnector/MsGraphFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//------------------------------------------------------------

using System.Net;
using Microsoft.Azure.Connectors.DirectClient.Msgraphgroupsanduser;
using Microsoft.Azure.Connectors.Sdk.Msgraphgroupsanduser;

Check failure on line 6 in DirectConnector/MsGraphFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Msgraphgroupsanduser' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)
using Microsoft.Azure.Connectors.Sdk;
Comment on lines +6 to 7
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Http;
Expand Down
2 changes: 1 addition & 1 deletion DirectConnector/Office365UsersFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//------------------------------------------------------------

using System.Net;
using Microsoft.Azure.Connectors.DirectClient.Office365users;
using Microsoft.Azure.Connectors.Sdk.Office365users;

Check failure on line 6 in DirectConnector/Office365UsersFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Office365users' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)
using Microsoft.Azure.Connectors.Sdk;
Comment on lines +6 to 7
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Http;
Expand Down
4 changes: 2 additions & 2 deletions DirectConnector/OneDriveFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
using System.Net;
using System.Text;
using System.Text.Json;
using Microsoft.Azure.Connectors.DirectClient.Onedriveforbusiness;
using Microsoft.Azure.Connectors.Sdk.Onedriveforbusiness;
using Microsoft.Azure.Connectors.Sdk;
Comment on lines +8 to 9
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Http;
using Microsoft.Extensions.Logging;
using OneDriveBlobMetadata = Microsoft.Azure.Connectors.DirectClient.Onedriveforbusiness.BlobMetadata;
using OneDriveBlobMetadata = Microsoft.Azure.Connectors.Sdk.Onedriveforbusiness.BlobMetadata;

Check failure on line 13 in DirectConnector/OneDriveFunctions.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

The type or namespace name 'Onedriveforbusiness' does not exist in the namespace 'Microsoft.Azure.Connectors.Sdk' (are you missing an assembly reference?)

namespace DirectConnector;

Expand Down
20 changes: 10 additions & 10 deletions DirectConnector/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
//------------------------------------------------------------

using DirectConnector.Configuration;
using Microsoft.Azure.Connectors.DirectClient.Azureblob;
using Microsoft.Azure.Connectors.DirectClient.Azureloganalytics;
using Microsoft.Azure.Connectors.DirectClient.Mq;
using Microsoft.Azure.Connectors.DirectClient.Msgraphgroupsanduser;
using Microsoft.Azure.Connectors.DirectClient.Office365;
using Microsoft.Azure.Connectors.DirectClient.Office365users;
using Microsoft.Azure.Connectors.DirectClient.Onedriveforbusiness;
using Microsoft.Azure.Connectors.DirectClient.Sharepointonline;
using Microsoft.Azure.Connectors.DirectClient.Smtp;
using Microsoft.Azure.Connectors.DirectClient.Teams;
using Microsoft.Azure.Connectors.Sdk.Azureblob;
using Microsoft.Azure.Connectors.Sdk.Azureloganalytics;
using Microsoft.Azure.Connectors.Sdk.Mq;
using Microsoft.Azure.Connectors.Sdk.Msgraphgroupsanduser;
using Microsoft.Azure.Connectors.Sdk.Office365;
using Microsoft.Azure.Connectors.Sdk.Office365users;
using Microsoft.Azure.Connectors.Sdk.Onedriveforbusiness;
using Microsoft.Azure.Connectors.Sdk.Sharepointonline;
using Microsoft.Azure.Connectors.Sdk.Smtp;
using Microsoft.Azure.Connectors.Sdk.Teams;
using Microsoft.Azure.Functions.Worker;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
Expand Down
2 changes: 1 addition & 1 deletion DirectConnector/SmtpFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

using System.Net;
using System.Text.Json;
using Microsoft.Azure.Connectors.DirectClient.Smtp;
using Microsoft.Azure.Connectors.Sdk.Smtp;
using Microsoft.Azure.Connectors.Sdk;
Comment on lines +7 to 8
using Microsoft.Azure.Functions.Worker;
using Microsoft.Azure.Functions.Worker.Http;
Expand Down
Loading