diff --git a/FSharpBuild.Directory.Build.targets b/FSharpBuild.Directory.Build.targets index 3132ba1c97..7548cef7ac 100644 --- a/FSharpBuild.Directory.Build.targets +++ b/FSharpBuild.Directory.Build.targets @@ -1,5 +1,4 @@ - @@ -9,7 +8,7 @@ + BeforeTargets="AssignTargetPaths;BeforeBuild"> <__TargetFilePath>@(NoneSubstituteText->'$(IntermediateOutputPath)%(Filename)%(Extension)') @@ -21,19 +20,16 @@ <_CopyToOutputDirectory Condition="'%(NoneSubstituteText.CopyToOutputDirectory)' != ''">%(NoneSubstituteText.CopyToOutputDirectory) <_CopyToOutputDirectory Condition="'%(NoneSubstituteText.CopyToOutputDirectory)' == ''">Never - - <_IncludeInVsix>false - <_IncludeInVsix Condition="'%(NoneSubstituteText.IncludeInVsix)' == 'true'">true - + + - @@ -65,27 +61,4 @@ - - - - - - - - - - - - - - - - - - - diff --git a/fcs/build.fsx b/fcs/build.fsx index af21298e7a..1c2528dd2e 100644 --- a/fcs/build.fsx +++ b/fcs/build.fsx @@ -66,16 +66,16 @@ Target.create "Build" (fun _ -> runDotnet __SOURCE_DIRECTORY__ "build" "../src/buildtools/buildtools.proj -v n -c Proto" let fslexPath = __SOURCE_DIRECTORY__ + "/../artifacts/bin/fslex/Proto/netcoreapp2.1/fslex.dll" let fsyaccPath = __SOURCE_DIRECTORY__ + "/../artifacts/bin/fsyacc/Proto/netcoreapp2.1/fsyacc.dll" - runDotnet __SOURCE_DIRECTORY__ "build" (sprintf "FSharp.Compiler.Service.sln -nodereuse:false -v n -c Release /p:DisableCompilerRedirection=true /p:FsLexPath=%s /p:FsYaccPath=%s" fslexPath fsyaccPath) + runDotnet __SOURCE_DIRECTORY__ "build" (sprintf "FSharp.Compiler.Service.sln -v n -c Release /p:FsLexPath=%s /p:FsYaccPath=%s" fslexPath fsyaccPath) ) Target.create "Test" (fun _ -> // This project file is used for the netcoreapp2.0 tests to work out reference sets - runDotnet __SOURCE_DIRECTORY__ "build" "../tests/projects/Sample_NETCoreSDK_FSharp_Library_netstandard2_0/Sample_NETCoreSDK_FSharp_Library_netstandard2_0.fsproj -nodereuse:false -v n /restore /p:DisableCompilerRedirection=true" + runDotnet __SOURCE_DIRECTORY__ "build" "../tests/projects/Sample_NETCoreSDK_FSharp_Library_netstandard2_0/Sample_NETCoreSDK_FSharp_Library_netstandard2_0.fsproj -v n /restore /p:DisableCompilerRedirection=true" // Now run the tests let logFilePath = Path.Combine(__SOURCE_DIRECTORY__, "..", "artifacts", "TestResults", "Release", "FSharp.Compiler.Service.Test.xml") - runDotnet __SOURCE_DIRECTORY__ "test" (sprintf "FSharp.Compiler.Service.Tests/FSharp.Compiler.Service.Tests.fsproj --no-restore --no-build -nodereuse:false -v n -c Release --test-adapter-path . --logger \"nunit;LogFilePath=%s\"" logFilePath) + runDotnet __SOURCE_DIRECTORY__ "test" (sprintf "FSharp.Compiler.Service.Tests/FSharp.Compiler.Service.Tests.fsproj --no-restore --no-build -v n -c Release --test-adapter-path . --logger \"nunit;LogFilePath=%s\"" logFilePath) ) Target.create "NuGet" (fun _ -> diff --git a/src/fsharp/FSharp.Build/FSharp.Build.fsproj b/src/fsharp/FSharp.Build/FSharp.Build.fsproj index f427453df9..76b9c7043e 100644 --- a/src/fsharp/FSharp.Build/FSharp.Build.fsproj +++ b/src/fsharp/FSharp.Build/FSharp.Build.fsproj @@ -26,7 +26,6 @@ - diff --git a/src/fsharp/FSharp.Build/Microsoft.FSharp.Targets b/src/fsharp/FSharp.Build/Microsoft.FSharp.Targets index 0b51d7204f..8421c8ea50 100644 --- a/src/fsharp/FSharp.Build/Microsoft.FSharp.Targets +++ b/src/fsharp/FSharp.Build/Microsoft.FSharp.Targets @@ -29,7 +29,6 @@ this file. - true diff --git a/src/fsharp/FSharp.Build/SubstituteText.fs b/src/fsharp/FSharp.Build/SubstituteText.fs deleted file mode 100644 index 16b8eab524..0000000000 --- a/src/fsharp/FSharp.Build/SubstituteText.fs +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information. - -namespace FSharp.Build - -open System -open System.Collections -open System.IO -open Microsoft.Build.Framework -open Microsoft.Build.Utilities - -type SubstituteText () = - - let mutable _buildEngine : IBuildEngine = null - let mutable _hostObject : ITaskHost = null - - let mutable copiedFiles = new ResizeArray() - let mutable embeddedResources : ITaskItem[] = [||] - - [] - member this.EmbeddedResources - with get() = embeddedResources - and set(value) = embeddedResources <- value - - [] - member this.CopiedFiles - with get() = copiedFiles.ToArray() - - interface ITask with - member this.BuildEngine - with get() = _buildEngine - and set(value) = _buildEngine <- value - - member this.HostObject - with get() = _hostObject - and set(value) = _hostObject <- value - - member this.Execute() = - copiedFiles.Clear() - if not(isNull embeddedResources) then - for item in embeddedResources do - // Update ITaskItem metadata to point to new location - let sourcePath = item.GetMetadata("FullPath") - - let pattern1 = item.GetMetadata("Pattern1") - let pattern2 = item.GetMetadata("Pattern2") - - // Is there any replacement to do? - if not (String.IsNullOrWhiteSpace(pattern1) && String.IsNullOrWhiteSpace(pattern2)) then - if not(String.IsNullOrWhiteSpace(sourcePath)) then - try - let getTargetPathFrom key = - let md = item.GetMetadata(key) - let path = Path.GetDirectoryName(md) - let filename = Path.GetFileName(md) - let target = Path.Combine(path, @"..\resources", filename) - target - - // Copy from the location specified in Identity - let sourcePath=item.GetMetadata("Identity") - - // Copy to the location specified in TargetPath unless no TargetPath is provided, then use Identity - let targetPath= - let identityPath = getTargetPathFrom "Identity" - let intermediateTargetPath = item.GetMetadata("IntermediateTargetPath") - if not (String.IsNullOrWhiteSpace(intermediateTargetPath)) then - let filename = Path.GetFileName(identityPath) - let target = Path.Combine(intermediateTargetPath, filename) - target - else - identityPath - - item.ItemSpec <- targetPath - - // Transform file - let mutable contents = File.ReadAllText(sourcePath) - if not (String.IsNullOrWhiteSpace(pattern1)) then - let replacement = item.GetMetadata("Replacement1") - contents <- contents.Replace(pattern1, replacement) - if not (String.IsNullOrWhiteSpace(pattern2)) then - let replacement = item.GetMetadata("Replacement2") - contents <- contents.Replace(pattern2, replacement) - - let directory = Path.GetDirectoryName(targetPath) - if not(Directory.Exists(directory)) then - Directory.CreateDirectory(directory) |>ignore - - File.WriteAllText(targetPath, contents) - with - | _ -> () - - copiedFiles.Add(item) - true diff --git a/vsintegration/Vsix/RegisterFsharpPackage.pkgdef b/vsintegration/Vsix/RegisterFsharpPackage.pkgdef index 3c029f496c..5169139671 100644 --- a/vsintegration/Vsix/RegisterFsharpPackage.pkgdef +++ b/vsintegration/Vsix/RegisterFsharpPackage.pkgdef @@ -55,7 +55,7 @@ "1"="{92EF0900-2251-11D2-B72E-0000F87572EF}" [$RootKey$\Packages\{91a04a73-4f2c-4e7c-ad38-c1a68e7da05c}] -"ProductVersion"="{{FSProductVersion}}" +"ProductVersion"="10.7" "ProductName"="Visual F#" "CompanyName"="Microsoft Corp." diff --git a/vsintegration/Vsix/VisualFSharpFull/VisualFSharpFull.csproj b/vsintegration/Vsix/VisualFSharpFull/VisualFSharpFull.csproj index 4455493877..68b8b5e112 100644 --- a/vsintegration/Vsix/VisualFSharpFull/VisualFSharpFull.csproj +++ b/vsintegration/Vsix/VisualFSharpFull/VisualFSharpFull.csproj @@ -14,22 +14,16 @@ Designer - - - RegisterFsharpPackage.pkgdef - {{FSProductVersion}} - $(FSProductVersion) - {{FSLanguageVersion}} - $(FSLanguageVersion) - true - - + + Always + true + RegisterFsharpPackage.pkgdef + PreserveNewest License.txt true - PreserveNewest FSharp.Data.TypeProviders.dll diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/ProjectSystem.fsproj b/vsintegration/src/FSharp.ProjectSystem.FSharp/ProjectSystem.fsproj index 8408b7a298..7779a1a3f0 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/ProjectSystem.fsproj +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/ProjectSystem.fsproj @@ -24,22 +24,13 @@ Menus.ctmenu Designer - - - true Microsoft.VisualStudio.FSharp.ProjectSystem.FSharpSR true VSPackage Designer - $(IntermediateOutputPath)resources\ - {{FSProductVersion}} - $(FSProductVersion) - {{FSLanguageVersion}} - $(FSLanguageVersion) - diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/VSPackage.resx b/vsintegration/src/FSharp.ProjectSystem.FSharp/VSPackage.resx index f29e74b9ec..36191502cd 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/VSPackage.resx +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/VSPackage.resx @@ -464,10 +464,10 @@ Customizes the environment to maximize code editor screen space and improve the visibility of F# commands and tool windows. - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 1.0 @@ -476,7 +476,7 @@ Microsoft Visual F# Tools - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 F# Interactive diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.cs.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.cs.xlf index f047f0cf58..f9b0a83380 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.cs.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.cs.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Nástroje Microsoft Visual F# {{FSProductVersion}} pro F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Nástroje Microsoft Visual F# 10.7 pro F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Nástroje Microsoft Visual F# {{FSProductVersion}} pro F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Nástroje Microsoft Visual F# 10.7 pro F# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Nástroje Visual F# {{FSProductVersion}} pro F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Nástroje Visual F# 10.7 pro F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.de.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.de.xlf index cd550b5494..12b9f718ed 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.de.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.de.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} für f# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 für f# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} für f# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 für f# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Visual F# Tools {{FSProductVersion}} für F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Visual F# Tools 10.7 für F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.es.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.es.xlf index 2204dcdc7d..150133f412 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.es.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.es.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Herramientas de Microsoft Visual F# {{FSProductVersion}} para F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Herramientas de Microsoft Visual F# 10.7 para F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Herramientas de Microsoft Visual F# {{FSProductVersion}} para F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Herramientas de Microsoft Visual F# 10.7 para F# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Visual F# Tools {{FSProductVersion}} para F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Visual F# Tools 10.7 para F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.fr.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.fr.xlf index a7bedb7cc5..9667bdd222 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.fr.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.fr.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} pour F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 pour F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} pour F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 pour F# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Visual F# Tools {{FSProductVersion}} pour F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Visual F# Tools 10.7 pour F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.it.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.it.xlf index ba72bff02e..6eb9df64ed 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.it.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.it.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} per F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 per F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} per F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 per F# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Visual F# Tools {{FSProductVersion}} per F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Visual F# Tools 10.7 per F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ja.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ja.xlf index 710b54d5b7..5bded5e0f9 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ja.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ja.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}} 用 Microsoft Visual F# Tools {{FSProductVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + F# 4.7 用 Microsoft Visual F# Tools 10.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}} 用 Microsoft Visual F# Tools {{FSProductVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + F# 4.7 用 Microsoft Visual F# Tools 10.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}} 用 Visual F# Tools {{FSProductVersion}} + Visual F# Tools 10.7 for F# 4.7 + F# 4.7 用 Visual F# Tools 10.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ko.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ko.xlf index 588d5e014b..4a213d92f9 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ko.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ko.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}}용 Microsoft Visual F# Tools {{FSProductVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + F# 4.7용 Microsoft Visual F# Tools 10.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}}용 Microsoft Visual F# Tools {{FSProductVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + F# 4.7용 Microsoft Visual F# Tools 10.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}}용 Visual F# Tools {{FSProductVersion}} + Visual F# Tools 10.7 for F# 4.7 + F# 4.7용 Visual F# Tools 10.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.pl.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.pl.xlf index 08a4b45dfb..6a3689986f 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.pl.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.pl.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} dla języka F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 dla języka F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} dla języka F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 dla języka F# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Visual F# Tools {{FSProductVersion}} dla języka F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Visual F# Tools 10.7 dla języka F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.pt-BR.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.pt-BR.xlf index 6ae72d28fd..f862277336 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.pt-BR.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.pt-BR.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} para F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 para F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} para F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 para F# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Visual F# Tools {{FSProductVersion}} para F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Visual F# Tools 10.7 para F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ru.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ru.xlf index 418494b459..91c5daa7cd 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ru.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.ru.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} для F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 для F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} для F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 для F# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Visual F# Tools {{FSProductVersion}} для F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Visual F# Tools 10.7 для F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.tr.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.tr.xlf index 53643a6ae2..cef0c7602c 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.tr.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.tr.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}} için Microsoft Visual F# Tools {{FSProductVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + F# 4.7 için Microsoft Visual F# Tools 10.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}} için Microsoft Visual F# Tools {{FSProductVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + F# 4.7 için Microsoft Visual F# Tools 10.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - F# {{FSLanguageVersion}} için Visual F# Araçları {{FSProductVersion}} + Visual F# Tools 10.7 for F# 4.7 + F# 4.7 için Visual F# Araçları 10.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.zh-Hans.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.zh-Hans.xlf index 4e3108b778..33d5651d25 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.zh-Hans.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.zh-Hans.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 for F# 4.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + Microsoft Visual F# Tools 10.7 for F# 4.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} + Visual F# Tools 10.7 for F# 4.7 + Visual F# Tools 10.7 for F# 4.7 diff --git a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.zh-Hant.xlf b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.zh-Hant.xlf index 7eb95bad0a..7e2badff24 100644 --- a/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.zh-Hant.xlf +++ b/vsintegration/src/FSharp.ProjectSystem.FSharp/xlf/VSPackage.zh-Hant.xlf @@ -433,13 +433,13 @@ - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - 適用於 F# {{FSLanguageVersion}} 的 Microsoft Visual F# Tools {{FSProductVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + 適用於 F# 4.7 的 Microsoft Visual F# Tools 10.7 - Microsoft Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - 適用於 F# {{FSLanguageVersion}} 的 Microsoft Visual F# Tools {{FSProductVersion}} + Microsoft Visual F# Tools 10.7 for F# 4.7 + 適用於 F# 4.7 的 Microsoft Visual F# Tools 10.7 @@ -453,8 +453,8 @@ - Visual F# Tools {{FSProductVersion}} for F# {{FSLanguageVersion}} - 適用於 F# {{FSLanguageVersion}} 的 Visual F# Tools {{FSProductVersion}} + Visual F# Tools 10.7 for F# 4.7 + 適用於 F# 4.7 的 Visual F# Tools 10.7