Skip to content

Commit 4bd607d

Browse files
authored
Merge pull request #27210 from dotnet/darc-release/7.0.1xx-14a8c2b8-08ac-4b18-bcc9-82984b69d2c5
[release/7.0.1xx] Update dependencies from dotnet/runtime
2 parents 6fcaf8d + ed423db commit 4bd607d

File tree

38 files changed

+2116
-703
lines changed

38 files changed

+2116
-703
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# [Breaking change]: Handling of command-line RuntimeIdentifier and SelfContained properties across project references
2+
3+
## Description
4+
5+
The `RuntimeIdentifier` and `SelfContained` properties can be specified on the command line to commands such as `dotnet build` and `dotnet publish`.
6+
They can be specified either via parameters such as `-r` or `--self-contained`, or via the generic `-p:Key=Value` parameter, such as `-p:SelfContained=true`.
7+
8+
If these properties are specified on the command line, we've updated how they are applied (or not applied) to projects referenced by the initial project that is being built.
9+
10+
## Version
11+
12+
???
13+
14+
## Previous behavior
15+
16+
If `SelfContained` was specified on the command line, it would always flow to referenced projects.
17+
18+
`RuntimeIdentifier` would flow to referenced projects where either the `RuntimeIdentifier` or `RuntimeIdentifiers` properties were non-empty.
19+
20+
## New Behavior
21+
22+
Both `SelfContained` and `RuntimeIdentifier` will flow to a referenced project if any of the following are true for the referenced project:
23+
24+
- The `IsRidAgnostic` property is set to `false`
25+
- The `OutputType` is `Exe` or `WinExe`
26+
- Either the `RuntimeIdentifer` or `RuntimeIdentifiers` property is non-empty
27+
28+
## Type of breaking change
29+
30+
Source incompatible
31+
32+
## Reason for change
33+
34+
As of .NET SDK 6.0.100, we recommend specifying the value for self-contained on the command line if you specify the RuntimeIdentifier.
35+
(This is because in the future we are considering [changing the logic](https://github.com/dotnet/designs/blob/main/accepted/2021/architecture-targeting.md)
36+
so that specifying the RuntimeIdentifier on the command line doesn't automatically set the app to self-contained.) We also added a warning message
37+
to guide you to do so.
38+
39+
However, if you followed the warning and switched to a command specifying both the RuntimeIdentifier and the value for self-contained (for example
40+
`dotnet build -r win-x64 --self-contained`), the command could fail if you referenced an Exe project, because the `RuntimeIdentifier` you specified
41+
would not apply to the referenced project, but the `SelfContained` value would, and it's an error for an Exe project to have `SelfContained` set to
42+
true without having a `RuntimeIdentifier` set.
43+
44+
## Recommended action
45+
46+
If you were relying on the `SelfContained` property to apply to all projects when it was specified on the command line, then you can get similar behavior
47+
by setting `IsRidAgnostic` to false either in a file ([such as Directory.Build.props](https://docs.microsoft.com/visualstudio/msbuild/customize-your-build#directorybuildprops-and-directorybuildtargets)),
48+
or as a command-line parameter such as `-p:IsRidAgnostic=false`.
49+
50+
## Open Questions
51+
52+
TODO: How does this apply to solutions? Could a solution build set IsRidAgnostic to false for all projects, and would that fix other issues we have when specifying the RuntimeIdentifier for a solution build?
53+
TODO: What happens if there's an Exe1 -> Library -> Exe2 reference, especially if there's also a direct reference from Exe1 -> Exe2

eng/Version.Details.xml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -6,49 +6,49 @@
66
<Sha>1f2b80aad4cc0cfe937515d0d8c5aeda5fb4db5a</Sha>
77
<SourceBuild RepoName="templating" ManagedOnly="true" />
88
</Dependency>
9-
<Dependency Name="Microsoft.NETCore.App.Ref" Version="7.0.0-rc.1.22411.12">
9+
<Dependency Name="Microsoft.NETCore.App.Ref" Version="7.0.0-rc.1.22421.12">
1010
<Uri>https://github.com/dotnet/runtime</Uri>
11-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
11+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
1212
</Dependency>
13-
<Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.7.0" Version="7.0.0-rc.1.22411.12">
13+
<Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.7.0" Version="7.0.0-rc.1.22421.12">
1414
<Uri>https://github.com/dotnet/runtime</Uri>
15-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
15+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
1616
</Dependency>
17-
<Dependency Name="VS.Redist.Common.NetCore.TargetingPack.x64.7.0" Version="7.0.0-rc.1.22411.12">
17+
<Dependency Name="VS.Redist.Common.NetCore.TargetingPack.x64.7.0" Version="7.0.0-rc.1.22421.12">
1818
<Uri>https://github.com/dotnet/runtime</Uri>
19-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
19+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
2020
</Dependency>
21-
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="7.0.0-rc.1.22411.12">
21+
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="7.0.0-rc.1.22421.12">
2222
<Uri>https://github.com/dotnet/runtime</Uri>
23-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
23+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
2424
</Dependency>
25-
<Dependency Name="Microsoft.NETCore.App.Host.win-x64" Version="7.0.0-rc.1.22411.12">
25+
<Dependency Name="Microsoft.NETCore.App.Host.win-x64" Version="7.0.0-rc.1.22421.12">
2626
<Uri>https://github.com/dotnet/runtime</Uri>
27-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
27+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
2828
</Dependency>
29-
<Dependency Name="Microsoft.NETCore.Platforms" Version="7.0.0-rc.1.22411.12">
29+
<Dependency Name="Microsoft.NETCore.Platforms" Version="7.0.0-rc.1.22421.12">
3030
<Uri>https://github.com/dotnet/runtime</Uri>
31-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
31+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
3232
</Dependency>
33-
<Dependency Name="Microsoft.NET.HostModel" Version="7.0.0-rc.1.22411.12">
33+
<Dependency Name="Microsoft.NET.HostModel" Version="7.0.0-rc.1.22421.12">
3434
<Uri>https://github.com/dotnet/runtime</Uri>
35-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
35+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
3636
</Dependency>
37-
<Dependency Name="Microsoft.Extensions.DependencyModel" Version="7.0.0-rc.1.22411.12">
37+
<Dependency Name="Microsoft.Extensions.DependencyModel" Version="7.0.0-rc.1.22421.12">
3838
<Uri>https://github.com/dotnet/runtime</Uri>
39-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
39+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
4040
</Dependency>
41-
<Dependency Name="Microsoft.NETCore.DotNetHostResolver" Version="7.0.0-rc.1.22411.12">
41+
<Dependency Name="Microsoft.NETCore.DotNetHostResolver" Version="7.0.0-rc.1.22421.12">
4242
<Uri>https://github.com/dotnet/runtime</Uri>
43-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
43+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
4444
</Dependency>
45-
<Dependency Name="Microsoft.Build" Version="17.4.0-preview-22413-01">
45+
<Dependency Name="Microsoft.Build" Version="17.4.0-preview-22416-02">
4646
<Uri>https://github.com/dotnet/msbuild</Uri>
47-
<Sha>f0a66ec4390b6590ee09dc111cc5e1d8e975df3f</Sha>
47+
<Sha>5d102ae37163fc1f22610bb433c3ab9a2fff91f0</Sha>
4848
</Dependency>
49-
<Dependency Name="Microsoft.Build.Localization" Version="17.4.0-preview-22413-01">
49+
<Dependency Name="Microsoft.Build.Localization" Version="17.4.0-preview-22416-02">
5050
<Uri>https://github.com/dotnet/msbuild</Uri>
51-
<Sha>f0a66ec4390b6590ee09dc111cc5e1d8e975df3f</Sha>
51+
<Sha>5d102ae37163fc1f22610bb433c3ab9a2fff91f0</Sha>
5252
</Dependency>
5353
<Dependency Name="Microsoft.FSharp.Compiler" Version="12.0.6-beta.22420.5">
5454
<Uri>https://github.com/dotnet/fsharp</Uri>
@@ -110,30 +110,30 @@
110110
<Sha>6252a2194dd32911db2c0669fc818555687d5570</Sha>
111111
<SourceBuild RepoName="linker" ManagedOnly="true" />
112112
</Dependency>
113-
<Dependency Name="Microsoft.DotNet.ILCompiler" Version="7.0.0-rc.1.22411.12">
113+
<Dependency Name="Microsoft.DotNet.ILCompiler" Version="7.0.0-rc.1.22421.12">
114114
<Uri>https://github.com/dotnet/runtime</Uri>
115-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
115+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
116116
<SourceBuildTarball RepoName="runtime" ManagedOnly="true" />
117117
</Dependency>
118118
<Dependency Name="Microsoft.NET.ILLink.Analyzers" Version="7.0.100-1.22415.4">
119119
<Uri>https://github.com/dotnet/linker</Uri>
120120
<Sha>6252a2194dd32911db2c0669fc818555687d5570</Sha>
121121
</Dependency>
122-
<Dependency Name="System.CodeDom" Version="7.0.0-rc.1.22411.12">
122+
<Dependency Name="System.CodeDom" Version="7.0.0-rc.1.22421.12">
123123
<Uri>https://github.com/dotnet/runtime</Uri>
124-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
124+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
125125
</Dependency>
126-
<Dependency Name="System.Security.Cryptography.ProtectedData" Version="7.0.0-rc.1.22411.12">
126+
<Dependency Name="System.Security.Cryptography.ProtectedData" Version="7.0.0-rc.1.22421.12">
127127
<Uri>https://github.com/dotnet/runtime</Uri>
128-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
128+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
129129
</Dependency>
130-
<Dependency Name="System.Text.Encoding.CodePages" Version="7.0.0-rc.1.22411.12">
130+
<Dependency Name="System.Text.Encoding.CodePages" Version="7.0.0-rc.1.22421.12">
131131
<Uri>https://github.com/dotnet/runtime</Uri>
132-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
132+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
133133
</Dependency>
134-
<Dependency Name="System.Resources.Extensions" Version="7.0.0-rc.1.22411.12">
134+
<Dependency Name="System.Resources.Extensions" Version="7.0.0-rc.1.22421.12">
135135
<Uri>https://github.com/dotnet/runtime</Uri>
136-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
136+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
137137
</Dependency>
138138
<Dependency Name="Microsoft.WindowsDesktop.App.Runtime.win-x64" Version="7.0.0-rc.2.22421.3">
139139
<Uri>https://github.com/dotnet/windowsdesktop</Uri>
@@ -279,9 +279,9 @@
279279
<Uri>https://github.com/dotnet/arcade</Uri>
280280
<Sha>6a638cd0c13962ab2a1943cb1c878be5a41dd82e</Sha>
281281
</Dependency>
282-
<Dependency Name="System.Reflection.MetadataLoadContext" Version="7.0.0-rc.1.22411.12">
282+
<Dependency Name="System.Reflection.MetadataLoadContext" Version="7.0.0-rc.1.22421.12">
283283
<Uri>https://github.com/dotnet/runtime</Uri>
284-
<Sha>f52d8c59bb49360eb2cbeeb863c5856ebd62adda</Sha>
284+
<Sha>37ddbefcaf0e768218c2d2e782ef810f8bb1dd8b</Sha>
285285
</Dependency>
286286
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="1.0.0-beta.22409.1" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
287287
<Uri>https://github.com/dotnet/xliff-tasks</Uri>

eng/Versions.props

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -35,26 +35,26 @@
3535
<SystemReflectionMetadataVersion>6.0.0</SystemReflectionMetadataVersion>
3636
<MicrosoftDotNetSignToolVersion>7.0.0-beta.22411.2</MicrosoftDotNetSignToolVersion>
3737
<MicrosoftWebXdtPackageVersion>3.1.0</MicrosoftWebXdtPackageVersion>
38-
<SystemSecurityCryptographyProtectedDataPackageVersion>7.0.0-rc.1.22411.12</SystemSecurityCryptographyProtectedDataPackageVersion>
38+
<SystemSecurityCryptographyProtectedDataPackageVersion>7.0.0-rc.1.22421.12</SystemSecurityCryptographyProtectedDataPackageVersion>
3939
<SystemCollectionsSpecializedPackageVersion>4.3.0</SystemCollectionsSpecializedPackageVersion>
4040
<SystemXmlXmlDocumentPackageVersion>4.3.0</SystemXmlXmlDocumentPackageVersion>
4141
<WebDeploymentPackageVersion>4.0.5</WebDeploymentPackageVersion>
4242
<SystemTextJsonVersion>6.0.0</SystemTextJsonVersion>
43-
<SystemReflectionMetadataLoadContextVersion>7.0.0-rc.1.22411.12</SystemReflectionMetadataLoadContextVersion>
43+
<SystemReflectionMetadataLoadContextVersion>7.0.0-rc.1.22421.12</SystemReflectionMetadataLoadContextVersion>
4444
<SystemManagementPackageVersion>4.6.0</SystemManagementPackageVersion>
4545
<SystemCommandLineVersion>2.0.0-beta4.22402.1</SystemCommandLineVersion>
4646
<MicrosoftDeploymentDotNetReleasesVersion>1.0.0-preview5.1.22263.1</MicrosoftDeploymentDotNetReleasesVersion>
4747
<MicrosoftVisualStudioSetupConfigurationInteropVersion>3.0.4496</MicrosoftVisualStudioSetupConfigurationInteropVersion>
4848
</PropertyGroup>
4949
<PropertyGroup>
5050
<!-- Dependencies from https://github.com/dotnet/runtime -->
51-
<MicrosoftNETCoreAppRefPackageVersion>7.0.0-rc.1.22411.12</MicrosoftNETCoreAppRefPackageVersion>
52-
<VSRedistCommonNetCoreSharedFrameworkx6470PackageVersion>7.0.0-rc.1.22411.12</VSRedistCommonNetCoreSharedFrameworkx6470PackageVersion>
53-
<MicrosoftNETCoreAppRuntimewinx64PackageVersion>7.0.0-rc.1.22411.12</MicrosoftNETCoreAppRuntimewinx64PackageVersion>
51+
<MicrosoftNETCoreAppRefPackageVersion>7.0.0-rc.1.22421.12</MicrosoftNETCoreAppRefPackageVersion>
52+
<VSRedistCommonNetCoreSharedFrameworkx6470PackageVersion>7.0.0-rc.1.22421.12</VSRedistCommonNetCoreSharedFrameworkx6470PackageVersion>
53+
<MicrosoftNETCoreAppRuntimewinx64PackageVersion>7.0.0-rc.1.22421.12</MicrosoftNETCoreAppRuntimewinx64PackageVersion>
5454
<MicrosoftNETCoreAppRuntimePackageVersion>$(MicrosoftNETCoreAppRuntimewinx64PackageVersion)</MicrosoftNETCoreAppRuntimePackageVersion>
55-
<MicrosoftExtensionsDependencyModelPackageVersion>7.0.0-rc.1.22411.12</MicrosoftExtensionsDependencyModelPackageVersion>
56-
<MicrosoftNETCoreDotNetHostResolverPackageVersion>7.0.0-rc.1.22411.12</MicrosoftNETCoreDotNetHostResolverPackageVersion>
57-
<MicrosoftNETHostModelVersion>7.0.0-rc.1.22411.12</MicrosoftNETHostModelVersion>
55+
<MicrosoftExtensionsDependencyModelPackageVersion>7.0.0-rc.1.22421.12</MicrosoftExtensionsDependencyModelPackageVersion>
56+
<MicrosoftNETCoreDotNetHostResolverPackageVersion>7.0.0-rc.1.22421.12</MicrosoftNETCoreDotNetHostResolverPackageVersion>
57+
<MicrosoftNETHostModelVersion>7.0.0-rc.1.22421.12</MicrosoftNETHostModelVersion>
5858
<MicrosoftExtensionsFileSystemGlobbingPackageVersion>6.0.0-preview.7.21363.9</MicrosoftExtensionsFileSystemGlobbingPackageVersion>
5959
<MicrosoftExtensionsDependencyModelVersion>$(MicrosoftExtensionsDependencyModelPackageVersion)</MicrosoftExtensionsDependencyModelVersion>
6060
<MicrosoftExtensionsLoggingConsoleVersion>6.0.0</MicrosoftExtensionsLoggingConsoleVersion>
@@ -90,10 +90,10 @@
9090
</PropertyGroup>
9191
<PropertyGroup>
9292
<!-- Dependencies from https://github.com/dotnet/runtime -->
93-
<SystemCodeDomPackageVersion>7.0.0-rc.1.22411.12</SystemCodeDomPackageVersion>
94-
<SystemTextEncodingCodePagesPackageVersion>7.0.0-rc.1.22411.12</SystemTextEncodingCodePagesPackageVersion>
95-
<SystemResourcesExtensionsPackageVersion>7.0.0-rc.1.22411.12</SystemResourcesExtensionsPackageVersion>
96-
<MicrosoftDotNetILCompilerPackageVersion>7.0.0-rc.1.22411.12</MicrosoftDotNetILCompilerPackageVersion>
93+
<SystemCodeDomPackageVersion>7.0.0-rc.1.22421.12</SystemCodeDomPackageVersion>
94+
<SystemTextEncodingCodePagesPackageVersion>7.0.0-rc.1.22421.12</SystemTextEncodingCodePagesPackageVersion>
95+
<SystemResourcesExtensionsPackageVersion>7.0.0-rc.1.22421.12</SystemResourcesExtensionsPackageVersion>
96+
<MicrosoftDotNetILCompilerPackageVersion>7.0.0-rc.1.22421.12</MicrosoftDotNetILCompilerPackageVersion>
9797
</PropertyGroup>
9898
<PropertyGroup>
9999
<!-- Dependencies from https://github.com/dotnet/format -->
@@ -105,15 +105,15 @@
105105
</PropertyGroup>
106106
<PropertyGroup>
107107
<!-- Dependencies from https://github.com/Microsoft/msbuild -->
108-
<MicrosoftBuildPackageVersion>17.4.0-preview-22413-01</MicrosoftBuildPackageVersion>
108+
<MicrosoftBuildPackageVersion>17.4.0-preview-22416-02</MicrosoftBuildPackageVersion>
109109
<!-- .NET Framework-targeted tasks will need to run in an MSBuild that is older than the very latest,
110110
so target one that matches the version in minimumMSBuildVersion.
111111
112112
This avoids the need to juggle references to packages that have been updated in newer MSBuild. -->
113113
<MicrosoftBuildPackageVersion Condition=" '$([MSBuild]::GetTargetFrameworkIdentifier($(TargetFramework)))' == '.NETFramework' and exists('$(RepoRoot)\src\Layout\redist\minimumMSBuildVersion')">$([System.IO.File]::ReadAllText('$(RepoRoot)\src\Layout\redist\minimumMSBuildVersion').Trim())</MicrosoftBuildPackageVersion>
114114
<MicrosoftBuildFrameworkPackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion>
115115
<MicrosoftBuildRuntimePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildRuntimePackageVersion>
116-
<MicrosoftBuildLocalizationPackageVersion>17.4.0-preview-22413-01</MicrosoftBuildLocalizationPackageVersion>
116+
<MicrosoftBuildLocalizationPackageVersion>17.4.0-preview-22416-02</MicrosoftBuildLocalizationPackageVersion>
117117
<MicrosoftBuildUtilitiesCorePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildUtilitiesCorePackageVersion>
118118
<MicrosoftBuildTasksCorePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildTasksCorePackageVersion>
119119
<MicrosoftBuildVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildVersion>

src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,6 @@ Copyright (c) .NET Foundation. All rights reserved.
157157
<!-- Remove dotnet.js/wasm from runtime pack, in favor of the relinked ones in @(WasmNativeAsset) -->
158158
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)"
159159
Condition="@(WasmNativeAsset->Count()) > 0 and '%(FileName)' == 'dotnet' and ('%(Extension)' == '.wasm' or '%(Extension)' == '.js')" />
160-
161-
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)"
162-
Condition="@(WasmNativeAsset->Count()) > 0 and '%(FileName)' == 'dotnet-crypto-worker' and '%(Extension)' == '.js'" />
163160
</ItemGroup>
164161

165162
<ComputeBlazorBuildAssets
@@ -406,7 +403,6 @@ Copyright (c) .NET Foundation. All rights reserved.
406403

407404
<ItemGroup>
408405
<_DotNetJsItem Include="@(ResolvedFileToPublish)" Condition="'%(ResolvedFileToPublish.DestinationSubPath)' == 'dotnet.js' AND '%(ResolvedFileToPublish.AssetType)' == 'native'" />
409-
<_DotNetJsItem Include="@(ResolvedFileToPublish)" Condition="'%(ResolvedFileToPublish.DestinationSubPath)' == 'dotnet-crypto-worker.js' AND '%(ResolvedFileToPublish.AssetType)' == 'native'" />
410406
</ItemGroup>
411407

412408
<PropertyGroup>

0 commit comments

Comments
 (0)