Skip to content

Commit

Permalink
.net
Browse files Browse the repository at this point in the history
  • Loading branch information
KSemenenko committed Dec 10, 2024
1 parent 17342fc commit d60a217
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 14 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

# run build and test
- name: Restore dependencies
Expand Down Expand Up @@ -53,15 +53,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

- name: NDepend
uses: ndepend/ndepend-action@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
license: ${{ secrets.NDEPENDLICENSE }}
coveragefolder: ${{ github.workspace }}/coverage/
baseline: main_recent
retention-days: 15

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
dotnet-version: '9.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
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<LangVersion>12</LangVersion>
<LangVersion>13</LangVersion>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0;</TargetFrameworks>
<IsPackable>true</IsPackable>
<DebugType>embedded</DebugType>
<RootNamespace>ManagedCode.Communication.Extensions</RootNamespace>
Expand Down
2 changes: 1 addition & 1 deletion ManagedCode.Communication/ManagedCode.Communication.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<IsPackable>true</IsPackable>
<DebugType>embedded</DebugType>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0;</TargetFrameworks>
</PropertyGroup>

<!--NuGet-->
Expand Down

0 comments on commit d60a217

Please sign in to comment.