A new generation of car rental software
Requirements:
- Microsoft Visual Studio 2017 code
- Python
- Syncfusion Community License. Version 15.0.4
- Set up the msbuild path following the instructions:
- Run PowerShell as Admininistrator. The following command is to get the current path from PowerShell.
- Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH
- Read the path to local variable $theCurrentPath=(Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH).Path
- Update the path with the command: $theUpdatedPath=$theCurrentPath+’;C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin’
- Set the path to the updated path. Set-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PATH –Value $theUpdatedPath
- To compile you it is enough: dotnet restore KarveCar.sln msbuild KarveCar.sln /m
- Booking Screen.