8000 updates to release a nuget package RDotNet.FSharp · rdotnet/rdotnet@9ee63ee · GitHub
[go: up one dir, main page]

Skip to content

Commit 9ee63ee

Browse files
committed
updates to release a nuget package RDotNet.FSharp
1 parent 0942746 commit 9ee63ee

File tree

3 files changed

+15
-23
lines changed

3 files changed

+15
-23
lines changed

RDotNet.FSharp/RDotNet.FSharp.fsproj

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@
88
<TargetFramework>netstandard2.0</TargetFramework>
99
<Version>1.8.0-alpha</Version>
1010
<Copyright>(c) 2014-2018 Jean-Michel Perraud; (c) 2013 Kosei, evolvedmicrobe</Copyright>
11-
<!-- <Description>Description</Description>
12-
<Product>Product</Product>
11+
<Description>A .NET interoperability library to access the R statistical language runtime from .NET languages. The library is designed for fast data exchange, in process.</Description>
12+
<Product>R.NET</Product>
1313
<Company />
14-
<Authors>Jean-Michel Perraud, Kosei, evolvedmicrobe</Authors>
15-
<PackageId>DynamicInterop</PackageId> -->
14+
<Authors>Jean-Michel Perraud, Kosei, and contributors</Authors>
15+
<PackageId>R.NET.FSharp</PackageId>
16+
<Title>R.NET.FSharp: Access R from F# in process</Title>
17+
<PackageLicenseUrl>https://github.com/jmp75/rdotnet/blob/master/License.txt</PackageLicenseUrl>
1618
<RepositoryUrl>https://github.com/jmp75/rdotnet</RepositoryUrl>
17-
<ApplicationIcon />
18-
<!-- <PackageProjectUrl>https://github.com/jmp75/rdotnet</PackageProjectUrl>
19-
<PackageReleaseNotes>Migration to .NET Standard 2.0</PackageReleaseNotes> -->
20-
</PropertyGroup>
19+
<PackageProjectUrl>https://github.com/jmp75/rdotnet</PackageProjectUrl>
20+
<PackageReleaseNotes>Migration to .NET Standard 2.0 and supporting R 3.5.x</PackageReleaseNotes>
21+
<PackageTags>interop R statistical language</PackageTags>
22+
</PropertyGroup>
2123
<ItemGroup>
2224
<None Remove="AssemblyInfo.fs" />
2325
<None Remove="VersionInfo.fs" />

RDotNet.Tests.sln

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.28307.168
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RDotNet", "R.NET\RDotNet.csproj", "{0923E1A0-2032-4997-AB73-49E42C4034A9}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RDotNet", "R.NET\RDotNet.csproj", "{0923E1A0-2032-4997-AB73-49E42C4034A9}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RDotNet.NativeLibrary", "RDotNet.NativeLibrary\RDotNet.NativeLibrary.csproj", "{2A089A59-0F22-4484-B442-0FE8BDA10879}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RDotNet.TestBase", "RDotNet.TestBase\RDotNet.TestBase.csproj", "{B9E15660-096F-45FB-82E3-3C21BBE986DF}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RDotNet.Graphics", "RDotNet.Graphics\RDotNet.Graphics.csproj", "{BCADF6CF-2D63-4BD7-BC28-F0AC4F98AE78}"
11-
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RDotNet.TestBase", "RDotNet.TestBase\RDotNet.TestBase.csproj", "{B9E15660-096F-45FB-82E3-3C21BBE986DF}"
13-
EndProject
14-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RDotNet.Tests", "RDotNet.Tests\RDotNet.Tests.csproj", "{6C456A2E-FBB5-44DA-B0D2-FE76C49FCD06}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RDotNet.Tests", "RDotNet.Tests\RDotNet.Tests.csproj", "{6C456A2E-FBB5-44DA-B0D2-FE76C49FCD06}"
1511
EndProject
1612
Global
1713
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -23,14 +19,6 @@ Global
2319
{0923E1A0-2032-4997-AB73-49E42C4034A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
2420
{0923E1A0-2032-4997-AB73-49E42C4034A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
2521
{0923E1A0-2032-4997-AB73-49E42C4034A9}.Release|Any CPU.Build.0 = Release|Any CPU
26-
{2A089A59-0F22-4484-B442-0FE8BDA10879}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{2A089A59-0F22-4484-B442-0FE8BDA10879}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{2A089A59-0F22-4484-B442-0FE8BDA10879}.Release|Any CPU.ActiveCfg = Release|Any CPU
29-
{2A089A59-0F22-4484-B442-0FE8BDA10879}.Release|Any CPU.Build.0 = Release|Any CPU
30-
{BCADF6CF-2D63-4BD7-BC28-F0AC4F98AE78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31-
{BCADF6CF-2D63-4BD7-BC28-F0AC4F98AE78}.Debug|Any CPU.Build.0 = Debug|Any CPU
32-
{BCADF6CF-2D63-4BD7-BC28-F0AC4F98AE78}.Release|Any CPU.ActiveCfg = Release|Any CPU
33-
{BCADF6CF-2D63-4BD7-BC28-F0AC4F98AE78}.Release|Any CPU.Build.0 = Release|Any CPU
3422
{B9E15660-096F-45FB-82E3-3C21BBE986DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3523
{B9E15660-096F-45FB-82E3-3C21BBE986DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
3624
{B9E15660-096F-45FB-82E3-3C21BBE986DF}.Release|Any CPU.ActiveCfg = Release|Any CPU

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ dotnet test RDotNet.Tests/RDotNet.Tests.csproj
5151
```bash
5252
dotnet build --configuration Release --no-restore RDotNet.ns2.sln
5353
dotnet pack R.NET/RDotNet.csproj --configuration Release --no-build --no-restore --output nupkgs
54+
dotnet pack RDotNet.FSharp/RDotNet.FSharp.fsproj --configuration Release --no-build --no-restore --output nupkgs
55+
5456
# Or for initial testing/debugging
5557
dotnet pack R.NET/RDotNet.csproj --configuration Debug --no-build --no-restore --output nupkgs
5658
```

0 commit comments

Comments
 (0)
0