derskythe / WpfSettings

Use of TODO/FIXME comment encountered CS-D1000
Documentation
Minor
a month agoa month old
442                var downLoadFolder = KnownFolders.Downloads;
443                var uri = new Uri($"{_PublishPath}setup.exe");
444                setupPath = Path.Combine(downLoadFolder.Path, $"setup{serverVersion}.exe");
445                // TODO: Must be HttpClientFactory without disposing by @DerSkythe446                var client = new HttpClient();
447                var response = await client.GetAsync(uri, token ?? CancellationToken.None);
448                token.ThrowIfCancellationRequested();