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
5 changes: 2 additions & 3 deletions .github/nuke/build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,10 @@ string GetVersion()

PackagesDirectory.CreateOrCleanDirectory();

// Pack projects that are marked as packable
// Pack only the main client project
var packableProjects = new[]
{
RootDirectory / "AppifySheets.TBC.IntegrationService.Client" / "AppifySheets.TBC.IntegrationService.Client.csproj",
RootDirectory / "AppifySheets.Immutable.BankIntegrationTypes" / "AppifySheets.Immutable.BankIntegrationTypes.csproj"
RootDirectory / "AppifySheets.TBC.IntegrationService.Client" / "AppifySheets.TBC.IntegrationService.Client.csproj"
};

DotNetPack(s => s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,13 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>

<!-- NuGet Package Metadata -->
<PackageId>AppifySheets.Immutable.BankIntegrationTypes</PackageId>
<!-- Version is inherited from Directory.Build.props which reads from VERSION file -->
<Description>Immutable bank integration types and value objects for TBC IntegrationService Client. Provides strongly-typed, immutable data structures for bank accounts, currencies, and periods.</Description>
<PackageTags>TBC;Bank;Immutable;Types;ValueObjects;Banking</PackageTags>
<!-- Repository info and other metadata inherited from Directory.Build.props -->

<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>

<!-- Mark as packable to create NuGet package -->
<IsPackable>true</IsPackable>
<!-- This is an internal library, not a separate NuGet package -->
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CSharpFunctionalExtensions" Version="*" />
<PackageReference Include="JetBrains.Annotations" Version="*" />
</ItemGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\icon.png" Pack="true" PackagePath="\" Condition="Exists('..\icon.png')" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
Loading