Skip to content

Commit

Permalink
#743 - Upgrade to .NET 8.
Browse files Browse the repository at this point in the history
  • Loading branch information
sys27 committed Nov 15, 2023
1 parent c0fed1a commit 2b90594
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 44 deletions.
4 changes: 2 additions & 2 deletions CI/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:

steps:
- task: UseDotNet@2
displayName: 'Install .NET 7'
displayName: 'Install .NET 8'
inputs:
packageType: 'sdk'
version: '7.0.x'
version: '8.0.x'

- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PackageVersion Include="NUnit.Analyzers" Version="3.9.0" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.507" />
<PackageVersion Include="System.Collections.Immutable" Version="7.0.0" />
<PackageVersion Include="System.Collections.Immutable" Version="8.0.0" />
<PackageVersion Include="CommandLineParser" Version="2.9.1" />
<PackageVersion Include="BenchmarkDotNet" Version="0.13.10" />
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion xFunc.Benchmark/xFunc.Benchmark.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
2 changes: 1 addition & 1 deletion xFunc.Cli/xFunc.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<PackAsTool>true</PackAsTool>
<ToolCommandName>xfunc</ToolCommandName>
Expand Down
2 changes: 1 addition & 1 deletion xFunc.Tests/xFunc.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<IsPackable>false</IsPackable>
<RootNamespace>xFunc.Tests</RootNamespace>
Expand Down
6 changes: 0 additions & 6 deletions xFunc.TrimTest/Program.cs

This file was deleted.

22 changes: 0 additions & 22 deletions xFunc.TrimTest/xFunc.TrimTest.csproj

This file was deleted.

14 changes: 4 additions & 10 deletions xFunc.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CI", "CI", "{7D6A31E3-42CF-49E7-A0D2-657A460388BC}"
ProjectSection(SolutionItems) = preProject
CI\azure-pipelines.yml = CI\azure-pipelines.yml
CI\codecov.yml = CI\codecov.yml
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xFunc.TrimTest", "xFunc.TrimTest\xFunc.TrimTest.csproj", "{C487368F-E25F-4EF6-B6F7-4485205E36E7}"
ProjectSection(SolutionItems) = preProject
CI\azure-pipelines.yml = CI\azure-pipelines.yml
CI\codecov.yml = CI\codecov.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -52,10 +50,6 @@ Global
{EC5FB562-9BFE-4BD9-A3E4-666D3021AF1F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EC5FB562-9BFE-4BD9-A3E4-666D3021AF1F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EC5FB562-9BFE-4BD9-A3E4-666D3021AF1F}.Release|Any CPU.Build.0 = Release|Any CPU
{C487368F-E25F-4EF6-B6F7-4485205E36E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C487368F-E25F-4EF6-B6F7-4485205E36E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C487368F-E25F-4EF6-B6F7-4485205E36E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C487368F-E25F-4EF6-B6F7-4485205E36E7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 2b90594

Please sign in to comment.