Skip to content

Commit

Permalink
NET9
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Nov 13, 2024
1 parent 519d060 commit e5ec054
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-core-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3.2.0
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: windows-latest
steps:
- name: 'Download Artifact'
uses: actions/[email protected].7
uses: actions/[email protected].8
with:
name: artifactory_Release
- name: 'Dotnet NuGet Push'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net8.0-windows;net6.0-windows;net48</TargetFrameworks>
<TargetFrameworks>net9.0-windows;net8.0-windows;net48</TargetFrameworks>
<Authors>CAMAG</Authors>
<Company>CAMAG</Company>
<Product>Analogy.LogViewer.LoggersTree</Product>
<PackageId>Analogy.LogViewer.LoggersTree</PackageId>
<IncludeSymbols>true</IncludeSymbols>
<Copyright>CAMAG © 2023-2024</Copyright>
<Copyright>CAMAG © 2023-2025</Copyright>
<PackageProjectUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.LoggersTree</PackageProjectUrl>
<RepositoryUrl>https://github.com/Analogy-LogViewer/Analogy.LogViewer.LoggersTree</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl />
<Description>Loggers tree extension</Description>
<VersionPrefix>4.0.0</VersionPrefix>
<VersionPrefix>4.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
</PropertyGroup>

Expand Down Expand Up @@ -49,10 +49,10 @@
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Analogy.CommonUtilities" Version="7.0.0" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="7.0.0.1" />
<PackageReference Include="Analogy.LogViewer.Template" Version="7.0.0" />
<PackageReference Include="System.Resources.Extensions" Version="8.0.0" />
<PackageReference Include="Analogy.CommonUtilities" Version="7.1.0" />
<PackageReference Include="Analogy.LogViewer.Interfaces" Version="7.1.0" />
<PackageReference Include="Analogy.LogViewer.Template" Version="7.1.0" />
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand All @@ -62,7 +62,7 @@
</None>
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0-windows' or '$(TargetFramework)' == 'net7.0-windows' or '$(TargetFramework)' == 'net8.0-windows' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0-windows' or '$(TargetFramework)' == 'net9.0-windows' ">
<Reference Include="DevExpress.Utils.v21.2">
<HintPath>..\DevExpress\.net core\DevExpress.Utils.v21.2.dll</HintPath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Meziantou.Analyzer" Version="2.0.163">
<PackageReference Include="Meziantou.Analyzer" Version="2.0.179">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand All @@ -52,7 +52,7 @@
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit e5ec054

Please sign in to comment.