├── .gitignore ├── .nuget └── packages.config ├── Demo.png ├── FSharp.Interactive.Intellisence.Lib ├── AutocompleteProvider.fs ├── AutocompleteServer.fs ├── AutocompleteService.fs ├── Completion.fs ├── FSharp.Interactive.Intellisense.Lib.fsproj ├── Fsi.fsx ├── Reflection.fsx ├── ReflectionHelper.fs └── Script.fsx ├── FSharp.Interactive.Intellisense.Lib.Test ├── App.config ├── AutoCompleteProviderTest.fs ├── FSharp.Interactive.Intellisense.Lib.Test.fsproj ├── MSTest.runsettings └── packages.config ├── FSharp.Interactive.Intellisense.sln ├── FSharp.Interactive.Intellisense ├── AutocompleteClient.cs ├── AutocompleteModeType.cs ├── CommandChainNodeWrapper.cs ├── ExposedObject.cs ├── ExposedObjectHelper.cs ├── FSharp.Interactive.Intellisense.csproj ├── FSharp.Interactive.Intellisense.csproj.user ├── FSharp.Interactive.IntellisensePackage.cs ├── FSharpCompletionCommandHandler.cs ├── FSharpCompletionHandlerProvider .cs ├── FSharpCompletionSource.cs ├── FSharpCompletionSourceProvider.cs ├── FsiLanguageServiceHelper.cs ├── Guids.cs ├── OptionsPageGrid.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources │ └── Package.ico ├── VSPackage.resx ├── packages.config └── source.extension.vsixmanifest ├── LICENSE.md ├── README.md ├── TODO.md └── packages ├── Fs30Unit.MsTest.1.3.0.1 ├── Fs30Unit.MsTest.1.3.0.1.nupkg ├── Lib │ └── Net40 │ │ └── FsUnit.CustomMatchers.xml └── tools │ └── install.ps1 ├── MSBuild.Extension.Pack.1.3.0 ├── MSBuild.Extension.Pack.1.3.0.nupkg └── tools │ ├── net35 │ ├── MSBuild.ExtensionPack.VersionNumber.targets │ ├── MSBuild.ExtensionPack.dll.config │ └── MSBuild.ExtensionPack.tasks │ └── net40 │ ├── MSBuild.ExtensionPack.Tfs2013.xml │ ├── MSBuild.ExtensionPack.VersionNumber.targets │ ├── MSBuild.ExtensionPack.dll.config │ └── MSBuild.ExtensionPack.tasks ├── Rx-Core.2.2.5 ├── Rx-Core.2.2.5.nupkg └── lib │ ├── net40 │ └── System.Reactive.Core.XML │ ├── net45 │ └── System.Reactive.Core.XML │ ├── portable-net40+sl5+win8+wp8 │ └── System.Reactive.Core.XML │ ├── portable-net45+winrt45+wp8+wpa81 │ └── System.Reactive.Core.XML │ ├── portable-win81+wpa81 │ └── System.Reactive.Core.XML │ ├── portable-windows8+net45+wp8 │ └── System.Reactive.Core.XML │ ├── sl5 │ └── System.Reactive.Core.XML │ ├── windows8 │ └── System.Reactive.Core.XML │ ├── windowsphone71 │ └── System.Reactive.Core.XML │ └── windowsphone8 │ └── System.Reactive.Core.XML ├── Rx-Interfaces.2.2.5 ├── Rx-Interfaces.2.2.5.nupkg └── lib │ ├── net40 │ └── System.Reactive.Interfaces.XML │ ├── net45 │ └── System.Reactive.Interfaces.XML │ ├── portable-net40+sl5+win8+wp8 │ └── System.Reactive.Interfaces.XML │ ├── portable-net45+winrt45+wp8+wpa81 │ └── System.Reactive.Interfaces.XML │ ├── portable-win81+wpa81 │ └── System.Reactive.Interfaces.XML │ ├── portable-windows8+net45+wp8 │ └── System.Reactive.Interfaces.XML │ ├── sl5 │ └── System.Reactive.Interfaces.XML │ ├── windows8 │ └── System.Reactive.Interfaces.XML │ ├── windowsphone71 │ └── System.Reactive.Interfaces.XML │ └── windowsphone8 │ └── System.Reactive.Interfaces.XML └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/Demo.png -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/AutocompleteProvider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/AutocompleteProvider.fs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/AutocompleteServer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/AutocompleteServer.fs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/AutocompleteService.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/AutocompleteService.fs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/Completion.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/Completion.fs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/FSharp.Interactive.Intellisense.Lib.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/FSharp.Interactive.Intellisense.Lib.fsproj -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/Fsi.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/Fsi.fsx -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/Reflection.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/Reflection.fsx -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/ReflectionHelper.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/ReflectionHelper.fs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisence.Lib/Script.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisence.Lib/Script.fsx -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense.Lib.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense.Lib.Test/App.config -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense.Lib.Test/AutoCompleteProviderTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense.Lib.Test/AutoCompleteProviderTest.fs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense.Lib.Test/FSharp.Interactive.Intellisense.Lib.Test.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense.Lib.Test/FSharp.Interactive.Intellisense.Lib.Test.fsproj -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense.Lib.Test/MSTest.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense.Lib.Test/MSTest.runsettings -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense.Lib.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense.Lib.Test/packages.config -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense.sln -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/AutocompleteClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/AutocompleteClient.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/AutocompleteModeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/AutocompleteModeType.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/CommandChainNodeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/CommandChainNodeWrapper.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/ExposedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/ExposedObject.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/ExposedObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/ExposedObjectHelper.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/FSharp.Interactive.Intellisense.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/FSharp.Interactive.Intellisense.csproj -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/FSharp.Interactive.Intellisense.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/FSharp.Interactive.Intellisense.csproj.user -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/FSharp.Interactive.IntellisensePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/FSharp.Interactive.IntellisensePackage.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/FSharpCompletionCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/FSharpCompletionCommandHandler.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/FSharpCompletionHandlerProvider .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/FSharpCompletionHandlerProvider .cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/FSharpCompletionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/FSharpCompletionSource.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/FSharpCompletionSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/FSharpCompletionSourceProvider.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/FsiLanguageServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/FsiLanguageServiceHelper.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/Guids.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/OptionsPageGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/OptionsPageGrid.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/Resources.Designer.cs -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/Resources.resx -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/Resources/Package.ico -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/VSPackage.resx -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/packages.config -------------------------------------------------------------------------------- /FSharp.Interactive.Intellisense/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/FSharp.Interactive.Intellisense/source.extension.vsixmanifest -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/TODO.md -------------------------------------------------------------------------------- /packages/Fs30Unit.MsTest.1.3.0.1/Fs30Unit.MsTest.1.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Fs30Unit.MsTest.1.3.0.1/Fs30Unit.MsTest.1.3.0.1.nupkg -------------------------------------------------------------------------------- /packages/Fs30Unit.MsTest.1.3.0.1/Lib/Net40/FsUnit.CustomMatchers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Fs30Unit.MsTest.1.3.0.1/Lib/Net40/FsUnit.CustomMatchers.xml -------------------------------------------------------------------------------- /packages/Fs30Unit.MsTest.1.3.0.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Fs30Unit.MsTest.1.3.0.1/tools/install.ps1 -------------------------------------------------------------------------------- /packages/MSBuild.Extension.Pack.1.3.0/MSBuild.Extension.Pack.1.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/MSBuild.Extension.Pack.1.3.0/MSBuild.Extension.Pack.1.3.0.nupkg -------------------------------------------------------------------------------- /packages/MSBuild.Extension.Pack.1.3.0/tools/net35/MSBuild.ExtensionPack.VersionNumber.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/MSBuild.Extension.Pack.1.3.0/tools/net35/MSBuild.ExtensionPack.VersionNumber.targets -------------------------------------------------------------------------------- /packages/MSBuild.Extension.Pack.1.3.0/tools/net35/MSBuild.ExtensionPack.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/MSBuild.Extension.Pack.1.3.0/tools/net35/MSBuild.ExtensionPack.dll.config -------------------------------------------------------------------------------- /packages/MSBuild.Extension.Pack.1.3.0/tools/net35/MSBuild.ExtensionPack.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/MSBuild.Extension.Pack.1.3.0/tools/net35/MSBuild.ExtensionPack.tasks -------------------------------------------------------------------------------- /packages/MSBuild.Extension.Pack.1.3.0/tools/net40/MSBuild.ExtensionPack.Tfs2013.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/MSBuild.Extension.Pack.1.3.0/tools/net40/MSBuild.ExtensionPack.Tfs2013.xml -------------------------------------------------------------------------------- /packages/MSBuild.Extension.Pack.1.3.0/tools/net40/MSBuild.ExtensionPack.VersionNumber.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/MSBuild.Extension.Pack.1.3.0/tools/net40/MSBuild.ExtensionPack.VersionNumber.targets -------------------------------------------------------------------------------- /packages/MSBuild.Extension.Pack.1.3.0/tools/net40/MSBuild.ExtensionPack.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/MSBuild.Extension.Pack.1.3.0/tools/net40/MSBuild.ExtensionPack.dll.config -------------------------------------------------------------------------------- /packages/MSBuild.Extension.Pack.1.3.0/tools/net40/MSBuild.ExtensionPack.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/MSBuild.Extension.Pack.1.3.0/tools/net40/MSBuild.ExtensionPack.tasks -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/Rx-Core.2.2.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/Rx-Core.2.2.5.nupkg -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/net40/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/net40/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/net45/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/net45/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/portable-win81+wpa81/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/portable-win81+wpa81/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/sl5/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/sl5/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/windows8/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/windows8/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/windowsphone71/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/windowsphone71/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Core.2.2.5/lib/windowsphone8/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Core.2.2.5/lib/windowsphone8/System.Reactive.Core.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/Rx-Interfaces.2.2.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/Rx-Interfaces.2.2.5.nupkg -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/net40/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/net40/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/net45/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/net45/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/portable-net40+sl5+win8+wp8/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/portable-net45+winrt45+wp8+wpa81/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/portable-win81+wpa81/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/portable-win81+wpa81/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/portable-windows8+net45+wp8/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/sl5/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/sl5/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/windows8/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/windows8/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/windowsphone71/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/windowsphone71/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.2.5/lib/windowsphone8/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/Rx-Interfaces.2.2.5/lib/windowsphone8/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlasenkoalexey/FSharp.Interactive.Intellisense/HEAD/packages/repositories.config --------------------------------------------------------------------------------