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:
authorAdeel Mujahid <3840695+am11@users.noreply.github.com>2022-05-23 20:14:58 +0300
committerGitHub <noreply@github.com>2022-05-23 20:14:58 +0300
commit55e2378d86841ec766ee21d5e504d7724c39b53b (patch)
treef456bbc3391864b76a326f45e12847941685e4fb /eng/packaging.targets
parent534cfe37792c2ca451fd1258097b1ff0349cc6ee (diff)
Fix typos (#69537)
* Fix typos * Fix typo: seperate -> separate * Rename ApplicationNameSetFromArgument * Update src/coreclr/vm/methodtablebuilder.cpp * Update docs/coding-guidelines/clr-code-guide.md Co-authored-by: Dan Moseley <danmose@microsoft.com> * Update src/mono/mono/tests/verifier/make_tests.sh Co-authored-by: Dan Moseley <danmose@microsoft.com> Co-authored-by: Jan Kotas <jkotas@microsoft.com>
Diffstat (limited to 'eng/packaging.targets')
-rw-r--r--eng/packaging.targets6
1 files changed, 3 insertions, 3 deletions
diff --git a/eng/packaging.targets b/eng/packaging.targets
index 91d72a574c7..b5bfb5dd52c 100644
--- a/eng/packaging.targets
+++ b/eng/packaging.targets
@@ -31,7 +31,7 @@
<PropertyGroup Condition="'$(PreReleaseVersionLabel)' == 'servicing'">
<!-- If no servicing version is set we need to default to 0 in order for dependency versions to
- be calculated propertly, if we don't set it to 0, we would get the dependency version using the
+ be calculated properly, if we don't set it to 0, we would get the dependency version using the
product Patch Version -->
<ServicingVersion Condition="'$(ServicingVersion)' == ''">0</ServicingVersion>
@@ -260,13 +260,13 @@
</ItemGroup>
</Target>
- <Target Name="ValidateAssemblyVersionsInRefPack"
+ <Target Name="ValidateAssemblyVersionsInRefPack"
Condition="'$(SkipValidateAssemblyVersion)' != 'true' and '$(_AssemblyInTargetingPack)' == 'true' and '$(PreReleaseVersionLabel)' == 'servicing'"
AfterTargets="CoreCompile" >
<Error Condition="'$(AssemblyVersion)' != '$(LastReleasedStableAssemblyVersion)'" Text="AssemblyVersion should match last released assembly version $(LastReleasedStableAssemblyVersion)" />
</Target>
- <Target Name="ValidateServicingVersionIsPropertlySet"
+ <Target Name="ValidateServicingVersionIsProperlySet"
Condition="'$(PreReleaseVersionLabel)' == 'servicing' and '$(DotNetBuildFromSource)' != 'true'"
AfterTargets="GenerateNuspec">
<Error Condition="'$(ServicingVersion)' == '0'" Text="ServicingVersion is set to 0 and it should be an increment of the patch version from the last released package." />