Thanks to visit codestin.com
Credit goes to github.com

Skip to content

bump to 11.0.9 #736

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 11.0.9
* [Make incremental builder counter atomic](https://github.com/fsharp/FSharp.Compiler.Service/pull/724)
* [Add IsValCompiledAsMethod to FSharpMemberOrFunctionOrValue](https://github.com/fsharp/FSharp.Compiler.Service/pull/727)
* [Check before ILTypeInfo.FromType](https://github.com/fsharp/FSharp.Compiler.Service/issues/734)
* [Transition over to dotnet cli Fsproj](https://github.com/fsharp/FSharp.Compiler.Service/issues/700)

#### 11.0.8
* Depend on FSharp.Core package

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="FSharp.NET.Sdk;Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>11.0.8</VersionPrefix>
<VersionPrefix>11.0.9</VersionPrefix>
<TargetFramework>netstandard1.6</TargetFramework>
<OutputType>Library</OutputType>
<DefineConstants>$(DefineConstants);DOTNETCORE;</DefineConstants>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="FSharp.NET.Sdk;Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>11.0.8</VersionPrefix>
<VersionPrefix>11.0.9</VersionPrefix>
<TargetFramework>netstandard1.6</TargetFramework>
<AssemblyName>FSharp.Compiler.Service</AssemblyName>
<DefineConstants>$(DefineConstants);BUILDING_WITH_LKG;COMPILED_AS_LANGUAGE_SERVICE_DLL;COMPILER;COMPILER_SERVICE;COMPILER_SERVICE_ASSUMES_FSHARP_CORE_4_4_0_0;EXTENSIBLE_DUMPER;FSHARP_CORE_4_5;FX_PORTABLE_OR_NETSTANDARD;FX_ATLEAST_PORTABLE;NETSTANDARD1_6;PREFERRED_UI_LANG;FX_EVENTWAITHANDLE_NO_IDISPOSABLE;FX_NO_APP_DOMAINS;FX_NO_ARRAY_LONG_LENGTH;FX_NO_BEGINEND_READWRITE;FX_NO_BINARY_SERIALIZATION;FX_NO_CONVERTER;FX_NO_CORHOST_SIGNER;FX_NO_CUSTOMATTRIBUTEDATA;FX_NO_DEFAULT_DEPENDENCY_TYPE;FX_NO_EXIT_CONTEXT_FLAGS;FX_NO_HEAPTERMINATION;FX_NO_LINKEDRESOURCES;FX_NO_PARAMETERIZED_THREAD_START;FX_NO_PDB_READER;FX_NO_PDB_WRITER;FX_NO_REFLECTION_MODULE_HANDLES;FX_NO_RUNTIMEENVIRONMENT;FX_NO_SECURITY_PERMISSIONS;FX_NO_SERVERCODEPAGES;FX_NO_SYMBOLSTORE;FX_NO_SYSTEM_CONFIGURATION;FX_NO_THREAD;FX_NO_THREADABORT;FX_NO_WAITONE_MILLISECONDS;FX_NO_WEB_CLIENT;FX_NO_WINFORMS;FX_NO_WIN_REGISTRY;FX_REDUCED_CONSOLE;FX_REDUCED_EXCEPTIONS;FX_RESHAPED_CONSOLE;FX_RESHAPED_GLOBALIZATION;FX_RESHAPED_REFEMIT;FX_RESHAPED_REFLECTION;FX_RESHAPED_REFLECTION_CORECLR;FSI_TODO_NETCORE;INCLUDE_METADATA_READER;INCLUDE_METADATA_WRITER;NO_DEBUG_LOG;NO_INLINE_IL_PARSER;NO_LOADER_OPTIMIZATION;NO_LOGGING_GUI;RESHAPED_MSBUILD;SIGNED;STRONG_NAME_AND_DELAY_SIGN_FSHARP_COMPILER_WITH_MSFT_KEY;TODO_REWORK_ASSEMBLY_LOAD;TODO_REWORK_SERVER;</DefineConstants>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="FSharp.Core">
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="FSharp.Core">
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="FSharp.Core">
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+netcore45+wp8\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+sl5+netcore45\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+netcore45+wp8\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wp8\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<Reference Include="FSharp.Core">
<Name>FSharp.Core</Name>
<AssemblyName>FSharp.Core.dll</AssemblyName>
<HintPath>..\..\..\packages\FSharp.Core\\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll</HintPath>
<HintPath>..\..\..\packages\FSharp.Core\lib\portable-net45+netcore45+wpa81+wp8\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down