Skip to content

Commit dc65d0a

Browse files
authored
Make AspNetCoreBootstrapper all FrameworkReference assets private (#4103)
* Make AspNetCoreBootstrapper all FrameworkReference assets private Related to #3911 * Fix doc link
1 parent e311bc9 commit dc65d0a

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

docs/developing.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,14 @@ it assumes that the code is run from the root of the repository and the CI
8989
artifacts we added to `~/Downloads/`:
9090

9191
```PowerShell
92-
$artifacts = @("bin-alpine", "bin-centos", "bin-macos-13", "bin-windows-2022")
92+
$artifacts = @(
93+
"bin-alpine-x64",
94+
"bin-alpine-arm64",
95+
"bin-ubuntu-22.04",
96+
"bin-ubuntu-22.04-arm",
97+
"bin-macos-13",
98+
"bin-windows-2022"
99+
)
93100
$destFolder = "./bin/ci-artifacts/"
94101
$zipFilesFolder = "~/Downloads/"
95102

next-gen/docs/dotnet-monitor-otlp-egress.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ levels](https://github.com/dotnet/runtime/blob/87e9f1d94f94f7e9b38da74fd93ea856b
101101

102102
A proof of concept was built.
103103

104-
* https://github.com/CodeBlanch/diagnostics/tree/distributed-traces-pipeline
104+
* https://github.com/CodeBlanch/diagnostics/tree/traces-pipeline
105105

106106
Contains the changes to the dotnet-diagnostics repo. Adds more data in the
107107
metrics pipeline to support more of the OTLP data model. Adds a new logging

src/OpenTelemetry.AutoInstrumentation.AspNetCoreBootstrapper/OpenTelemetry.AutoInstrumentation.AspNetCoreBootstrapper.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<FrameworkReference Include="Microsoft.AspNetCore.App" />
11+
<FrameworkReference Include="Microsoft.AspNetCore.App" PrivateAssets="all" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

0 commit comments

Comments
 (0)