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
8 changes: 4 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ jobs:
run: mkdir ~/nuget

- name: Restore solution
run: dotnet restore src/Core.FlatCollections.slnx
run: dotnet restore

- name: Build solution
run: dotnet build src/Core.FlatCollections.slnx --no-restore -c Release
run: dotnet build --no-restore -c Release

- name: Test solution
run: dotnet test src/Core.FlatCollections.slnx --no-restore -c Release
run: dotnet test --no-restore -c Release

- name: Pack solution
run: dotnet pack src/Core.FlatCollections.slnx --no-restore -o ~/nuget -c Release
run: dotnet pack --no-restore -o ~/nuget -c Release

- name: Push Packages
if: ${{ github.event_name == 'release' }}
Expand Down
15 changes: 15 additions & 0 deletions Core.FlatCollections.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Solution>
<Folder Name="/.sln/">
<File Path="./.github/workflows/dotnet.yml" />
<File Path="./LICENSE" />
<File Path="./.gitignore" />
<File Path="./README.md" />
</Folder>
<Folder Name="/flatcollections-array/">
<Project Path="src/flatcollections-array/FlatArray.Tests/FlatArray.Tests.csproj" />
<Project Path="src/flatcollections-array/FlatArray/FlatArray.csproj" />
</Folder>
<Folder Name="/flatcollections/">
<Project Path="src/flatcollections/FlatCollections/FlatCollections.csproj" />
</Folder>
</Solution>
15 changes: 0 additions & 15 deletions src/Core.FlatCollections.slnx

This file was deleted.

2 changes: 1 addition & 1 deletion src/flatcollections-array/FlatArray/FlatArray.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<Description>PrimeFuncPack Core.FlatArray is a core library for .NET consisting of immutable FlatArray targeted for use in functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.FlatArray</AssemblyName>
<Version>1.5.2-preview.1</Version>
<Version>1.5.2-rc.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/flatcollections/FlatCollections/FlatCollections.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<Description>PrimeFuncPack Core.FlatCollections is a set of immutable Flat collections for .NET designed for developing business applications based on functional programming.</Description>
<RootNamespace>System</RootNamespace>
<AssemblyName>PrimeFuncPack.Core.FlatCollections</AssemblyName>
<Version>1.5.2-preview.1</Version>
<Version>1.5.2-rc.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down