MSDN Documentation

Setting Up Your Development Environment

This guide will walk you through the essential steps to set up your development environment for building applications with our platform. A well-configured environment is crucial for efficient development and debugging.

Prerequisites

Before you begin, ensure you have the following installed on your system:

Step 1: Installing the Core SDK

The Core SDK provides the fundamental tools and libraries needed for development. Download the latest version from the SDK Downloads page.

Follow the installation instructions specific to your operating system. After installation, verify the installation by opening a new terminal or command prompt and running:

your-sdk --version

You should see the installed SDK version printed to the console.

Step 2: Configuring Your Workspace

Create a dedicated directory for your projects. It's recommended to keep all your project-related files organized within this workspace.

Example:

mkdir ~/my-msdn-projects
cd ~/my-msdn-projects

Step 3: Setting Up a New Project

To start a new project, use the SDK's command-line interface (CLI). Navigate to your workspace and run:

your-sdk create project my-new-app
cd my-new-app

This command will create a new project directory named my-new-app with a basic project structure and necessary configuration files.

Important Note:

Always ensure you are using the latest stable version of the SDK. Check the Release Notes for updates and new features.

Step 4: Editor Integration (Optional but Recommended)

To enhance your coding experience, consider installing extensions or plugins for your code editor that provide syntax highlighting, IntelliSense, and debugging capabilities for our platform's languages and frameworks.

Refer to the Editor Extensions page for specific recommendations.

Next Steps

Once your environment is set up, you're ready to start building! Here are some resources to help you on your journey:

Start Building Now