From 6cbf5066eacba5b7c9f8d830de706845eb6c750d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Pa=C5=A1ko?= <patrik.pasko@twinzo.eu> Date: Tue, 26 Mar 2024 08:54:10 +0000 Subject: [PATCH] Fix header changing --- .gitlab-ci.yml | 2 +- Main/Main.csproj | 2 +- README.md | 2 +- SDK/SDK.csproj | 2 +- Test/Test/Test.csproj | 10 +++++----- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e559566..a9165db 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image : mcr.microsoft.com/dotnet/sdk:6.0 +image : mcr.microsoft.com/dotnet/sdk:8.0 stages: - build diff --git a/Main/Main.csproj b/Main/Main.csproj index 7726969..246431a 100644 --- a/Main/Main.csproj +++ b/Main/Main.csproj @@ -2,7 +2,7 @@ <PropertyGroup> <OutputType>Exe</OutputType> - <TargetFramework>net6.0</TargetFramework> + <TargetFramework>net8.0</TargetFramework> <AssemblyVersion>2021.6.22.8</AssemblyVersion> <FileVersion>2021.6.22.8</FileVersion> <Version>1.0</Version> diff --git a/README.md b/README.md index af82d3c..bf4604c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Twinzo C# development kit -.NET 5 SDK for digital twin developers used to connect your C# code with twinzo platform. +.NET 8 SDK for digital twin developers used to connect your C# code with twinzo platform. Providing whole API Endpoint communication methods and data contracts for easy serialization and transporting. diff --git a/SDK/SDK.csproj b/SDK/SDK.csproj index c90f3e3..5a491a4 100644 --- a/SDK/SDK.csproj +++ b/SDK/SDK.csproj @@ -2,7 +2,7 @@ <PropertyGroup> <PackageId>tDevKit</PackageId> - <TargetFramework>net6.0</TargetFramework> + <TargetFramework>net8.0</TargetFramework> <AssemblyVersion>2021.6.28.25</AssemblyVersion> <FileVersion>2021.6.28.25</FileVersion> <Version>4.10.0</Version> diff --git a/Test/Test/Test.csproj b/Test/Test/Test.csproj index d0741be..b2c38d4 100644 --- a/Test/Test/Test.csproj +++ b/Test/Test/Test.csproj @@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <TargetFramework>net6.0</TargetFramework> + <TargetFramework>net8.0</TargetFramework> <IsPackable>false</IsPackable> @@ -11,10 +11,10 @@ </PropertyGroup> <ItemGroup> - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" /> - <PackageReference Include="MSTest.TestAdapter" Version="2.2.7" /> - <PackageReference Include="MSTest.TestFramework" Version="2.2.7" /> - <PackageReference Include="WireMock.Net" Version="1.4.26" /> + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" /> + <PackageReference Include="MSTest.TestAdapter" Version="3.2.2" /> + <PackageReference Include="MSTest.TestFramework" Version="3.2.2" /> + <PackageReference Include="WireMock.Net" Version="1.5.49" /> </ItemGroup> <ItemGroup> -- GitLab