-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenTelemetry.AutoInstrumentation.Loader.csproj
63 lines (62 loc) · 2.79 KB
/
OpenTelemetry.AutoInstrumentation.Loader.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks>
<Description>Loader used by the OpenTelemetry.AutoInstrumentation project.</Description>
<OutputPath>..\bin\ProfilerResources\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\InternalLogger.cs">
<Link>Logging\InternalLogger.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\NoopLogger.cs">
<Link>Logging\NoopLogger.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\ConsoleSink.cs">
<Link>Logging\ConsoleSink.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\FileSink.cs">
<Link>Logging\FileSink.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\RollingFileSink.cs">
<Link>Logging\RollingFileSink.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\RollingInterval.cs">
<Link>Logging\RollingInterval.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\PathRoller.cs">
<Link>Logging\PathRoller.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\RollingLogFile.cs">
<Link>Logging\RollingLogFile.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\RollingIntervalExtensions.cs">
<Link>Logging\RollingIntervalExtensions.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\IOtelLogger.cs">
<Link>Logging\IOtelLogger.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\ISink.cs">
<Link>Logging\ISink.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\LogLevel.cs">
<Link>Logging\LogLevel.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\LogSink.cs">
<Link>Logging\LogSink.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\NoopSink.cs">
<Link>Logging\NoopSink.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\OtelLogging.cs">
<Link>Logging\OtelLogging.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Logging\WriteCountingStream.cs">
<Link>Logging\WriteCountingStream.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\AutoInstrumentationEventSource.cs">
<Link>AutoInstrumentationEventSource.cs</Link>
</Compile>
<Compile Include="..\OpenTelemetry.AutoInstrumentation\Constants.cs" Link="Constants.cs" />
</ItemGroup>
</Project>