Skip to content

Commit

Permalink
Migrate to .NET 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daniil-tr committed Dec 15, 2023
1 parent 7109a0c commit 72b5704
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# <img src="https://uploads-ssl.webflow.com/5ea5d3315186cf5ec60c3ee4/5edf1c94ce4c859f2b188094_logo.svg" alt="Pip.Services Logo" width="200"> <br/> Component Definitions for .NET Changelog

## <a name="3.6.0"></a> 3.6.0 (2023-12-15)

### Breaking Changes
* Migrate to .NET 8.0

## <a name="3.5.0"></a> 3.5.0 (2022-08-04)

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pip-services3-components-dotnet",
"type": "module",
"language": "dotnet",
"version": "3.5.0",
"version": "3.6.0",
"build": 0,
"registry": "pipservices",
"artifacts": [
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0
FROM mcr.microsoft.com/dotnet/sdk:8.0

# set working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0
FROM mcr.microsoft.com/dotnet/sdk:8.0

# set working directory
WORKDIR /app
Expand Down
4 changes: 0 additions & 4 deletions pip-services3-components-dotnet.sln
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ Global
{842DE1DF-4B19-423C-AA41-24B0E648245C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{842DE1DF-4B19-423C-AA41-24B0E648245C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{842DE1DF-4B19-423C-AA41-24B0E648245C}.Release|Any CPU.Build.0 = Release|Any CPU
{D2E5951F-4B6F-469D-8835-A2C1358B9D24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D2E5951F-4B6F-469D-8835-A2C1358B9D24}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2E5951F-4B6F-469D-8835-A2C1358B9D24}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2E5951F-4B6F-469D-8835-A2C1358B9D24}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
12 changes: 6 additions & 6 deletions src/src.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0;net8.0</TargetFrameworks>
<AssemblyName>PipServices3.Components</AssemblyName>
<RootNamespace>PipServices3.Components</RootNamespace>
<ApplicationIcon />
<Win32Resource />
<Version>3.5.0</Version>
<Version>3.6.0</Version>
<Authors>Sergey Seroukhov, Volodymyr Tkachenko, Alex Mazur, Andrew Harrington, Alexey Dvoykin, Danyil Tretiakov</Authors>
<Copyright>Conceptual Vision Consulting LLC. 2017-2022</Copyright>
<Copyright>Conceptual Vision Consulting LLC. 2017-2024</Copyright>
<Description>Component definitions for Pip.Services in .NET</Description>
<Company>Conceptual Vision Consulting LLC.</Company>
<Product>PipServices3.Components</Product>
Expand All @@ -25,8 +25,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Handlebars.Net" Version="2.0.9" />
<PackageReference Include="YamlDotNet" Version="11.2.1" />
<PackageReference Include="PipServices3.Commons" Version="3.4.0" />
<PackageReference Include="Handlebars.Net" Version="2.1.4" />
<PackageReference Include="YamlDotNet" Version="13.7.1" />
<PackageReference Include="PipServices3.Commons" Version="3.5.0" />
</ItemGroup>
</Project>
11 changes: 7 additions & 4 deletions test/test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyName>PipServices3.Components.Test</AssemblyName>
<RootNamespace>PipServices3.Components</RootNamespace>
Expand All @@ -13,9 +13,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 72b5704

Please sign in to comment.