Skip to content

Commit

Permalink
Exclude client app projects from publish manifest (#157)
Browse files Browse the repository at this point in the history
Fixes #147
  • Loading branch information
DamianEdwards authored Mar 20, 2024
1 parent 31c6b9a commit 869b325
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
// regular project references (see the AppHost.csproj file for additional metadata added to the ProjectReference to
// coordinate a build dependency though).
builder.AddProject("winformsclient", "../ClientAppsIntegration.WinForms/ClientAppsIntegration.WinForms.csproj")
.WithReference(apiService);
.WithReference(apiService)
.ExcludeFromManifest();

builder.AddProject("wpfclient", "../ClientAppsIntegration.WPF/ClientAppsIntegration.WPF.csproj")
.WithReference(apiService);
.WithReference(apiService)
.ExcludeFromManifest();

builder.Build().Run();

0 comments on commit 869b325

Please sign in to comment.