6 references to WriteAllTextAsync
aspire (2)
Agents\Hooks\TelemetryHookInstaller.cs (1)
94
await File.
WriteAllTextAsync
(tempPath, content, s_utf8NoBom, cancellationToken);
Telemetry\UnixMachineInformationProvider.cs (1)
86
await File.
WriteAllTextAsync
(fullPath, value, Encoding.UTF8);
Aspire.Hosting (1)
UserSecrets\UserSecretsManagerFactory.cs (1)
168
await File.
WriteAllTextAsync
(FilePath, json, Encoding.UTF8, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Maui (2)
Utilities\MauiEnvironmentHelper.cs (2)
76
await File.
WriteAllTextAsync
(targetsFilePath, targetsContent, Encoding.UTF8, cancellationToken).ConfigureAwait(false);
252
await File.
WriteAllTextAsync
(targetsFilePath, targetsContent, Encoding.UTF8, cancellationToken).ConfigureAwait(false);
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\IO\File.cs (1)
1157
=>
WriteAllTextAsync
(path, contents, UTF8NoBOM, cancellationToken);