Skip to content

Commit c591cf4

Browse files
committed
[ci-skip] Only package the explicitly packaged packages.
1 parent fd42ce5 commit c591cf4

File tree

9 files changed

+4
-10
lines changed

9 files changed

+4
-10
lines changed

Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<TargetFrameworks>net7.0;net8.0</TargetFrameworks>
77
<IncludeSymbols>true</IncludeSymbols>
88
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
9+
<IsPackable>false</IsPackable>
910
</PropertyGroup>
1011
<PropertyGroup>
1112
<Authors>OoLunar</Authors>

benchmarks/HyperSharp.Benchmarks.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<IsPackable>false</IsPackable>
54
<GenerateDocumentationFile>false</GenerateDocumentationFile>
65
</PropertyGroup>
76
<ItemGroup>

examples/Directory.Build.props

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/HyperSharp.Responders/HyperSharp.Responders.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<Description>A C# reinvention of events through delegates.</Description>
55
<PackageId>OoLunar.HyperSharp.Responders</PackageId>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
7+
<IsPackable>true</IsPackable>
78
</PropertyGroup>
89
<ItemGroup>
910
<ProjectReference Include="../HyperSharp.Results/HyperSharp.Results.csproj" />

src/HyperSharp.Results/HyperSharp.Results.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
<OutputType>Library</OutputType>
44
<Description>A C# implementation of Results.</Description>
55
<PackageId>OoLunar.HyperSharp.Results</PackageId>
6+
<IsPackable>true</IsPackable>
67
</PropertyGroup>
78
</Project>

src/HyperSharp.Routing/HyperSharp.Routing.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<OutputType>Library</OutputType>
44
<Description>A C# implementation of the HTTP 1.1 protocol.</Description>
55
<PackageId>OoLunar.HyperSharp.Routing</PackageId>
6-
<IsPackable>false</IsPackable>
76
</PropertyGroup>
87
<ItemGroup>
98
<ProjectReference Include="../HyperSharp/HyperSharp.csproj" />

src/HyperSharp.SourceGeneration/HyperSharp.SourceGeneration.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<GenerateDocumentationFile>false</GenerateDocumentationFile>
7-
<IsPackable>false</IsPackable>
87
</PropertyGroup>
98
<ItemGroup>
109
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />

src/HyperSharp/HyperSharp.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<OutputType>Library</OutputType>
44
<Description>A C# implementation of the HTTP 1.1 protocol.</Description>
55
<PackageId>OoLunar.HyperSharp</PackageId>
6+
<IsPackable>true</IsPackable>
67
</PropertyGroup>
78
<ItemGroup>
89
<ProjectReference Include="../HyperSharp.Results/HyperSharp.Results.csproj" />

tests/HyperSharp.Tests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<PropertyGroup>
33
<TargetFramework>net8.0</TargetFramework>
44
<Nullable>enable</Nullable>
5-
<IsPackable>false</IsPackable>
65
<IsTestProject>true</IsTestProject>
76
<GenerateDocumentationFile>false</GenerateDocumentationFile>
87
</PropertyGroup>

0 commit comments

Comments
 (0)