Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/Microsoft.PowerShell.ThreadJob.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
RootModule = '.\Microsoft.PowerShell.ThreadJob.dll'

# Version number of this module.
ModuleVersion = '2.2.0'
ModuleVersion = '2.3.0'

# ID used to uniquely identify this module
GUID = 'a84b375d-c1d6-4a1c-bcb7-8059bc28cd98'
Expand Down Expand Up @@ -45,7 +45,7 @@ PowerShellVersion = '5.1'

# Cmdlets to export from this module
CmdletsToExport = 'Start-ThreadJob'

AliasesToExport = 'satjb'
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{

Expand Down
1 change: 1 addition & 0 deletions src/code/Microsoft.PowerShell.ThreadJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
namespace Microsoft.PowerShell.ThreadJob
{
[Cmdlet(VerbsLifecycle.Start, "ThreadJob")]
[Alias('satjb')]
[OutputType(typeof(ThreadJob))]
public sealed class StartThreadJobCommand : PSCmdlet
{
Expand Down
6 changes: 3 additions & 3 deletions src/code/Microsoft.PowerShell.ThreadJob.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<OutputType>Library</OutputType>
<RootNamespace>Microsoft.PowerShell.ThreadJob</RootNamespace>
<AssemblyName>Microsoft.PowerShell.ThreadJob</AssemblyName>
<AssemblyVersion>2.2.0.0</AssemblyVersion>
<FileVersion>2.2.0</FileVersion>
<InformationalVersion>2.2.0</InformationalVersion>
<AssemblyVersion>2.3.0.0</AssemblyVersion>
<FileVersion>2.3.0</FileVersion>
<InformationalVersion>2.3.0</InformationalVersion>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

Expand Down