Skip to content

Commit 47dcb5d

Browse files
author
fabien.menager
committed
Fix pack and prerelease workflow
1 parent a317fcb commit 47dcb5d

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
dotnet-version: 10.0.x
5050
- name: Pack
5151
run: |
52-
dotnet pack -v normal -c Debug --include-symbols --include-source -p:PackageVersion=4.0.0-pre-$GITHUB_RUN_ID -o nupkg
52+
dotnet pack -v normal -c Debug --include-symbols --include-source -p:PackageVersion=5.0.0-pre-$GITHUB_RUN_ID -o nupkg
5353
- name: Push to GitHub Feed
5454
run: |
5555
for f in ./nupkg/*.nupkg

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
uses: actions/setup-dotnet@v5
2828
with:
2929
dotnet-version: 10.0.x
30-
include-prerelease: True
3130
- name: Create Release NuGet package
3231
run: |
3332
arrTag=(${GITHUB_REF//\// })

src/EntityFrameworkCore.Projectables.Abstractions/EntityFrameworkCore.Projectables.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ItemGroup>
1717
<!-- Package the generator in the analyzer directory of the nuget package -->
18-
<None Include="$(OutputPath)\EntityFrameworkCore.Projectables.Generator.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
18+
<None Include="..\EntityFrameworkCore.Projectables.Generator\bin\$(Configuration)\netstandard2.0\EntityFrameworkCore.Projectables.Generator.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

0 commit comments

Comments
 (0)