Skip to content

Commit

Permalink
Condition fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RassK committed Feb 16, 2024
1 parent 32be8e8 commit c39e8e4
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
Expand Up @@ -21,7 +21,7 @@
<Platform>x64</Platform>
<StorePath>$(StoreOutputBasePath)</StorePath>
</StoreRuntime>
<StoreRuntime Include="arm64" Condition="'$([MSBuild]::IsOSPlatform('Linux'))'">
<StoreRuntime Include="arm64" Condition="$([MSBuild]::IsOSPlatform('Linux'))">
<Platform>arm64</Platform>
<StorePath>$(StoreOutputBasePath)</StorePath>
</StoreRuntime>
Expand Down
@@ -0,0 +1,34 @@
{
"profiles": {
"TestApplication.Smoke": {
"commandName": "Project",
"environmentVariables": {
"CORECLR_ENABLE_PROFILING": "1",
"CORECLR_PROFILER": "{918728DD-259F-4A6A-AC2B-B85E1B658318}",
"CORECLR_PROFILER_PATH": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\win-x64\\OpenTelemetry.AutoInstrumentation.Native.dll",
"CORECLR_PROFILER_PATH_32": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\win-x86\\OpenTelemetry.AutoInstrumentation.Native.dll",
"CORECLR_PROFILER_PATH_64": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\win-x64\\OpenTelemetry.AutoInstrumentation.Native.dll",
"COR_ENABLE_PROFILING": "1",
"COR_PROFILER": "{918728DD-259F-4A6A-AC2B-B85E1B658318}",
"COR_PROFILER_PATH": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\win-x64\\OpenTelemetry.AutoInstrumentation.Native.dll",
"COR_PROFILER_PATH_32": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\win-x86\\OpenTelemetry.AutoInstrumentation.Native.dll",
"COR_PROFILER_PATH_64": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\win-x64\\OpenTelemetry.AutoInstrumentation.Native.dll",
"DOTNET_ADDITIONAL_DEPS": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\AdditionalDeps",
"DOTNET_SHARED_STORE": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\store",
"DOTNET_STARTUP_HOOKS": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\net\\OpenTelemetry.AutoInstrumentation.StartupHook.dll",
"OTEL_DOTNET_AUTO_HOME": "F:\\Dev\\forks\\rassk\\opentelemetry-dotnet-instrumentation\\bin\\tracer-home\\",
"OTEL_DOTNET_AUTO_TRACES_CONSOLE_EXPORTER_ENABLED": "true",
"OTEL_DOTNET_AUTO_METRICS_CONSOLE_EXPORTER_ENABLED": "true",
"OTEL_DOTNET_AUTO_METRICS_ENABLED": "false",
"OTEL_LOG_LEVEL": "debug",
"OTEL_SECRET_STUFF": "my-secret-here",
"OTEL_RANDOM_STUFF": "my-random-here",
"OTEL_DOTNET_AUTO_RULE_ENGINE_ENABLED": "true",
"OTEL_TRACES_EXPORTER": "none",
"OTEL_METRICS_EXPORTER": "none",
"OTEL_DOTNET_AUTO_FAIL_FAST_ENABLED": "true"
},
"nativeDebugging": true
}
}
}

0 comments on commit c39e8e4

Please sign in to comment.