Skip to content

Commit 480e369

Browse files
CopilotCopilot
andcommitted
release: prepare v0.6.2 multi-package publish
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 64cd03c commit 480e369

4 files changed

Lines changed: 36 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,11 @@ jobs:
6666
- name: Run all tests
6767
run: dotnet test graphify-dotnet.slnx -c Release --no-build --verbosity normal
6868

69-
- name: Pack the tool
70-
run: dotnet pack src/Graphify.Cli/Graphify.Cli.csproj -c Release --no-build -p:Version=${{ steps.version.outputs.version }} -o ./nupkg
69+
- name: Pack NuGet packages
70+
run: |
71+
dotnet pack src/Graphify/Graphify.csproj -c Release --no-build -p:Version=${{ steps.version.outputs.version }} -o ./nupkg
72+
dotnet pack src/Graphify.Sdk/Graphify.Sdk.csproj -c Release --no-build -p:Version=${{ steps.version.outputs.version }} -o ./nupkg
73+
dotnet pack src/Graphify.Cli/Graphify.Cli.csproj -c Release --no-build -p:Version=${{ steps.version.outputs.version }} -o ./nupkg
7174
7275
- name: NuGet login (OIDC trusted publishing)
7376
uses: NuGet/login@v1

src/Graphify.Cli/Graphify.Cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackAsTool>true</PackAsTool>
77
<ToolCommandName>graphify</ToolCommandName>
88
<PackageId>graphify-dotnet</PackageId>
9-
<Version>0.6.1</Version>
9+
<Version>0.6.2</Version>
1010
<Description>AI-powered knowledge graph builder for codebases</Description>
1111
<Authors>Bruno Capuano</Authors>
1212
<PackageProjectUrl>https://github.com/elbruno/graphify-dotnet</PackageProjectUrl>

src/Graphify.Sdk/Graphify.Sdk.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,23 @@
22

33
<PropertyGroup>
44
<TargetFramework>net10.0</TargetFramework>
5+
<IsPackable>true</IsPackable>
6+
<PackageId>graphify-dotnet-sdk</PackageId>
7+
<Version>0.6.2</Version>
8+
<Description>GitHub Copilot SDK integration layer for graphify-dotnet.</Description>
9+
<Authors>Bruno Capuano</Authors>
10+
<PackageProjectUrl>https://github.com/elbruno/graphify-dotnet</PackageProjectUrl>
11+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
12+
<PackageReadmeFile>README.md</PackageReadmeFile>
13+
<PackageIcon>nuget_logo.png</PackageIcon>
14+
<RepositoryUrl>https://github.com/elbruno/graphify-dotnet</RepositoryUrl>
515
</PropertyGroup>
616

17+
<ItemGroup>
18+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
19+
<None Include="..\..\images\nuget_logo.png" Pack="true" PackagePath="\" />
20+
</ItemGroup>
21+
722
<ItemGroup>
823
<PackageReference Include="Azure.AI.OpenAI" Version="2.*" />
924
<PackageReference Include="GitHub.Copilot.SDK" Version="0.2.1" />

src/Graphify/Graphify.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,23 @@
33
<PropertyGroup>
44
<TargetFramework>net10.0</TargetFramework>
55
<InternalsVisibleTo>Graphify.Tests</InternalsVisibleTo>
6+
<IsPackable>true</IsPackable>
7+
<PackageId>graphify-dotnet-core</PackageId>
8+
<Version>0.6.2</Version>
9+
<Description>Core graph extraction, graph modeling, clustering, and export pipeline for graphify-dotnet.</Description>
10+
<Authors>Bruno Capuano</Authors>
11+
<PackageProjectUrl>https://github.com/elbruno/graphify-dotnet</PackageProjectUrl>
12+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
13+
<PackageReadmeFile>README.md</PackageReadmeFile>
14+
<PackageIcon>nuget_logo.png</PackageIcon>
15+
<RepositoryUrl>https://github.com/elbruno/graphify-dotnet</RepositoryUrl>
616
</PropertyGroup>
717

18+
<ItemGroup>
19+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
20+
<None Include="..\..\images\nuget_logo.png" Pack="true" PackagePath="\" />
21+
</ItemGroup>
22+
823
<ItemGroup>
924
<PackageReference Include="Microsoft.Extensions.AI" Version="10.*" />
1025
<PackageReference Include="QuikGraph" Version="2.*" />

0 commit comments

Comments
 (0)