Skip to content
This repository has been archived by the owner on Oct 31, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1495 from ReedCopsey/master
Browse files Browse the repository at this point in the history
Updates FsXaml and FSharp.ViewModule usage
  • Loading branch information
vasily-kirichenko authored Feb 7, 2017
2 parents 51df221 + d62a265 commit 64b4070
Show file tree
Hide file tree
Showing 17 changed files with 53 additions and 33 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 2.5.6 - February 3 2017
* Updated FsXaml and FSharp.ViewModule to prevent type provider conflicts

#### 2.5.5 - October 25 2016
* Fixes to make sure that VFPT color scheme updates properly when VS theme is changed

Expand Down
5 changes: 3 additions & 2 deletions paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ NUGET
FSharp.Data (2.3.2)
Zlib.Portable (>= 1.11) - framework: >= netstandard11, portable-net45+sl5+win8, portable-net45+win8, portable-net45+win8+wp8+wpa81
FSharp.Management (0.4.2)
FSharp.ViewModule.Core (0.9.9.3)
FSharp.ViewModule.Core (1.0.5)
FSharp.Core
FSharpLint.Core (0.4.10)
FParsec (>= 1.0.2)
FSharp.Compiler.Service (>= 8.0)
FSharp.Compiler.Service.ProjectCracker (>= 8.0)
FsPickler (3.2)
FsXaml.Wpf (2.1)
FsXaml.Wpf (3.1.2)
Microsoft.NETCore.Platforms (1.0.1) - framework: >= netstandard10
Microsoft.NETCore.Targets (1.0.1) - framework: >= netstandard10
runtime.native.System (4.0) - framework: >= netstandard13
Expand Down
8 changes: 4 additions & 4 deletions src/FSharp.Editing.VisualStudio.Tests.v2015/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyTitleAttribute("FSharp.Editing.VisualStudio.v2015")>]
[<assembly: AssemblyProductAttribute("FSharpVSPowerTools")>]
[<assembly: AssemblyDescriptionAttribute("A collection of additional commands for F# in Visual Studio")>]
[<assembly: AssemblyVersionAttribute("2.5.5")>]
[<assembly: AssemblyFileVersionAttribute("2.5.5")>]
[<assembly: AssemblyVersionAttribute("2.5.6")>]
[<assembly: AssemblyFileVersionAttribute("2.5.6")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] InternalsVisibleTo = "FSharp.Editing.VisualStudio.Tests"
let [<Literal>] AssemblyTitle = "FSharp.Editing.VisualStudio.v2015"
let [<Literal>] AssemblyProduct = "FSharpVSPowerTools"
let [<Literal>] AssemblyDescription = "A collection of additional commands for F# in Visual Studio"
let [<Literal>] AssemblyVersion = "2.5.5"
let [<Literal>] AssemblyFileVersion = "2.5.5"
let [<Literal>] AssemblyVersion = "2.5.6"
let [<Literal>] AssemblyFileVersion = "2.5.6"
8 changes: 4 additions & 4 deletions src/FSharp.Editing.VisualStudio/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyTitleAttribute("FSharp.Editing.VisualStudio")>]
[<assembly: AssemblyProductAttribute("FSharpVSPowerTools")>]
[<assembly: AssemblyDescriptionAttribute("A collection of additional commands for F# in Visual Studio")>]
[<assembly: AssemblyVersionAttribute("2.5.5")>]
[<assembly: AssemblyFileVersionAttribute("2.5.5")>]
[<assembly: AssemblyVersionAttribute("2.5.6")>]
[<assembly: AssemblyFileVersionAttribute("2.5.6")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] InternalsVisibleTo = "FSharp.Editing.VisualStudio.Tests"
let [<Literal>] AssemblyTitle = "FSharp.Editing.VisualStudio"
let [<Literal>] AssemblyProduct = "FSharpVSPowerTools"
let [<Literal>] AssemblyDescription = "A collection of additional commands for F# in Visual Studio"
let [<Literal>] AssemblyVersion = "2.5.5"
let [<Literal>] AssemblyFileVersion = "2.5.5"
let [<Literal>] AssemblyVersion = "2.5.6"
let [<Literal>] AssemblyFileVersion = "2.5.6"
5 changes: 4 additions & 1 deletion src/FSharp.Editing.VisualStudio/Common/Status.fs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
open System
open Microsoft.VisualStudio.Shell.Interop
open FSharp.Editing
open FSharp.ViewModule.Progress
open ViewModule
open ViewModule.FSharp
open ViewModule.Progress
open ViewModule.Progress.FSharp

/// Union of the available Visual Studio icons used for animation in the status bar
type StatusIcon =
Expand Down
5 changes: 3 additions & 2 deletions src/FSharp.Editing.VisualStudio/Folders/FolderNameDialog.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

open System.IO
open FSharp.Editing.VisualStudio
open FSharp.ViewModule
open FSharp.ViewModule.Validation
open ViewModule
open ViewModule.FSharp
open ViewModule.Validation.FSharp

type NewFolderNameDialog = FsXaml.XAML< @"Gui/FolderNameDialog.xaml">

Expand Down
6 changes: 4 additions & 2 deletions src/FSharp.Editing.VisualStudio/Folders/MoveToFolderDialog.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

open System.IO
open FSharp.Editing.VisualStudio
open FSharp.ViewModule
open FSharp.ViewModule.Validation
open ViewModule
open ViewModule.FSharp
open ViewModule.Validation
open ViewModule.Validation.FSharp

type MoveToFolderDialog = FsXaml.XAML< @"Gui/MoveToFolderDialog.xaml">

Expand Down
4 changes: 3 additions & 1 deletion src/FSharp.Editing.VisualStudio/Linting/OptionsViewModel.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ open FSharp.Editing
open FSharpLint.Framework
open Configuration
open FParsec
open FSharp.ViewModule
open ViewModule
open ViewModule.FSharp
open ViewModule.Validation.FSharp

type BoolViewModel(name, isChecked) as this =
inherit ViewModelBase()
Expand Down
3 changes: 2 additions & 1 deletion src/FSharp.Editing.VisualStudio/Linting/RuleViewModel.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

open System
open System.ComponentModel
open FSharp.ViewModule
open ViewModule
open ViewModule.FSharp

type RuleViewModel(name:string, rules:RuleViewModel seq, settings, isChecked:bool) as this =
inherit ViewModelBase()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
namespace FSharp.Editing.VisualStudio.ProjectSystem

open FSharp.Editing.VisualStudio
open FSharp.ViewModule.Progress
open ViewModule.Progress
open ViewModule.Progress.FSharp
open Microsoft.VisualStudio.Editor
open System.ComponentModel.Composition
open Microsoft.VisualStudio.Text
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ open Microsoft.VisualStudio.OLE.Interop
open Microsoft.VisualStudio.Shell.Interop
open FSharp.Editing
open FSharp.Editing.VisualStudio
open FSharp.ViewModule.Progress
open ViewModule.Progress
open ViewModule.Progress.FSharp
open Microsoft.VisualStudio.Text
open System.Diagnostics
open Microsoft.FSharp.Compiler.AbstractIL.Internal.Library
Expand Down
3 changes: 2 additions & 1 deletion src/FSharp.Editing.VisualStudio/Symbol/QuickInfoMargin.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ open Microsoft.VisualStudio.Text.Editor
open Microsoft.VisualStudio.Text
open FSharp.Editing
open FSharp.Editing.VisualStudio
open FSharp.ViewModule
open ViewModule
open ViewModule.FSharp
open Microsoft.FSharp.Compiler
open Microsoft.FSharp.Compiler.SourceCodeServices
open FSharp.Editing.VisualStudio.ProjectSystem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ open Microsoft.VisualStudio.Shell.Interop
open Microsoft.FSharp.Compiler.Range
open FSharp.Editing
open FSharp.Editing.VisualStudio
open FSharp.ViewModule.Progress
open ViewModule.Progress
open ViewModule.Progress.FSharp
open FSharp.Editing.Infrastructure
open FSharp.Editing.VisualStudio.ProjectSystem

Expand Down
9 changes: 6 additions & 3 deletions src/FSharp.Editing.VisualStudio/Symbol/RenameDialog.fs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ open Microsoft.FSharp.Compiler.SourceCodeServices
open FSharp.Editing
open FSharp.Editing.VisualStudio
open FSharp.Editing.VisualStudio.ProjectSystem
open FSharp.ViewModule
open FSharp.ViewModule.Progress
open FSharp.ViewModule.Validation
open ViewModule
open ViewModule.FSharp
open ViewModule.Validation
open ViewModule.Validation.FSharp
open ViewModule.Progress
open ViewModule.Progress.FSharp
open FSharp.Editing.IdentifierUtils
open FSharp.Editing.Features

Expand Down
8 changes: 4 additions & 4 deletions src/FSharp.Editing/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ open System.Runtime.CompilerServices
[<assembly: AssemblyTitleAttribute("FSharp.Editing")>]
[<assembly: AssemblyProductAttribute("FSharpVSPowerTools")>]
[<assembly: AssemblyDescriptionAttribute("A collection of additional commands for F# in Visual Studio")>]
[<assembly: AssemblyVersionAttribute("2.5.5")>]
[<assembly: AssemblyFileVersionAttribute("2.5.5")>]
[<assembly: AssemblyVersionAttribute("2.5.6")>]
[<assembly: AssemblyFileVersionAttribute("2.5.6")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] InternalsVisibleTo = "FSharp.Editing.Tests"
let [<Literal>] AssemblyTitle = "FSharp.Editing"
let [<Literal>] AssemblyProduct = "FSharpVSPowerTools"
let [<Literal>] AssemblyDescription = "A collection of additional commands for F# in Visual Studio"
let [<Literal>] AssemblyVersion = "2.5.5"
let [<Literal>] AssemblyFileVersion = "2.5.5"
let [<Literal>] AssemblyVersion = "2.5.6"
let [<Literal>] AssemblyFileVersion = "2.5.6"
8 changes: 4 additions & 4 deletions src/FSharpVSPowerTools/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
[assembly: AssemblyTitleAttribute("FSharpVSPowerTools")]
[assembly: AssemblyProductAttribute("FSharpVSPowerTools")]
[assembly: AssemblyDescriptionAttribute("A collection of additional commands for F# in Visual Studio")]
[assembly: AssemblyVersionAttribute("2.5.5")]
[assembly: AssemblyFileVersionAttribute("2.5.5")]
[assembly: AssemblyVersionAttribute("2.5.6")]
[assembly: AssemblyFileVersionAttribute("2.5.6")]
namespace System {
internal static class AssemblyVersionInformation {
internal const System.String InternalsVisibleTo = "FSharp.Editing.VisualStudio.Tests";
internal const System.String AssemblyTitle = "FSharpVSPowerTools";
internal const System.String AssemblyProduct = "FSharpVSPowerTools";
internal const System.String AssemblyDescription = "A collection of additional commands for F# in Visual Studio";
internal const System.String AssemblyVersion = "2.5.5";
internal const System.String AssemblyFileVersion = "2.5.5";
internal const System.String AssemblyVersion = "2.5.6";
internal const System.String AssemblyFileVersion = "2.5.6";
}
}
2 changes: 1 addition & 1 deletion src/FSharpVSPowerTools/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="FSharpVSPowerTools.68b42cfe-c752-4094-8dba-ed48aa81cac8" Version="2.5.5" Language="en-US" Publisher="fsharp.org" />
<Identity Id="FSharpVSPowerTools.68b42cfe-c752-4094-8dba-ed48aa81cac8" Version="2.5.6" Language="en-US" Publisher="fsharp.org" />
<DisplayName>Visual F# Power Tools</DisplayName>
<Description xml:space="preserve">A collection of additional commands for F# in Visual Studio</Description>
<MoreInfo>https://github.com/fsprojects/VisualFSharpPowerTools</MoreInfo>
Expand Down

0 comments on commit 64b4070

Please sign in to comment.