* Deleted file accidentally included in initial setup of the project

* Added a 'Getting Started' section

* Fixed 'smart' quotes

* Fixed wording

* Added .md support to .editorconfig. Improved the guidance about using the command line in contributor-guide.md
This commit is contained in:
Howard Kapustein 2020-07-08 15:28:26 -07:00 коммит произвёл GitHub
Родитель 26b720bbb3
Коммит 3894b0018b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 18 добавлений и 21 удалений

Просмотреть файл

@ -123,4 +123,12 @@ indent_size = 4
charset = utf-8-bom
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = crlf
end_of_line = crlf
[**.md]
indent_style = space
indent_size = 4
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = crlf

Просмотреть файл

@ -1,19 +0,0 @@
@echo OFF
pushd %~dp0
set PATH=%PATH%;%~dp0\tools
call %~dp0\tools\addaliases.cmd
"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -Latest -requires Microsoft.Component.MSBuild -property InstallationPath > %TEMP%\vsinstalldir.txt
set /p _VSINSTALLDIR15=<%TEMP%\vsinstalldir.txt
call "%_VSINSTALLDIR15%\Common7\Tools\VsDevCmd.bat"
pushd %~dp0
if '%1%' neq '/PreserveContext' (
cmd /k
)

Просмотреть файл

@ -33,4 +33,12 @@ provided by the bot. You will only need to do this once across all repos using o
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
## Getting Started
You'll need Visual Studio 2019 installed to do work in a GUI, or at least the MSBuild and SDK toolchains to build from the command line. From Visual Studio, open the ProjectReunion.sln and hit build!
Or start a Developer Command Prompt or Developer Powershell for VS 2019, and use ```msbuild /p:configuration=release,platform=x86 projectreunion.sln``` to build.
If you don't have Visual Studio 2019 or Visual Studio Code installed you can download them [here](https://visualstudio.microsoft.com/downloads/).