Difference between revisions of "Azure/Azure Devops + az extension"
< Azure
Jump to navigation
Jump to search
Line 16: | Line 16: | ||
= Resources = | = Resources = | ||
* [https://azuredevopsdemogenerator.azurewebsites.net/ azuredevopsdemogenerator] | * [https://azuredevopsdemogenerator.azurewebsites.net/ azuredevopsdemogenerator] | ||
;Assessment Tools | ;Code Assessment Tools | ||
* [https://www.microsoft.com/en-us/securityengineering/devsecops#AutomationDevOps Security Tools] | * [https://www.microsoft.com/en-us/securityengineering/devsecops#AutomationDevOps Security Tools] | ||
* [https://sonarcloud.io/ SonarCloud] | * [https://sonarcloud.io/ SonarCloud] | ||
* [https://www.nuget.org/packages/SonarAnalyzer.CSharp/ SonarAnalyzer] | * [https://www.nuget.org/packages/SonarAnalyzer.CSharp/ SonarAnalyzer] | ||
* [https://docs.microsoft.com/en-us/visualstudio/code-quality/install-fxcop-analyzers?view=vs-2017 FxCop] - check your code for security, performance, and design issues by Microsoft | * [https://docs.microsoft.com/en-us/visualstudio/code-quality/install-fxcop-analyzers?view=vs-2017 FxCop] - check your code for security, performance, and design issues by Microsoft |
Revision as of 14:57, 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
- Code Assessment Tools
- Security Tools
- SonarCloud
- SonarAnalyzer
- FxCop - check your code for security, performance, and design issues by Microsoft