|
14 | 14 | <RepositoryType>git</RepositoryType>
|
15 | 15 | <PackageTags>ADO YAML AzureDevOps</PackageTags>
|
16 | 16 | <PackageReleaseNotes>
|
17 |
| - #Adding Support For Generic Job Definitions |
| 17 | + BREAKING CHANGE: Adding Support For Generic Job Definitions |
18 | 18 |
|
19 |
| - ## BREAKING CHANGE |
20 |
| - We are excited to announce a significant update to how we define jobs for GitHub Actions using ADotNet! |
| 19 | + We are excited to announce a significant update to how we define jobs for GitHub Actions using ADotNet! |
21 | 20 | Starting from this release, we have introduced a breaking change that allows the usage of generic job
|
22 | 21 | definitions, replacing the previous job names specifically used for build, tagging, and release.
|
23 | 22 | This change requires a small code modification in how you define jobs. You will now have the
|
24 | 23 | flexibility to define jobs based on your specific needs, enhancing customization and providing
|
25 |
| - a more streamlined workflow. |
26 |
| - |
27 |
| - ### Before |
28 |
| - ```csharp |
29 |
| - Jobs = new Jobs |
30 |
| - { |
31 |
| - Build = new BuildJob |
32 |
| - { |
33 |
| - . . . |
34 |
| - }, |
35 |
| - AddTag = new TagJob |
36 |
| - { |
37 |
| - . . . |
38 |
| - }, |
39 |
| - Publish = new PublishJob |
40 |
| - { |
41 |
| - . . . |
42 |
| - }, |
43 |
| - } |
44 |
| - ``` |
45 |
| - |
46 |
| - ### Now |
47 |
| - ```csharp |
48 |
| - Jobs = new Jobs |
49 |
| - { |
50 |
| - { |
51 |
| - "build", |
52 |
| - new Job |
53 |
| - { |
54 |
| - . . . |
55 |
| - } |
56 |
| - }, |
57 |
| - { |
58 |
| - "add_tag", |
59 |
| - new Job |
60 |
| - { |
61 |
| - . . . |
62 |
| - } |
63 |
| - }, |
64 |
| - { |
65 |
| - "publish", |
66 |
| - new Job |
67 |
| - { |
68 |
| - . . . |
69 |
| - } |
70 |
| - }, |
71 |
| - } |
72 |
| - ``` |
| 24 | + a more streamlined workflow. Please refer to the updated documentation for guidance on adapting |
| 25 | + your code to accommodate this change. |
73 | 26 | </PackageReleaseNotes>
|
74 | 27 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
75 | 28 | <PackageReadmeFile>README.md</PackageReadmeFile>
|
76 |
| - <AssemblyVersion>3.0.0.0</AssemblyVersion> |
77 |
| - <FileVersion>3.0.0.0</FileVersion> |
78 |
| - <Version>3.0.0.0</Version> |
| 29 | + <AssemblyVersion>3.0.1</AssemblyVersion> |
| 30 | + <FileVersion>3.0.1</FileVersion> |
| 31 | + <Version>3.0.1</Version> |
79 | 32 | <PackageLicenseFile>License.txt</PackageLicenseFile>
|
80 | 33 | <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
|
81 | 34 | <PackageProjectUrl>https://github.com/hassanhabib/ADotNet</PackageProjectUrl>
|
|
0 commit comments