Documentation
-
.NET environment variables - .NET CLI
Learn about the environment variables that you can use to configure the .NET SDK, .NET CLI, and .NET runtime.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Sets an environment variable in the process. On non-Windows platforms the runtime keeps an internal cache of environment variables to ensure thread safety. This means that if the profiler calls setenv
the new environment variable will not be picked up by managed code running in the process.
HRESULT SetEnvironmentVariable(
[in, string] const WCHAR *szName,
[in, string] const WCHAR *szValue);
szName
[in] A pointer to a null terminated wide character string containing the name of the environment variable to set.
szValue
[in] A pointer to a null terminated wide character string containing the value of the environment variable to set.
Platforms: See .NET supported operating systems.
Header: CorProf.idl, CorProf.h
.NET Versions: Available since .NET Core 3.1
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Documentation
.NET environment variables - .NET CLI
Learn about the environment variables that you can use to configure the .NET SDK, .NET CLI, and .NET runtime.