Skip to content

Commit

Permalink
fix: try fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasMH committed Nov 24, 2024
1 parent b2bbcbf commit 34da31c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0"
dotnet-version: "9.0.100"
cache: true
cache-dependency-path: src/ToMqttNet/packages.lock.json
- name: Restore
run: dotnet restore
run: dotnet restore --locked-mode
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0"
dotnet-version: "9.0.100"
cache: true
cache-dependency-path: src/ToMqttNet/packages.lock.json
- name: Create Release NuGet package
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<PublishAot>true</PublishAot>

<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>

<Version>0.1.4</Version>
<Authors>JonasMH</Authors>
Expand Down
1 change: 1 addition & 0 deletions src/ToMqttNet/ToMqttNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<IncludeSymbols>true</IncludeSymbols>

<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>

<Version>0.1.4</Version>
<Authors>JonasMH</Authors>
Expand Down
1 change: 1 addition & 0 deletions test/ToMqttNet.Test.Unit/ToMqttNet.Test.Unit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 34da31c

Please sign in to comment.