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

Commit 475e2b7

Browse files
authored
Merge pull request #433 from AlexandrSurkov/PlatformDesignerFixes
Platform designer improvements from netmf 4.2 community branch
2 parents addad8a + 8a0fd13 commit 475e2b7

File tree

10 files changed

+869
-837
lines changed

10 files changed

+869
-837
lines changed

CLR/Tools/PlatformDesigner/ComponentObjectModel/BuildScriptWrapper.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using System;
2-
using System.Collections;
31
using System.Collections.Generic;
4-
using System.Text;
52
using System.IO;
63
using XsdInventoryFormatObject;
74

@@ -112,7 +109,7 @@ public void ProduceBuildScript(string path, string scriptFileName)
112109
tw.WriteLine();
113110
tw.WriteLine(
114111
@":USAGE
115-
@ECHO." );
112+
@ECHO.");
116113
tw.WriteLine(
117114
" @ECHO.Usage: msbuild_dotNetMF.cmd ^<TARGET^> ^<FLAVOR^> ^[^<options^>...^] ^[Projects \"<list>\"^]"
118115
);
@@ -132,7 +129,7 @@ @ECHO release - release build
132129
@ECHO.^<options^>:");
133130
foreach (BuildParameter bp in m_invHelper.BuildParameters)
134131
{
135-
tw.WriteLine(string.Format(" @ECHO {0,-14}- {1}", bp.Parameter, bp.Description ));
132+
tw.WriteLine(string.Format(" @ECHO {0,-14}- {1}", bp.Parameter, bp.Description));
136133
}
137134
tw.WriteLine(
138135
@" @ECHO.
@@ -151,3 +148,4 @@ @ECHO release - release build
151148

152149
}
153150
}
151+

CLR/Tools/PlatformDesigner/ComponentObjectModel/CodeGenerator.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
51
namespace ComponentObjectModel
62
{
73
class CodeGenerator

0 commit comments

Comments
 (0)