Skip to content

Commit 3653541

Browse files
committed
Renamed "OutPutPath" to "OutputPath".
Added option "OutputFileName".
1 parent 1a61aaf commit 3653541

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

CSharpToJavaScript/CSTOJSOptions.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,14 @@ public record class CSTOJSOptions
4242
/// <value>
4343
/// Default: <see cref="Directory.GetCurrentDirectory" />
4444
/// </value>
45-
public string OutPutPath { get; set; } = Directory.GetCurrentDirectory();
46-
45+
public string OutputPath { get; set; } = Directory.GetCurrentDirectory();
46+
/// <summary>
47+
/// Name of an output js file.
48+
/// </summary>
49+
/// <value>
50+
/// Default: cs filename with ".js" />
51+
/// </value>
52+
public string? OutputFileName { get; set; } = null;
4753
/// <summary>
4854
/// Self-explanatory, Use <c>var</c> over <c>let</c>.
4955
/// </summary>

0 commit comments

Comments
 (0)