Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 1.16 KB

CONTRIBUTING.md

File metadata and controls

61 lines (38 loc) · 1.16 KB

Contributing

Setup

Prerequisites

Install

  1. Fork the project, then clone it:
git clone git@github.com:flyingpie/windows-terminal-quake.git
  1. Open the project in your IDE
  2. Run ./Build.ps1

Troubleshooting

SDK not installed
Error:

Could not execute because the application was not found or a compatible .NET SDK is not installed.

Solution:

Make sure you restart your terminal.

SDK specified could not be found
Error:

Error MSB4236: The SDK 'Microsoft.NET.Sdk' specified could not be found.

Solution:

Set the the following environment variable

$env:MSBuildSDKsPath = "C:\Program Files\dotnet\sdk\5.0.300\Sdks"

Proposing changes

  1. Create a branch
git checkout -b my-feature
  1. Make your changes and update the readme if necessary.
  2. Test if everything works as expected.
  3. Push your code
git push -u origin my-feature
  1. Draft a pull request by clicking on the link or from the GitHub interface.
  2. In the pull request, describe what your changes intend to do and why they are needed.