Skip to content

Commit 706801f

Browse files
Updated to v6.6.0
1 parent df18653 commit 706801f

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

agent/MTConnect.NET-Agent/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Program
1414

1515
// Copyright statement for the application. If you are implementing this into your own application, you can change this to your own copyright.
1616
// This is just what is shown in the console header. If you want to show support for the MTConnect.NET project, you can reference it using the links in the default header
17-
private const string ApplicationCopyright = "Copyright 2024 TrakHound Inc., All Rights Reserved";
17+
private const string ApplicationCopyright = "Copyright 2025 TrakHound Inc., All Rights Reserved";
1818

1919
public static void Main(string[] args)
2020
{

agent/MTConnect.NET-Agent/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,12 @@ The default [NLog Configuration File](https://github.com/TrakHound/MTConnect.NET
337337
</nlog>
338338
```
339339

340+
## Build
341+
This project can be built using a variety of options using the DotNet CLI `publish` command such as below:
342+
```
343+
dotnet publish -c:Release -f:net8.0 -r:win-x64 -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true --self-contained false
344+
```
345+
340346
## Source Code
341347
This project uses the MTConnect.NET-Applications-Agents library (available on [Nuget](https://www.nuget.org/packages/MTConnect.NET-Applications-Agents)) to create an MTConnect Agent application. More information about this library can be found [Here](https://github.com/TrakHound/MTConnect.NET/tree/master/libraries/MTConnect.NET-Applications-Agents). The MTConnect.NET-Applications-Agents library makes creating an MTConnect Agent application simple as well as makes it easy to keep updated using Nuget. A fully functionaly MTConnect Application can be created in just a few lines of code.
342348

build/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Reflection;
22

3-
[assembly: AssemblyVersion("6.5.1")]
4-
[assembly: AssemblyFileVersion("6.5.1")]
3+
[assembly: AssemblyVersion("6.6.0")]
4+
[assembly: AssemblyFileVersion("6.6.0")]
55
[assembly: AssemblyCompany("TrakHound Inc.")]
66
[assembly: AssemblyCopyright("Copyright (c) 2024 TrakHound Inc., All Rights Reserved.")]

0 commit comments

Comments
 (0)