Skip to content

Commit 0092cac

Browse files
committed
Upgrade projects to .NET 10.0 framework
Updated the target framework for multiple projects from `net8.0` to `net10.0` to leverage the latest features and improvements in the .NET ecosystem. The following projects were updated: - MigrationTools.Clients.AzureDevops.Rest.csproj - MigrationTools.Clients.FileSystem.csproj - MigrationTools.ConsoleCore.csproj - MigrationTools.ConsoleDataGenerator.csproj - MigrationTools.Host.csproj - MigrationTools.Telemetery.csproj - MigrationTools.csproj Maintained compatibility with `netstandard2.0` where applicable. No changes were made to additional metadata or properties.
1 parent 40c1462 commit 0092cac

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/MigrationTools.Clients.AzureDevops.Rest/MigrationTools.Clients.AzureDevops.Rest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net10.0</TargetFrameworks>
55
<Product>MigrationTools.Clients.AzureDevops.Rest</Product>
66
</PropertyGroup>
77

src/MigrationTools.Clients.FileSystem/MigrationTools.Clients.FileSystem.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net10.0</TargetFrameworks>
55
<Product>MigrationTools.Sinks.FileSystem</Product>
66
<RootNamespace>MigrationTools</RootNamespace>
77
</PropertyGroup>

src/MigrationTools.ConsoleCore/MigrationTools.ConsoleCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<Product>Azure DevOps Migration Tools [REST API]</Product>
77
<AssemblyName>devopsmigration</AssemblyName>
88
</PropertyGroup>

src/MigrationTools.ConsoleDataGenerator/MigrationTools.ConsoleDataGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

src/MigrationTools.Host/MigrationTools.Host.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net10.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

src/MigrationTools.Telemetery/MigrationTools.Telemetery.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>

src/MigrationTools/MigrationTools.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net10.0</TargetFrameworks>
55
<Product>Azure DevOps Migration Tools API</Product>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<Description>Reference API for creating plugins for the Azure DevOps Migration Tools</Description>

0 commit comments

Comments
 (0)