Skip to content

Commit

Permalink
Get .Net framework from global.json, autoupdate
Browse files Browse the repository at this point in the history
  • Loading branch information
James A Sutherland committed Feb 4, 2025
1 parent ce41fca commit 82fa811
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,9 @@ updates:
open-pull-requests-limit: 99
reviewers:
- SMI/reviewers
- package-ecosystem: "dotnet-sdk"
directory: "/"
schedule:
interval: weekly
reviewers:
- SMI/reviewers
1 change: 1 addition & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
repository: HicServices/RDMP
ref: develop
path: RDMP
- uses: actions/setup-dotnet@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
ref: develop
path: RDMP
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Get version
id: version
shell: cmd
Expand Down
2 changes: 1 addition & 1 deletion Rdmp.Dicom.Tests/Rdmp.Dicom.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<RootNamespace>Rdmp.Dicom.Tests</RootNamespace>
<AssemblyName>Rdmp.Dicom.Tests</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net$(NETCoreAppMaximumVersion)</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Rdmp.Dicom.UI/Rdmp.Dicom.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<RootNamespace>Rdmp.Dicom.UI</RootNamespace>
<AssemblyName>Rdmp.Dicom.UI</AssemblyName>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net$(NETCoreAppMaximumVersion)-windows</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
Expand Down
2 changes: 1 addition & 1 deletion Rdmp.Dicom/Rdmp.Dicom.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PackageId>HIC.Rdmp.Dicom</PackageId>
<RootNamespace>Rdmp.Dicom</RootNamespace>
<AssemblyName>Rdmp.Dicom</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net$(NETCoreAppMaximumVersion)</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit 82fa811

Please sign in to comment.