We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc3b5be commit 7d96dadCopy full SHA for 7d96dad
Src/Exceptions.fs
@@ -13,7 +13,7 @@ module internal VersionInfo =
13
let versionInfo =
14
let v = typeof<Dummy>.Assembly.GetName().Version
15
lazy
16
- $"\r\nRhinoApp.Version:{RhinoApp.Version}\r\nRhino.Scripting Version:{v}\r\n"
+ $"{Environment.NewLine}Rhino:{RhinoApp.Version}{Environment.NewLine}Rhino.Scripting:{v}{Environment.NewLine}"
17
18
19
open VersionInfo
combineIntoOneFile.fsx
@@ -91,7 +91,7 @@ module CombineIntoOneFile =
91
let n = file.Replace("Src/Scripting_", " ")
92
lines.AddRange(file|> getLines |> afterMarker file)
93
if i%7 =0 then
94
- printf "\r\n -- %s" n
+ printf $"{Environment.NewLine} -- %s{n}"
95
else
96
printf " %s" n
97
printfn ""
0 commit comments