Skip to content

Commit d7f8c20

Browse files
Release v3.30.4.0
- Issue #213: Error message uses a non-Windows \n instead of e.g. Environment.NewLine - Issue #211: Implementing a partial class with a circular css_import results in a recursion in CS-Script and results in a PathTooLongException - Issue #214: The exception that is thrown when a the script compiler error occurs. - Issue #202: Better versioning of referenced NuGet packages - Issue #203: precompiler/context["CompilerOptions"] doesn't appear to work - Issue #198: Changes from version 3.29 to 3.30
1 parent 94eee8e commit d7f8c20

File tree

12 files changed

+319
-211
lines changed

12 files changed

+319
-211
lines changed

Source/Build/build.cmd

+13-194
Large diffs are not rendered by default.

Source/Build/build.legacy.cmd

+289
Large diffs are not rendered by default.

Source/Build/cscs.v3.5.exe

-300 KB
Binary file not shown.

Source/CSSRoslynProvider/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// Minor Version
2929
// Build Number// Revision
3030
//
31-
[assembly: AssemblyVersion("3.30.3.0")]
32-
[assembly: AssemblyFileVersion("3.30.3.0")]
31+
[assembly: AssemblyVersion("3.30.4.0")]
32+
[assembly: AssemblyFileVersion("3.30.4.0")]

Source/CSScriptLibrary/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("3.30.3.0")]
33-
[assembly: AssemblyFileVersion("3.30.3.0")]
32+
[assembly: AssemblyVersion("3.30.4.0")]
33+
[assembly: AssemblyFileVersion("3.30.4.0")]
3434

3535
//
3636
// In order to sign your assembly you must specify a key to use. Refer to the

Source/HelpProvider.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ static string indent2(int indent, string text)
153153
return text.ToConsoleLines(indent);
154154
}
155155

156-
#pragma warning disable S3963 // "static" fields should be initialized inline
156+
// #pragma warning disable S3963 // "static" fields should be initialized inline
157157

158158
static AppArgs()
159159
{
@@ -743,7 +743,7 @@ static AppArgs()
743743
#endregion SyntaxHelp
744744
}
745745

746-
#pragma warning restore S3963 // "static" fields should be initialized inline
746+
// #pragma warning restore S3963 // "static" fields should be initialized inline
747747
}
748748

749749
internal class HelpProvider

Source/NAnt.CSScript/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("3.30.3.0")]
33-
[assembly: AssemblyFileVersion("3.30.3.0")]
32+
[assembly: AssemblyVersion("3.30.4.0")]
33+
[assembly: AssemblyFileVersion("3.30.4.0")]

Source/NuGet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ static public string[] Resolve(string[] packages, bool suppressDownloading, stri
357357
newPackageWasInstalled = true;
358358
sw.Stop();
359359
}
360-
catch (Exception e)
360+
catch
361361
{
362362
// the failed package willl be reported as missing reference anyway
363363
}

Source/cscscript/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// Build Number
3232
// Revision
3333
//
34-
[assembly: AssemblyVersion("3.30.3.0")]
35-
[assembly: AssemblyFileVersion("3.30.3.0")]
34+
[assembly: AssemblyVersion("3.30.4.0")]
35+
[assembly: AssemblyFileVersion("3.30.4.0")]

Source/css_config/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("3.30.3.0")]
33-
[assembly: AssemblyFileVersion("3.30.3.0")]
32+
[assembly: AssemblyVersion("3.30.4.0")]
33+
[assembly: AssemblyFileVersion("3.30.4.0")]

Source/cswscript/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
// You can specify all the values or you can default the Revision and Build Numbers
2525
// by using the '*' as shown below:
2626

27-
[assembly: AssemblyVersion("3.30.3.0")]
28-
[assembly: AssemblyFileVersion("3.30.3.0")]
27+
[assembly: AssemblyVersion("3.30.4.0")]
28+
[assembly: AssemblyFileVersion("3.30.4.0")]
2929
//
3030
// In order to sign your assembly you must specify a key to use. Refer to the
3131
// Microsoft .NET Framework documentation for more information on assembly signing.

help.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
C# Script execution engine. Version 3.30.3.0.
1+
C# Script execution engine. Version 3.30.4.0.
22
Copyright (C) 2004-2018 Oleg Shilo.
33

44
Usage: cscs <switch 1> <switch 2> <file> [params] [//x]
@@ -271,7 +271,7 @@ respect to the process current directory.
271271
If for whatever reason it is preferred to always resolve path expression with respect to the parent script location you
272272
can configure the script engine to do it with the following command:
273273

274-
cscs -config:set: ResolveRelativeFromParentScriptLocation = true
274+
cscs -config:set:ResolveRelativeFromParentScriptLocation = true
275275

276276
Note if you use wildcard in the imported script name (e.g. *_build.cs) the directive will only import from the first
277277
probing directory where the matching file(s) is found. Be careful with the wide wildcard as '*.cs' as they may lead to

0 commit comments

Comments
 (0)