Skip to content

Commit 58ef29d

Browse files
author
Jimmy Byrd
committed
Restucture to library
1 parent 5c0647c commit 58ef29d

34 files changed

+183
-1118
lines changed

.paket/Paket.Restore.targets

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,11 +252,10 @@
252252
</PropertyGroup>
253253

254254
<ItemGroup>
255-
<_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.$(PackageVersion.Split(`+`)[0]).nuspec"/>
255+
<_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.$(PackageVersion).nuspec"/>
256256
</ItemGroup>
257257

258-
<Exec Condition="@(_NuspecFiles) != ''" Command='$(PaketCommand) fix-nuspecs files "@(_NuspecFiles)" project-file "$(PaketProjectFile)" ' />
259-
<Error Condition="@(_NuspecFiles) == ''" Text='Could not find nuspec files in "$(AdjustedNuspecOutputPath)" (Version: "$(PackageVersion)"), therefore we cannot call "paket fix-nuspecs" and have to error out!' />
258+
<Exec Command='$(PaketCommand) fix-nuspecs files "@(_NuspecFiles)" project-file "$(PaketProjectFile)" ' Condition="@(_NuspecFiles) != ''" />
260259

261260
<ConvertToAbsolutePath Condition="@(_NuspecFiles) != ''" Paths="@(_NuspecFiles)">
262261
<Output TaskParameter="AbsolutePaths" PropertyName="NuspecFileAbsolutePath" />

FSharp.Control.Redis.Streams.sln

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.26124.0
@@ -9,7 +9,9 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Control.Redis.Stream
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{ACBEE43C-7A88-4FB1-9B06-DB064D22B29F}"
1111
EndProject
12-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Redis.Streams.Tests", "tests\Redis.Streams.Tests\Redis.Streams.Tests.fsproj", "{1CA2E092-2320-451D-A4F0-9ED7C7C528CA}"
12+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Control.Redis.Streams.Hopac.Tests", "tests\FSharp.Control.Redis.Streams.Hopac.Tests\FSharp.Control.Redis.Streams.Hopac.Tests.fsproj", "{1CA2E092-2320-451D-A4F0-9ED7C7C528CA}"
13+
EndProject
14+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.Control.Redis.Streams.Hopac", "src\FSharp.Control.Redis.Streams.Hopac\FSharp.Control.Redis.Streams.Hopac.fsproj", "{5469ACDC-F198-4451-944E-08616A1AAE95}"
1315
EndProject
1416
Global
1517
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -48,9 +50,22 @@ Global
4850
{1CA2E092-2320-451D-A4F0-9ED7C7C528CA}.Release|x64.Build.0 = Release|x64
4951
{1CA2E092-2320-451D-A4F0-9ED7C7C528CA}.Release|x86.ActiveCfg = Release|x86
5052
{1CA2E092-2320-451D-A4F0-9ED7C7C528CA}.Release|x86.Build.0 = Release|x86
53+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
54+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Debug|Any CPU.Build.0 = Debug|Any CPU
55+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Debug|x64.ActiveCfg = Debug|Any CPU
56+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Debug|x64.Build.0 = Debug|Any CPU
57+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Debug|x86.ActiveCfg = Debug|Any CPU
58+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Debug|x86.Build.0 = Debug|Any CPU
59+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Release|Any CPU.ActiveCfg = Release|Any CPU
60+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Release|Any CPU.Build.0 = Release|Any CPU
61+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Release|x64.ActiveCfg = Release|Any CPU
62+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Release|x64.Build.0 = Release|Any CPU
63+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Release|x86.ActiveCfg = Release|Any CPU
64+
{5469ACDC-F198-4451-944E-08616A1AAE95}.Release|x86.Build.0 = Release|Any CPU
5165
EndGlobalSection
5266
GlobalSection(NestedProjects) = preSolution
5367
{5D30E174-2538-47AC-8443-318C8C5DC2C9} = {C397A34C-84F1-49E7-AEBC-2F9F2B196216}
5468
{1CA2E092-2320-451D-A4F0-9ED7C7C528CA} = {ACBEE43C-7A88-4FB1-9B06-DB064D22B29F}
69+
{5469ACDC-F198-4451-944E-08616A1AAE95} = {C397A34C-84F1-49E7-AEBC-2F9F2B196216}
5570
EndGlobalSection
5671
EndGlobal

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ let dotnetTest ctx =
172172
let args =
173173
[
174174
"--no-build"
175-
"/p:AltCover=true"
175+
"/p:AltCover=false"
176176
sprintf "/p:AltCoverThreshold=%d" coverageThresholdPercent
177177
sprintf "/p:AltCoverAssemblyExcludeFilter=%s" excludeCoverage
178178
]

build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
set -eu
44
set -o pipefail
5+
PAKET_SKIP_RESTORE_TARGETS=true
6+
export PAKET_SKIP_RESTORE_TARGETS
57

68
# liberated from https://stackoverflow.com/a/18443300/433393
79
realpath() {

docs/coverage/Redis.Streams_AssemblyVersionInformation.htm

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

docs/coverage/Redis.Streams_Say.htm

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

docs/coverage/class.js

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

docs/coverage/icon_cube.svg

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

docs/coverage/icon_down-dir_active.svg

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

docs/coverage/icon_fork.svg

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

0 commit comments

Comments
 (0)