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:
authorEric StJohn <ericstj@microsoft.com>2021-01-14 08:30:03 +0300
committerGitHub <noreply@github.com>2021-01-14 08:30:03 +0300
commitc9e164895548825d4206d18e25ce9d786f974cf9 (patch)
tree615a7703a9e3a7009ed4a9c4b9f44cc354dedd96 /eng/packaging.props
parent6b48b84c06f173b4ca348f444a1aa96b05adfcfb (diff)
[release/5.0] Fix reading performance counters on Windows ARM64 (#46590)
* Remove dependency on PerfCounter.dll (#45142) * Remove dependency on PerfCounter.dll This dependency was unnecessary and only for calling through to pdh.dll. PerfCounter.dll is still needed for the consumption side of performance counters, but removing from the dependency from the .NET can help enable some scenarios like reading non-.NET counters. * Update conditions on performance counter tests. * Condition more perf counter tests * Build PerformanceCounter package in servicing Update assembly version of PerformanceCounter package and build it in servicing. Also update the package baseline to ensure that Windows.Compatibility package gets the new version. * Don't rev the platforms package unless we ship it Co-authored-by: Anirudh Agnihotry <anirudhagnihotry098@gmail.com>
Diffstat (limited to 'eng/packaging.props')
-rw-r--r--eng/packaging.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/packaging.props b/eng/packaging.props
index 9dcd719b90c..5b68fee57b0 100644
--- a/eng/packaging.props
+++ b/eng/packaging.props
@@ -23,7 +23,7 @@
<PackageVersion Condition="'$(PackageVersion)' == ''">$(ProductVersion)</PackageVersion>
<!-- major.minor.release version of the platforms package we're currently building
Pre-release will be appended during build -->
- <PlatformPackageVersion>$(ProductVersion)</PlatformPackageVersion>
+ <PlatformPackageVersion>5.0.0</PlatformPackageVersion>
<SkipValidatePackageTargetFramework>true</SkipValidatePackageTargetFramework>
<SkipGenerationCheck>true</SkipGenerationCheck>
</PropertyGroup>