diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d09093547..139fe6a4f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,9 +1,9 @@ - + https://github.com/dotnet/roslyn - 9934fb9e3527e1c0c51314e57d4aab30f97e8f9e + cbca41cad4e21c29548e9e57d7135740b6f78df9 https://github.com/dotnet/roslyn-analyzers @@ -31,9 +31,5 @@ https://github.com/dotnet/arcade 9e3b333509ec2990dd20fbf01f50fd42d7f23d56 - - https://github.com/nuget/nuget.client - 1845d6bd450a7453d573035371c9fec43683d1ef - diff --git a/eng/Versions.props b/eng/Versions.props index 4f06ea2dd..57ac5173a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -10,12 +10,8 @@ false - 1.4.1 3.3.4 - 4.9.2-3.24129.6 - - 6.10.0-preview.2.81 - $(NuGetBuildTasksPackageVersion) + 4.10.0-3.24202.15 9.0.0-beta.24207.1 9.0.0-beta.24207.1 @@ -29,6 +25,5 @@ $(RefOnlyMicrosoftBuildVersion) $(RefOnlyMicrosoftBuildVersion) $(RefOnlyMicrosoftBuildVersion) - 6.2.4 diff --git a/src/Microsoft.DotNet.HotReload.Utils.Generator/Microsoft.DotNet.HotReload.Utils.Generator.csproj b/src/Microsoft.DotNet.HotReload.Utils.Generator/Microsoft.DotNet.HotReload.Utils.Generator.csproj index 22f850e11..a9fefe5c1 100644 --- a/src/Microsoft.DotNet.HotReload.Utils.Generator/Microsoft.DotNet.HotReload.Utils.Generator.csproj +++ b/src/Microsoft.DotNet.HotReload.Utils.Generator/Microsoft.DotNet.HotReload.Utils.Generator.csproj @@ -5,27 +5,16 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - - - - - - - - - build; buildtransitive - all - + + + diff --git a/src/Microsoft.DotNet.HotReload.Utils.Generator/Runner.cs b/src/Microsoft.DotNet.HotReload.Utils.Generator/Runner.cs index 4e0b23ddd..cb61f6838 100644 --- a/src/Microsoft.DotNet.HotReload.Utils.Generator/Runner.cs +++ b/src/Microsoft.DotNet.HotReload.Utils.Generator/Runner.cs @@ -50,7 +50,6 @@ protected Runner (Config config) { protected Func? OutputsDone {get; set;} = null; public async Task SetupBaseline (EnC.EditAndContinueCapabilities capabilities, CancellationToken ct = default) { - InitMSBuild(); BaselineProject baselineProject = await Microsoft.DotNet.HotReload.Utils.Generator.BaselineProject.Make (config, capabilities, ct); var baselineArtifacts = await baselineProject.PrepareBaseline(ct); @@ -113,10 +112,5 @@ public async Task GenerateDeltas (DeltaProject deltaProject, IAsyncEnumerable - - - - - - - build; buildtransitive - all - - - diff --git a/tests/HotReload.Generator/EnC.Tests/TempMSBuildWorkspaceTest.cs b/tests/HotReload.Generator/EnC.Tests/TempMSBuildWorkspaceTest.cs index c26f8e8a2..7fd6ddec5 100644 --- a/tests/HotReload.Generator/EnC.Tests/TempMSBuildWorkspaceTest.cs +++ b/tests/HotReload.Generator/EnC.Tests/TempMSBuildWorkspaceTest.cs @@ -26,12 +26,12 @@ namespace EnC.Tests; /// Set TempDir.Keep = true if you want to keep the temp directory. /// /// -public class TempMSBuildWorkspaceTest : IClassFixture, IClassFixture, IDisposable +public class TempMSBuildWorkspaceTest : IClassFixture, IDisposable { public MSBuildWorkspace Workspace { get; } public GlobalFilesFixture GlobalFiles { get; } private protected TempDirectory TempDir { get; } - public TempMSBuildWorkspaceTest(MSBuildLocatorFixture _1, GlobalFilesFixture globalFiles) + public TempMSBuildWorkspaceTest(GlobalFilesFixture globalFiles) { GlobalFiles = globalFiles; Workspace = MSBuildWorkspace.Create(); diff --git a/tests/HotReload.Generator/EnC.Tests/WatchHotReloadServiceTest.cs b/tests/HotReload.Generator/EnC.Tests/WatchHotReloadServiceTest.cs index 8ab791868..a689eddfd 100644 --- a/tests/HotReload.Generator/EnC.Tests/WatchHotReloadServiceTest.cs +++ b/tests/HotReload.Generator/EnC.Tests/WatchHotReloadServiceTest.cs @@ -17,7 +17,7 @@ namespace EnC.Tests; public class WatchHotReloadServiceTest : TempMSBuildWorkspaceTest { - public WatchHotReloadServiceTest(MSBuildLocatorFixture fixture, GlobalFilesFixture globalFiles) : base(fixture, globalFiles) + public WatchHotReloadServiceTest(GlobalFilesFixture globalFiles) : base(globalFiles) { }