Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Microsoft.IO.Redist/src/Microsoft.IO.Redist.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<!-- Package servicing properties -->
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPackable>true</IsPackable>
<VersionPrefix>6.1.2</VersionPrefix>
<VersionPrefix Condition="'$(IsPackable)' == 'true'">6.1.3</VersionPrefix>
<PackageValidationBaselineVersion>6.1.2</PackageValidationBaselineVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/System.Memory/src/System.Memory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- Package servicing properties -->
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPackable>true</IsPackable>
<VersionPrefix>4.6.2</VersionPrefix>
<VersionPrefix Condition="'$(IsPackable)' == 'true'">4.6.3</VersionPrefix>
<AssemblyVersion Condition="$([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETFramework'">4.0.4.0</AssemblyVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<!-- Package servicing properties -->
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPackable>true</IsPackable>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix Condition="'$(IsPackable)' == 'true'">5.1.3</VersionPrefix>
<PackageValidationBaselineVersion>5.1.2</PackageValidationBaselineVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<Project>

<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPackable>true</IsPackable>
<VersionPrefix>6.1.1</VersionPrefix>
<VersionPrefix Condition="'$(IsPackable)' == 'true'">6.1.2</VersionPrefix>
<AssemblyVersion Condition="$([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETFramework'">6.0.2.0</AssemblyVersion>
<AssemblyVersion Condition="'$(IsPackable)' == 'true' and $([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETFramework'">6.0.3.0</AssemblyVersion>
<PackageValidationBaselineVersion>6.1.1</PackageValidationBaselineVersion>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,6 @@
<!-- VersionPrefix and IsPackable are defined in the parent folder's Versioning.props file. -->
<Import Project="..\Versioning.props" />

<!-- Package servicing properties -->
<PropertyGroup>
<AssemblyVersion Condition="$([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETFramework'">6.0.1.0</AssemblyVersion>
<AssemblyVersion Condition="'$(IsPackable)' == 'true' and $([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETFramework'">6.0.2.0</AssemblyVersion>
<PackageValidationBaselineVersion>6.1.0</PackageValidationBaselineVersion>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETCoreApp' and '$(IsPlaceholderTargetFramework)' != 'true'">
<ExtraMacros>#define netcoreapp</ExtraMacros>
<CoreAssembly>System.Runtime</CoreAssembly>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<!-- Package servicing properties -->
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPackable>true</IsPackable>
<VersionPrefix>4.6.2</VersionPrefix>
<VersionPrefix Condition="'$(IsPackable)' == 'true'">4.6.3</VersionPrefix>
<AssemblyVersion Condition="$([MSBuild]::GetTargetFrameworkIdentifier('$(TargetFramework)')) == '.NETFramework'">4.2.3.0</AssemblyVersion>
Expand Down