Skip to content

Commit

Permalink
NET9
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai-Intuitive committed Nov 13, 2024
1 parent bbe2d78 commit 4781a0c
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install .NET Core
uses: actions/[email protected]
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
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0-windows</TargetFrameworks>
<TargetFrameworks>net8.0-windows</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
</ItemGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions Analogy.Interfaces/Analogy.Interfaces.csproj
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>
<UseWindowsForms>true</UseWindowsForms>
<Description>Interfaces assembly for creating custom data providers for Analogy Log Viewer</Description>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageProjectUrl>https://github.com/Analogy-LogViewer/Analogy.Interfaces</PackageProjectUrl>
<AssemblyName>Analogy.Interfaces</AssemblyName>
<RootNamespace>Analogy.Interfaces</RootNamespace>
<PackageId>Analogy.LogViewer.Interfaces</PackageId>
<VersionPrefix>7.0.0.1</VersionPrefix>
<VersionPrefix>7.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Lior Banai</Authors>
<Product>Analogy.LogViewer.Interfaces</Product>
<Copyright>Lior Banai @ 2018-2024</Copyright>
<Copyright>Lior Banai 2018-2025</Copyright>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Analogy-LogViewer/Analogy.Interfaces</RepositoryUrl>
<Company>Analogy.LogViewer</Company>
Expand All @@ -26,7 +26,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Analogy.Interfaces.DataTypes" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="System.Resources.Extensions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Analogy.Types/Analogy.Interfaces.DataTypes.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net6.0;net48</TargetFrameworks>
<TargetFrameworks>net9.0;net8.0;net48</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Description>Data Types assembly for creating custom data providers for Analogy Log Viewer</Description>
Expand All @@ -10,10 +10,10 @@
<AssemblyName>Analogy.Interfaces.DataTypes</AssemblyName>
<RootNamespace>Analogy.Interfaces.DataTypes</RootNamespace>
<PackageId>Analogy.Interfaces.DataTypes</PackageId>
<VersionPrefix>1.0.0.0</VersionPrefix>
<VersionPrefix>1.1.0</VersionPrefix>
<Authors>Lior Banai</Authors>
<Product>Analogy.Interfaces.DataTypes</Product>
<Copyright>Lior Banai @ 2024</Copyright>
<Copyright>Lior Banai 2024-2025</Copyright>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Analogy-LogViewer/Analogy.Interfaces</RepositoryUrl>
<Company>Analogy.LogViewer</Company>
Expand Down
3 changes: 2 additions & 1 deletion Analogy.Types/AnalogyLogMessage.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
#pragma warning disable SA1402
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Meziantou.Analyzer" Version="2.0.178">
<PackageReference Include="Meziantou.Analyzer" Version="2.0.179">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand All @@ -50,8 +50,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' or '$(TargetFramework)' == 'net471' ">
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<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 4781a0c

Please sign in to comment.