mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 18:51:41 +00:00
Task.cs: add return value to message text for user if application return exit code != 0
CosmosProject C# remove unneeded folders
This commit is contained in:
parent
4cab9d7c03
commit
4d43779df5
3 changed files with 1 additions and 24 deletions
|
|
@ -96,7 +96,7 @@ namespace Cosmos.Build.Installer {
|
|||
xProcess.WaitForExit();
|
||||
if (xProcess.ExitCode != 0) {
|
||||
Log.SetError();
|
||||
throw new Exception("Application returned exit code.");
|
||||
throw new ApplicationException("Application returned exit code 0x" + xProcess.ExitCode.ToString("X8") + ".");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
<VSTemplate Version="3.0.0" Type="Project" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
|
||||
<TemplateData>
|
||||
<Name>Proj</Name>
|
||||
<Description>A project for creating a Cosmos Kernel</Description>
|
||||
<Icon>Kernel.ico</Icon>
|
||||
<ProjectType>Cosmos</ProjectType>
|
||||
<!--<TemplateID>Cosmos.CosmosProject</TemplateID>
|
||||
<SortOrder>50</SortOrder>
|
||||
<NumberOfParentCategoriesToRollUp>1</NumberOfParentCategoriesToRollUp>
|
||||
<CreateNewFolder>true</CreateNewFolder>
|
||||
<DefaultName>CosmosProject</DefaultName>
|
||||
<ProvideDefaultName>true</ProvideDefaultName>-->
|
||||
</TemplateData>
|
||||
<TemplateContent>
|
||||
<Project File="CosmosProject.Cosmos" ReplaceParameters="true">
|
||||
<!--<ProjectItem SubType="Content" TargetFileName="Cosmos.bxrc" ReplaceParameters="false">Cosmos.bxrc</ProjectItem>-->
|
||||
</Project>
|
||||
</TemplateContent>
|
||||
<WizardExtension>
|
||||
<Assembly>Cosmos.VS.Package, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f4d94ac959d59ec3</Assembly>
|
||||
<FullClassName>Cosmos.VS.Package.Templates.Wizards.UseGuidsWizard</FullClassName>
|
||||
</WizardExtension>
|
||||
</VSTemplate>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB |
Loading…
Reference in a new issue