Cosmos/source/Cosmos.Build.Builder/Views/DependencyInstallationDialog.xaml.cs
José Pedro f969601a53
Builder improvements.
- Added check for dependencies, which can be installed from the builder.
- Replaced CosmosTask with CosmosBuildDefinition, which is much simpler.
- The builder can be opened without any command line arguments.
- If the VS path is not specified as a command line argument, it can be selected in a dialog.
2018-03-30 19:44:19 +01:00

12 lines
243 B
C#

using System.Windows;
namespace Cosmos.Build.Builder.Views
{
public partial class DependencyInstallationDialog : Window
{
public DependencyInstallationDialog()
{
InitializeComponent();
}
}
}