Skip to content
This repository has been archived by the owner on Jun 5, 2019. It is now read-only.

Commit

Permalink
Merge pull request #433 from AlexandrSurkov/PlatformDesignerFixes
Browse files Browse the repository at this point in the history
Platform designer improvements from netmf 4.2 community branch
  • Loading branch information
smaillet-ms authored Jul 9, 2016
2 parents addad8a + 8a0fd13 commit 475e2b7
Show file tree
Hide file tree
Showing 10 changed files with 869 additions and 837 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.IO;
using XsdInventoryFormatObject;

Expand Down Expand Up @@ -112,7 +109,7 @@ public void ProduceBuildScript(string path, string scriptFileName)
tw.WriteLine();
tw.WriteLine(
@":USAGE
@ECHO." );
@ECHO.");
tw.WriteLine(
" @ECHO.Usage: msbuild_dotNetMF.cmd ^<TARGET^> ^<FLAVOR^> ^[^<options^>...^] ^[Projects \"<list>\"^]"
);
Expand All @@ -132,7 +129,7 @@ @ECHO release - release build
@ECHO.^<options^>:");
foreach (BuildParameter bp in m_invHelper.BuildParameters)
{
tw.WriteLine(string.Format(" @ECHO {0,-14}- {1}", bp.Parameter, bp.Description ));
tw.WriteLine(string.Format(" @ECHO {0,-14}- {1}", bp.Parameter, bp.Description));
}
tw.WriteLine(
@" @ECHO.
Expand All @@ -151,3 +148,4 @@ @ECHO release - release build

}
}

Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace ComponentObjectModel
{
class CodeGenerator
Expand Down
Loading

0 comments on commit 475e2b7

Please sign in to comment.