Skip to content

Commit

Permalink
try with net6 and list dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xFirekeeper committed Mar 26, 2024
1 parent 8f28783 commit 010b6d7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/dotnet-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
6.0.x
- name: List directory contents
run: ls -la ./Thirdweb/bin/Release/

- name: Display Directory.Build.props
run: cat Directory.Build.props

- name: Restore dependencies
run: dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x"
dotnet-version: "6.0.x"

- name: Restore dependencies
run: dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.Props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<DefaultVersion>0.0.0</DefaultVersion>
<DefaultTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;</DefaultTargetFrameworks>
<DefaultTargetFrameworks>net6.0</DefaultTargetFrameworks>
</PropertyGroup>
<PropertyGroup Label="C#">
<LangVersion>latest</LangVersion>
Expand Down

0 comments on commit 010b6d7

Please sign in to comment.