File tree Expand file tree Collapse file tree 5 files changed +14
-7
lines changed
src/SourceBuild/content/repo-projects Expand file tree Collapse file tree 5 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 37
37
<BuildArgs >$(BuildArgs) /p:PortableBuild=$(PortableBuild)</BuildArgs >
38
38
<BuildArgs Condition =" '$(ShortStack)' != 'true' and '$(TargetOS)' != 'linux-musl'" >$(BuildArgs) /p:RuntimeOS=$(RuntimeOS)</BuildArgs >
39
39
<BuildArgs Condition =" '$(ShortStack)' != 'true' and '$(TargetOS)' != 'linux-musl'" >$(BuildArgs) /p:BaseOS=$(BaseOS)</BuildArgs >
40
+
41
+ <!-- Only pass when enabled to reduce command line noise. -->
42
+ <BuildArgs Condition =" '$(DotNetBuildTests)' == 'true' and '$(DotNetBuildTestsOptOut)' != 'true'" >$(BuildArgs) /p:DotNetBuildTests=true</BuildArgs >
40
43
</PropertyGroup >
41
44
42
45
<PropertyGroup >
459
462
ProcessFrameworkReferences not be able to restore for the given RID. -->
460
463
<BuildArgs Condition =" '$(DotNetBuildSourceOnly)' != 'true' and '@(TransitiveRepositoryReference->AnyHaveMetadataValue('Identity', 'runtime'))' == 'true'" >$(BuildArgs) /p:DotNetBuildTargetRidOnly=true</BuildArgs >
461
464
462
- <!-- Only pass when enabled to reduce command line noise. -->
463
- <BuildArgs Condition =" '$(DotNetBuildTests)' == 'true' and '$(DoNotBuildTests)' != 'true'" >$(BuildArgs) /p:DotNetBuildTests=true</BuildArgs >
464
-
465
465
<BuildCommand Condition =" '$(BuildCommand)' == '' and '$(IsUtilityProject)' != 'true'" >$(BuildScript) $(BuildActions) $(BuildArgs)</BuildCommand >
466
466
</PropertyGroup >
467
467
</Target >
Original file line number Diff line number Diff line change 30
30
<BuildArgs >$(BuildArgs) /p:EnablePackageValidation=false</BuildArgs >
31
31
32
32
<LogVerbosityOptOut >true</LogVerbosityOptOut >
33
- <DoNotBuildTests >true</DoNotBuildTests >
33
+
34
+ <!-- Tests are failing to build: https://github.com/dotnet/aspnetcore/issues/60095 -->
35
+ <DotNetBuildTestsOptOut >true</DotNetBuildTestsOptOut >
34
36
</PropertyGroup >
35
37
36
38
<PropertyGroup Condition =" '$(DotNetBuildSourceOnly)' == 'true'" >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <DoNotBuildTests >true</DoNotBuildTests >
4
+ <!-- Tests are failing to build: https://github.com/dotnet/efcore/issues/35547 -->
5
+ <DotNetBuildTestsOptOut >true</DotNetBuildTestsOptOut >
5
6
</PropertyGroup >
6
7
7
8
<ItemGroup >
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<LogVerbosityOptOut >true</LogVerbosityOptOut >
5
- <DoNotBuildTests >true</DoNotBuildTests >
5
+
6
+ <!-- Tests are failing to build: https://github.com/dotnet/roslyn/issues/76960 -->
7
+ <DotNetBuildTestsOptOut >true</DotNetBuildTestsOptOut >
6
8
7
9
<!-- Roslyn's build.cmd adds -build automatically. On non-windows, use the default -->
8
10
<BuildActions Condition =" '$(BuildOS)' == 'windows'" >$(FlagParameterPrefix)restore</BuildActions >
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<DeterministicBuildOptOut >true</DeterministicBuildOptOut >
5
- <DoNotBuildTests >true</DoNotBuildTests >
5
+
6
+ <!-- Tests are failing to build: https://github.com/microsoft/vstest/issues/14994 -->
7
+ <DotNetBuildTestsOptOut >true</DotNetBuildTestsOptOut >
6
8
</PropertyGroup >
7
9
8
10
<ItemGroup >
You can’t perform that action at this time.
0 commit comments