Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<!-- All files and symbols -->
<file src="bin\$configuration$\$targetFramework$\*.dll" target="lib/$targetFramework$"></file>
<file src="bin\$configuration$\$targetFramework$\*.pdb" target="lib/$targetFramework$"></file>
<file src="bin\$configuration$\$targetFramework$\*.xml" target="lib/$targetFramework$"></file>

<!-- Uploader -->
<file src="obj\$configuration$\Uploader\Uploader.zip" target="contentFiles\any\any\ServiceProfiler\TraceUpload.zip"></file>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

namespace Azure.Monitor.OpenTelemetry.Profiler;

/// <summary>
/// Extension methods for <see cref="IOpenTelemetryBuilder"/> to register Azure Monitor Profiler services.
/// </summary>
public static class OpenTelemetryBuilderExtensions
{
/// <summary>
Expand Down
2 changes: 2 additions & 0 deletions src/ServiceProfiler.EventPipe.Otel/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<PropertyGroup>
<!-- Enable Public API Analyzers by default for all projects under this folder and sub folders -->
<EnablePublicAPIAnalyzers Condition=" '$(EnablePublicAPIAnalyzers)' == '' ">true</EnablePublicAPIAnalyzers>
<!-- Generate XML documentation so consumers get IntelliSense from the NuGet package -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<!-- Warning as errors -->
Expand Down
2 changes: 2 additions & 0 deletions src/ServiceProfiler.EventPipe/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<SolutionDir Condition=" '$(SolutionDir)' == '' ">$(MSBuildThisFileDirectory)..\</SolutionDir>
<Nullable>enable</Nullable>
<!-- Generate XML documentation so consumers get IntelliSense from the NuGet package -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<!-- Setup Version property. -->
<MajorVersion>3</MajorVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<!--Assemblies-->
<file src="bin\$configuration$\$targetFramework$\Microsoft.ApplicationInsights.Profiler.AspNetCore.dll" target="lib\$targetFramework$"></file>
<file src="bin\$configuration$\$targetFramework$\Microsoft.ApplicationInsights.Profiler.AspNetCore.pdb" target="lib\$targetFramework$"></file>
<file src="bin\$configuration$\$targetFramework$\Microsoft.ApplicationInsights.Profiler.AspNetCore.xml" target="lib\$targetFramework$"></file>

<!--Uploader-->
<file src="obj\$configuration$\Uploader\Uploader.zip" target="contentFiles\any\any\ServiceProfiler\TraceUpload.zip"></file>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@
<!-- All files and symbols -->
<file src="bin\$configuration$\$targetFramework$\*.dll" target="lib/$targetFramework$"></file>
<file src="bin\$configuration$\$targetFramework$\*.pdb" target="lib/$targetFramework$"></file>
<file src="bin\$configuration$\$targetFramework$\*.xml" target="lib/$targetFramework$"></file>
</files>
</package>