|
13 | 13 | <IsReferenceAssemblyProject Condition="$(MSBuildProjectDirectory.EndsWith('ref'))">true</IsReferenceAssemblyProject> |
14 | 14 | <OutDirName Condition="'$(IsReferenceAssemblyProject)' == 'true'">$(MSBuildProjectName)-ref</OutDirName> |
15 | 15 |
|
16 | | - <IsBenchmarkProject Condition="$(MSBuildProjectName.EndsWith('.Performance')) OR $(RepoRelativeProjectDir.Contains('perf'))">true</IsBenchmarkProject> |
| 16 | + <IsBenchmarkProject Condition="$(MSBuildProjectName.EndsWith('.Performance')) OR $(RepoRelativeProjectDir.Contains('perf')) OR $(RepoRelativeProjectDir.Contains('benchmarkapps'))">true</IsBenchmarkProject> |
17 | 17 | <IsSpecificationTestProject Condition="$(MSBuildProjectName.EndsWith('.Specification.Tests'))">true</IsSpecificationTestProject> |
18 | 18 | <IsUnitTestProject>false</IsUnitTestProject> |
19 | 19 | <IsUnitTestProject Condition="'$(IsSpecificationTestProject)' != 'true' and ( $(MSBuildProjectName.EndsWith('Tests')) or $(MSBuildProjectName.EndsWith('.Test')) or $(MSBuildProjectName.EndsWith('.FunctionalTest')) )">true</IsUnitTestProject> |
|
105 | 105 | <InternalInstallerBaseName>$(RuntimeInstallerBaseName)-internal</InternalInstallerBaseName> |
106 | 106 | </PropertyGroup> |
107 | 107 |
|
108 | | - <ItemGroup Condition="'$(DisablePubternalApiCheck)' != 'true' AND '$(IsTestProject)' != 'true' AND '$(IsBenchmarkProject)' != 'true' AND '$(IsTestAssetProject)' != 'true'"> |
109 | | - <PackageReference Include="Internal.AspNetCore.Analyzers" PrivateAssets="All" Version="$(InternalAspNetCoreAnalyzersPackageVersion)" IsImplicitlyDefined="true" /> |
| 108 | + <ItemGroup |
| 109 | + Condition="'$(DisablePubternalApiCheck)' != 'true' |
| 110 | + AND '$(IsTestProject)' != 'true' |
| 111 | + AND '$(IsBenchmarkProject)' != 'true' |
| 112 | + AND '$(IsTestAssetProject)' != 'true' |
| 113 | + AND '$(MSBuildProjectName)' != 'Internal.AspNetCore.Analyzers' |
| 114 | + AND '$(MSBuildProjectExtension)' == '.csproj'"> |
| 115 | + <ProjectReference |
| 116 | + Include="$(RepoRoot)src\Analyzers\Internal.AspNetCore.Analyzers\src\Internal.AspNetCore.Analyzers.csproj" |
| 117 | + PrivateAssets="All" |
| 118 | + Version="$(InternalAspNetCoreAnalyzersPackageVersion)" |
| 119 | + IsImplicitlyDefined="true" /> |
110 | 120 | </ItemGroup> |
111 | 121 |
|
112 | 122 | <!-- Compilation options which apply to all languages. Language-specific options should be set in eng/targets/$(lang).Common.props --> |
|
179 | 189 |
|
180 | 190 | <ArchiveExtension>.tar.gz</ArchiveExtension> |
181 | 191 | <ArchiveExtension Condition="'$(TargetOsName)' == 'win'">.zip</ArchiveExtension> |
182 | | - <ChecksumExtension>.sha512</ChecksumExtension> |
183 | 192 | </PropertyGroup> |
184 | 193 |
|
185 | 194 | <Import Project="eng\Workarounds.props" /> |
|
0 commit comments