File tree Expand file tree Collapse file tree 6 files changed +7
-10
lines changed Expand file tree Collapse file tree 6 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ parameters:
58
58
installTar : true
59
59
installNodeJs : true
60
60
installJdk : true
61
- timeoutInMinutes : 300
61
+ timeoutInMinutes : 180
62
62
63
63
# We need longer than the default amount of 5 minutes to upload our logs/artifacts. (We currently take around 5 mins in the best case).
64
64
# This makes sure we have time to upload everything in the case of a build timeout - really important for investigating a build
Original file line number Diff line number Diff line change 63
63
<PropertyGroup >
64
64
<_GenAPICommand Condition =" '$(MSBuildRuntimeType)' == 'core'" >"$(DotNetTool)" --roll-forward-on-no-candidate-fx 2 "$(_GenAPIPath)"</_GenAPICommand >
65
65
<_GenAPICmd >$(_GenAPICommand)</_GenAPICmd >
66
- <_GenAPICmd >$(_GenAPICmd) "$(TargetPath)" $(AdditionalGenApiCmdOptions) </_GenAPICmd >
66
+ <_GenAPICmd >$(_GenAPICmd) "$(TargetPath)"</_GenAPICmd >
67
67
<_GenAPICmd >$(_GenAPICmd) --lib-path "@(_ReferencePathDirectories)"</_GenAPICmd >
68
68
<_GenAPICmd >$(_GenAPICmd) --out "$(_RefSourceFileOutputPath)"</_GenAPICmd >
69
69
<_GenAPICmd >$(_GenAPICmd) --header-file "$(RepoRoot)/eng/LicenseHeader.txt"</_GenAPICmd >
Original file line number Diff line number Diff line change 160
160
</ItemGroup >
161
161
162
162
<!-- Substitute references to Extensions packages with with ref assemblies -->
163
- <ItemGroup Condition =" '$(ReferenceReferenceAssemblies)' == 'true' AND '$(TargetFramework)' == 'netcoreapp3.0' AND '$(DisableExtensionsRefAssembliesSwap)' != 'true' " >
163
+ <ItemGroup Condition =" '$(ReferenceReferenceAssemblies)' == 'true' AND '$(TargetFramework)' == 'netcoreapp3.0' " >
164
164
<_ExtensionInternalRefAssemblies Include =" Microsoft.Extensions.Caching.Abstractions" />
165
165
<_ExtensionInternalRefAssemblies Include =" Microsoft.Extensions.Caching.Memory" />
166
166
<_ExtensionInternalRefAssemblies Include =" Microsoft.Extensions.Caching.SqlServer" />
Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ This package is an internal implementation of the .NET Core SDK and is not meant
18
18
<PackageType >DotnetPlatform</PackageType >
19
19
<RefAssemblyPackagePath >ref/$(TargetFramework)/</RefAssemblyPackagePath >
20
20
21
- <!-- Do not substitute references to Extensions ref assemblies -->
22
- <DisableExtensionsRefAssembliesSwap >true</DisableExtensionsRefAssembliesSwap >
23
-
24
21
<!-- There are no symbols for reference assemblies. -->
25
22
<IncludeSymbols >false</IncludeSymbols >
26
23
@@ -40,7 +37,9 @@ This package is an internal implementation of the .NET Core SDK and is not meant
40
37
<!-- Reference implementation assemblies in addition to ref assemblies to get xml docs -->
41
38
<ReferenceImplementationAssemblies >true</ReferenceImplementationAssemblies >
42
39
<!-- We are ignoring MSB3243 warnings since implemenation and reference assemblies are versioned differently. We need both to compose the targeting pack with reference assemblies and xml docs. -->
43
- <MSBuildWarningsAsMessages >MSB3243</MSBuildWarningsAsMessages >
40
+ <MSBuildWarningsAsMessages >MSB3243</MSBuildWarningsAsMessages >
41
+ <!-- We are ignoring NU5131 and NU5128 warnings since the dependency group should be kept empty. -->
42
+ <NoWarn >$(NoWarn);NU5131;NU5128</NoWarn >
44
43
45
44
<!-- Platform manifest data -->
46
45
<FrameworkListFileName >FrameworkList.xml</FrameworkListFileName >
Original file line number Diff line number Diff line change 1
1
<Project>
2
2
<!-- This file gets copied above the template test projects so that we disconnect the templates from the rest of the repository -->
3
-
4
- <Import Project="${IndirectReferences}" />
5
3
</Project>
Original file line number Diff line number Diff line change 128
128
129
129
<GenerateFileFromTemplate
130
130
TemplateFile =" $(MSBuildThisFileDirectory)Infrastructure\Directory.Build.props.in"
131
- Properties =" IndirectReferences=$(RepoRoot)eng\IndirectReferences.props "
131
+ Properties =" "
132
132
OutputPath =" $(TestTemplateCreationFolder)Directory.Build.props" />
133
133
134
134
<!-- Workaround https://github.com/dotnet/core-setup/issues/6420 - there is no MSBuild setting for rollforward yet -->
You can’t perform that action at this time.
0 commit comments