6 references to WriteAllTextAsync
aspire (2)
Agents\Hooks\TelemetryHookInstaller.cs (1)
94await File.WriteAllTextAsync(tempPath, content, s_utf8NoBom, cancellationToken);
Telemetry\UnixMachineInformationProvider.cs (1)
86await File.WriteAllTextAsync(fullPath, value, Encoding.UTF8);
Aspire.Hosting (1)
UserSecrets\UserSecretsManagerFactory.cs (1)
168await File.WriteAllTextAsync(FilePath, json, Encoding.UTF8, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Maui (2)
Utilities\MauiEnvironmentHelper.cs (2)
76await File.WriteAllTextAsync(targetsFilePath, targetsContent, Encoding.UTF8, cancellationToken).ConfigureAwait(false); 252await 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);