Skip to content

Commit

Permalink
Mark IgnitorSample as non-packable (#27597)
Browse files Browse the repository at this point in the history
- also align TestTasks with other packable / non-shipping projects in same boat

nit: s/internal-use/internal use/
  • Loading branch information
dougbu authored Nov 7, 2020
1 parent 0271083 commit 5a2bb94
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -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.
-->
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Samples/IgnitorSample/IgnitorSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<IsShippingPackage>false</IsShippingPackage>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
<!--
Expand Down

0 comments on commit 5a2bb94

Please sign in to comment.