Difference between revisions of "Azure/Azure Devops + az extension"

From Ever changing code
Jump to navigation Jump to search
Line 5: Line 5:
* Azure Test Plans
* Azure Test Plans
* Azure Artifacts - share Maven, npm, NuGet from private and public sources
* Azure Artifacts - share Maven, npm, NuGet from private and public sources
= [https://docs.microsoft.com/en-us/dotnet/core/tools/ dotnet commands reference] =
<source lang=batch>
dotnet restore **/*.csproj # Restores the dependencies and tools of a project
dotnet build              # Builds a project and all of its dependencies
dotnet test **/*[Tt]ests/*.csproj # .NET test driver used to execute unit tests
dotnet publish # Publishes the application and its dependencies to a folder for deployment to a hosting system
</source>


= Resources =
= Resources =
* [https://azuredevopsdemogenerator.azurewebsites.net/ azuredevopsdemogenerator]
* [https://azuredevopsdemogenerator.azurewebsites.net/ azuredevopsdemogenerator]

Revision as of 13:45, 28 June 2020

What is Azure DevOps:

  • Azure Repos - SCM/VCS system hosted in Azure
  • Azure Pipelines - Build, test, release automations
  • Azure Boards - Kanban board; JIRA like to track work, code defects, issues using Kanban or Scrum
  • Azure Test Plans
  • Azure Artifacts - share Maven, npm, NuGet from private and public sources

dotnet commands reference

dotnet restore **/*.csproj # Restores the dependencies and tools of a project
dotnet build               # Builds a project and all of its dependencies
dotnet test **/*[Tt]ests/*.csproj # .NET test driver used to execute unit tests
dotnet publish # Publishes the application and its dependencies to a folder for deployment to a hosting system

Resources