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

Lines changed: 13 additions & 194 deletions
Large diffs are not rendered by default.

Source/Build/build.legacy.cmd

Lines changed: 289 additions & 0 deletions
Large diffs are not rendered by default.

Source/Build/cscs.v3.5.exe

-300 KB
Binary file not shown.

Source/CSSRoslynProvider/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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")]

0 commit comments

Comments
 (0)