1- using System ;
1+ using CSharpToJavaScript . Utils ;
2+ using System ;
23using System . Collections . Generic ;
34using System . IO ;
45using System . Text ;
@@ -36,10 +37,10 @@ public class CSTOJSOptions
3637 public bool DisableConsoleOutput { get ; set ; } = false ;
3738
3839 /// <summary>
39- /// Output path for javascript file.
40+ /// Output path for javascript file/files .
4041 /// </summary>
4142 /// <value>
42- /// Default: <c> Directory.GetCurrentDirectory()</c >
43+ /// Default: <see cref=" Directory.GetCurrentDirectory()" / >
4344 /// </value>
4445 public string OutPutPath { get ; set ; } = Directory . GetCurrentDirectory ( ) ;
4546
@@ -53,34 +54,33 @@ public class CSTOJSOptions
5354
5455 /// <summary>
5556 /// List of custom names to convert.
56- /// Example: new("Console","console").
57- /// Will convert "Console" to "console".
5857 /// </summary>
58+ /// <remarks>Example: <c>new List<Tuple<string, string>>(){new Tuple<string, string>("Console", "console")}</c>. Will convert "Console" to "console".</remarks>
5959 /// <value>
6060 /// Default: <c>new()</c>
6161 /// </value>
6262 public List < Tuple < string , string > > CustomCSNamesToJS { get ; set ; } = new ( ) ;
6363 /// <summary>
6464 /// List of types to convert.
65- /// Example: Similar to CustomCSNamesToJS, but convers the type. You need to use <c>ToAttribute</c>
6665 /// </summary>
66+ /// <remarks>Example: Similar to <see cref="CSTOJSOptions.CustomCSNamesToJS" />, but convers the type. You need to use <see cref="ToAttribute" />.</remarks>
6767 /// <value>
6868 /// Default: <c>new()</c>
6969 /// </value>
7070 public List < Type > CustomCSTypesToJS { get ; set ; } = new ( ) ;
7171
7272 /// <summary>
73- /// Add a <c> StringBuilder</c > to the front of a javascript file.
73+ /// Add a <see cref=" StringBuilder" / > to the front of a javascript file.
7474 /// </summary>
75- /// <remarks>When using "GenerateManyAsync" applies to every file!</remarks>
75+ /// <remarks>Note! When passing a folder path to <see cref="CSTOJS.GenerateOneAsync(string, string?)" /> applies to every file!</remarks>
7676 /// <value>
7777 /// Default: <c>new()</c>
7878 /// </value>
7979 public StringBuilder AddSBInFront { get ; set ; } = new ( ) ;
8080 /// <summary>
81- /// Add a <c> StringBuilder</c > to the end of a javascript file.
81+ /// Add a <see cref=" StringBuilder" / > to the end of a javascript file.
8282 /// </summary>
83- /// <remarks>When using "GenerateManyAsync" applies to every file!</remarks>
83+ /// <remarks>Note! When passing a folder path to <see cref="CSTOJS.GenerateOneAsync(string, string?)" /> applies to every file!</remarks>
8484 /// <value>
8585 /// Default: <c>new()</c>
8686 /// </value>
0 commit comments