Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,11 @@ jobs:
dotnet pack hub/sdks/dotnet/TickerQ.SDK/TickerQ.SDK.csproj --configuration Release --output ./nupkgs
dotnet pack hub/remoteExecutor/TickerQ.RemoteExecutor/TickerQ.RemoteExecutor.csproj --configuration Release --output ./nupkgs

- name: Show .nupkg file sizes
- name: Show package file sizes
run: |
echo "📦 Package sizes:"
for pkg in ./nupkgs/*.nupkg; do
size=$(du -h "$pkg" | cut -f1)
echo " - $(basename "$pkg"): $size"
for pkg in ./nupkgs/*.nupkg ./nupkgs/*.snupkg; do
[ -f "$pkg" ] && size=$(du -h "$pkg" | cut -f1) && echo " - $(basename "$pkg"): $size"
done

- name: Upload nupkgs artifact
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ jobs:
continue-on-error: true
run: |
for f in ./nupkgs/*.nupkg; do
echo "📦 Pushing $(basename "$f")..."
dotnet nuget push "$f" \
--source https://api.nuget.org/v3/index.json \
--api-key ${{ secrets.NUGET_API_KEY }} \
--skip-duplicate
done

- name: Publish symbols to NuGet
continue-on-error: true
run: |
for f in ./nupkgs/*.snupkg; do
[ -f "$f" ] || continue
echo "🔗 Pushing symbols $(basename "$f")..."
dotnet nuget push "$f" \
--source https://api.nuget.org/v3/index.json \
--api-key ${{ secrets.NUGET_API_KEY }} \
Expand Down
5 changes: 3 additions & 2 deletions .sync-exclude
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ src/TickerQ.EntityFrameworkCore/Infrastructure/MappingExtensions.cs
src/TickerQ.EntityFrameworkCore/Infrastructure/BasePersistenceProvider.cs
src/TickerQ.EntityFrameworkCore/Infrastructure/TickerQueryExtensions.cs

# Solution file — main uses .slnx (net10+), older branches use .sln
TickerQ.sln
# Solution files — main uses .slnx (net10+), older branches use .sln
TickerQ.slnx
src/src.sln
7 changes: 5 additions & 2 deletions TickerQ.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,15 @@
<Project Path="src/TickerQ.Dashboard/TickerQ.Dashboard.csproj" />
<Project Path="src/TickerQ.EntityFrameworkCore/TickerQ.EntityFrameworkCore.csproj" />
<Project Path="src/TickerQ.Instrumentation.OpenTelemetry/TickerQ.Instrumentation.OpenTelemetry.csproj" />
<Project Path="hub/remoteExecutor/TickerQ.RemoteExecutor/TickerQ.RemoteExecutor.csproj" />
<Project Path="hub/sdks/dotnet/TickerQ.SDK/TickerQ.SDK.csproj" />
<Project Path="src/TickerQ.SourceGenerator/TickerQ.SourceGenerator.csproj" />
<Project Path="src/TickerQ.Utilities/TickerQ.Utilities.csproj" />
<Project Path="src/TickerQ/TickerQ.csproj" />
</Folder>
<Folder Name="/hub/">
<File Path="hub/Directory.Build.props" />
<Project Path="hub/remoteExecutor/TickerQ.RemoteExecutor/TickerQ.RemoteExecutor.csproj" />
<Project Path="hub/sdks/dotnet/TickerQ.SDK/TickerQ.SDK.csproj" />
</Folder>
<Folder Name="/tests/">
<Project Path="tests/TickerQ.EntityFrameworkCore.Tests/TickerQ.EntityFrameworkCore.Tests.csproj" />
<Project Path="tests/TickerQ.Tests/TickerQ.Tests.csproj" />
Expand Down
12 changes: 12 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,23 @@
<DotNetVersion>[10.0.0,11.0.0)</DotNetVersion>
<DotNetAbstractionsVersion>[10.0.0,11.0.0)</DotNetAbstractionsVersion>
<LangVersion>default</LangVersion>

<!-- Source Link -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\icon.jpg" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All" />
</ItemGroup>

<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
</Project>
72 changes: 0 additions & 72 deletions src/src.sln

This file was deleted.

Loading