-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
191 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
framework: >=net45 | ||
redirects: on | ||
source https://www.nuget.org/api/v2/ | ||
|
||
nuget Nuget.CommandLine | ||
nuget FAKE | ||
nuget FsPickler 3.0.0 | ||
nuget FsUnit 1.3.0.1 | ||
nuget NUnit ~> 2.6.3 | ||
nuget NUnit.Runners ~> 2.6.3 | ||
nuget FSharp.Core ~> 4.1.17 | ||
nuget FsPickler 3.1.0 | ||
nuget Unquote 2.2.2 | ||
github fsharp/FAKE modules/Octokit/Octokit.fsx | ||
|
||
group Build | ||
framework: >=net45 | ||
redirects: on | ||
source https://www.nuget.org/api/v2/ | ||
nuget Nuget.CommandLine | ||
nuget FAKE | ||
github fsharp/FAKE modules/Octokit/Octokit.fsx | ||
|
||
group Test | ||
framework: >=net45 | ||
redirects: on | ||
source https://www.nuget.org/api/v2/ | ||
nuget FSharp.Core ~> 4.1.17 | ||
nuget FsUnit 1.3.0.1 | ||
nuget NUnit ~> 2.6.3 | ||
nuget NUnit.Runners ~> 2.6.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,34 @@ | ||
REDIRECTS: ON | ||
FRAMEWORK: >= NET45 | ||
NUGET | ||
remote: https://www.nuget.org/api/v2 | ||
FSharp.Core (4.1.17) | ||
System.ValueTuple (>= 4.3) | ||
FsPickler (3.1) | ||
System.ValueTuple (4.3.1) | ||
Unquote (2.2.2) | ||
|
||
GROUP Build | ||
REDIRECTS: ON | ||
FRAMEWORK: >= NET45 | ||
NUGET | ||
remote: https://www.nuget.org/api/v2 | ||
FAKE (4.61.3) | ||
FsPickler (3.0) | ||
FsUnit (1.3.0.1) | ||
NUnit (>= 2.6.3) | ||
Microsoft.Bcl (1.1.10) - framework: net10, net11, net20, net30, net35, net40, net40-full | ||
Microsoft.Bcl.Build (>= 1.0.14) | ||
Microsoft.Bcl.Build (1.0.21) - import_targets: false, framework: net10, net11, net20, net30, net35, net40, net40-full | ||
Microsoft.Net.Http (2.2.29) - framework: net10, net11, net20, net30, net35, net40, net40-full | ||
Microsoft.Bcl (>= 1.1.10) | ||
Microsoft.Bcl.Build (>= 1.0.14) | ||
NuGet.CommandLine (4.1) | ||
NUnit (2.6.4) | ||
NUnit.Runners (2.6.4) | ||
Octokit (0.24) | ||
Microsoft.Net.Http - framework: net10, net11, net20, net30, net35, net40, net40-full | ||
Unquote (2.2.2) | ||
GITHUB | ||
remote: fsharp/FAKE | ||
modules/Octokit/Octokit.fsx (574f6259c4abec2ae45b8c888aa1bdc9b5d4e842) | ||
Octokit (>= 0.20) | ||
Octokit (>= 0.20) | ||
GROUP Test | ||
REDIRECTS: ON | ||
FRAMEWORK: >= NET45 | ||
NUGET | ||
remote: https://www.nuget.org/api/v2 | ||
FSharp.Core (4.1.17) | ||
System.ValueTuple (>= 4.3) | ||
FsUnit (1.3.0.1) | ||
NUnit (>= 2.6.3) | ||
NUnit (2.6.4) | ||
NUnit.Runners (2.6.4) | ||
System.ValueTuple (4.3.1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
namespace System | ||
// Auto-Generated by FAKE; do not edit | ||
namespace System | ||
open System.Reflection | ||
|
||
[<assembly: AssemblyTitleAttribute("Thespian.Cluster")>] | ||
[<assembly: AssemblyProductAttribute("Thespian.Cluster")>] | ||
[<assembly: AssemblyDescriptionAttribute("An F# Actor Framework")>] | ||
[<assembly: AssemblyVersionAttribute("0.1.12")>] | ||
[<assembly: AssemblyFileVersionAttribute("0.1.12")>] | ||
[<assembly: AssemblyVersionAttribute("0.1.14")>] | ||
[<assembly: AssemblyFileVersionAttribute("0.1.14")>] | ||
do () | ||
|
||
module internal AssemblyVersionInformation = | ||
let [<Literal>] Version = "0.1.12" | ||
let [<Literal>] InformationalVersion = "0.1.12" | ||
let [<Literal>] AssemblyTitle = "Thespian.Cluster" | ||
let [<Literal>] AssemblyProduct = "Thespian.Cluster" | ||
let [<Literal>] AssemblyDescription = "An F# Actor Framework" | ||
let [<Literal>] AssemblyVersion = "0.1.14" | ||
let [<Literal>] AssemblyFileVersion = "0.1.14" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
|
||
</configuration> | ||
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<Paket>True</Paket> | ||
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding></runtime></configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
FSharp.Core | ||
FsPickler | ||
Unquote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
namespace System | ||
// Auto-Generated by FAKE; do not edit | ||
namespace System | ||
open System.Reflection | ||
|
||
[<assembly: AssemblyTitleAttribute("Thespian")>] | ||
[<assembly: AssemblyProductAttribute("Thespian")>] | ||
[<assembly: AssemblyDescriptionAttribute("An F# Actor Framework")>] | ||
[<assembly: AssemblyVersionAttribute("0.1.12")>] | ||
[<assembly: AssemblyFileVersionAttribute("0.1.12")>] | ||
[<assembly: AssemblyVersionAttribute("0.1.14")>] | ||
[<assembly: AssemblyFileVersionAttribute("0.1.14")>] | ||
do () | ||
|
||
module internal AssemblyVersionInformation = | ||
let [<Literal>] Version = "0.1.12" | ||
let [<Literal>] InformationalVersion = "0.1.12" | ||
let [<Literal>] AssemblyTitle = "Thespian" | ||
let [<Literal>] AssemblyProduct = "Thespian" | ||
let [<Literal>] AssemblyDescription = "An F# Actor Framework" | ||
let [<Literal>] AssemblyVersion = "0.1.14" | ||
let [<Literal>] AssemblyFileVersion = "0.1.14" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
|
||
</configuration> | ||
<runtime><assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<Paket>True</Paket> | ||
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding></runtime></configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
FSharp.Core | ||
FsPickler |
Oops, something went wrong.