EntityFramework.psd1 5.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. @{
  2. # Script module or binary module file associated with this manifest
  3. ModuleToProcess = 'EntityFramework.psm1'
  4. # Version number of this module.
  5. ModuleVersion = '4.3.0.0'
  6. # ID used to uniquely identify this module
  7. GUID = '06e6973e-66a3-4cfc-9a42-3f7d159e945a'
  8. # Author of this module
  9. Author = 'ADO.NET Entity Framework Team'
  10. # Company or vendor of this module
  11. CompanyName = 'Microsoft Corporation'
  12. # Copyright statement for this module
  13. Copyright = '(c) Microsoft Corporation. All rights reserved.'
  14. # Description of the functionality provided by this module
  15. Description = 'EntityFramework PowerShell module for use within NuGet''s Package Manager Console'
  16. # Minimum version of the Windows PowerShell engine required by this module
  17. PowerShellVersion = '2.0'
  18. # Name of the Windows PowerShell host required by this module
  19. PowerShellHostName = 'Package Manager Host'
  20. # Minimum version of the Windows PowerShell host required by this module
  21. PowerShellHostVersion = '1.2'
  22. # Minimum version of the .NET Framework required by this module
  23. DotNetFrameworkVersion = '4.0'
  24. # Minimum version of the common language runtime (CLR) required by this module
  25. CLRVersion = ''
  26. # Processor architecture (None, X86, Amd64, IA64) required by this module
  27. ProcessorArchitecture = ''
  28. # Modules that must be imported into the global environment prior to importing this module
  29. RequiredModules = @()
  30. # Assemblies that must be loaded prior to importing this module
  31. RequiredAssemblies = @()
  32. # Script files (.ps1) that are run in the caller's environment prior to importing this module
  33. ScriptsToProcess = @()
  34. # Type files (.ps1xml) to be loaded when importing this module
  35. TypesToProcess = @()
  36. # Format files (.ps1xml) to be loaded when importing this module
  37. FormatsToProcess = @()
  38. # Modules to import as nested modules of the module specified in ModuleToProcess
  39. NestedModules = @()
  40. # Functions to export from this module
  41. FunctionsToExport = '*'
  42. # Cmdlets to export from this module
  43. CmdletsToExport = ''
  44. # Variables to export from this module
  45. VariablesToExport = '*'
  46. # Aliases to export from this module
  47. AliasesToExport = ''
  48. # List of all modules packaged with this module
  49. ModuleList = @()
  50. # List of all files packaged with this module
  51. FileList = @()
  52. # Private data to pass to the module specified in ModuleToProcess
  53. PrivateData = ''
  54. }