Skip to content

Commit 40fb5af

Browse files
committed
Fix build error
1 parent d8479e9 commit 40fb5af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/NuGet.Clients.Tests/NuGet.VisualStudio.Common.Test/NuGetFeedbackDiagnosticFileProviderTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
using NuGet.Commands;
1616
using NuGet.Common;
1717
using NuGet.Configuration;
18-
using NuGet.Configuration.Test;
1918
using NuGet.PackageManagement;
2019
using NuGet.PackageManagement.Test;
2120
using NuGet.Packaging.Core;
@@ -267,7 +266,7 @@ public async Task WriteToZipAsync_WithNonMSSource_SourceHashed()
267266
Directory.CreateDirectory(privateRepositoryPath);
268267

269268
var configPath = Path.Combine(solutionManager.TestDirectory, "nuget.config");
270-
SettingsTestUtils.CreateConfigurationFile(configPath, $@"<?xml version=""1.0"" encoding=""utf-8""?>
269+
File.WriteAllText(configPath, $@"<?xml version=""1.0"" encoding=""utf-8""?>
271270
<configuration>
272271
<packageSources>
273272
<!--To inherit the global NuGet package sources remove the <clear/> line below -->

0 commit comments

Comments
 (0)