Skip to content

Commit

Permalink
chore: use correct framework (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperk81 authored Sep 29, 2024
1 parent 49e95ba commit a5a3d59
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
dotnet-version: '8.0.x'

- name: Create Output Directory
run: mkdir -p '${{github.workspace}}/RTWLib_Tests/bin/Debug/netcoreapp8.0/resources'
run: mkdir -p '${{github.workspace}}/RTWLib_Tests/bin/Debug/net8.0/resources'

- name: Copy Resources
run: cp -r ./RTWLib_Tests/resources/. ${{ github.workspace }}/RTWLib_Tests/bin/Debug/netcoreapp8.0/resources/
run: cp -r ./RTWLib_Tests/resources/. ${{ github.workspace }}/RTWLib_Tests/bin/Debug/net8.0/resources/

- name: List build output
run: ls -R '${{github.workspace}}/RTWLib_Tests/bin/Debug/netcoreapp8.0'
run: ls -R '${{github.workspace}}/RTWLib_Tests/bin/Debug/net8.0'

- name: Log files
run: ls
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
dotnet-version: '8.0.x'

- name: Create Output Directory
run: mkdir -p '${{github.workspace}}/RTWLib_Tests/bin/Debug/netcoreapp8.0/resources'
run: mkdir -p '${{github.workspace}}/RTWLib_Tests/bin/Debug/net8.0/resources'

- name: Copy Resources
run: cp -r ./RTWLib_Tests/resources/. ${{ github.workspace }}/RTWLib_Tests/bin/Debug/netcoreapp8.0/resources/
run: cp -r ./RTWLib_Tests/resources/. ${{ github.workspace }}/RTWLib_Tests/bin/Debug/net8.0/resources/

- name: List build output
run: ls -R '${{github.workspace}}/RTWLib_Tests/bin/Debug/netcoreapp8.0'
run: ls -R '${{github.workspace}}/RTWLib_Tests/bin/Debug/net8.0'

- name: Log files
run: ls
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
uses: microsoft/setup-msbuild@v1.0.2

- name: Copy Resources
run: cp -r ./RTWLib_Tests/resources ./RTWLib_Tests/bin/Debug/netcoreapp8.0/resources
run: cp -r ./RTWLib_Tests/resources ./RTWLib_Tests/bin/Debug/net8.0/resources

- name: Log files
run: ls ./RTWLib_Tests/bin/Debug/netcoreapp8.0/
run: ls ./RTWLib_Tests/bin/Debug/net8.0/

- name: Restore packages
run: dotnet restore ./RTWLib_CLI/RTWLib_CLI.csproj
Expand Down
2 changes: 1 addition & 1 deletion RTWLibPlus/RTWLibPlus.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp8.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<DebugType Condition="'$(Configuration)' == 'Debug'">portable</DebugType>
<DebugType Condition="'$(Configuration)' != 'Debug'">none</DebugType>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion RTWLib_CLI/RTWLib_CLI.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp8.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>RTW-CLI-Randomiser</AssemblyName>
<Copyright>Copyright © 2023</Copyright>
<!-- x-release-please-start-version -->
Expand Down
2 changes: 1 addition & 1 deletion RTWLib_Tests/RTWLib_Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp8.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>

<IsPackable>false</IsPackable>

Expand Down

0 comments on commit a5a3d59

Please sign in to comment.