Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2017-12-16 14:17:52 +0300
committerGitHub <noreply@github.com>2017-12-16 14:17:52 +0300
commit2083b099f205ad1b380ce6b6b736cdba73eaf571 (patch)
treebe03b3b52ea14529dba0f8b971c76189f9b90850 /dir.props
parent1ad99192c8bbd440f3eddafa0c87e9bfe5491c32 (diff)
Add RuntimeFeature.DefaultImplementationsOfInterfaces (#25943)
The flag indicates that the runtime supports default implementation of interfaces. Since this is a prerelease feature that is not complete yet (and we don't want to accidentally ship it), the flag is keyed off a newly added `IsPrerelease` property. This property is expected to be flipped to `false` in release branches. This corresponds to dotnet/coreclr#15358.
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props5
1 files changed, 5 insertions, 0 deletions
diff --git a/dir.props b/dir.props
index e70677f2f3..db8965d74a 100644
--- a/dir.props
+++ b/dir.props
@@ -23,6 +23,11 @@
<IsDotNetFrameworkProductAssembly>true</IsDotNetFrameworkProductAssembly>
</PropertyGroup>
+ <!-- Indicates this is not an officially supported release. Release branches should set this to false. -->
+ <PropertyGroup>
+ <IsPrerelease>true</IsPrerelease>
+ </PropertyGroup>
+
<!-- Common repo directories -->
<PropertyGroup>
<ProjectDir>$(MSBuildThisFileDirectory)</ProjectDir>