浏览代码

Docs: Cleanup leftover TODOs

Oleg Nenashev 9 年之前
父节点
当前提交
dc9378d9e5
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 1 2
      doc/installation.md
  2. 2 1
      doc/xmlConfigFile.md

+ 1 - 2
doc/installation.md

@@ -76,8 +76,7 @@ Once the start button is clicked, Windows will start `myapp.exe`,
   
 #### Making WinSW compatible with .NET runtime 4.0+
 
-<!--TODO: modify the text. Newer => Modern-->
-Newer versions of Windows (confirmed on Windows Server 2012, possibly with Windows 8, too) do not ship with .NET runtime `2.0`, which is what `winsw.exe` is built against. 
+Modern versions of Windows (e.g. Windows Server 2012 or Windows 10) do not ship with .NET runtime `2.0`, which is what `winsw.exe` is built against. 
 This is because unlike Java, where a newer runtime can host apps developed against earlier runtime, .NET apps need version specific runtimes.
 
 One way to deal with this is to ensure that `.NET 2.0` runtime is installed through your installer, but another way is to declare that `winsw.exe` can be hosted on `.NET 4.0` runtime by creating an app config file `winsw.exe.config`.

+ 2 - 1
doc/xmlConfigFile.md

@@ -69,9 +69,10 @@ Multiple elements can be used to specify multiple dependencies.
 
 ### logging
 
-<!--TODO: link-->
 Optionally set a different logging directory with `<logpath>` and startup `<logmode>`: reset (clear log), roll (move to \*.old) or append (default).
 
+See the [Logging and Error reporting page](loggingAndErrorReporting.md) for more info.
+
 ### argument
 This element specifies the arguments to be passed to the executable. 
 Winsw will quote each argument if necessary, so do not put quotes in `<argument>` to avoid double quotation.