Skip to content

Commit 935a85e

Browse files
committed
Update naming convention in CSX and documentation.
1 parent c5ba5db commit 935a85e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ Specifies a path to a C# script file that can define further project processors.
4848

4949
When executing the plugins, all _OrchardCoreContrib.PoExtractor_ assemblies are automatically loaded, and two globals are defined:
5050

51-
- `List<IProjectProcessor> projectProcessors`: Add an instance of your custom `IProjectProcessor` implementation type to this list.
52-
- `List<string> projectFiles`: In the unlikely case that you have to add a new project file type (such as _.fsproj_) add the project file paths to this list.
51+
- `List<IProjectProcessor> ProjectProcessors`: Add an instance of your custom `IProjectProcessor` implementation type to this list.
52+
- `List<string> ProjectFiles`: In the unlikely case that you have to add a new project file type (such as _.fsproj_) add the project file paths to this list.
5353

5454
> [!TIP]
5555
> You can't import NuGet packages in your script file, but you can import local DLL files using the `#r "path/to/package.dll"` directive. The path can be relative to the script file's location so you can import packages from the build directory of the project you are extracting from. This can be especially useful if you launch the tool as using MSBuild as a post-build action. (For remote scripts loaded with a URL, the path can be relative to the current working directory.) For example:

test/OrchardCoreContrib.PoExtractor.Tests/PluginTestFiles/BasicJsonLocalizationProcessor.csx

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ public class BasicJsonLocalizationProcessor : IProjectProcessor
7474
}
7575
}
7676

77-
projectProcessors.Add(new BasicJsonLocalizationProcessor());
77+
ProjectProcessors.Add(new BasicJsonLocalizationProcessor());

0 commit comments

Comments
 (0)