Skip to content
This repository has been archived by the owner on Sep 29, 2020. It is now read-only.

Commit

Permalink
Update dependencies to OWIN 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
panesofglass committed Jan 27, 2014
1 parent 334383f commit 386f9bc
Show file tree
Hide file tree
Showing 15 changed files with 334 additions and 247 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### New in 1.0.0-rc3 - (Released 2014-01-26)
* Update to OWIN 2.1.0 RTM

### New in 1.0.0-rc2 - (Released 2014-01-19)
* Removed Process.Start call to allow use with [canopy](http://lefthandedgoat.github.io/canopy/)
* Updated Script sample to show use with canopy
Expand Down
2 changes: 1 addition & 1 deletion nuget/content/Script.fsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// NOTE: You should build the current project first so that the required assemblies are found in bin/Debug.

// Include dependencies
#I """bin\Debug"""
#I "bin/Debug"
#r "Owin.dll"
#r "Microsoft.Owin.dll"
#r "Microsoft.Owin.FileSystems.dll"
Expand Down
2 changes: 1 addition & 1 deletion nuget/content/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<body>
<div id="vis"></div>
<script src="/Scripts/jquery-1.9.1.min.js"></script>
<script src="/Scripts/jquery.signalR-2.0.1.min.js"></script>
<script src="/Scripts/jquery.signalR-2.0.2.min.js"></script>
<script src="/signalr/hubs" type="text/javascript"></script>
<script src="/Scripts/topojson.js"></script>
<script src="/Scripts/d3.v3.min.js"></script>
Expand Down
10 changes: 5 additions & 5 deletions samples/VegaHub.Samples/ConvergenceAnalysis.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Include dependencies
#I """..\..\bin"""
#I "../../bin"
#r "Owin.dll"
#r "Microsoft.Owin.dll"
#r "Microsoft.Owin.FileSystems.dll"
Expand All @@ -16,12 +16,12 @@
#r "VegaHub.dll"

// Reference FSharp.Data
#r """..\..\packages\FSharp.Data.1.1.10\lib\net40\FSharp.Data.dll"""
#r "../../packages/FSharp.Data.1.1.10/lib/net40/FSharp.Data.dll"

// Reference MathNet.Numerics
#I """..\..\packages"""
#r """MathNet.Numerics.2.6.2\lib\net40\MathNet.Numerics.dll"""
#r """MathNet.Numerics.FSharp.2.6.0\lib\net40\MathNet.Numerics.FSharp.dll"""
#I "../../packages"
#r "MathNet.Numerics.2.6.2/lib/net40/MathNet.Numerics.dll"
#r "MathNet.Numerics.FSharp.2.6.0/lib/net40/MathNet.Numerics.FSharp.dll"

open System
open System.Text
Expand Down
4 changes: 2 additions & 2 deletions samples/VegaHub.Samples/FArchaeologist.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Include dependencies
#I """..\..\bin"""
#I "../../bin"
#r "Owin.dll"
#r "Microsoft.Owin.dll"
#r "Microsoft.Owin.FileSystems.dll"
Expand All @@ -16,7 +16,7 @@
#r "VegaHub.dll"

// Reference FSharp.Data
#r """..\..\packages\FSharp.Data.1.1.10\lib\net40\FSharp.Data.dll"""
#r "../../packages/FSharp.Data.1.1.10/lib/net40/FSharp.Data.dll"

// Reference Twitter.API
#r "references/Twitter.API.dll"
Expand Down
2 changes: 1 addition & 1 deletion samples/VegaHub.Samples/Scatterplot.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Include dependencies
#I """..\..\bin"""
#I "../../bin"
#r "Owin.dll"
#r "Microsoft.Owin.dll"
#r "Microsoft.Owin.FileSystems.dll"
Expand Down
2 changes: 1 addition & 1 deletion samples/VegaHub.Samples/Script.fsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Include dependencies
#I """..\..\bin"""
#I "../../bin"
#r "Owin.dll"
#r "Microsoft.Owin.dll"
#r "Microsoft.Owin.FileSystems.dll"
Expand Down
8 changes: 0 additions & 8 deletions samples/VegaHub.Samples/Scripts/jquery.signalR-2.0.1.min.js

This file was deleted.

Loading

0 comments on commit 386f9bc

Please sign in to comment.