Skip to content

Commit abf916d

Browse files
authored
Az CLI (#336)
* Az CLI * Formatting Markdown * Az Command Classes * Az Command Classes * Parameters * Fix * Tweaks * Severity = "info", * Fix * ModuleInitializer * Fixes * Trim files of trailing whitespace * Fix ModuleInitializer * Fix * Update ReleaseNotes.md * Formatting Markdown * Fixes * Fix * Namespaces * Fix Namespaces * Don't use deprecated commands * Fix usings * Fix usings * Fix incorrect options * Fix DI * ReleaseNotes.md * Ignore SA1003 * dotnet build step * Move analyzers to own solution * Build * Fix * Fix * Tidy usings * Tweak models * Tweak models * Tidy usings * Ignore FTP * Add test * Fix some mandatory properties * Fixes * Count changed files * Get more pull request files * Build up-front * 2 * Fix indentation * Fix warnings * Distinct * Fix name * Ignore release notes check for now --------- Co-authored-by: Tom Longhurst <thomhurst@users.noreply.github.com>
1 parent 280b900 commit abf916d

File tree

15,037 files changed

+419148
-1830
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

15,037 files changed

+419148
-1830
lines changed

.github/workflows/dotnet-mac.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
3131
restore-keys: |
3232
${{ runner.os }}-nuget-
33+
- name: Build
34+
run: dotnet build ModularPipelines.sln -c Release --framework net7.0 && dotnet build ModularPipelines.sln -c Release --framework net6.0 && dotnet build ModularPipelines.Analyzers.sln -c Release
3335
- name: Run Pipeline
3436
run: dotnet run -c Release --framework net7.0
3537
working-directory: "src/ModularPipelines.Build"

.github/workflows/dotnet-windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
3333
restore-keys: |
3434
${{ runner.os }}-nuget-
35+
- name: Build
36+
run: dotnet build ModularPipelines.sln -c Release --framework net7.0 && dotnet build ModularPipelines.sln -c Release --framework net6.0 && dotnet build ModularPipelines.Analyzers.sln -c Release
3537
- name: Run Pipeline
3638
run: dotnet run -c Release --framework net7.0
3739
working-directory: "src/ModularPipelines.Build"

.github/workflows/dotnet.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ jobs:
4848
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
4949
restore-keys: |
5050
${{ runner.os }}-nuget-
51+
- name: Build
52+
run: dotnet build ModularPipelines.sln -c Release --framework net7.0 && dotnet build ModularPipelines.sln -c Release --framework net6.0 && dotnet build ModularPipelines.Analyzers.sln -c Release
5153
- name: Run Pipeline
5254
run: dotnet run -c Release --framework net7.0
5355
working-directory: "src/ModularPipelines.Build"

.idea/.idea.ModularPipelines.Analyzers/.idea/.gitignore

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.ModularPipelines.Analyzers/.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.ModularPipelines.Analyzers/.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.ModularPipelines.Analyzers/.idea/indexLayout.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.ModularPipelines.Analyzers/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.ruleset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<RuleSet Name="Rules for Modular Pipelines project" Description="These rules focus on styling Modular Pipelines" ToolsVersion="10.0">
22
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
33
<Rule Id="SA0001" Action="None" />
4+
<Rule Id="SA1003" Action="None" />
45
<Rule Id="SA1101" Action="None" />
56
<Rule Id="SA1124" Action="None" />
67
<Rule Id="SA1028" Action="None" />

ModularPipelines.Analyzers.sln

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModularPipelines.Analyzers", "src\ModularPipelines.Analyzers\ModularPipelines.Analyzers\ModularPipelines.Analyzers.csproj", "{C966BB10-DA52-42DD-9DAB-5BE7DCCA0817}"
4+
EndProject
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModularPipelines.Analyzers.CodeFixes", "src\ModularPipelines.Analyzers\ModularPipelines.Analyzers.CodeFixes\ModularPipelines.Analyzers.CodeFixes.csproj", "{261DCD48-E34E-4786-BC8C-1A05D18C25B4}"
6+
EndProject
7+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModularPipelines.Analyzers.Package", "src\ModularPipelines.Analyzers\ModularPipelines.Analyzers.Package\ModularPipelines.Analyzers.Package.csproj", "{ADBA7EBF-5F13-46EB-BF2C-AFF8B6F5DF42}"
8+
EndProject
9+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModularPipelines.Analyzers.Test", "src\ModularPipelines.Analyzers\ModularPipelines.Analyzers.Test\ModularPipelines.Analyzers.Test.csproj", "{07963809-4ED8-4C4E-95DA-21ECDF948B54}"
10+
EndProject
11+
Global
12+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
13+
Debug|Any CPU = Debug|Any CPU
14+
Release|Any CPU = Release|Any CPU
15+
EndGlobalSection
16+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
17+
{C966BB10-DA52-42DD-9DAB-5BE7DCCA0817}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{C966BB10-DA52-42DD-9DAB-5BE7DCCA0817}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{C966BB10-DA52-42DD-9DAB-5BE7DCCA0817}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{C966BB10-DA52-42DD-9DAB-5BE7DCCA0817}.Release|Any CPU.Build.0 = Release|Any CPU
21+
{261DCD48-E34E-4786-BC8C-1A05D18C25B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{261DCD48-E34E-4786-BC8C-1A05D18C25B4}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{261DCD48-E34E-4786-BC8C-1A05D18C25B4}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{261DCD48-E34E-4786-BC8C-1A05D18C25B4}.Release|Any CPU.Build.0 = Release|Any CPU
25+
{ADBA7EBF-5F13-46EB-BF2C-AFF8B6F5DF42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{ADBA7EBF-5F13-46EB-BF2C-AFF8B6F5DF42}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{ADBA7EBF-5F13-46EB-BF2C-AFF8B6F5DF42}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{ADBA7EBF-5F13-46EB-BF2C-AFF8B6F5DF42}.Release|Any CPU.Build.0 = Release|Any CPU
29+
{07963809-4ED8-4C4E-95DA-21ECDF948B54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30+
{07963809-4ED8-4C4E-95DA-21ECDF948B54}.Debug|Any CPU.Build.0 = Debug|Any CPU
31+
{07963809-4ED8-4C4E-95DA-21ECDF948B54}.Release|Any CPU.ActiveCfg = Release|Any CPU
32+
{07963809-4ED8-4C4E-95DA-21ECDF948B54}.Release|Any CPU.Build.0 = Release|Any CPU
33+
EndGlobalSection
34+
EndGlobal

0 commit comments

Comments
 (0)