Closed
Show file tree
Hide file tree
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "java (build)",
"paths": [
"${workspace}"
],
"isFullBuild": true,
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "java (build): Build Workspace",
"detail": "$(tools) Build all the Java projects in workspace."
}
]
}
]
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
# PowerShell Editor Services Release History

## v3.3.0
### Friday, November 15, 2024

See more details at the Release for [v3.3.0](https://.com/PowerShell/PowerShellEditorServices/releases/tag/v3.3.0).

Logging updates and dropped EOL PowerShell
## v4.0.0
### Monday, November 18, 2024

Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>4.0.0</VersionPrefix>
<VersionPrefix>3.21.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Company>Microsoft</Company>
<Copyright>© Microsoft Corporation.</Copyright>
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,131 +1,133 @@
#
#[email protected] [undefined:[email protected]]
# Module manifest for module 'PowerShellEditorServices'
#
# Generated by: daviwil
#
# Generated on: 5/12/2016
#

@{
@{@Bauerfilho}

# Script module or binary module file associated with this manifest.
RootModule = if ($PSEdition -eq 'Core')
{
# Script module or binary module file associated with this manifest.
RootModule = if ($PSEdition -eq 'Core') {
'bin/Core/Microsoft.PowerShell.EditorServices.Hosting.dll'
}
else
{
else {
'bin/Desktop/Microsoft.PowerShell.EditorServices.Hosting.dll'
}

# Version number of this module.
ModuleVersion = '4.0.0'
# Version number of this module.
<<<<<<< HEAD
ModuleVersion = '3.3.0'
= = = = = = =
ModuleVersion = '4.0.0'
>>>>>>> 42d13997e346de4601a08b7ab04a5207656ae1dd

# ID used to uniquely identify this module
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'
# ID used to uniquely identify this module
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'

# Author of this module
Author = 'Microsoft Corporation'
# Author of this module
Author = 'Microsoft Corporation'

# Company or vendor of this module
CompanyName = 'Microsoft Corporation'
# Company or vendor of this module
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = '(c) Microsoft Corporation'
# Copyright statement for this module
Copyright = '(c) Microsoft Corporation'

# Description of the functionality provided by this module
# Description = ''
# Description of the functionality provided by this module
# Description = ''

# Minimum version of the Windows PowerShell engine required by this module
# NOTE: The syntax used above in the manifest means this manifest cannot be read in PS 4 or below.
# Instead this is just an informative field.
PowerShellVersion = '5.1'
# Minimum version of the Windows PowerShell engine required by this module
# NOTE: The syntax used above in the manifest means this manifest cannot be read in PS 4 or below.
# Instead this is just an informative field.
PowerShellVersion = '5.1'

# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''
# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''
# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module
# NOTE: We check this later, so that the error message is communicated properly to the user
# DotNetFrameworkVersion = '4.6.2'
# Minimum version of Microsoft .NET Framework required by this module
# NOTE: We check this later, so that the error message is communicated properly to the user
# DotNetFrameworkVersion = '4.6.2'

# Minimum version of the common language runtime (CLR) required by this module
# CLRVersion = ''
# Minimum version of the common language runtime (CLR) required by this module
# CLRVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()
# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @()
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = @()

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @('Start-EditorServices')
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @('Start-EditorServices')

# Variables to export from this module
VariablesToExport = @()
# Variables to export from this module
VariablesToExport = @()

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = @()
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = @()

# DSC resources to export from this module
# DscResourcesToExport = @()
# DSC resources to export from this module
# DscResourcesToExport = @()

# List of all modules packaged with this module
# ModuleList = @()
# List of all modules packaged with this module
# ModuleList = @()

# List of all files packaged with this module
# FileList = @()
# List of all files packaged with this module
# FileList = @()

CompatiblePSEditions = @('Core', 'Desktop')
CompatiblePSEditions = @('Core', 'Desktop')

# 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 = @{
# 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 = @{

PSData = @{
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()
# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://.com/PowerShell/PowerShellEditorServices/blob/main/LICENSE'
# A URL to the license for this module.
LicenseUri = 'https://.com/PowerShell/PowerShellEditorServices/blob/main/LICENSE'

# A URL to the main website for this project.
ProjectUri = 'https://.com/PowerShell/PowerShellEditorServices'
# A URL to the main website for this project.
ProjectUri = 'https://.com/PowerShell/PowerShellEditorServices'

# A URL to an icon representing this module.
# IconUri = ''
# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
# ReleaseNotes = ''
# ReleaseNotes of this module
# ReleaseNotes = ''

} # End of PSData hashtable
} # End of PSData hashtable

} # End of PrivateData hashtable
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''
# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

}