-
Notifications
You must be signed in to change notification settings - Fork 188
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
Removing binary dependencies for telemetry #186
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HowardWolosky
force-pushed
the
rawTelemetry
branch
from
May 31, 2020 05:27
8350a4c
to
efa42e2
Compare
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. As a result, this also removes the `AssemblyPath` configuration property since there are no longer any assemblies that this module needs.
HowardWolosky
force-pushed
the
rawTelemetry
branch
from
June 1, 2020 20:35
efa42e2
to
933a699
Compare
HowardWolosky
added
the
enhancement
An issue or pull request introducing new functionality to the project.
label
Jun 2, 2020
HowardWolosky
added a commit
to HowardWolosky/StoreBroker
that referenced
this pull request
Aug 21, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186)
HowardWolosky
added a commit
to HowardWolosky/StoreBroker
that referenced
this pull request
Aug 22, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186)
HowardWolosky
added a commit
to HowardWolosky/StoreBroker
that referenced
this pull request
Aug 22, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186)
HowardWolosky
added a commit
to HowardWolosky/StoreBroker
that referenced
this pull request
Aug 23, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186)
HowardWolosky
added a commit
to HowardWolosky/StoreBroker
that referenced
this pull request
Aug 23, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186)
HowardWolosky
added a commit
to HowardWolosky/StoreBroker
that referenced
this pull request
Aug 23, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186)
HowardWolosky
added a commit
to microsoft/StoreBroker
that referenced
this pull request
Aug 23, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186)
HowardWolosky
added a commit
to HowardWolosky/StoreBroker
that referenced
this pull request
Aug 23, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186)
HowardWolosky
added a commit
to HowardWolosky/StoreBroker
that referenced
this pull request
Aug 23, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186) > This is a re-implementation of the similar change done in the master > branch (for v1). See microsoft#201
HowardWolosky
added a commit
to microsoft/StoreBroker
that referenced
this pull request
Aug 23, 2020
This reverse engineers the REST API for Application Insights so that we no longer need to download / depend on the 3 .dll files that were necessary to use the Application Insights .NET SDK. This is directly benefitting from the work that was done for PowerShellForGitHub (see microsoft/PowerShellForGitHub#186) > This is a re-implementation of the similar change done in the master > branch (for v1). See #201
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This reverse engineers the REST API for Application Insights so that
we no longer need to download / depend on the 3 .dll files that were
necessary to use the Application Insights .NET SDK.
As a result, this also removes the
AssemblyPath
configuration propertysince there are no longer any assemblies that this module needs.
Resolves #104