Skip to content

Commit a01ec55

Browse files
committed
More logging
1 parent 0bc2d4c commit a01ec55

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Commands/ManifestGen.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
using CliWrap;
33
using Microsoft.Extensions.Logging;
44
using System.Collections.Generic;
5-
using System.Diagnostics;
65
using System.IO;
7-
using System.Linq;
86
using System.Text;
97

108
namespace AspireManifestGen;
@@ -33,7 +31,7 @@ protected override async Task ExecuteAsync(OleMenuCmdEventArgs e, Project projec
3331
var options = await General.GetLiveInstanceAsync();
3432

3533
string manifestPath;
36-
string manifestFileName = "manifest.json";
34+
string manifestFileName = "aspire-manifest.json";
3735

3836
if (options.UseTempFile)
3937
{
@@ -47,7 +45,7 @@ protected override async Task ExecuteAsync(OleMenuCmdEventArgs e, Project projec
4745
await VS.StatusBar.StartAnimationAsync(StatusAnimation.Build);
4846
await VS.StatusBar.ShowProgressAsync(STATUS_MESSAGE, 1, 2);
4947
await pane.WriteLineAsync(OutputWindowManager.GenerateOutputMessage(STATUS_MESSAGE, "ManifestGen", LogLevel.Information));
50-
48+
await pane.WriteLineAsync(OutputWindowManager.GenerateOutputMessage($"Generating using: msbuild /t:GenerateAspireManifest /p:AspireManifestPublishOutputPath={manifestPath}", "ManifestGen", LogLevel.Information));
5149
var result = await Cli.Wrap("dotnet")
5250
.WithArguments($"msbuild /t:GenerateAspireManifest /p:AspireManifestPublishOutputPath={manifestPath}")
5351
.WithWorkingDirectory(projectPath)

0 commit comments

Comments
 (0)