-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to .NET8 / Updated Newtonsoft.Json to 13.0.3
- Loading branch information
Showing
11 changed files
with
47 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 4 additions & 8 deletions
12
Source/DeviceConfigurationToGsmCommunication/DeviceConfigurationToGsmCommunication.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> | ||
<Version>1.0.272-alpha</Version> | ||
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks> | ||
<Version>3.24.0</Version> | ||
<Company>KELLER Druckmesstechnik AG</Company> | ||
<Authors>KELLER Druckmesstechnik AG</Authors> | ||
<Copyright>Copyright 2022 (c) KELLER Pressure AG. All rights reserved.</Copyright> | ||
<RepositoryUrl>https://github.com/KELLERAGfuerDruckmesstechnik/KellerAg.Shared.IoT.Converters</RepositoryUrl> | ||
<PackageProjectUrl>https://docs.kolibricloud.ch/sending-technology/converter-library</PackageProjectUrl> | ||
<PackageProjectUrl>https://docs.pressuresuite.com/sending-technology/converter-library</PackageProjectUrl> | ||
<Description>Used by KellerAg.Shared.IoT.Converters</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\KellerAg.Shared.Entities\KellerAg.Shared.Entities.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
12 changes: 4 additions & 8 deletions
12
...ce/DeviceConfigurationToPayloadInformation/DeviceConfigurationToPayloadInformation.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> | ||
<Version>1.0.272-alpha</Version> | ||
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks> | ||
<Version>3.24.0</Version> | ||
<Company>KELLER Druckmesstechnik AG</Company> | ||
<Authors>Sebastian Mojado</Authors> | ||
<Copyright>Copyright 2022 (c) KELLER Pressure AG. All rights reserved.</Copyright> | ||
<Description>Used by KellerAg.Shared.IoT.Converters</Description> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\KellerAg.Shared.Entities\KellerAg.Shared.Entities.csproj" /> | ||
<ProjectReference Include="..\KellerAg.Shared.LoRaPayloadConverter\KellerAg.Shared.LoRaPayloadConverter.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 12 additions & 16 deletions
28
Source/GsmCommunicationToJson/GsmCommunicationToJson.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> | ||
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks> | ||
<!-- The identifier that must be unique within the hosting gallery --> | ||
<PackageId>KellerAg.Cloud.GsmCommunicationToJson</PackageId> | ||
<!-- The package version number that is used when resolving dependencies --> | ||
<PackageVersion>1.0.42.0</PackageVersion> | ||
<PackageVersion>3.24.0.0</PackageVersion> | ||
<!-- Authors contain text that appears directly on the gallery --> | ||
<authors>Sebastian Mojado</authors> | ||
<!-- The description can be used in package manager UI. Note that the nuget.org gallery uses information you add in the portal. --> | ||
<Description>This library is used to convert Messages in the Keller AG GSM/ARC format to JSON.</Description> | ||
<Description>This library is used to convert messages in the KELLER AG GSM/ARC format to JSON.</Description> | ||
<!-- If true, this value prompts the user to accept the license when installing the package. --> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageReleaseNotes></PackageReleaseNotes> | ||
<Copyright>Copyright 2020 (c) Keller AG. All rights reserved.</Copyright> | ||
<PackageTags></PackageTags> | ||
<PackageReleaseNotes> | ||
</PackageReleaseNotes> | ||
<PackageTags> | ||
</PackageTags> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<!-- this hack (which generates warnings) is required for the variable $(TargetDir) to work in the post build event --> | ||
<!-- see https://github.com/dotnet/project-system/issues/1569 --> | ||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> | ||
|
||
<PropertyGroup> | ||
<Product>KellerAg.Cloud.GsmCommunicationToJson</Product> | ||
<Version>1.0.272-alpha</Version> | ||
<AssemblyVersion>1.0.272.0</AssemblyVersion> | ||
<FileVersion>1.0.272.0</FileVersion> | ||
<Product>KellerAg.Cloud.GsmCommunicationToJson</Product> | ||
<Version>3.24.0</Version> | ||
<AssemblyVersion>3.24.0.0</AssemblyVersion> | ||
<FileVersion>3.24.0.0</FileVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,36 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> | ||
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks> | ||
<!-- The identifier that must be unique within the hosting gallery --> | ||
<PackageId>KellerAg.Cloud.JsonToBusinessObjects</PackageId> | ||
<!-- The package version number that is used when resolving dependencies --> | ||
<PackageVersion>2.0.9.23</PackageVersion> | ||
<PackageVersion>3.24.0.0</PackageVersion> | ||
<!-- Authors contain text that appears directly on the gallery --> | ||
<authors>KELLER Druckmesstechnik AG</authors> | ||
<!-- The description can be used in package manager UI. Note that the nuget.org gallery uses information you add in the portal. --> | ||
<Description>This library is used to convert KELLER messages from JSON to an Object with improved data handling.</Description> | ||
<!-- If true, this value prompts the user to accept the license when installing the package. --> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageReleaseNotes></PackageReleaseNotes> | ||
<Copyright>Copyright 2022 (c) KELLER Pressure AG. All rights reserved.</Copyright> | ||
<PackageReleaseNotes> | ||
</PackageReleaseNotes> | ||
<PackageTags>converter json object</PackageTags> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<!-- this hack (which generates warnings) is required for the variable $(TargetDir) to work in the post build event --> | ||
<!-- see https://github.com/dotnet/project-system/issues/1569 --> | ||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> | ||
|
||
<PropertyGroup> | ||
<Product>KellerAg.Cloud.JsonToBusinessObjects</Product> | ||
<Company>KELLER AG</Company> | ||
<Version>2.0.272-alpha</Version> | ||
<Version>3.24.0</Version> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<OutputPath /> | ||
</PropertyGroup> | ||
|
||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<ProjectReference Include="..\KellerAg.Shared.LoRaPayloadConverter\KellerAg.Shared.LoRaPayloadConverter.csproj" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\KellerAg.Shared.LoRaPayloadConverter\KellerAg.Shared.LoRaPayloadConverter.csproj" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
11 changes: 3 additions & 8 deletions
11
...lerAG.Shared.LoRaPayloadConverter.Tests/KellerAG.Shared.LoRaPayloadConverter.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
|
||
<TargetFramework>net8.0</TargetFramework> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="FluentAssertions" Version="5.10.3" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" /> | ||
<PackageReference Include="coverlet.collector" Version="1.2.0" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\KellerAg.Shared.LoRaPayloadConverter\KellerAg.Shared.LoRaPayloadConverter.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
11 changes: 2 additions & 9 deletions
11
Source/KellerAg.Shared.Entities/KellerAg.Shared.Entities.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks> | ||
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks> | ||
<Company>KELLER Druckmesstechnik AG</Company> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://docs.kolibricloud.ch/sending-technology/converter-library</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/KELLERAGfuerDruckmesstechnik/KellerAg.Shared.IoT.Converters</RepositoryUrl> | ||
<PackageTags>KELLER, KELLER Pressure, Druckmesstechnik, Pressure, pressure sensors, KOLIBRI cloud, LoRaWAN, LoRa, Loriot.io, Actility, TTN</PackageTags> | ||
<PackageTags>KELLER, KELLER Pressure, Druckmesstechnik, Pressure, pressure sensors, PressureSuite Cloud, LoRaWAN, LoRa, Loriot.io, Actility, TTN</PackageTags> | ||
<Authors>Sebastian Mojado</Authors> | ||
<Copyright>2022</Copyright> | ||
<Description>KELLER AG Entities for various purposes.</Description> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DefineConstants>TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NodaTime" Version="2.4.18" /> | ||
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" /> | ||
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" /> | ||
<PackageReference Include="TimeZoneConverter" Version="3.2.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
9 changes: 2 additions & 7 deletions
9
Source/KellerAg.Shared.IoT.Converters.Tests/KellerAg.Shared.IoT.Converters.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
|
||
<TargetFramework>net8.0</TargetFramework> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="FluentAssertions" Version="5.10.3" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" /> | ||
<PackageReference Include="coverlet.collector" Version="1.2.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\KellerAg.Shared.IoT.Converters\KellerAg.Shared.IoT.Converters.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters