Skip to content

Commit

Permalink
Forgot OutputPath Change
Browse files Browse the repository at this point in the history
  • Loading branch information
tbm0115 committed Aug 15, 2024
1 parent 62c3e33 commit f3b5fcb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>MTConnect Transpiler Code Generator for Scriban Templates</Title>
<Version>2.4.0.0-prerelease.5</Version>
<Version>2.4.0.0-prerelease.6</Version>
<Authors>mtconnect, tbm0115</Authors>
<Company>MTConnect Institute; TAMS;</Company>
<Description>An implementation of `ITranspilerSink` from the `MtconnectTranspiler` library. This libary makes it possible to transpile the MTConnect Standard SysML model into other formats with the help of Scriban templates.</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public class ScribanGeneratorOptions
/// <summary>
/// The output path for the generated files of the project.
/// </summary>
public string ProjectPath { get; set; }
public string OutputPath { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public ScribanTemplateGenerator(ITemplateLoaderService templateLoaderService, IO
_templateLoaderService = templateLoaderService;
_options = options.Value;

OutputPath = _options.ProjectPath;
OutputPath = _options.OutputPath;

TemplateContext = new TemplateContext
{
Expand Down

0 comments on commit f3b5fcb

Please sign in to comment.