Skip to content

Commit 9e90f67

Browse files
committed
Update to MORYX-Core Future
1 parent fd4317d commit 9e90f67

File tree

11 files changed

+14
-9
lines changed

11 files changed

+14
-9
lines changed

Directory.Build.targets

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

44
<!-- Central package version management -->
55
<PropertyGroup>
6-
<MoryxCoreVersion>3.0.0</MoryxCoreVersion>
6+
<MoryxCoreVersion>4.0.0-future.528</MoryxCoreVersion>
77
<MoryxAbstractionLayerVersion>5.2.1</MoryxAbstractionLayerVersion>
88
</PropertyGroup>
99

NuGet.Config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<packageSources>
1212
<clear />
1313
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
14-
<add key="MORYX" value="https://www.myget.org/F/moryx/api/v3/index.json" />
14+
<add key="MORYX" value="https://www.myget.org/F/moryx/api/v3/index.json" />
15+
<add key="MORYX-Future" value="https://www.myget.org/F/moryx-future/api/v3/index.json" />
1516
</packageSources>
1617
</configuration>

src/Moryx.ControlSystem/Moryx.ControlSystem.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>net45;netstandard2.0;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<Description>Bundle assembly for ControlSystem and extensions</Description>
77
<CreatePackage>true</CreatePackage>

src/Moryx.Orders/IOperationLogger.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
using System;
55
using System.Collections.Generic;
6+
using Microsoft.Extensions.Logging;
67
using Moryx.Logging;
78

89
namespace Moryx.Orders

src/Moryx.Orders/Moryx.Orders.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>net45;netstandard2.0;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<Description>Bundle assembly for Orders and extensions</Description>
77
<CreatePackage>true</CreatePackage>

src/Moryx.Orders/OperationLogMessage.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Licensed under the Apache License, Version 2.0
33

44
using System;
5+
using Microsoft.Extensions.Logging;
56
using Moryx.Logging;
67

78
namespace Moryx.Orders

src/Moryx.ProcessData/Moryx.ProcessData.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>net45;netstandard2.0;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<Description>Bundle assembly for process data and listeners</Description>
77
<CreatePackage>true</CreatePackage>

src/Moryx.Users/Moryx.Users.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>net45;netstandard2.0;net5.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<Description>Bundle assembly for Users and extensions</Description>
77
<CreatePackage>true</CreatePackage>

src/Tests/Moryx.ControlSystem.Tests/Moryx.ControlSystem.Tests.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-
<TargetFramework>net45</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
66
<DebugType>full</DebugType>
77
</PropertyGroup>

src/Tests/Moryx.ProcessData.Tests/Moryx.ProcessData.Tests.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-
<TargetFramework>net45</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
66
<DebugType>full</DebugType>
77
</PropertyGroup>

0 commit comments

Comments
 (0)