This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #875 from microsoft/dev
Integration from Dev to master with some bug fixes and a bunch of infrastructure work
- Loading branch information
Showing
36 changed files
with
822 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Contributing | ||
|
||
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 [[email protected]](mailto:[email protected]) | ||
with any additional questions or comments. | ||
|
||
For our general contributing guidelines please see [our dotnet/runtime contributing guide](https://github.com/dotnet/runtime/blob/master/CONTRIBUTING.md). | ||
|
||
## Best practices | ||
|
||
* Use Windows PowerShell or [PowerShell Core][pwsh] (including on Linux/OSX) to run .ps1 scripts. | ||
Some scripts set environment variables to help you, but they are only retained if you use PowerShell as your shell. | ||
|
||
## Prerequisites | ||
|
||
All dependencies can be installed by running the `init.ps1` script at the root of the repository | ||
using Windows PowerShell or [PowerShell Core][pwsh] (on any OS). | ||
|
||
The only prerequisite for building, testing, and deploying from this repository | ||
is the [.NET SDK](https://get.dot.net/). | ||
You should install the version specified in `global.json` or a later version within | ||
the same major.minor.Bxx "hundreds" band. | ||
For example if 2.2.300 is specified, you may install 2.2.300, 2.2.301, or 2.2.310 | ||
while the 2.2.400 version would not be considered compatible by .NET SDK. | ||
See [.NET Core Versioning](https://docs.microsoft.com/en-us/dotnet/core/versions/) for more information. | ||
|
||
The development experience is best with [Visual Studio][VisualStudio]. | ||
|
||
## Building | ||
|
||
This repository can be built on Windows, Linux, and OSX. | ||
|
||
Building, testing, and packing this repository can be done by using the standard dotnet CLI commands (e.g. `dotnet build`, `dotnet test`, `dotnet pack`, etc.). | ||
|
||
[pwsh]: https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell?view=powershell-6 | ||
[VisualStudio]: https://docs.microsoft.com/dotnet/core/install/sdk?pivots=os-windows#install-with-visual-studio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<!-- Don't use any sources set by the system (workaround for microbuild issue) --> | ||
<clear /> | ||
<add key="nuget" value="https://www.nuget.org/api/v2/" /> | ||
<add key="nuget" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> | ||
<add key="corefx lab" value="https://dotnet.myget.org/F/dotnet-corefxlab/api/v3/index.json" /> | ||
</packageSources> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.