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:
authorViktor Hofer <viktor.hofer@microsoft.com>2022-02-02 00:51:32 +0300
committerGitHub <noreply@github.com>2022-02-02 00:51:32 +0300
commitef5803de62be3c9584a352c1863e3036801731f5 (patch)
tree4f1f3881a5525b964a1e8caefd4f873304e112b6 /eng/BeforeTargetFrameworkInference.targets
parentbccc18bb6c42e2558675fd155e17f4226d6bc0a0 (diff)
Delete NS2x runtime specific impls (#64610)
* Remove .NETStandard runtime implementations Remove the remaining ten .NETStandard runtime specific implementations. For reasoning please see https://github.com/dotnet/runtime/issues/64536. * Remove infra support for NS platform specific tfms Also cleaning-up some logic and stop disabling AppendTargetFramework.
Diffstat (limited to 'eng/BeforeTargetFrameworkInference.targets')
-rw-r--r--eng/BeforeTargetFrameworkInference.targets15
1 files changed, 0 insertions, 15 deletions
diff --git a/eng/BeforeTargetFrameworkInference.targets b/eng/BeforeTargetFrameworkInference.targets
index b82462e1acc..60b41284548 100644
--- a/eng/BeforeTargetFrameworkInference.targets
+++ b/eng/BeforeTargetFrameworkInference.targets
@@ -1,20 +1,5 @@
<Project>
- <PropertyGroup Condition="$(TargetFramework.Contains('-'))">
- <_OriginalTargetFramework>$(TargetFramework)</_OriginalTargetFramework>
- <TargetFrameworkSuffix>$(TargetFramework.SubString($([MSBuild]::Add($(TargetFramework.IndexOf('-')), 1))))</TargetFrameworkSuffix>
- <!-- Strip away the TargetPlatform during the build for non .NETCoreApp frameworks because the assets file does not know about the TargetPlatform. -->
- <TargetFramework>$([System.Text.RegularExpressions.Regex]::Replace('$(TargetFramework)', '$(TargetFrameworkPattern)', '${1}'))</TargetFramework>
- </PropertyGroup>
-
<Import Project="$(MSBuildThisDirectory)targetframeworksuffix.props" Condition="'$(DesignTimeBuild)' == 'true'" />
- <PropertyGroup>
- <IntermediateOutputPath>$([MSBuild]::NormalizeDirectory('$(BaseIntermediateOutputPath)', '$(TargetFramework)-$(Configuration)'))</IntermediateOutputPath>
- <IntermediateOutputPath Condition="'$(TargetFrameworkSuffix)' != '' and !$(TargetFramework.Contains('-'))">$([MSBuild]::NormalizeDirectory('$(BaseIntermediateOutputPath)', '$(TargetFramework)-$(TargetFrameworkSuffix)-$(Configuration)'))</IntermediateOutputPath>
- <!-- setting the output paths -->
- <OutputPath>$([MSBuild]::NormalizeDirectory('$(BaseOutputPath)', '$(TargetFramework)-$(Configuration)'))</OutputPath>
- <OutputPath Condition="'$(TargetFrameworkSuffix)' != '' and !$(TargetFramework.Contains('-'))">$([MSBuild]::NormalizeDirectory('$(BaseOutputPath)', '$(TargetFramework)-$(TargetFrameworkSuffix)-$(Configuration)'))</OutputPath>
- </PropertyGroup>
-
</Project>