Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.58 KB

setup-development-environment.md

File metadata and controls

52 lines (37 loc) · 1.58 KB

Setup the Development Environment

Windows requirements

  • Windows Version: You need to have Windows 11 or Windows 10 (19043 or higher)
  • Hyper-V: You to have Hyper-V enabled.

Install Hyper-V

Follow this documentation to enable it on your system. You can enable it by this command too (after you've enabled the hardware in BIOS seetings):

		DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V

Visual Studio

  • Visual Studio 17.4.0 or higher
  • Workloads:
    • ASP.NET and web development
    • .NET Multi-platform App UI development
    • .NET desktop development
  • .NET SDK 6.0.400: You can install it by
winget install Microsoft.DotNet.SDK.6 --version 6.0.403
  • Make sure Nuget is configured.

Configure Nuget

  • Restore all nuget packages

  • Run this command:

dotnet workload restore
  • Install this extensions:
    • Web Compiler 2022+

Web Compiler 2022+

  • Run these batch files in the project:

    • Clean.bat
    • CleanCSS.bat
  • Right click on the solution and click on Re-compile all files in solution

Re-compile all files in solution

  • Rebuild the project

You are ready!