Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "BaSyx / Download / .NET Setup"

Line 10: Line 10:
  
 
== Getting started ==
 
== Getting started ==
0. Create a custom directory somewhere on your drive and navigate there by terminal
+
:# Create a custom directory somewhere on your drive and navigate there by terminal
1. git clone https://git.eclipse.org/r/basyx/basyx
+
:# git clone https://git.eclipse.org/r/basyx/basyx
2. Navigate to directory sdks/csnet/
+
:# Navigate to directory sdks/csnet/
3. Open BaSyx.SDK.sln in Visual Studio
+
:# Open BaSyx.SDK.sln in Visual Studio
4. Build -> Rebuild Solution
+
:# Build -> Rebuild Solution
5. Done!
+
:# Done!
  
 
== Hello World Example ==
 
== Hello World Example ==
 
To get your first Asset Administation Shell up and running, do the following;
 
To get your first Asset Administation Shell up and running, do the following;
1. In Solution Explorer expand "Examples" folder
+
:# In Solution Explorer expand "Examples" folder
2. Right-click on HelloAssetAdministationShell-Project
+
:# Right-click on HelloAssetAdministationShell-Project
3. Select "Set as StartUp Project"
+
:# Select "Set as StartUp Project"
4. Press Play!
+
:# Press Play!

Revision as of 14:08, 22 June 2019

How to build the BaSyx .NET Core SDK

The BaSyx .NET Core SDK can be build via dotnet CLI as wells as Microsoft Visual Studio. It uses NuGet for dependency management. This article will detail on how to build the .NET Core SDK from a fresh checkout.

Requirements

The BaSyx .NET Core SDK requires the following dependencies to successfully build:

  • .NET Core SDK 2.2 Download
  • Microsoft Visual Studio >=2017 Community Edition Download

Getting started

  1. Create a custom directory somewhere on your drive and navigate there by terminal
  2. git clone https://git.eclipse.org/r/basyx/basyx
  3. Navigate to directory sdks/csnet/
  4. Open BaSyx.SDK.sln in Visual Studio
  5. Build -> Rebuild Solution
  6. Done!

Hello World Example

To get your first Asset Administation Shell up and running, do the following;

  1. In Solution Explorer expand "Examples" folder
  2. Right-click on HelloAssetAdministationShell-Project
  3. Select "Set as StartUp Project"
  4. Press Play!

Back to the top