File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: Core CD
22
33on :
44 push :
5- tags : ' *'
5+ tags :
6+ - ' *'
67
78jobs :
89 release-nuget :
1112 - uses : actions/checkout@v4
1213 - uses : actions/setup-dotnet@v4
1314 with :
14- dotnet-version : ' 6 .x'
15+ dotnet-version : ' 9 .x'
1516
1617 - name : Fetch version
1718 run : echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: Interface CD
22
33on :
44 push :
5- tags : ' *'
5+ tags :
6+ - ' *'
67
78jobs :
89 build-interface :
1112 - uses : actions/checkout@v4
1213 - uses : actions/setup-dotnet@v4
1314 with :
14- dotnet-version : ' 6 .x'
15+ dotnet-version : ' 9 .x'
1516
1617 - name : Restore packages
1718 run : dotnet restore Interface/FEZRepacker.Interface.csproj
Original file line number Diff line number Diff line change @@ -2,8 +2,10 @@ name: Interface CI
22
33on :
44 push :
5- branches : ' **'
6- tags-ignore : ' **'
5+ branches :
6+ - ' **'
7+ tags-ignore :
8+ - ' **'
79 paths-ignore :
810 - ' .github/*'
911 - ' .github/workflows/**.yml'
2022 - uses : actions/checkout@v4
2123 - uses : actions/setup-dotnet@v4
2224 with :
23- dotnet-version : ' 6 .x'
25+ dotnet-version : ' 9 .x'
2426
2527 - name : Restore packages
2628 run : dotnet restore Interface/FEZRepacker.Interface.csproj
Original file line number Diff line number Diff line change 44 <OutputType >Exe</OutputType >
55 <TargetFramework >net6.0</TargetFramework >
66 <AssemblyName >$(SolutionName)</AssemblyName >
7+ <LangVersion >latest</LangVersion >
78
89 <ImplicitUsings >enable</ImplicitUsings >
910 <Nullable >enable</Nullable >
Original file line number Diff line number Diff line change 44 <TargetFramework >net6.0</TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
7+ <LangVersion >latest</LangVersion >
78
89 <IsPackable >false</IsPackable >
910 <IsTestProject >true</IsTestProject >
You can’t perform that action at this time.
0 commit comments