Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -190,3 +190,4 @@ docs/content/license.md
docs/content/release-notes.md
.fake
docs/tools/FSharp.Formatting.svclog
.ionide
461 changes: 461 additions & 0 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

36 changes: 0 additions & 36 deletions .paket/paket.targets

This file was deleted.

14 changes: 12 additions & 2 deletions examples/Suave.Swagger.PetStoreAPi/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@
<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" />
<assemblyIdentity name="System.Linq.Queryable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.0.2.0" />
</dependentAssembly>
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="System.Net.WebHeaderCollection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.0.2.0" />
</dependentAssembly>
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.0.2.0" />
</dependentAssembly>
</assemblyBinding></runtime></configuration>
3 changes: 2 additions & 1 deletion examples/Suave.Swagger.PetStoreAPi/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ let api =
let main argv =
async {
do! Async.Sleep 2000
System.Diagnostics.Process.Start "http://localhost:8082/swagger/v3/ui/index.html" |> ignore
// This line doesn't work on macOS.
// System.Diagnostics.Process.Start "http://localhost:8082/swagger/v3/ui/index.html" |> ignore
} |> Async.Start

startWebServer { defaultConfig with bindings = [ HttpBinding.createSimple HTTP "127.0.0.1" 8082 ] } api.App
Expand Down
1,667 changes: 4 additions & 1,663 deletions examples/Suave.Swagger.PetStoreAPi/Suave.Swagger.PetStoreAPi.fsproj

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions paket.dependencies
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
source https://nuget.org/api/v2
source https://api.nuget.org/v3/index.json

nuget FSharp.Core redirects: force
nuget FSharp.Core
nuget Newtonsoft.Json
nuget suave

group Build
source https://nuget.org/api/v2
source https://api.nuget.org/v3/index.json

nuget SourceLink.Fake
nuget FAKE
Expand All @@ -15,7 +15,7 @@ group Build
github fsharp/FAKE modules/Octokit/Octokit.fsx

group Test
source https://nuget.org/api/v2
source https://api.nuget.org/v3/index.json

nuget NUnit ~> 2
nuget NUnit.Runners ~> 2
Loading