forked from daveaglick/Scripty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCake.Scripty.xml
More file actions
70 lines (70 loc) · 3.27 KB
/
Copy pathCake.Scripty.xml
File metadata and controls
70 lines (70 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0"?>
<doc>
<assembly>
<name>Cake.Scripty</name>
</assembly>
<members>
<member name="T:Cake.Scripty.ScriptySettings">
<summary>
Tool settings
</summary>
</member>
<member name="T:Cake.Scripty.ScriptyAliases">
<summary>
<para>Alias to evaluate C# scripts using Scripty</para>
<code>#tool "nuget:?package=Scripty"</code>
</summary>
</member>
<member name="M:Cake.Scripty.ScriptyAliases.Scripty(Cake.Core.ICakeContext,Cake.Core.IO.FilePath,Cake.Scripty.ScriptySettings)">
<summary>
Gets a <see cref="T:Cake.Scripty.ScriptyRunner"/> to evaluate scripts for the given project
</summary>
<param name="context">The Cake context</param>
<param name="projectFilePath">Path to the project file to use</param>
<param name="settings">The settings for the tool</param>
<returns>A <see cref="T:Cake.Scripty.ScriptyRunner"/> to evaluate scripts</returns>
</member>
<member name="T:Cake.Scripty.ScriptyRunner">
<summary>
A runner for evaluating Scripty scripts in a project
</summary>
</member>
<member name="M:Cake.Scripty.ScriptyRunner.#ctor(Cake.Core.IO.IFileSystem,Cake.Core.ICakeEnvironment,Cake.Core.IO.IProcessRunner,Cake.Core.Tooling.IToolLocator,Cake.Core.IO.FilePath,Cake.Scripty.ScriptySettings)">
<summary>
Initializes a new instance of the <see cref="T:Cake.Scripty.ScriptyRunner"/> class
</summary>
<param name="fileSystem">The file system</param>
<param name="environment">The environment</param>
<param name="processRunner">The process runner</param>
<param name="tools">The tools</param>
<param name="projectFilePath">Path to the project file</param>
<param name="settings">Settings for running the tool</param>
</member>
<member name="M:Cake.Scripty.ScriptyRunner.Evaluate(Cake.Core.IO.FilePath[])">
<summary>
Evaluates the given Scripty scripts
</summary>
<param name="scriptFiles">The script files to evaluate</param>
</member>
<member name="M:Cake.Scripty.ScriptyRunner.Evaluate(System.Collections.Generic.IEnumerable{Cake.Core.IO.FilePath})">
<summary>
Evaluates the given Scripty scripts
</summary>
<param name="scriptFiles">The script files to evaluate</param>
</member>
<member name="M:Cake.Scripty.ScriptyRunner.ScriptWorkingDirectory">
<summary>
Gets the working directory for where the scripts files are located
</summary>
<returns>The working directory</returns>
</member>
<member name="M:Cake.Scripty.ScriptyRunner.GetToolName">
<summary>Gets the name of the tool.</summary>
<returns>The name of the tool.</returns>
</member>
<member name="M:Cake.Scripty.ScriptyRunner.GetToolExecutableNames">
<summary>Gets the possible names of the tool executable.</summary>
<returns>The tool executable name.</returns>
</member>
</members>
</doc>