Skip to content

Commit 8da36ae

Browse files
committed
Removed public static from global variables
1 parent 9a403ae commit 8da36ae

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

build/BuildContext.csx

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
#load "nuget:Dotnet.Build, 0.2.7"
1+
#load "nuget:Dotnet.Build, 0.2.8"
22
using static FileUtils;
33
using System.Xml.Linq;
44

5-
private static string Version;
5+
string Version;
66

7-
public static string GitHubArtifactsFolder;
7+
string GitHubArtifactsFolder;
88

9-
public static string GitHubReleaseAsset;
9+
string GitHubReleaseAsset;
1010

11-
public static string GitHubReleaseNoteAsset;
11+
string GitHubReleaseNoteAsset;
1212

13-
public static string NuGetArtifactsFolder;
13+
string NuGetArtifactsFolder;
1414

15-
public static string ChocolateyArtifactsFolder;
15+
string ChocolateyArtifactsFolder;
1616

17-
public static string PublishArtifactsFolder;
17+
string PublishArtifactsFolder;
1818

19-
public static string PublishArchiveFolder;
19+
string PublishArchiveFolder;
2020

21-
public static string DotnetScriptProjectFolder;
21+
string DotnetScriptProjectFolder;
2222

23-
public static string DotnetScriptCoreProjectFolder;
23+
string DotnetScriptCoreProjectFolder;
2424

25-
public static string DotnetScriptDependencyModelProjectFolder;
25+
string DotnetScriptDependencyModelProjectFolder;
2626

27-
public static string DotnetScriptDependencyModelNuGetProjectFolder;
27+
string DotnetScriptDependencyModelNuGetProjectFolder;
2828

29-
public static string Root;
29+
string Root;
3030

31-
public static string TestProjectFolder;
31+
string TestProjectFolder;
3232

33-
public static string PathToReleaseNotes;
33+
string PathToReleaseNotes;
3434

35-
public static string PathToGitHubReleaseAsset;
35+
string PathToGitHubReleaseAsset;
3636

37-
public static string Owner;
37+
string Owner;
3838

39-
public static string ProjectName;
39+
string ProjectName;
4040

4141
Owner = "filipw";
4242
ProjectName = "dotnet-script";

0 commit comments

Comments
 (0)