Skip to content

Commit e162783

Browse files
committed
temp
1 parent 7f4389f commit e162783

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

docs/release-notes/.VisualStudio/17.14.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
### Fixed
2+
* Fix #r nuget ..." downloads unneeded packages ([Issue #18231](https://github.com/dotnet/fsharp/issues/18231), [PR #18393](https://github.com/dotnet/fsharp/pull/18393))
23

34
### Added
45
* Add a switch to determine whether to generate a default implementation body for overridden method when completing. [PR #18341](https://github.com/dotnet/fsharp/pull/18341)

tests/fsharp/core/printing/output.1000.stdout.bsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2787,7 +2787,7 @@ val ShortName: string = "hi"
27872787
> val list2: int list = [1]
27882788

27892789
module FSI_0319.
2790-
A8a951db8294f99e95ae1d276a7ddaefd93d1548e6bf749bdeae55d2649682b3
2790+
Ee54a783c1b4e3fe8e3c42c5a10c384669fed24c7ffbdacfc9698816f925f337
27912791

27922792
{"ImmutableField0":6}
27932793
type R1 =

tests/fsharp/core/printing/output.200.stdout.bsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2032,7 +2032,7 @@ val ShortName: string = "hi"
20322032
> val list2: int list = [1]
20332033

20342034
module FSI_0319.
2035-
A8a951db8294f99e95ae1d276a7ddaefd93d1548e6bf749bdeae55d2649682b3
2035+
Ee54a783c1b4e3fe8e3c42c5a10c384669fed24c7ffbdacfc9698816f925f337
20362036

20372037
{"ImmutableField0":6}
20382038
type R1 =

tests/fsharp/core/printing/output.multiemit.stdout.bsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6334,7 +6334,7 @@ val ShortName: string = "hi"
63346334
> val list2: int list = [1]
63356335

63366336
module FSI_0318.
6337-
A8a951db8294f99e95ae1d276a7ddaefd93d1548e6bf749bdeae55d2649682b3
6337+
Ee54a783c1b4e3fe8e3c42c5a10c384669fed24c7ffbdacfc9698816f925f337
63386338

63396339
{"ImmutableField0":6}
63406340
type R1 =

tests/fsharp/core/printing/output.off.stdout.bsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1801,7 +1801,7 @@ val ShortName: string = "hi"
18011801
> val list2: int list
18021802

18031803
module FSI_0319.
1804-
A8a951db8294f99e95ae1d276a7ddaefd93d1548e6bf749bdeae55d2649682b3
1804+
Ee54a783c1b4e3fe8e3c42c5a10c384669fed24c7ffbdacfc9698816f925f337
18051805

18061806
{"ImmutableField0":6}
18071807
type R1 =

tests/fsharp/core/printing/output.stdout.bsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6334,7 +6334,7 @@ val ShortName: string = "hi"
63346334
> val list2: int list = [1]
63356335

63366336
module FSI_0318.
6337-
A8a951db8294f99e95ae1d276a7ddaefd93d1548e6bf749bdeae55d2649682b3
6337+
Ee54a783c1b4e3fe8e3c42c5a10c384669fed24c7ffbdacfc9698816f925f337
63386338

63396339
{"ImmutableField0":6}
63406340
type R1 =

vsintegration/src/FSharp.Editor/Common/Extensions.fs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,14 @@ let subscribeToTextViewEvents (textView: IVsTextView, onChangeCaretHandler, onKi
115115

116116
match cpContainer.FindConnectionPoint(ref riid) with
117117
| null -> None
118-
| cp -> Some(cp.Advise(handler, &cookie); { new IDisposable with member _.Dispose() = cp.Unadvise(cookie) })
118+
| cp ->
119+
Some(
120+
cp.Advise(handler, &cookie)
121+
122+
{ new IDisposable with
123+
member _.Dispose() = cp.Unadvise(cookie)
124+
}
125+
)
119126
| _ -> None
120127

121128
type Document with

0 commit comments

Comments
 (0)