Skip to content

Commit fb8efb3

Browse files
committed
make packable, in theory
1 parent 3c5d39b commit fb8efb3

49 files changed

Lines changed: 64 additions & 76 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ install:
88
script:
99
- dotnet build Float.xAPI/Float.xAPI.fsproj
1010
- dotnet test Float.xAPI.Tests/Float.xAPI.Tests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
11-
- dotnet pack Float.xAPI/Float.xAPI.fsproj /p:Configuration=Release
11+
- dotnet pack Float.xAPI/Float.xAPI.fsproj /p:Configuration=Release /p:PackageVersion=0.0.1
12+
- dotnet nuget push Float.xAPI/bin/Release/*.nupkg -Verbosity detailed -ApiKey $NUGET_KEY -Source $NUGET_SOURCE
1213
after_success:
1314
- curl -s https://codecov.io/bash > codecov
1415
- chmod +x codecov

Float.Common/Float.Common.fsproj

Lines changed: 0 additions & 15 deletions
This file was deleted.

Float.VSDocGen/Float.VSDocGen.fsproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,5 @@
5656
<Compile Include="Program.fs" />
5757
<None Include="packages.config" />
5858
</ItemGroup>
59-
<ItemGroup>
60-
<ProjectReference Include="..\Float.Common\Float.Common.fsproj">
61-
<Project>{4F7D8D7D-C0FB-462A-B7DF-F6D348A8C9D0}</Project>
62-
<Name>Float.Common</Name>
63-
</ProjectReference>
64-
</ItemGroup>
6559
<Import Project="$(FSharpTargetsPath)" />
6660
</Project>

Float.VSDocGen/Member.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Float.VSDocGen
77

8-
open Float.Common.Interop
8+
//open Float.Interop
99

1010
/// <summary>
1111
/// Nearly all useful information in the parsed XML is in the form of a member of some class.

Float.VSDocGen/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Float.VSDocGen
77

88
open System.IO
99
open System
10-
open Float.Common.Interop
10+
//open Float.Interop
1111
open FSharp.Data
1212
open System.Xml
1313
open System.Xml.Linq

Float.xAPI.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Float.xAPI.Tests", "Float.x
77
EndProject
88
Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "Float.VSDocGen", "Float.VSDocGen\Float.VSDocGen.fsproj", "{FCC39507-2418-47B9-A290-512DAE0B6BFE}"
99
EndProject
10-
Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "Float.Common", "Float.Common\Float.Common.fsproj", "{4F7D8D7D-C0FB-462A-B7DF-F6D348A8C9D0}"
11-
EndProject
1210
Global
1311
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1412
Debug|Any CPU = Debug|Any CPU
@@ -27,10 +25,6 @@ Global
2725
{FCC39507-2418-47B9-A290-512DAE0B6BFE}.Debug|Any CPU.Build.0 = Debug|Any CPU
2826
{FCC39507-2418-47B9-A290-512DAE0B6BFE}.Release|Any CPU.ActiveCfg = Release|Any CPU
2927
{FCC39507-2418-47B9-A290-512DAE0B6BFE}.Release|Any CPU.Build.0 = Release|Any CPU
30-
{4F7D8D7D-C0FB-462A-B7DF-F6D348A8C9D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31-
{4F7D8D7D-C0FB-462A-B7DF-F6D348A8C9D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
32-
{4F7D8D7D-C0FB-462A-B7DF-F6D348A8C9D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
33-
{4F7D8D7D-C0FB-462A-B7DF-F6D348A8C9D0}.Release|Any CPU.Build.0 = Release|Any CPU
3428
EndGlobalSection
3529
GlobalSection(MonoDevelopProperties) = preSolution
3630
Policies = $0

Float.xAPI/Activities/Activity.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ open System
99
open System.Runtime.InteropServices
1010
open Float.xAPI
1111
open Float.xAPI.Activities.Definitions
12-
open Float.Common.Interop
12+
open Float.Interop
1313

1414
/// <summary>
1515
/// A Statement can represent an Activity as the Object of the Statement.

Float.xAPI/Activities/ContextActivities.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Float.xAPI.Activities
77

88
open System.Runtime.InteropServices
9-
open Float.Common.Interop
9+
open Float.Interop
1010

1111
/// <summary>
1212
/// A map of the types of learning activity context that this Statement is related to.

Float.xAPI/Activities/Definitions/ActivityDefinition.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ open System
99
open System.Runtime.InteropServices
1010
open Float.xAPI
1111
open Float.xAPI.Languages
12-
open Float.Common.Interop
12+
open Float.Interop
1313

1414
/// <summary>
1515
/// Metadata associated with an activity.

Float.xAPI/Activities/Definitions/CharacterString.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Float.xAPI.Activities.Definitions
77

88
open System.Runtime.InteropServices
9-
open Float.Common.Interop
9+
open Float.Interop
1010
open Float.xAPI.Languages
1111

1212
/// <summary>

0 commit comments

Comments
 (0)