Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
15 changes: 15 additions & 0 deletions Browser.sln
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Browser.ResizeObserver", "s
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Browser.EventSource", "src\EventSource\Browser.EventSource.fsproj", "{D79F73C5-8BE4-4D57-8CCD-28CC99B1A9A1}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Browser.Canvas", "src\Canvas\Browser.Canvas.fsproj", "{9A5599E6-36CC-4EF1-851B-9784061073D1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -351,6 +353,18 @@ Global
{D79F73C5-8BE4-4D57-8CCD-28CC99B1A9A1}.Release|x64.Build.0 = Release|Any CPU
{D79F73C5-8BE4-4D57-8CCD-28CC99B1A9A1}.Release|x86.ActiveCfg = Release|Any CPU
{D79F73C5-8BE4-4D57-8CCD-28CC99B1A9A1}.Release|x86.Build.0 = Release|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Debug|x64.ActiveCfg = Debug|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Debug|x64.Build.0 = Debug|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Debug|x86.ActiveCfg = Debug|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Debug|x86.Build.0 = Debug|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Release|Any CPU.Build.0 = Release|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Release|x64.ActiveCfg = Release|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Release|x64.Build.0 = Release|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Release|x86.ActiveCfg = Release|Any CPU
{9A5599E6-36CC-4EF1-851B-9784061073D1}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -379,6 +393,7 @@ Global
{B74AA790-1B29-448A-8D75-8399C6C86C71} = {D9506C1D-DF7A-4975-B4A9-80B2EF4ADA2E}
{CFEB63B4-8CDC-4FD2-B0C5-4D09BE37D00B} = {D9506C1D-DF7A-4975-B4A9-80B2EF4ADA2E}
{D79F73C5-8BE4-4D57-8CCD-28CC99B1A9A1} = {D9506C1D-DF7A-4975-B4A9-80B2EF4ADA2E}
{9A5599E6-36CC-4EF1-851B-9784061073D1} = {D9506C1D-DF7A-4975-B4A9-80B2EF4ADA2E}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F62BBD2A-9074-44FF-8208-43DA064745DE}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Fable bindings for [Browser Web APIs](https://developer.mozilla.org/docs/Web/API
|[![Nuget Package](https://img.shields.io/nuget/v/Fable.Browser.IntersectionObserver.svg)](https://www.nuget.org/packages/Fable.Browser.IntersectionObserver)|[Fable.Browser.IntersectionObserver](src/IntersectionObserver)|Bindings for the browser Intersection Observer API|
|[![Nuget Package](https://img.shields.io/nuget/v/Fable.Browser.ResizeObserver.svg)](https://www.nuget.org/packages/Fable.Browser.ResizeObserver)|[Fable.Browser.ResizeObserver](src/ResizeObserver)|Bindings for the browser Resize Observer API|
|[![Nuget Package](https://img.shields.io/nuget/v/Fable.Browser.IndexedDB.svg)](https://www.nuget.org/packages/Fable.Browser.IndexedDB)|[Fable.Browser.IndexedDB](src/IndexedDB)|Bindings for the browser IndexedDB API|
|[![Nuget Package](https://img.shields.io/nuget/v/Fable.Browser.Canvas.svg)](https://www.nuget.org/packages/Fable.Browser.Canvas)|[Fable.Browser.ResizeObserver](src/Canvas)|Bindings for the browser Canvas API|

## Usage

Expand Down
1 change: 1 addition & 0 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ let packages =
"IntersectionObserver"
"ResizeObserver"
"EventSource"
"Canvas"
]

let ignoreCaseEquals (str1: string) (str2: string) =
Expand Down
Loading