Skip to content

Commit 7c5a72d

Browse files
authored
Merge pull request #870 from dsyme/i15
Integrate visualfsharp master and bump version
2 parents 7aa1601 + 63d7191 commit 7c5a72d

File tree

122 files changed

+4984
-3349
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+4984
-3349
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@ tests/fsharpqa/Source/*FSharpQA_Failures.lst
184184
*.csproj.user
185185
*.fsproj.user
186186
*.sln.DotSettings.user
187-
*.ide
188187
*.log
189188
*.jrs
190189
*.chk

fcs/FSharp.Compiler.Service.ProjectCrackerTool/Program.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ module Program =
1010
let addMSBuildv14BackupResolution () =
1111
let onResolveEvent = new ResolveEventHandler(fun sender evArgs ->
1212
let requestedAssembly = AssemblyName(evArgs.Name)
13-
if requestedAssembly.Name.StartsWith("Microsoft.Build") &&
14-
not (requestedAssembly.Name.EndsWith(".resources")) &&
13+
if requestedAssembly.Name.StartsWith("Microsoft.Build", StringComparison.Ordinal) &&
14+
not (requestedAssembly.Name.EndsWith(".resources", StringComparison.Ordinal)) &&
1515
not (requestedAssembly.Version.ToString().Contains("12.0.0.0"))
1616
then
1717
// If the version of MSBuild that we're using wasn't present on the machine, then

fcs/FSharp.Compiler.Service.Tests/FSharp.Compiler.Service.Tests.fsproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<FSharpSourcesRoot>$(MSBuildProjectDirectory)\..\..\src</FSharpSourcesRoot>
44
</PropertyGroup>
@@ -29,6 +29,9 @@
2929
<Compile Include="$(FSharpSourcesRoot)\..\tests\service\Common.fs">
3030
<Link>Common.fs</Link>
3131
</Compile>
32+
<Compile Include="$(FSharpSourcesRoot)\..\tests\service\AssemblyReaderShim.fs">
33+
<Link>AssemblyReaderShim.fs</Link>
34+
</Compile>
3235
<Compile Include="$(FSharpSourcesRoot)\..\tests\service\EditorTests.fs">
3336
<Link>EditorTests.fs</Link>
3437
</Compile>

fcs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ which does things like:
6060
You can push the packages if you have permissions, either automatically using ``build Release`` or manually
6161

6262
set APIKEY=...
63-
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.23.0.3.nupkg %APIKEY% -Source https://nuget.org
64-
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.MSBuild.v12.23.0.3.nupkg %APIKEY% -Source https://nuget.org
65-
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.ProjectCracker.23.0.3.nupkg %APIKEY% -Source https://nuget.org
63+
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.24.0.1.nupkg %APIKEY% -Source https://nuget.org
64+
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.MSBuild.v12.24.0.1.nupkg %APIKEY% -Source https://nuget.org
65+
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.ProjectCracker.24.0.1.nupkg %APIKEY% -Source https://nuget.org
6666

6767

6868
### Use of Paket and FAKE

fcs/RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#### 24.0.1
2+
* Integrate visualfsharp master to 59156db2d0a744233d1baffee7088ca2d9f959c7
3+
14
#### 23.0.3
25
* Clarify package authors
36

fcs/fcs.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
44
<PropertyGroup>
55

6-
<VersionPrefix>23.0.3</VersionPrefix>
6+
<VersionPrefix>24.0.1</VersionPrefix>
77
<OtherFlags>--version:$(VersionPrefix)</OtherFlags>
88
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
99
<!-- FSharp.Compiler.Tools is currently only used to get a working FSI.EXE to execute some scripts during the build -->

0 commit comments

Comments
 (0)