Skip to content

Commit

Permalink
results of running 'paket remove nuget NuGet.CommandLine group Build'
Browse files Browse the repository at this point in the history
  • Loading branch information
theimowski committed Apr 12, 2016
1 parent 8dd7d74 commit 6cadb6d
Show file tree
Hide file tree
Showing 8 changed files with 138 additions and 119 deletions.
2 changes: 1 addition & 1 deletion examples/Example/Example.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</Content>
<Compile Include="..\..\paket-files\examples\haf\YoLo\YoLo.fs">
<Paket>True</Paket>
<Link>paket-files\YoLo.fs</Link>
<Link>paket-files/YoLo.fs</Link>
</Compile>
<Compile Include="CounterDemo.fs" />
<Compile Include="Program.fs" />
Expand Down
2 changes: 1 addition & 1 deletion examples/WebSocket/WebSocket.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<ItemGroup>
<Compile Include="..\..\paket-files\examples\haf\YoLo\YoLo.fs">
<Paket>True</Paket>
<Link>paket-files\YoLo.fs</Link>
<Link>paket-files/YoLo.fs</Link>
</Compile>
<Compile Include="Program.fs" />
<None Include="App.config" />
Expand Down
34 changes: 31 additions & 3 deletions paket-files/examples/haf/YoLo/YoLo.fs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[<AutoOpen>]
module internal Suave.Utils.YoLo
module internal YoLo

#nowarn "64"

Expand Down Expand Up @@ -68,7 +68,7 @@ module Choice =

let injectSnd f = function
| Choice1Of2 x -> Choice1Of2 x
| Choice2Of2 x -> f x; Choice1Of2 x
| Choice2Of2 x -> f x; Choice2Of2 x

module Operators =

Expand Down Expand Up @@ -192,11 +192,19 @@ module String =

/// Also, invariant culture
let equals (a : string) (b : string) =
#if DNXCORE50
(CultureInfo.InvariantCulture.CompareInfo.GetStringComparer(CompareOptions.None)).Equals(a, b)
#else
a.Equals(b, StringComparison.InvariantCulture)
#endif

/// Also, invariant culture
let equalsCaseInsensitve (a : string) (b : string) =
#if DNXCORE50
(CultureInfo.InvariantCulture.CompareInfo.GetStringComparer(CompareOptions.IgnoreCase)).Equals(a, b)
#else
a.Equals(b, StringComparison.InvariantCultureIgnoreCase)
#endif

/// Compare ordinally with ignore case.
let equalsOrdinalCI (str1 : string) (str2 : string) =
Expand Down Expand Up @@ -258,20 +266,32 @@ module Bytes =
sha.ComputeHash ms

let sha1 =
#if DNXCORE50
hash (SHA1.Create())
#else
hash (new SHA1Managed())
#endif

let sha256 =
#if DNXCORE50
hash (SHA256.Create())
#else
hash (new SHA256Managed())
#endif

let sha512 =
#if DNXCORE50
hash (SHA512.Create())
#else
hash (new SHA512Managed())
#endif

let toHex (bs : byte[]) =
BitConverter.ToString bs
|> String.replace "-" ""
|> String.toLowerInvariant

let fromHex (digestString : string) =
let ofHex (digestString : string) =
Enumerable.Range(0, digestString.Length)
.Where(fun x -> x % 2 = 0)
.Select(fun x -> Convert.ToByte(digestString.Substring(x, 2), 16))
Expand Down Expand Up @@ -591,13 +611,21 @@ module App =

/// Gets the calling assembly's informational version number as a string
let getVersion () =
#if DNXCORE50
(typeof<Random>.GetTypeInfo().Assembly)
#else
Assembly.GetCallingAssembly()
#endif
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
.InformationalVersion

/// Get the assembly resource
let resource name =
#if DNXCORE50
let assembly = typeof<Random>.GetTypeInfo().Assembly
#else
let assembly = Assembly.GetExecutingAssembly ()
#endif
use stream = assembly.GetManifestResourceStream name
if stream = null then
assembly.GetManifestResourceNames()
Expand Down
2 changes: 1 addition & 1 deletion paket-files/examples/haf/YoLo/paket.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0d120146e4c558b1b7cb1763161dcf33e31de22b
12b17ed0840b1a915ef7efa4db341d9a6477117a
3 changes: 1 addition & 2 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ github haf/YoLo YoLo.fs

group Build
source https://nuget.org/api/v2
nuget NuGet.CommandLine

group Tests
framework: NET45
Expand Down Expand Up @@ -39,4 +38,4 @@ group Docs
source https://nuget.org/api/v2
nuget FSharp.Core ~> 4
nuget FsLibTool
nuget Argu
nuget Argu
201 changes: 102 additions & 99 deletions paket.lock
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
FRAMEWORK: NET45
NUGET
remote: https://nuget.org/api/v2
remote: https://www.nuget.org/api/v2
specs:
DotLiquid (1.8.0)
DotLiquid (1.8)
FSharp.Core (3.1.2.5)
Microsoft.AspNet.Razor (3.2.3)
openssl.redist (1.0.1.25)
RazorEngine (3.7.5)
Microsoft.AspNet.Razor (>= 3.0.0)
Microsoft.AspNet.Razor (>= 3.0)
GITHUB
remote: haf/YoLo
specs:
YoLo.fs (0d120146e4c558b1b7cb1763161dcf33e31de22b)
GROUP Build
NUGET
remote: https://nuget.org/api/v2
specs:
NuGet.CommandLine (3.3.0)


GROUP Docs
FRAMEWORK: NET45
NUGET
remote: https://nuget.org/api/v2
remote: https://www.nuget.org/api/v2
specs:
Argu (1.1.3)
FSharp.Core (4.0.0.1)
Expand All @@ -34,91 +31,97 @@ NUGET
GROUP Examples
FRAMEWORK: NET45
NUGET
remote: https://nuget.org/api/v2
remote: https://www.nuget.org/api/v2
specs:
Aether (8.0.2)
Arachne.Core (3.0.0-b078)
FParsec (>= 1.0.0 < 2.0.0)
Arachne.Http (3.0.0-b078)
Arachne.Core (>= 3.0.0-b078)
Arachne.Language (>= 3.0.0-b078)
Arachne.Uri (>= 3.0.0-b078)
FParsec (>= 1.0.0 < 2.0.0)
Arachne.Http.Cors (3.0.0-b078)
Arachne.Core (>= 3.0.0-b078)
Arachne.Http (>= 3.0.0-b078)
Arachne.Uri (>= 3.0.0-b078)
FParsec (>= 1.0.0 < 2.0.0)
Arachne.Language (3.0.0-b078)
Arachne.Core (>= 3.0.0-b078)
FParsec (>= 1.0.0 < 2.0.0)
Arachne.Uri (3.0.0-b078)
Arachne.Core (>= 3.0.0-b078)
FParsec (>= 1.0.0 < 2.0.0)
Arachne.Uri.Template (3.0.0-b078)
Arachne.Core (>= 3.0.0-b078)
Arachne.Uri (>= 3.0.0-b078)
FParsec (>= 1.0.0 < 2.0.0)
Aether (8.1.2)
Arachne.Core (3.0)
FParsec (>= 1.0 < 2.0)
Arachne.Http (3.0)
Arachne.Core (>= 3.0)
Arachne.Language (>= 3.0)
Arachne.Uri (>= 3.0)
FParsec (>= 1.0 < 2.0)
Arachne.Http.Cors (3.0)
Arachne.Core (>= 3.0)
Arachne.Http (>= 3.0)
Arachne.Language (>= 3.0)
Arachne.Uri (>= 3.0)
FParsec (>= 1.0 < 2.0)
Arachne.Language (3.0)
Arachne.Core (>= 3.0)
FParsec (>= 1.0 < 2.0)
Arachne.Uri (3.0)
Arachne.Core (>= 3.0)
FParsec (>= 1.0 < 2.0)
Arachne.Uri.Template (3.0)
Arachne.Core (>= 3.0)
Arachne.Uri (>= 3.0)
FParsec (>= 1.0 < 2.0)
FParsec (1.0.2)
Freya (3.0.0-b264)
Freya.Core (>= 3.0.0-b264)
Freya.Lenses.Http (>= 3.0.0-b264)
Freya.Lenses.Http.Cors (>= 3.0.0-b264)
Freya.Machine (>= 3.0.0-b264)
Freya.Machine.Extensions.Http (>= 3.0.0-b264)
Freya.Machine.Extensions.Http.Cors (>= 3.0.0-b264)
Freya.Machine.Router (>= 3.0.0-b264)
Freya.Recorder (>= 3.0.0-b264)
Freya.Router (>= 3.0.0-b264)
Freya.Core (3.0.0-b264)
Aether (>= 8.0.2 < 9.0.0)
Freya.Lenses.Http (3.0.0-b264)
Aether (>= 8.0.2 < 9.0.0)
Arachne.Http (>= 3.0.0-b078)
Freya.Core (>= 3.0.0-b264)
Freya.Lenses.Http.Cors (3.0.0-b264)
Aether (>= 8.0.2 < 9.0.0)
Arachne.Http.Cors (>= 3.0.0-b078)
Freya.Core (>= 3.0.0-b264)
Freya.Lenses.Http (>= 3.0.0-b264)
Freya.Machine (3.0.0-b264)
Aether (>= 8.0.2 < 9.0.0)
Freya.Core (>= 3.0.0-b264)
Freya.Recorder (>= 3.0.0-b264)
Hekate (>= 2.0.1 < 3.0.0)
Freya.Machine.Extensions.Http (3.0.0-b264)
Aether (>= 8.0.2 < 9.0.0)
Arachne.Http (>= 3.0.0-b078)
Freya.Core (>= 3.0.0-b264)
Freya.Lenses.Http (>= 3.0.0-b264)
Freya.Machine (>= 3.0.0-b264)
Freya.Machine.Extensions.Http.Cors (3.0.0-b264)
Aether (>= 8.0.2 < 9.0.0)
Arachne.Http.Cors (>= 3.0.0-b078)
Freya.Core (>= 3.0.0-b264)
Freya.Lenses.Http (>= 3.0.0-b264)
Freya.Lenses.Http.Cors (>= 3.0.0-b264)
Freya.Machine (>= 3.0.0-b264)
Freya.Machine.Extensions.Http (>= 3.0.0-b264)
Freya.Machine.Router (3.0.0-b264)
Arachne.Http (>= 3.0.0-b078)
Arachne.Uri.Template (>= 3.0.0-b078)
Freya.Core (>= 3.0.0-b264)
Freya.Router (>= 3.0.0-b264)
Freya.Recorder (3.0.0-b264)
Aether (>= 8.0.2 < 9.0.0)
Freya.Core (>= 3.0.0-b264)
Freya.Router (3.0.0-b264)
Aether (>= 8.0.2 < 9.0.0)
Arachne.Http (>= 3.0.0-b078)
Arachne.Uri.Template (>= 3.0.0-b078)
Freya.Core (>= 3.0.0-b264)
Freya.Lenses.Http (>= 3.0.0-b264)
Freya.Recorder (>= 3.0.0-b264)
Hekate (>= 2.0.1 < 3.0.0)
Freya (3.0.0-b300)
Freya.Core (>= 3.0.0-b300)
Freya.Lenses.Http (>= 3.0.0-b300)
Freya.Lenses.Http.Cors (>= 3.0.0-b300)
Freya.Machine (>= 3.0.0-b300)
Freya.Machine.Extensions.Http (>= 3.0.0-b300)
Freya.Machine.Extensions.Http.Cors (>= 3.0.0-b300)
Freya.Machine.Router (>= 3.0.0-b300)
Freya.Recorder (>= 3.0.0-b300)
Freya.Router (>= 3.0.0-b300)
Freya.Core (3.0.0-b300)
Aether (>= 8.1 < 9.0)
Freya.Lenses.Http (3.0.0-b300)
Aether (>= 8.1 < 9.0)
Arachne.Http (>= 3.0)
Freya.Core (>= 3.0.0-b300)
Freya.Lenses.Http.Cors (3.0.0-b300)
Aether (>= 8.1 < 9.0)
Arachne.Http.Cors (>= 3.0)
Freya.Core (>= 3.0.0-b300)
Freya.Lenses.Http (>= 3.0.0-b300)
Freya.Machine (3.0.0-b300)
Aether (>= 8.1 < 9.0)
Freya.Core (>= 3.0.0-b300)
Freya.Recorder (>= 3.0.0-b300)
Hekate (>= 3.0 < 4.0)
Freya.Machine.Extensions.Http (3.0.0-b300)
Aether (>= 8.1 < 9.0)
Arachne.Http (>= 3.0)
Arachne.Language (>= 3.0)
Freya.Core (>= 3.0.0-b300)
Freya.Lenses.Http (>= 3.0.0-b300)
Freya.Machine (>= 3.0.0-b300)
Freya.Recorder (>= 3.0.0-b300)
Freya.Machine.Extensions.Http.Cors (3.0.0-b300)
Aether (>= 8.1 < 9.0)
Arachne.Http.Cors (>= 3.0)
Freya.Core (>= 3.0.0-b300)
Freya.Lenses.Http (>= 3.0.0-b300)
Freya.Lenses.Http.Cors (>= 3.0.0-b300)
Freya.Machine (>= 3.0.0-b300)
Freya.Machine.Extensions.Http (>= 3.0.0-b300)
Freya.Recorder (>= 3.0.0-b300)
Freya.Machine.Router (3.0.0-b300)
Arachne.Http (>= 3.0)
Arachne.Uri.Template (>= 3.0)
Freya.Core (>= 3.0.0-b300)
Freya.Lenses.Http (>= 3.0.0-b300)
Freya.Recorder (>= 3.0.0-b300)
Freya.Router (>= 3.0.0-b300)
Freya.Recorder (3.0.0-b300)
Aether (>= 8.1 < 9.0)
Freya.Core (>= 3.0.0-b300)
Freya.Router (3.0.0-b300)
Aether (>= 8.1 < 9.0)
Arachne.Http (>= 3.0)
Arachne.Uri.Template (>= 3.0)
Freya.Core (>= 3.0.0-b300)
Freya.Lenses.Http (>= 3.0.0-b300)
Freya.Recorder (>= 3.0.0-b300)
Hekate (>= 3.0 < 4.0)
FSharp.Core (4.0.0.1)
Hekate (2.0.1)
Aether (>= 8.0.2 < 9.0.0)
Hekate (3.2)
Aether (>= 8.0.2 < 9.0)
Microsoft.Owin (3.0.1)
Owin (>= 1.0)
Microsoft.Owin.Hosting (3.0.1)
Expand All @@ -130,32 +133,32 @@ NUGET
Owin (>= 1.0)
Owin (1.0)
Topshelf (3.3.1)
Topshelf.FSharp (2.1.0)
Topshelf (>= 3.2.0)
Topshelf.FSharp (2.1)
Topshelf (>= 3.2)
GITHUB
remote: haf/YoLo
specs:
YoLo.fs (0d120146e4c558b1b7cb1763161dcf33e31de22b)
YoLo.fs (12b17ed0840b1a915ef7efa4db341d9a6477117a)
GROUP Tests
FRAMEWORK: NET45
NUGET
remote: https://nuget.org/api/v2
remote: https://www.nuget.org/api/v2
specs:
FsCheck (2.1.0)
FsCheck (2.1)
FSharp.Core (>= 3.1.2.5)
FSharp.Charting (0.90.13)
FSharp.Core (3.1.2.5)
Fuchu (1.0.2)
FSharp.Core (>= 3.1.2.1)
Fuchu.FsCheck (1.0.1)
FsCheck (>= 2.1.0)
FsCheck (>= 2.1)
FSharp.Core (>= 3.1.2.5)
Fuchu (>= 1.0.1.0)
Fuchu (>= 1.0.1)
Fuchu.PerfUtil (1.0.2)
FSharp.Core (>= 3.1.2.1)
Fuchu (>= 1.0.2.0)
Fuchu (>= 1.0.2)
PerfUtil (>= 0.1.8)
Http.fs-prerelease (2.4.0)
Http.fs-prerelease (2.4)
FSharp.Core (>= 3.1.2.1)
PerfUtil (0.1.8)
WebSocketSharp (1.0.3-rc9)
Loading

0 comments on commit 6cadb6d

Please sign in to comment.