Movatterモバイル変換


[0]ホーム

URL:


Wayback Machine
149 captures
03 Dec 2016 - 28 Jun 2025
JulSEPJul
Previous capture02Next capture
201820192020
success
fail
COLLECTED BY
Organization:Mark Graham's Archive-IT Collections
This is a set of web collections curated by Mark Graham using theArchive-IT service of theInternet Archive.

They include web captures of the ISKME.org website as well as captures from sites hosted by IGC.org.



These web captures are available to the general public.

For more information about this collection please feel free to contact Mark viaSend Mail
Collection:General Crawls
Archive-It Partner 1028: Mark Graham - Collection 8332: General Crawls
TIMESTAMPS
loading
The Wayback Machine - https://web.archive.org/web/20190902221359/https://github.com/dotnet/cli
Skip to content
Sign in Sign up

/cli

Join GitHub today

GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.

Sign up
The .NET Core command-line (CLI) tools, used for building .NET Core apps and libraries through your development flow (compiling, NuGet package management, running, testing, ...).
C#PowerShellShellDockerfileCMakeGroovyOther
Branch:master
Clone or download

Clone with HTTPS

Use Git or checkout with SVN using the web URL.

Launching GitHub Desktop...

If nothing happens,download GitHub Desktop and try again.

Launching GitHub Desktop...

If nothing happens,download GitHub Desktop and try again.

Launching Xcode...

If nothing happens,download Xcode and try again.

Launching Visual Studio...

If nothing happens,download the GitHub extension for Visual Studio and try again.

@dotnet-maestro
dotnet-maestro[master] Update dependencies from dotnet/core-setup (#12469)
* Update dependencies fromhttps://github.com/dotnet/core-setup build 20190902.1- Microsoft.NETCore.App - 5.0.0-alpha1.19452.1- Microsoft.NET.HostModel - 5.0.0-alpha1.19452.1- Microsoft.Extensions.DependencyModel - 5.0.0-alpha1.19452.1- Microsoft.DotNet.PlatformAbstractions - 5.0.0-alpha1.19452.1- Microsoft.NETCore.DotNetHostResolver - 5.0.0-alpha1.19452.1* Update dependencies fromhttps://github.com/dotnet/core-setup build 20190902.5- Microsoft.NETCore.App - 5.0.0-alpha1.19452.5- Microsoft.NET.HostModel - 5.0.0-alpha1.19452.5- Microsoft.Extensions.DependencyModel - 5.0.0-alpha1.19452.5- Microsoft.DotNet.PlatformAbstractions - 5.0.0-alpha1.19452.5- Microsoft.NETCore.DotNetHostResolver - 5.0.0-alpha1.19452.5
Latest commit dcaee60Sep 2, 2019
Permalink
TypeNameLatest commit messageCommit time
Failed to load latest commit information.
DocumentationRemove link to non-existing documentAug 20, 2019
TestAssetsUnnecessary files are removed from the nested folder test, typo fixedAug 6, 2019
buildRemove unused MicrosoftNETSdkRazorPackageVersionJul 9, 2019
build_projects/dotnet-cli-buildMerge remote-tracking branch 'dotnet/release/2.2.2xx' into merges/rel…Nov 14, 2018
eng[master] Update dependencies from dotnet/core-setup (#12469)Sep 2, 2019
packaging/windowsFix typo (#10984)Mar 26, 2019
resourcesUpdating some more projects due to MSbuild not having a target for ne…Nov 13, 2018
scriptsAdd support for Microsoft.WindowsDesktop.App (#12315)Aug 22, 2019
srcUpdate CLI welcome message for 5.0 (#12382)Aug 27, 2019
testUnnecessary files are removed from the nested folder test, typo fixedAug 6, 2019
toolsMerge branch 'dev/release/2.0' into merge_dev_release_20Dec 8, 2017
.editorconfigCheckin corefx editorconfigSep 18, 2017
.gitattributesTreat xlf as textDec 8, 2017
.gitignoreSome tests are now passing. I am chasing down each individual failure…Nov 6, 2018
.vsts-ci.ymlRe-enabling the fedora 27 leg.Jun 7, 2019
CONTRIBUTING.mdmerge masterMar 20, 2017
Directory.Build.propsMark packages as non-shipping (#11011)Mar 22, 2019
Directory.Build.targetsUse Microsoft.NETCore.App without .Ref for tracking depenencyJun 27, 2019
ISSUE_TEMPLATEissue template, the --info is the new --versionMar 31, 2016
LICENSEUpdate license to match coreclrFeb 12, 2019
Microsoft.DotNet.Cli.slnRemove dotnet migrate (#11481)Jun 4, 2019
NuGet.config[master] Update dependencies from dotnet/arcade (#11987)Jul 26, 2019
PULL_REQUEST_TEMPLATERemove 'please' from message text (#11363)May 17, 2019
README.mdRemove 'please' from message text (#11363)May 17, 2019
THIRD-PARTY-NOTICESRemove 'please' from message text (#11363)May 17, 2019
build.cmdThe modification to build.cmd did not have the desired effect.Nov 29, 2017
build.shAdd Dockerfile for RHEL 6 buildsSep 26, 2017
dir.propsAdding consistent "Project" headers to inported props and target files.Sep 27, 2017
global.jsonUpdate dependencies fromhttps://github.com/dotnet/arcadebuild 20190…Aug 30, 2019
netci.groovyFix helix queue machine affinity callNov 14, 2018
run-build.ps1Fixed build failing for usernames with spacesJul 16, 2019
run-build.shPassing configuration to the arcade build script. It was not honoring…Nov 6, 2018
testAsset.propsStop setting NETCoreAppMaximumVersionMar 5, 2019

README.md

.NET Command Line Interface

Join the chat at https://gitter.im/dotnet/cli

This repo contains the source code for cross-platform.NET Core command line toolchain. It contains the implementation of each command and the documentation.

Looking for the .NET Core SDK tooling?

If you are looking for the latest nightly of the .NET Core SDK, seehttps://github.com/dotnet/core-sdk.

Found an issue?

You can consult theDocuments Index to find out the current issues and to see the workarounds.

If you don't find your issue, file one! However, given that this is a very high-frequency repo, we've setup somebasic guidelines to help you. Consult those first.

This project has adopted the code of conduct defined by theContributor Covenant to clarify expected behavior in our community. For more information, see the.NET Foundation Code of Conduct.

Build status

Windows x64
Build Status

Basic usage

When you have the .NET Command Line Interface installed on your OS of choice, you can try it out using some of the samples on thedotnet/core repo. You can download the sample in a directory, and then you can kick the tires of the CLI.

First, you will need to restore the packages:

dotnet restore

This will restore all of the packages that are specified in the project.json file of the given sample.

Then you can either run from source or compile the sample. Running from source is straightforward:

dotnet run

Compiling to IL is done using:

dotnet build

This will drop an IL assembly in./bin/[configuration]/[framework]/[binary name]that you can run usingdotnet bin/[configuration]/[framework]/[binaryname.dll].

For more details, refer to thedocumentation.

Building from source

If you are building from source, take note that the build depends on NuGet packages hosted on MyGet, so if it is down, the build may fail. If that happens, you can always see theMyGet status page for more info.

Read over thecontributing guidelines anddeveloper documentation for prerequisites for building from source.

Questions and comments

For all feedback, use the Issues on this repository.

License

By downloading the .zip you are agreeing to the terms in the projectEULA.

Repository SLA

This Service-Level Agreement (SLA) represents the commitment of the maintainers of the .NET Core CLI/SDK repositories to community members and contributors.

Pull requests

While the maintainers of this repository have the right and obligation to move .NET Core in a direction which might conflict with pull requests from community contributors, pull requests from community contributors should receive prompt feedback and either be approved by assigning to an appropriate release milestone or closed with gratitude and a valid explanation. Pull requests from community contributors should not be put in the backlog milestone because pull requests rarely stay valid over long periods of time; thanking the contributor for their effort and closing the pull request with an explanation is preferable to letting the pull request linger in backlog limbo.

New pull requests

The maintainers of the repository will triage new pull requests from community contributors withinone week of the creation of the pull request.

The community pull request will be triaged as follows:

  • Approved - the pull request has been approved by the maintainers and should be assigned to an upcoming release milestone. Additionally, the pull request should be assigned to a maintainer to assist the completion of the pull request. The assigned maintainer will review the pull request, mentor the contributor regarding the standards and practices of the codebase, and inform the contributor when there might be an issue blocking the merging of the pull request, such as merge conflicts, changes in schedule necessitating branch retargeting, branch lockdowns, etc. The assigned maintainer should provide initial feedback to the contributor withinthree business days of being assigned the pull request.
  • Pending discussion - there are questions the maintainers have about the pull request that need to be resolved: the code needs additional work, unit tests are missing, whether or not the pull request aligns with the direction for the codebase, or the maintainers need clarification as to the purpose of the pull request. Whenever possible, the discussion should take place solely in the GitHub pull request or in a linked GitHub issue.
  • Rejected - The pull request is not in the direction the maintainers want to take the codebase, has too much risk, does not solve a problem of meaningful priority, or the pull request is stale and requires additional work to bring into a mergeable state. Regardless of the reason for rejecting a pull request, maintainers should always thank the contributor for their effort and for being a valued member of the .NET Core community.

For any pull request, if the contributor has been asked for updates or clarifications and the maintainer has not heard back from the contributor forone month, the pull request will be assumed to be abandoned and will be closed, unless other time limits have been agreed upon between the contributor and the maintainer.

Stale pull requests

As codebases change significantly over time and stale pull requests are unlikely to be merged without significant additional work, any pull request older than six months from a community contributor should be closed with an explanation as to why the pull request was not merged. However, contributors may choose to update their feature branch and re-open the pull request (or re-submit a new pull request) if it is again ready to merge. At such time, the maintainers should treat the reopening as if it were a new pull request and decide to accept the pull request and for which release milestone it belongs to.

Issues

Reported issues from community members will be treated identically to any other issue, whether discovered by the maintainers, other Microsoft employees, etc.

The maintainers will triage issueseach business day:

  • High priority issues (crash, hang, data loss, regression, security, or other major malfunction) will get triaged to a Microsoft developer and put in their queue to address in the current milestone.

  • Small malfunctions will be marked as such, assigned when developers are available, and moved to a future release milestone or the backlog milestone that represents no particular release.

  • Minor issues (spelling errors, fit-n-finish, small issues with easy/obvious workaround) will be marked asgood first issue for community contributors and will be moved to a backlog milestone mapping to no particular release.

  • Even if an issue is not marked asgood first issue, we welcome community contributions on any issue, but if the issue is currently assigned to someone, check with them first before working on a fix.

Issues may be closed by the maintainers of the repository for the following reasons:

  • Not repro - the maintainer is unable to reproduce the issue following the steps outlined in the issue. Contributors and community members may reopen the issue if they believe they have discovered another way of reproducing the issue.

  • Won't fix - the maintainer has determined the issue has a valid reason to not be fixed, such as being too risky, code is scheduled for obsoletion in an upcoming release, fix is needed only for an out-of-service release, etc. Contributors and community members should not reopen the issue unless there is a justifiable reason to do so, such as strong community demand, new information about the issue which might increase the severity, etc.

  • Fixed - the maintainer has merged a pull request that addresses the issue. The maintainer should follow-up on the issue to inform the community regarding which release to expect the fix in.

Because any code repository gradually amasses a non-trivial number of minor bugs that are unlikely to ever get fixed due to scheduling or other constraints, and which become increasingly irrelevant as the product changes, the maintainers should periodically (once or twice a year) close minor issues older than a year that no longer meet the bar aswon't fix. This action should include issues assigned to the backlog milestone so that the backlog isn't an issue graveyard.

You can’t perform that action at this time.

[8]ページ先頭

©2009-2025 Movatter.jp