Skip to content

Commit 4a0a467

Browse files
committed
Fix package build
1 parent 79948ae commit 4a0a467

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup dotnet 8.0
1919
uses: actions/setup-dotnet@v1
2020
with:
21-
dotnet-version: '8.0.6'
21+
dotnet-version: '8.0.204'
2222
- name: Build and Test
2323
run: ./Build.ps1
2424
shell: pwsh

Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ exec { & dotnet build -c Release }
3232

3333
exec { & dotnet test -c Release --no-build -l trx --verbosity=normal }
3434

35-
# exec { & dotnet pack .\src\Fraktalio\Fraktalio.csproj -c Release -o $artifacts --no-build }
35+
exec { & dotnet pack .\src\Fraktalio.FModel\Fraktalio.FModel.csproj -c Release -o $artifacts --no-build }
3636

src/Fraktalio.FModel/Fraktalio.FModel.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
<ProjectReference Include="..\Fraktalio.FModel.Contracts\Fraktalio.FModel.Contracts.csproj"/>
1212
</ItemGroup>
1313

14+
<ItemGroup>
15+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
16+
</ItemGroup>
17+
1418
<ItemGroup>
1519
<PackageReference Include="Microsoft.SourceLink.GitHub">
1620
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)