Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
devedse committed Jan 21, 2023
1 parent 40badf4 commit 18eee5e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/githubactionsbuilds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core @ Latest
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- uses: actions/setup-java@v3
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
with:
fetch-depth: 0 # We need to fetch the entire Git history in order to verify the authenticity.
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Build with dotnet
Expand All @@ -83,7 +83,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: dotnet restore
Expand All @@ -99,7 +99,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core @ Latest
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: dotnet restore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public class DeveImageOptimizerConfiguration
/// </summary>
public bool VerifyImageAfterEveryOptimizationStep { get; set; } = false;

public bool OptimizePng { get; set; } = true;
public bool OptimizeJpg { get; set; } = true;
public bool OptimizePng { get; set; } = true;
public bool OptimizeGif { get; set; } = true;
public bool OptimizeBmp { get; set; } = true;
}
Expand Down

0 comments on commit 18eee5e

Please sign in to comment.