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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Sitnik <adam.sitnik@gmail.com>2020-08-05 14:47:50 +0300
committerGitHub <noreply@github.com>2020-08-05 14:47:50 +0300
commit06963eaedfe666c087a9fabb89b3f4bca57634c7 (patch)
tree0f1bf828d634d63f3d68b0d9492fb5f5e0cf51f6 /eng/versioning.targets
parentc9ce2a73937ec2d89f14185c79915ddd77f7d3b4 (diff)
Rename MinimumOSPlatformAttribute and RemovedInOSPlatformAttribute (#40371)
* rename attributes: * MinimumOSPlatformAttribute -> SupportedOSPlatformAttribute * RemovedInOSPlatformAttribute -> UnsupportedOSPlatformAttribute * update src and ref files * update .targets file * update comment ;)
Diffstat (limited to 'eng/versioning.targets')
-rw-r--r--eng/versioning.targets4
1 files changed, 2 insertions, 2 deletions
diff --git a/eng/versioning.targets b/eng/versioning.targets
index 1eba158bb6b..9b3078d9415 100644
--- a/eng/versioning.targets
+++ b/eng/versioning.targets
@@ -22,9 +22,9 @@
</AssemblyMetadata>
</ItemGroup>
- <!-- Adds MinimumOSPlatform attribute for Windows Specific libraries -->
+ <!-- Adds SupportedOSPlatform attribute for Windows Specific libraries -->
<ItemGroup Condition="'$(IsWindowsSpecific)' == 'true' and '$(IsTestProject)' != 'true'">
- <AssemblyAttribute Include="System.Runtime.Versioning.MinimumOSPlatform">
+ <AssemblyAttribute Include="System.Runtime.Versioning.SupportedOSPlatform">
<_Parameter1>$(MinimiumSupportedWindowsPlatform)</_Parameter1>
</AssemblyAttribute>
</ItemGroup>