You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/fsharp/FSComp.txt
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -44,11 +44,8 @@ buildProductNameCommunity,"F# Compiler for F# %s"
44
44
213,buildInvalidAssemblyName,"'%s' is not a valid assembly name"
45
45
214,buildInvalidPrivacy,"Unrecognized privacy setting '%s' for managed resource, valid options are 'public' and 'private'"
46
46
215,buildMultipleReferencesNotAllowed,"Multiple references to '%s.dll' are not permitted"
47
-
216,buildRequiresCLI2,"The file '%s' is a CLI 1.x version of mscorlib. F# requires CLI version 2.0 or greater."
48
47
buildCouldNotReadVersionInfoFromMscorlib,"Could not read version from mscorlib.dll"
49
-
217,buildMscorlibAndReferencedAssemblyMismatch,"The referenced or default base CLI library 'mscorlib' is binary-incompatible with the referenced library '%s'. Consider recompiling the library or making an explicit reference to a version of this library that matches the CLI version you are using."
50
48
218,buildCannotReadAssembly,"Unable to read assembly '%s'"
51
-
219,buildMscorLibAndFSharpCoreMismatch,"The referenced or default base CLI library 'mscorlib' is binary-incompatible with the referenced F# core library '%s'. Consider recompiling the library or making an explicit reference to a version of this library that matches the CLI version you are using."
52
49
220,buildAssemblyResolutionFailed,"Assembly resolution failure at or near this location"
53
50
221,buildImplicitModuleIsNotLegalIdentifier,"The declarations in this file will be placed in an implicit module '%s' based on the file name '%s'. However this is not a valid F# identifier, so the contents will not be accessible from other files. Consider renaming the file or adding a 'module' or 'namespace' declaration at the top of the file."
54
51
222,buildMultiFileRequiresNamespaceOrModule,"Files in libraries or multiple-file applications must begin with a namespace or module declaration, e.g. 'namespace SomeNamespace.SubNamespace' or 'module SomeNamespace.SomeModule'. Only the last source file of an application may omit such a declaration."
@@ -906,12 +903,12 @@ optsDCLOHtmlDoc,"The command-line option '%s' has been deprecated. HTML document
906
903
optsConsoleColors,"Output warning and error messages in color"
907
904
optsUseHighEntropyVA,"Enable high-entropy ASLR"
908
905
optsSubSystemVersion,"Specify subsystem version of this assembly"
909
-
optsTargetProfile,"Specify target framework profile of this assembly. Valid values are mscorlibornetcore. Default - mscorlib"
906
+
optsTargetProfile,"Specify target framework profile of this assembly. Valid values are mscorlib, netcoreornetstandard. Default - mscorlib"
910
907
optsEmitDebugInfoInQuotations,"Emit debug information in quotations"
911
908
optsPreferredUiLang," Specify the preferred output language culture name (e.g. es-ES, ja-JP)"
912
909
optsNoCopyFsharpCore,"Don't copy FSharp.Core.dll along the produced binaries"
913
910
1051,optsInvalidSubSystemVersion,"Invalid version '%s' for '--subsystemversion'. The version must be 4.00 or greater."
914
-
1052,optsInvalidTargetProfile,"Invalid value '%s' for '--targetprofile', valid values are 'mscorlib'or 'netcore'."
911
+
1052,optsInvalidTargetProfile,"Invalid value '%s' for '--targetprofile', valid values are 'mscorlib', 'netcore'or 'netstandard'."
915
912
typeInfoFullName,"Full name"
916
913
# typeInfoType,"type"
917
914
# typeInfoInherits,"inherits"
@@ -1275,7 +1272,6 @@ typeInfoCallsWord,"Calls"
1275
1272
3151,tcThisValueMayNotBeInlined,"This member, function or value declaration may not be declared 'inline'"
1276
1273
3152,etErasedTypeUsedInGeneration,"The provider '%s' returned a non-generated type '%s' in the context of a set of generated types. Consider adjusting the type provider to only return generated types."
1277
1274
3153,tcUnrecognizedQueryBinaryOperator,"Arguments to query operators may require parentheses, e.g. 'where (x > y)' or 'groupBy (x.Length / 10)'"
1278
-
3154,invalidPlatformTargetForOldFramework,"The 'anycpu32bitpreferred' platform flag may only be used with .NET Framework versions 4.5 and greater."
1279
1275
3155,crefNoSetOfHole,"A quotation may not involve an assignment to or taking the address of a captured local variable"
<_FrameworkNeedsValueTupleReferenceCondition=" $(TargetFramework.StartsWith(netcoreapp1.)) or $(TargetFramework.StartsWith(netstandard1.))">true</_FrameworkNeedsValueTupleReference>
56
-
<_FrameworkNeedsValueTupleReferenceCondition=" '$(TargetFramework)' == 'net40' or '$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'net46' or '$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net47'">true</_FrameworkNeedsValueTupleReference>
61
+
<_FrameworkNeedsValueTupleReferenceCondition=" ('$(TargetFrameworkIdentifier)' == '.NETStandard' or '$(TargetFrameworkIdentifier)' == '.NETCoreApp') and !('$(_TargetFrameworkVersionWithoutV)' >= '2.0')">true</_FrameworkNeedsValueTupleReference>
62
+
<_FrameworkNeedsValueTupleReferenceCondition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' and
63
+
('$(_TargetFrameworkVersionWithoutV)' == '4.0' or
64
+
'$(_TargetFrameworkVersionWithoutV)' == '4.5' or
65
+
'$(_TargetFrameworkVersionWithoutV)' == '4.6' or
66
+
'$(_TargetFrameworkVersionWithoutV)' == '4.6.1' or
67
+
'$(_TargetFrameworkVersionWithoutV)' == '4.6.2' or