Skip to content

Commit

Permalink
Updated ProviderId for connected service.
Browse files Browse the repository at this point in the history
  • Loading branch information
unchase committed Jan 27, 2019
1 parent 3988e16 commit faae8f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Unchase.OData.ConnectedService/Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ internal static class Constants
public const string EdmxVersion3Namespace = "http://schemas.microsoft.com/ado/2009/11/edmx";
public const string EdmxVersion4Namespace = "http://docs.oasis-open.org/odata/ns/edmx";

public const string ProviderId = "Microsoft.OData.ConnectedService";
public const string ProviderId = "Unchase.OData.ConnectedService";

public const string V3DocUri = "https://msdn.microsoft.com/en-us/library/cc668772(v=vs.110).aspx";
public const string V4DocUri = "http://odata.github.io/odata.net/";
Expand Down
2 changes: 1 addition & 1 deletion Unchase.OData.ConnectedService/Handler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace Unchase.OData.ConnectedService
{
[ConnectedServiceHandlerExport("Microsoft.Samples.Wizard", AppliesTo = "CSharp")]
[ConnectedServiceHandlerExport("Unchase.OData.ConnectedService", AppliesTo = "CSharp")]
internal class Handler : ConnectedServiceHandler
{
public override async Task<AddServiceInstanceResult> AddServiceInstanceAsync(ConnectedServiceHandlerContext context, CancellationToken ct)
Expand Down
2 changes: 1 addition & 1 deletion Unchase.OData.ConnectedService/Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Unchase.OData.ConnectedService
{
[ConnectedServiceProviderExport("Microsoft.Samples.Wizard", SupportsUpdate = true)]
[ConnectedServiceProviderExport("Unchase.OData.ConnectedService", SupportsUpdate = true)]
internal class Provider : ConnectedServiceProvider
{
public Provider()
Expand Down

0 comments on commit faae8f0

Please sign in to comment.