Skip to content

Commit 31820aa

Browse files
committed
1 parent 92912c9 commit 31820aa

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

R.NET/Function.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,11 @@ protected SymbolicExpression InvokeOrderedArguments(SymbolicExpression[] args)
117117
}
118118
using (var call = new ProtectedPointer(Engine, this.GetFunction<Rf_lcons>()(handle, argument)))
119119
{
120-
var result = evaluateCall(call);
121-
return new SymbolicExpression(Engine, result);
120+
using (var result = evaluateCall(call))
121+
{
122+
return new SymbolicExpression(Engine, result);
123+
}
122124
}
123-
124125
}
125-
126-
127126
}
128127
}

RDotNet.FSharp.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>R.NET.Community.FSharp</id>
5-
<version>0.1.7</version>
5+
<version>0.1.8</version>
66
<title>R.NET F# Utility</title>
77
<authors>RecycleBin</authors>
88
<owners>kos59125</owners>
@@ -16,7 +16,7 @@
1616
<reference file="RDotNet.FSharp.dll" />
1717
</references>
1818
<dependencies>
19-
<dependency id="R.NET.Community" version="1.5.14" />
19+
<dependency id="R.NET.Community" version="1.5.15" />
2020
</dependencies>
2121
<tags>R R.NET F# statistics</tags>
2222
</metadata>

RDotNet.FSharp/AssemblyInfo.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ open System.Runtime.InteropServices
88
[<assembly: AssemblyCompany("RecycleBin")>]
99
[<assembly: AssemblyProduct("RDotNet.FSharp")>]
1010
[<assembly: AssemblyCopyright("Copyright © RecycleBin 2013")>]
11-
[<assembly: AssemblyVersion("0.1.6.0")>]
12-
[<assembly: AssemblyInformationalVersion("0.1.6.0")>]
11+
[<assembly: AssemblyVersion("0.1.8.0")>]
12+
[<assembly: AssemblyInformationalVersion("0.1.8.0")>]
1313

1414
()

RDotNet.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>R.NET.Community</id>
5-
<version>1.5.14</version>
5+
<version>1.5.15</version>
66
<title>R.NET</title>
77
<authors>RecycleBin, jperraud</authors>
88
<owners>kos59125</owners>

build/build_R.NET_nuget.cmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ set SLN=%rdotnet_dir%RDotNet.Release.sln
7979

8080
set pack_options=-OutputDirectory %rdotnet_dir%build %common_ng_pack_options%
8181
if exist %repo_dir%R.NET.1.5.*.nupkg del %repo_dir%R.NET.1.5.*.nupkg
82-
%nuget_exe% pack %rdotnet_dir%RDotNet.nuspec %pack_options%
82+
if "%BuildConfiguration%"=="Release" set nuspec_file=RDotNet.nuspec
83+
if "%BuildConfiguration%"=="Debug" set nuspec_file=RDotNet_debug.nuspec
84+
%nuget_exe% pack %rdotnet_dir%%nuspec_file% %pack_options%
8385
%nuget_exe% pack %rdotnet_dir%RDotNet.FSharp.nuspec %pack_options%
8486
:: %repo_dir%RDotNet.FSharp.0.*.nupkg
8587
xcopy %rdotnet_dir%build\*.nupkg %repo_dir% %COPYOPTIONS%

0 commit comments

Comments
 (0)