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

Allow extensions to emit telemetry using PocketLogger #3299

Merged
merged 4 commits into from
Nov 7, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add .dib for extension
jonsequitur committed Nov 7, 2023
commit 3601576c33afc5fb7c8c44c8448a145136e212c5
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System.ComponentModel;

namespace Microsoft.DotNet.Interactive.AIUtilities;

[EditorBrowsable(EditorBrowsableState.Never)]
public static class InteractiveExtension
{
public static async Task LoadAsync()
{




}
}
Original file line number Diff line number Diff line change
@@ -18,4 +18,8 @@
<PackageReference Include="System.Reactive" Version="$(SystemReactiveVersion)" />
</ItemGroup>

<ItemGroup>
<None Include="extension.dib" Pack="true" PackagePath="interactive-extensions/dotnet" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/Microsoft.DotNet.Interactive.AIUtilities/extension.dib
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!csharp

await await Microsoft.DotNet.Interactive.AIUtilities.InteractiveExtension.LoadAsync();