Skip to content
This repository was archived by the owner on Jun 5, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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