Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Authorization")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("8.1.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("8.1.0")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("9.0.0")]
Comment on lines +23 to +24
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This AssemblyInfo.cs change is under src/Resources/Authorization.Autorest, but the compiled project uses generated/Resources/Authorization.Autorest (which still has AssemblyInfo.cs at version 8.1.0). If the intent is to bump the built assembly version, update the AssemblyInfo.cs in the generated project; otherwise this change is likely ineffective and can confuse future maintainers.

Suggested change
[assembly: System.Reflection.AssemblyFileVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("8.1.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("8.1.0")]

Copilot uses AI. Check for mistakes.
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Az.Authorization
Module Guid: f91f515b-3470-413c-8ef0-db77a70595b9
Module Guid: f1083436-3175-474b-a331-bbee5f693934
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The module GUID in this doc appears to be inconsistent with the module manifest GUID (generated/Resources/Authorization.Autorest/Az.Authorization.psd1:2 has GUID 5e804a75-47b7-4aac-9e3b-4bbc49a1abca). Please ensure the documentation Module Guid matches the manifest to avoid publishing incorrect metadata.

Suggested change
Module Guid: f1083436-3175-474b-a331-bbee5f693934
Module Guid: 5e804a75-47b7-4aac-9e3b-4bbc49a1abca

Copilot uses AI. Check for mistakes.
Download Help Link: https://learn.microsoft.com/powershell/module/az.authorization
Help Version: 1.0.0.0
Locale: en-US
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Authorization.Autorest/generate-info.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"generate_Id": "8857adb4-91da-4a2d-95e8-717ed4177318"
"generate_Id": "105f228b-2cda-4bd7-8ca2-b6ac5c493f73"
}
26 changes: 26 additions & 0 deletions src/Resources/DataBoundary.Autorest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the ""License"");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an ""AS IS"" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
// is regenerated.

using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - DataBoundary")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("9.0.0")]
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]
Comment on lines +18 to +26
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This new AssemblyInfo.cs lives under src/Resources/DataBoundary.Autorest, but the built project for this module is generated/Resources/DataBoundary.Autorest/Az.DataBoundary.csproj and (via src/Az.autorest.props) only compiles src custom code under the module's custom/ folder. As-is, these assembly attributes likely won't be used during build. If the intent is to set assembly metadata/version, add/update the AssemblyInfo.cs under the generated project (or adjust the build to include this file); otherwise remove it to avoid dead code.

Suggested change
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - DataBoundary")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("9.0.0")]
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]

Copilot uses AI. Check for mistakes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Az.DataBoundary
Module Guid: c0d70364-96af-43cf-a3ca-76edff8b31b7
Module Guid: 40f99554-61db-4799-85d0-fb9ed50828ac
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The module GUID in this doc was changed, but it no longer matches the module manifest GUID (generated/Resources/DataBoundary.Autorest/Az.DataBoundary.psd1:2 still has c0d70364-96af-43cf-a3ca-76edff8b31b7). Please keep the documentation Module Guid consistent with the actual module manifest to avoid publishing incorrect metadata.

Suggested change
Module Guid: 40f99554-61db-4799-85d0-fb9ed50828ac
Module Guid: c0d70364-96af-43cf-a3ca-76edff8b31b7

Copilot uses AI. Check for mistakes.
Download Help Link: https://learn.microsoft.com/powershell/module/az.databoundary
Help Version: 1.0.0.0
Locale: en-US
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/DataBoundary.Autorest/generate-info.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"generate_Id": "83166abc-c09f-42f6-85b4-325cf89c0a85"
"generate_Id": "5c54e5cf-d772-4179-898d-956401cbfa0e"
}
11 changes: 11 additions & 0 deletions src/Resources/DataBoundary.Autorest/resources/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Resources
This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder.

## Info
- Modifiable: yes
- Generated: no
- Committed: yes
- Packaged: no

## Purpose
Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact.
32 changes: 0 additions & 32 deletions src/Resources/MSGraph.Autorest/Az.Resources.nuspec

This file was deleted.

26 changes: 26 additions & 0 deletions src/Resources/MSGraph.Autorest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the ""License"");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an ""AS IS"" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
// is regenerated.

using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - MSGraph")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("9.0.0")]
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]
Comment on lines +18 to +26
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This new AssemblyInfo.cs lives under src/Resources/MSGraph.Autorest, but the built project for this module is generated/Resources/MSGraph.Autorest/Az.MSGraph.csproj and (via src/Az.autorest.props) only compiles src custom code under the module's custom/ folder. As-is, these assembly attributes likely won't be used during build. If the intent is to set assembly metadata/version, add/update the AssemblyInfo.cs under the generated project (or adjust the build to include this file); otherwise remove it to avoid dead code.

Suggested change
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - MSGraph")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("9.0.0")]
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]

Copilot uses AI. Check for mistakes.
8 changes: 4 additions & 4 deletions src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Az.MSGraph
Module Guid: 9c1e9bcf-5175-4d03-99c7-a7f2f7040f46
Module Guid: 573646e0-5233-4ae6-88e9-e1f5d45b1bce
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The module GUID in this doc was changed, but it no longer matches the module manifest GUID (generated/Resources/MSGraph.Autorest/Az.MSGraph.psd1:2 still has 9c1e9bcf-5175-4d03-99c7-a7f2f7040f46). Please keep the documentation Module Guid consistent with the actual module manifest to avoid publishing incorrect metadata.

Suggested change
Module Guid: 573646e0-5233-4ae6-88e9-e1f5d45b1bce
Module Guid: 9c1e9bcf-5175-4d03-99c7-a7f2f7040f46

Copilot uses AI. Check for mistakes.
Download Help Link: https://learn.microsoft.com/powershell/module/az.msgraph
Help Version: 1.0.0.0
Locale: en-US
Expand Down Expand Up @@ -124,19 +124,19 @@ Removes key credentials or password credentials for an service principal.
Deletes entity from users.

### [Update-AzADAppFederatedCredential](Update-AzADAppFederatedCredential.md)
update the navigation property federatedIdentityCredentials in applications
Update the navigation property federatedIdentityCredentials in applications

### [Update-AzADApplication](Update-AzADApplication.md)
Updates entity in applications

### [Update-AzADGroup](Update-AzADGroup.md)
update entity in groups
Update entity in groups

### [Update-AzADServicePrincipal](Update-AzADServicePrincipal.md)
Updates entity in service principal

### [Update-AzADServicePrincipalAppRoleAssignment](Update-AzADServicePrincipalAppRoleAssignment.md)
update the navigation property appRoleAssignments in servicePrincipals
Update the navigation property appRoleAssignments in servicePrincipals

### [Update-AzADUser](Update-AzADUser.md)
Updates entity in users
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ schema: 2.0.0
# Update-AzADAppFederatedCredential

## SYNOPSIS
update the navigation property federatedIdentityCredentials in applications
Update the navigation property federatedIdentityCredentials in applications

## SYNTAX

Expand All @@ -32,7 +32,7 @@ Update-AzADAppFederatedCredential -ApplicationObjectId <String> -FederatedCreden
```

## DESCRIPTION
update the navigation property federatedIdentityCredentials in applications
Update the navigation property federatedIdentityCredentials in applications

## EXAMPLES

Expand Down
4 changes: 2 additions & 2 deletions src/Resources/MSGraph.Autorest/docs/Update-AzADGroup.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ schema: 2.0.0
# Update-AzADGroup

## SYNOPSIS
update entity in groups
Update entity in groups

## SYNTAX

Expand Down Expand Up @@ -38,7 +38,7 @@ Update-AzADGroup -ObjectId <String> -JsonString <String> [-DefaultProfile <PSObj
```

## DESCRIPTION
update entity in groups
Update entity in groups

## EXAMPLES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ schema: 2.0.0
# Update-AzADServicePrincipalAppRoleAssignment

## SYNOPSIS
update the navigation property appRoleAssignments in servicePrincipals
Update the navigation property appRoleAssignments in servicePrincipals

## SYNTAX

Expand Down Expand Up @@ -39,7 +39,7 @@ Update-AzADServicePrincipalAppRoleAssignment -AppRoleAssignmentId <String> -Serv
```

## DESCRIPTION
update the navigation property appRoleAssignments in servicePrincipals
Update the navigation property appRoleAssignments in servicePrincipals

## EXAMPLES

Expand Down
2 changes: 1 addition & 1 deletion src/Resources/MSGraph.Autorest/generate-info.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"generate_Id": "6643d4dd-cf64-424b-9ea9-de30ee2634c4"
"generate_Id": "912d06ad-7d5f-412e-9b38-58da43a37da3"
}
11 changes: 11 additions & 0 deletions src/Resources/MSGraph.Autorest/resources/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Resources
This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder.

## Info
- Modifiable: yes
- Generated: no
- Committed: yes
- Packaged: no

## Purpose
Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact.
26 changes: 26 additions & 0 deletions src/Resources/Policy.Autorest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the ""License"");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an ""AS IS"" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
// is regenerated.

using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Policy")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("9.0.0")]
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]
Comment on lines +14 to +26
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This new AssemblyInfo.cs lives under src/Resources/Policy.Autorest, but the built project for this module is generated/Resources/Policy.Autorest/Az.Policy.csproj and (via src/Az.autorest.props) only compiles src custom code under the module's custom/ folder. As-is, these assembly attributes likely won't be used during build. If the intent is to set assembly metadata/version, add/update the AssemblyInfo.cs under the generated project (or adjust the build to include this file); otherwise remove it to avoid dead code.

Suggested change
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Policy")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("9.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("9.0.0")]
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]
// Note: Assembly-level attributes such as version and metadata are defined
// in the generated project under generated/Resources/Policy.Autorest.
// This file is intentionally left without assembly attributes to avoid
// unused or misleading configuration, since it is not included in the
// Az.Policy.csproj build.

Copilot uses AI. Check for mistakes.
2 changes: 1 addition & 1 deletion src/Resources/Policy.Autorest/docs/Az.Policy.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Az.Policy
Module Guid: 54d436a4-6f2e-4977-b339-2b40665fd8c4
Module Guid: 1f342329-f9ac-4f53-835f-31c93af7ed11
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The module GUID in this doc was changed, but it no longer matches the module manifest GUID (generated/Resources/Policy.Autorest/Az.Policy.psd1:2 still has 54d436a4-6f2e-4977-b339-2b40665fd8c4). Please keep the documentation Module Guid consistent with the actual module manifest to avoid publishing incorrect metadata.

Suggested change
Module Guid: 1f342329-f9ac-4f53-835f-31c93af7ed11
Module Guid: 54d436a4-6f2e-4977-b339-2b40665fd8c4

Copilot uses AI. Check for mistakes.
Download Help Link: https://learn.microsoft.com/powershell/module/az.policy
Help Version: 1.0.0.0
Locale: en-US
Expand Down
4 changes: 2 additions & 2 deletions src/Resources/Policy.Autorest/docs/New-AzPolicyExemption.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Accept wildcard characters: False
The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.

```yaml
Type: System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]
Type: System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]
Parameter Sets: (All)
Aliases:

Expand Down Expand Up @@ -318,7 +318,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

### System.Management.Automation.PSObject

### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]
### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]

### System.String

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ Accept wildcard characters: False
The expiration date and time (in UTC ISO 8601 format yyyy-MM-ddTHH:mm:ssZ) of the policy exemption.

```yaml
Type: System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]
Type: System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]
Parameter Sets: (All)
Aliases:

Expand Down Expand Up @@ -389,7 +389,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

### System.Management.Automation.SwitchParameter

### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]
### System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]

### System.String

Expand Down
2 changes: 1 addition & 1 deletion src/Resources/Policy.Autorest/generate-info.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"generate_Id": "7461fda7-f397-40a1-a514-a2601ee3bc73"
"generate_Id": "42915622-e47b-4f33-94c0-059a73cfef4e"
}
11 changes: 11 additions & 0 deletions src/Resources/Policy.Autorest/resources/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Resources
This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder.

## Info
- Modifiable: yes
- Generated: no
- Committed: yes
- Packaged: no

## Purpose
Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact.
Loading
Loading