Skip to content

Commit

Permalink
Merge pull request #195 from andredered/to_v6_fix
Browse files Browse the repository at this point in the history
To v6 update fix travis errors
  • Loading branch information
fgather authored Nov 10, 2022
2 parents 8763612 + 3d9a3ec commit ca0091e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ solution: ArchUnit.sln
jobs:
include:
- stage: linux_build
dotnet: 6.0.402
dotnet: 6.0.110
mono: none
os: linux
script: chmod +x ./Travis/test_linux.sh && ./Travis/test_linux.sh
dist: focal
script:
- chmod +x ./Travis/test_linux.sh && ./Travis/test_linux.sh
before_deploy:
- sudo apt-get install doxygen doxygen-doc graphviz
deploy:
Expand Down
2 changes: 1 addition & 1 deletion ArchUnitNET.MSTestV2Tests/ArchUnitNET.MSTestV2Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>

<IsPackable>false</IsPackable>

Expand Down
2 changes: 1 addition & 1 deletion ArchUnitNET.NUnitTests/ArchUnitNET.NUnitTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>

<IsPackable>false</IsPackable>

Expand Down
2 changes: 1 addition & 1 deletion ArchUnitNETTests/ArchUnitNETTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Company>TNG Technology Consulting GmbH</Company>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down
2 changes: 1 addition & 1 deletion ExampleTest/ExampleTest.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Company>TNG Technology Consulting GmbH</Company>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion Travis/test_linux.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
set -ev
dotnet test -c Debug --framework net5.0
dotnet test -c Debug --framework net6.0
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.402",
"version": "6.0.110",
"rollForward": "latestMajor",
"allowPrerelease": true
}
Expand Down

0 comments on commit ca0091e

Please sign in to comment.