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 @@ -2,5 +2,5 @@ The *Add role assignment* page lists all of the roles that can be assigned for t

1. Use the search box to filter the list to a more manageable size. This example shows how to filter for Storage Blob roles.
1. Select the role that you want to assign.
<br>

Select *Next* to go to the next screen.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ The *Add role assignment* page lists all of the roles that can be assigned for t

1. Use the search box to filter the list to a more manageable size. This example shows how to filter for Storage Blob roles.
1. Select the role that you want to assign.
<br>

Select *Next* to go to the next screen.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ The *Add role assignment* page lists all of the roles that can be assigned for t

1. Use the search box to filter the list to a more manageable size. This example shows how to filter for Storage Blob roles.
1. Select the role that you want to assign.
<br>

Select *Next* to go to the next screen.
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ Due to CAS's deprecation, the [supporting infrastructure was not brought forward
- `T:System.Security.Permissions.WebBrowserPermissionLevel`
- `T:System.Security.Permissions.ZoneIdentityPermission`
- `T:System.Security.Permissions.ZoneIdentityPermissionAttribute`
- `M:`System.Security.Policy.ApplicationTrust.ApplicationTrust(PermissionSet, IEnumerable<StrongName>)`
- `M:System.Security.Policy.ApplicationTrust.ApplicationTrust(PermissionSet, IEnumerable<StrongName>)`
- `P:System.Security.Policy.ApplicationTrust.FullTrustAssemblies`
- `T:System.Security.Policy.FileCodeGroup`
- `T:System.Security.Policy.GacInstalled`
Expand Down
2 changes: 1 addition & 1 deletion docs/core/extensions/windows-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ For more information on registering services, see [Dependency injection in .NET]
To create the .NET Worker Service app as a Windows Service, it's recommended that you publish the app as a single file executable. It's less error-prone to have a self-contained executable, as there aren't any dependent files lying around the file system. But you may choose a different publishing modality, which is perfectly acceptable, so long as you create an **.exe* file that can be targeted by the Windows Service Control Manager.

> [!IMPORTANT]
> An alternative publishing approach is to build the **.dll* (instead of an **.exe*), and when you install the published app using the Windows Service Control Manager you delegate to the .NET CLI and pass the DLL. For more information, see [.NET CLI: dotnet command](../tools/dotnet.md).
> An alternative publishing approach is to build the *\*.dll* (instead of an *\*.exe*), and when you install the published app using the Windows Service Control Manager you delegate to the .NET CLI and pass the DLL. For more information, see [.NET CLI: dotnet command](../tools/dotnet.md).
>
> ```powershell
> sc.exe create ".NET Joke Service" binpath="C:\Path\To\dotnet.exe C:\Path\To\App.WindowsService.dll"
Expand Down
2 changes: 1 addition & 1 deletion docs/devops/github-actions-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ While there are plenty of GitHub Actions available in the [Marketplace](https://

## Workflow file

GitHub Actions are utilized through a workflow file. The workflow file must be located in the *.github/workflows* directory of the repository, and is expected to be YAML (either **.yml* or **.yaml*). Workflow files define the *workflow composition*. A workflow is a configurable automated process made up of one or more jobs. For more information, see [Workflow syntax for GitHub Actions](https://docs.github.com/actions/reference/workflow-syntax-for-github-actions).
GitHub Actions are utilized through a workflow file. The workflow file must be located in the *.github/workflows* directory of the repository, and is expected to be YAML (either *\*.yml* or *\*.yaml*). Workflow files define the *workflow composition*. A workflow is a configurable automated process made up of one or more jobs. For more information, see [Workflow syntax for GitHub Actions](https://docs.github.com/actions/reference/workflow-syntax-for-github-actions).

### Example workflow files

Expand Down