Mark IgnitorSample as non-packable (#27597)

- also align TestTasks with other packable / non-shipping projects in same boat

nit: s/internal-use/internal use/
This commit is contained in:
Doug Bunting 2020-11-06 17:08:37 -08:00 коммит произвёл GitHub
Родитель 0271083dde
Коммит 5a2bb94dc6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 11 добавлений и 5 удалений

Просмотреть файл

@ -130,7 +130,7 @@
<IsTargetingPackBuilding Condition=" '$(IsTargetingPackBuilding)' == '' ">true</IsTargetingPackBuilding>
<!--
Archives and installers using this prefix are intended for internal-use only.
Archives and installers using this prefix are intended for internal use only.
For example, this .zip is used to handoff bits to partner teams who then incorporate our shared frameworks
into their own installers.
-->

Просмотреть файл

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<IsShippingPackage>false</IsShippingPackage>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
</PropertyGroup>

Просмотреть файл

@ -6,9 +6,9 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>aspnetcore;testing</PackageTags>
<IsTestAssetProject>true</IsTestAssetProject>
<!-- This is used as a package by aspnet benchmarking infrastructure. It is meant for internal-use only. -->
<IsShippingPackage>false</IsShippingPackage>
<!-- This is used as a package by ASP.NET benchmarking infrastructure. It is meant for internal use only. -->
<IsPackable>true</IsPackable>
<IsShippingPackage>false</IsShippingPackage>
</PropertyGroup>
<ItemGroup>

Просмотреть файл

@ -4,7 +4,13 @@
<OutputType>Exe</OutputType>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<!--
This is used as a package by ASP.NET benchmarking infrastructure. It is meant for internal use only. See also
the Microsoft.AspNetCore.Server.IntegrationTesting and ...IntegrationTesting.IIS projects.
-->
<IsPackable>true</IsPackable>
<IsShippingPackage>false</IsShippingPackage>
</PropertyGroup>
<ItemGroup>

Просмотреть файл

@ -9,7 +9,7 @@
<DisableFastUpToDateCheck>True</DisableFastUpToDateCheck>
<AspNetCoreModuleOutOfProcessVersion>2.0.0</AspNetCoreModuleOutOfProcessVersion>
<IsTestAssetProject>true</IsTestAssetProject>
<!-- This is used as a package by aspnet benchmarking infrastructure. It is meant for internal-use only. -->
<!-- This is used as a package by ASP.NET benchmarking infrastructure. It is meant for internal use only. -->
<IsPackable>true</IsPackable>
<IsShippingPackage>false</IsShippingPackage>
<!--