Skip to content

Commit 14e7aca

Browse files
authored
React to changes in Microsoft.NETCore.App (dotnet#11153)
1 parent 844530d commit 14e7aca

19 files changed

+107
-67
lines changed

Directory.Build.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@
9696
<ItemGroup>
9797
<KnownFrameworkReference Update="Microsoft.NETCore.App">
9898
<!-- Always update the 'latest version', whether the repo is servicing or not. -->
99-
<LatestRuntimeFrameworkVersion Condition="'%(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">$(MicrosoftNETCoreAppPackageVersion)</LatestRuntimeFrameworkVersion>
99+
<LatestRuntimeFrameworkVersion Condition="'%(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'">$(MicrosoftNETCoreAppRuntimeVersion)</LatestRuntimeFrameworkVersion>
100100
<!-- Only update the default runtime version for preview builds. -->
101-
<DefaultRuntimeFrameworkVersion Condition="'%(TargetFramework)' == '$(DefaultNetCoreTargetFramework)' and '$(IsServicingBuild)' != 'true'">$(MicrosoftNETCoreAppPackageVersion)</DefaultRuntimeFrameworkVersion>
101+
<DefaultRuntimeFrameworkVersion Condition="'%(TargetFramework)' == '$(DefaultNetCoreTargetFramework)' and '$(IsServicingBuild)' != 'true'">$(MicrosoftNETCoreAppRuntimeVersion)</DefaultRuntimeFrameworkVersion>
102102
<!-- Only update the targeting pack version for preview builds. -->
103-
<TargetingPackVersion Condition="'%(TargetFramework)' == '$(DefaultNetCoreTargetFramework)' and '$(IsServicingBuild)' != 'true'">$(MicrosoftNETCoreAppPackageVersion)</TargetingPackVersion>
103+
<TargetingPackVersion Condition="'%(TargetFramework)' == '$(DefaultNetCoreTargetFramework)' and '$(IsServicingBuild)' != 'true'">$(MicrosoftNETCoreAppRefPackageVersion)</TargetingPackVersion>
104104
</KnownFrameworkReference>
105105

106106
<KnownFrameworkReference Condition="'$(UseAspNetCoreSharedRuntime)' != 'true'" Remove="Microsoft.AspNetCore.App" />

build/runtimes.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project>
22

33
<ItemGroup>
4-
<DotNetCoreRuntime Include="$(MicrosoftNETCoreAppPackageVersion)"
4+
<DotNetCoreRuntime Include="$(MicrosoftNETCoreAppRuntimeVersion)"
55
Feed="$(DotNetAssetRootUrl)"
66
FeedCredential="$(DotNetAssetRootAccessTokenSuffix)" />
77

88
<DotNetCoreRuntime Condition="'$(OS)' == 'Windows_NT'"
9-
Include="$(MicrosoftNETCoreAppPackageVersion)"
9+
Include="$(MicrosoftNETCoreAppRuntimeVersion)"
1010
Arch="x86"
1111
Feed="$(DotNetAssetRootUrl)"
1212
FeedCredential="$(DotNetAssetRootAccessTokenSuffix)" />

eng/Dependencies.props

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -165,15 +165,15 @@ and are generated based on the last package release.
165165
<LatestPackageReference Include="xunit.extensibility.execution" Version="$(XunitExtensibilityExecutionPackageVersion)" />
166166

167167
<!-- Runtime packages required for crossgen -->
168-
<LatestPackageReference Include="runtime.win-x64.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
169-
<LatestPackageReference Include="runtime.win-x86.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
170-
<LatestPackageReference Include="runtime.win-arm.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
171-
<LatestPackageReference Include="runtime.osx-x64.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
172-
<LatestPackageReference Include="runtime.linux-x64.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
173-
<LatestPackageReference Include="runtime.linux-arm.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
174-
<LatestPackageReference Include="runtime.linux-arm64.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
175-
<LatestPackageReference Include="runtime.linux-musl-x64.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
176-
<LatestPackageReference Include="runtime.linux-musl-arm64.microsoft.netcore.app" Version="$(MicrosoftNETCoreAppPackageVersion)" />
168+
<LatestPackageReference Include="microsoft.netcore.app.runtime.win-x64" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
169+
<LatestPackageReference Include="microsoft.netcore.app.runtime.win-x86" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
170+
<LatestPackageReference Include="microsoft.netcore.app.runtime.win-arm" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
171+
<LatestPackageReference Include="microsoft.netcore.app.runtime.osx-x64" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
172+
<LatestPackageReference Include="microsoft.netcore.app.runtime.linux-x64" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
173+
<LatestPackageReference Include="microsoft.netcore.app.runtime.linux-arm" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
174+
<LatestPackageReference Include="microsoft.netcore.app.runtime.linux-arm64" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
175+
<LatestPackageReference Include="microsoft.netcore.app.runtime.linux-musl-x64" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
176+
<LatestPackageReference Include="microsoft.netcore.app.runtime.linux-musl-arm64" Version="$(MicrosoftNETCoreAppRuntimeVersion)" />
177177
</ItemGroup>
178178

179179
</Project>

eng/Version.Details.xml

Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -293,87 +293,95 @@
293293
<Uri>https://github.com/aspnet/Extensions</Uri>
294294
<Sha>3e7f99fbe3c5e775f5c175238eed87523782fe13</Sha>
295295
</Dependency>
296-
<Dependency Name="Microsoft.CSharp" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
296+
<Dependency Name="Microsoft.CSharp" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
297297
<Uri>https://github.com/dotnet/corefx</Uri>
298298
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
299299
</Dependency>
300-
<Dependency Name="Microsoft.Win32.Registry" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
300+
<Dependency Name="Microsoft.Win32.Registry" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
301301
<Uri>https://github.com/dotnet/corefx</Uri>
302302
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
303303
</Dependency>
304-
<Dependency Name="System.ComponentModel.Annotations" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
304+
<Dependency Name="System.ComponentModel.Annotations" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
305305
<Uri>https://github.com/dotnet/corefx</Uri>
306306
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
307307
</Dependency>
308-
<Dependency Name="System.Data.SqlClient" Version="4.7.0-preview6.19264.9" CoherentParentDependency="Microsoft.NETCore.App" Pinned="true">
308+
<Dependency Name="System.Data.SqlClient" Version="4.7.0-preview6.19264.9" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64" Pinned="true">
309309
<Uri>https://github.com/dotnet/corefx</Uri>
310310
<Sha>a28176b5ec68b6da1472934fe9493790d1665cae</Sha>
311311
</Dependency>
312-
<Dependency Name="System.Diagnostics.EventLog" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
312+
<Dependency Name="System.Diagnostics.EventLog" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
313313
<Uri>https://github.com/dotnet/corefx</Uri>
314314
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
315315
</Dependency>
316-
<Dependency Name="System.IO.Pipelines" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
316+
<Dependency Name="System.IO.Pipelines" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
317317
<Uri>https://github.com/dotnet/corefx</Uri>
318318
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
319319
</Dependency>
320-
<Dependency Name="System.Net.Http.WinHttpHandler" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
320+
<Dependency Name="System.Net.Http.WinHttpHandler" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
321321
<Uri>https://github.com/dotnet/corefx</Uri>
322322
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
323323
</Dependency>
324-
<Dependency Name="System.Net.WebSockets.WebSocketProtocol" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
324+
<Dependency Name="System.Net.WebSockets.WebSocketProtocol" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
325325
<Uri>https://github.com/dotnet/corefx</Uri>
326326
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
327327
</Dependency>
328-
<Dependency Name="System.Reflection.Metadata" Version="1.7.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
328+
<Dependency Name="System.Reflection.Metadata" Version="1.7.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
329329
<Uri>https://github.com/dotnet/corefx</Uri>
330330
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
331331
</Dependency>
332-
<Dependency Name="System.Runtime.CompilerServices.Unsafe" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
332+
<Dependency Name="System.Runtime.CompilerServices.Unsafe" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
333333
<Uri>https://github.com/dotnet/corefx</Uri>
334334
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
335335
</Dependency>
336-
<Dependency Name="System.Security.Cryptography.Cng" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
336+
<Dependency Name="System.Security.Cryptography.Cng" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
337337
<Uri>https://github.com/dotnet/corefx</Uri>
338338
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
339339
</Dependency>
340-
<Dependency Name="System.Security.Cryptography.Pkcs" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
340+
<Dependency Name="System.Security.Cryptography.Pkcs" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
341341
<Uri>https://github.com/dotnet/corefx</Uri>
342342
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
343343
</Dependency>
344-
<Dependency Name="System.Security.Cryptography.Xml" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
344+
<Dependency Name="System.Security.Cryptography.Xml" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
345345
<Uri>https://github.com/dotnet/corefx</Uri>
346346
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
347347
</Dependency>
348-
<Dependency Name="System.Security.Permissions" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
348+
<Dependency Name="System.Security.Permissions" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
349349
<Uri>https://github.com/dotnet/corefx</Uri>
350350
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
351351
</Dependency>
352-
<Dependency Name="System.Security.Principal.Windows" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
352+
<Dependency Name="System.Security.Principal.Windows" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
353353
<Uri>https://github.com/dotnet/corefx</Uri>
354354
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
355355
</Dependency>
356-
<Dependency Name="System.ServiceProcess.ServiceController" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
356+
<Dependency Name="System.ServiceProcess.ServiceController" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
357357
<Uri>https://github.com/dotnet/corefx</Uri>
358358
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
359359
</Dependency>
360-
<Dependency Name="System.Text.Encodings.Web" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
360+
<Dependency Name="System.Text.Encodings.Web" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
361361
<Uri>https://github.com/dotnet/corefx</Uri>
362362
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
363363
</Dependency>
364-
<Dependency Name="System.Text.Json" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
364+
<Dependency Name="System.Text.Json" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
365365
<Uri>https://github.com/dotnet/corefx</Uri>
366366
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
367367
</Dependency>
368-
<Dependency Name="System.Threading.Channels" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
368+
<Dependency Name="System.Threading.Channels" Version="4.6.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
369369
<Uri>https://github.com/dotnet/corefx</Uri>
370370
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
371371
</Dependency>
372372
<Dependency Name="Microsoft.Extensions.DependencyModel" Version="3.0.0-preview7-27810-02" CoherentParentDependency="Microsoft.Extensions.Logging">
373373
<Uri>https://github.com/dotnet/core-setup</Uri>
374374
<Sha>3f9156d5d9b5ae4b100baeaa75011aaee88a3f4b</Sha>
375375
</Dependency>
376-
<Dependency Name="Microsoft.NETCore.App" Version="3.0.0-preview7-27810-02" CoherentParentDependency="Microsoft.Extensions.Logging">
376+
<Dependency Name="Microsoft.NETCore.App.Ref" Version="3.0.0-preview7-27810-02">
377+
<Uri>https://github.com/dotnet/core-setup</Uri>
378+
<Sha>3f9156d5d9b5ae4b100baeaa75011aaee88a3f4b</Sha>
379+
</Dependency>
380+
<!--
381+
Win-x64 is used here because we have picked an arbitrary runtime identifier to flow the version of the latest NETCore.App runtime.
382+
All Runtime.$rid packages should have the same version.
383+
-->
384+
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="3.0.0-preview7-27810-02" CoherentParentDependency="Microsoft.Extensions.Logging">
377385
<Uri>https://github.com/dotnet/core-setup</Uri>
378386
<Sha>3f9156d5d9b5ae4b100baeaa75011aaee88a3f4b</Sha>
379387
</Dependency>
@@ -384,7 +392,7 @@
384392
</ProductDependencies>
385393
<ToolsetDependencies>
386394
<!-- Listed explicitly to workaround https://github.com/dotnet/cli/issues/10528 -->
387-
<Dependency Name="Microsoft.NETCore.Platforms" Version="3.0.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App">
395+
<Dependency Name="Microsoft.NETCore.Platforms" Version="3.0.0-preview7.19309.5" CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64">
388396
<Uri>https://github.com/dotnet/corefx</Uri>
389397
<Sha>7e56d8bd8b224d834b782a98bfd7035f71c3f547</Sha>
390398
</Dependency>

eng/Versions.props

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@
5555
<MicrosoftDotNetGenAPIPackageVersion>1.0.0-beta.19302.2</MicrosoftDotNetGenAPIPackageVersion>
5656
<!-- Packages from dotnet/core-setup -->
5757
<MicrosoftExtensionsDependencyModelPackageVersion>3.0.0-preview7-27810-02</MicrosoftExtensionsDependencyModelPackageVersion>
58-
<MicrosoftNETCoreAppPackageVersion>3.0.0-preview7-27810-02</MicrosoftNETCoreAppPackageVersion>
58+
<MicrosoftNETCoreAppRefPackageVersion>3.0.0-preview7-27810-02</MicrosoftNETCoreAppRefPackageVersion>
59+
<MicrosoftNETCoreAppRuntimewinx64PackageVersion>3.0.0-preview7-27810-02</MicrosoftNETCoreAppRuntimewinx64PackageVersion>
5960
<NETStandardLibraryRefPackageVersion>2.1.0-preview7-27810-02</NETStandardLibraryRefPackageVersion>
6061
<!-- Packages from dotnet/corefx -->
6162
<MicrosoftCSharpPackageVersion>4.6.0-preview7.19309.5</MicrosoftCSharpPackageVersion>
@@ -166,6 +167,13 @@
166167
167168
Versions below this comment are not managed by automation and can be changed as needed.
168169
-->
170+
<PropertyGroup Label="Dependency version settings">
171+
<!--
172+
Win-x64 is used here because we have picked an arbitrary runtime identifier to flow the version of the latest NETCore.App runtime.
173+
All Runtime.$rid packages should have the same version.
174+
-->
175+
<MicrosoftNETCoreAppRuntimeVersion>$(MicrosoftNETCoreAppRuntimewinx64PackageVersion)</MicrosoftNETCoreAppRuntimeVersion>
176+
</PropertyGroup>
169177
<PropertyGroup Label="Manual">
170178
<!-- Build tool dependencies -->
171179
<InternalAspNetCoreBuildTasksPackageVersion>3.0.0-build-20190530.3</InternalAspNetCoreBuildTasksPackageVersion>
@@ -239,6 +247,7 @@
239247
<PropertyGroup Label="Restore feeds">
240248
<RestoreSources Condition=" '$(DotNetBuildOffline)' != 'true' ">
241249
$(RestoreSources);
250+
https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json;
242251
https://dotnetfeed.blob.core.windows.net/aspnet-blazor/index.json;
243252
https://dotnetfeed.blob.core.windows.net/aspnet-extensions/index.json;
244253
https://dotnetfeed.blob.core.windows.net/aspnet-entityframeworkcore/index.json;

eng/Workarounds.targets

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,19 @@
4343
</RestoreSources>
4444
</PropertyGroup>
4545

46+
<!-- Workaround until we can build our repo with a 3.0 Preview 7 SDK which has https://github.com/dotnet/core-sdk/pull/2401. -->
47+
<ItemGroup Condition="'$(PreReleasePreviewNumber)' == '7' ">
48+
<KnownFrameworkReference Update="Microsoft.NETCore.App">
49+
<!--
50+
Temporary until we can update to build with the Preview7 SDK .
51+
Using PreReleasePreviewNumber to time-bomb this so we can remove this before RTM.
52+
53+
This workaround was also applied to src\ProjectTemplates\test\Infrastructure\TemplateTests.props.in.
54+
-->
55+
<RuntimePackNamePatterns>Microsoft.NETCore.App.Runtime.**RID**</RuntimePackNamePatterns>
56+
<AppHostPackNamePattern />
57+
<AppHostRuntimeIdentifiers />
58+
</KnownFrameworkReference>
59+
</ItemGroup>
60+
4661
</Project>

eng/targets/Helix.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ Usage: dotnet build /t:Helix src/MyTestProject.csproj
7878
<TestAssembly>$(TargetFileName)</TestAssembly>
7979
<PreCommands>@(HelixPreCommand)</PreCommands>
8080
<PostCommands>@(HelixPostCommand)</PostCommands>
81-
<Command Condition="$(IsWindowsHelixQueue)">call runtests.cmd $(TargetFileName) $(TargetFrameworkIdentifier) $(NETCoreSdkVersion) $(MicrosoftNETCoreAppPackageVersion) $(_HelixFriendlyNameTargetQueue)</Command>
82-
<Command Condition="!$(IsWindowsHelixQueue)">./runtests.sh $(TargetFileName) $(NETCoreSdkVersion) $(MicrosoftNETCoreAppPackageVersion) $(_HelixFriendlyNameTargetQueue)</Command>
81+
<Command Condition="$(IsWindowsHelixQueue)">call runtests.cmd $(TargetFileName) $(TargetFrameworkIdentifier) $(NETCoreSdkVersion) $(MicrosoftNETCoreAppRuntimeVersion) $(_HelixFriendlyNameTargetQueue)</Command>
82+
<Command Condition="!$(IsWindowsHelixQueue)">./runtests.sh $(TargetFileName) $(NETCoreSdkVersion) $(MicrosoftNETCoreAppRuntimeVersion) $(_HelixFriendlyNameTargetQueue)</Command>
8383
<Timeout>$(HelixTimeout)</Timeout>
8484
</HelixWorkItem>
8585
</ItemGroup>

0 commit comments

Comments
 (0)