Skip to content

Commit 0bac6e3

Browse files
committed
Remove guard on AllowEmptySignList
1 parent 7febe6c commit 0bac6e3

File tree

6 files changed

+1
-10
lines changed

6 files changed

+1
-10
lines changed

src/SourceBuild/content/repo-projects/Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
<BuildArgs Condition="'$(EnableDefaultRidSpecificArtifacts)' != ''">$(BuildArgs) /p:EnableDefaultRidSpecificArtifacts=$(EnableDefaultRidSpecificArtifacts)</BuildArgs>
4747
<!-- If a repo has no RID-specific artifacts, then we expect the repo to not have any artifacts when only publishing RID-specific artifacts. -->
48-
<BuildArgs Condition="'$(EnableDefaultRidSpecificArtifacts)' == 'true' and '$(RepoHasRidSpecificArtifacts)' != 'true'">$(BuildArgs) /p:AllowEmptySignList=true</BuildArgs>
48+
<BuildArgs Condition="'$(EnableDefaultRidSpecificArtifacts)' == 'true'">$(BuildArgs) /p:AllowEmptySignList=true</BuildArgs>
4949
</PropertyGroup>
5050

5151
<PropertyGroup>

src/SourceBuild/content/repo-projects/aspnetcore.proj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333

3434
<!-- Tests are failing to build: https://github.com/dotnet/aspnetcore/issues/60095 -->
3535
<DotNetBuildTestsOptOut>true</DotNetBuildTestsOptOut>
36-
37-
<RepoHasRidSpecificArtifacts>true</RepoHasRidSpecificArtifacts>
3836
</PropertyGroup>
3937

4038
<PropertyGroup Condition="'$(DotNetBuildSourceOnly)' == 'true'">

src/SourceBuild/content/repo-projects/roslyn.proj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
<!-- Use the repo root build script -->
1313
<BuildScript>$(ProjectDirectory)build$(ShellExtension)</BuildScript>
14-
15-
<RepoHasRidSpecificArtifacts>true</RepoHasRidSpecificArtifacts>
1614
</PropertyGroup>
1715

1816
<PropertyGroup Condition="'$(BuildOS)' == 'windows' and '$(OfficialBuildId)' != ''">

src/SourceBuild/content/repo-projects/runtime.proj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040

4141
<!-- Explicitly disable RID-specific artifacts when it's not enabled. Runtime's build defaults to using RID-specific artifacts, so we must explicitly opt-out. -->
4242
<EnableDefaultRidSpecificArtifacts Condition="'$(EnableDefaultRidSpecificArtifacts)' != 'true'">false</EnableDefaultRidSpecificArtifacts>
43-
<RepoHasRidSpecificArtifacts>true</RepoHasRidSpecificArtifacts>
4443
</PropertyGroup>
4544

4645
<PropertyGroup Condition="'$(DotNetBuildSourceOnly)' == 'true'">

src/SourceBuild/content/repo-projects/sdk.proj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636

3737
<BuildArgs Condition="'$(PgoInstrument)' == 'true'">$(BuildArgs) /p:PgoInstrument=true</BuildArgs>
3838
<BuildArgs Condition="'$(EnablePoison)' == 'true'">$(BuildArgs) /p:DISABLE_CROSSGEN=true</BuildArgs>
39-
40-
<RepoHasRidSpecificArtifacts>true</RepoHasRidSpecificArtifacts>
4139
</PropertyGroup>
4240

4341
<ItemGroup>

src/SourceBuild/content/repo-projects/windowsdesktop.proj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
<BuildArgs>$(BuildArgs) $(FlagParameterPrefix)warnAsError $(ArcadeFalseBoolBuildArg)</BuildArgs>
88
<!-- TODO remove once https://github.com/dotnet/source-build/issues/4313 is fixed -->
99
<BuildArgs>$(BuildArgs) /p:TargetArchitecture=$(TargetArchitecture)</BuildArgs>
10-
11-
<RepoHasRidSpecificArtifacts>true</RepoHasRidSpecificArtifacts>
1210
</PropertyGroup>
1311

1412
<ItemGroup>

0 commit comments

Comments
 (0)