把编译和运行需要的依赖项加入,没有models目录无法运行,没有packages目录无法编译
BIN
Plane.FormationCreator/bin/Debug/Models/Opera/cube_b.JPG
Normal file
After Width: | Height: | Size: 142 KiB |
BIN
Plane.FormationCreator/bin/Debug/Models/Opera/cube_d.JPG
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
Plane.FormationCreator/bin/Debug/Models/Opera/cube_f.JPG
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
Plane.FormationCreator/bin/Debug/Models/Opera/cube_l.JPG
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
Plane.FormationCreator/bin/Debug/Models/Opera/cube_r.JPG
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
Plane.FormationCreator/bin/Debug/Models/Opera/cube_u.JPG
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/Opera/cube_b.JPG
Normal file
After Width: | Height: | Size: 142 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/Opera/cube_d.JPG
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/Opera/cube_f.JPG
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/Opera/cube_l.JPG
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/Opera/cube_r.JPG
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/Opera/cube_u.JPG
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/temp/cube_b.JPG
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/temp/cube_d.JPG
Normal file
After Width: | Height: | Size: 76 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/temp/cube_f.JPG
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/temp/cube_l.JPG
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/temp/cube_r.JPG
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
Plane.FormationCreator/bin/Release/Models/temp/cube_u.JPG
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
packages/CommonServiceLocator.1.3/CommonServiceLocator.1.3.nupkg
vendored
Normal file
@ -0,0 +1,268 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Practices.ServiceLocation</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ActivationException">
|
||||
<summary>
|
||||
The standard exception thrown when a ServiceLocator has an error in resolving an object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message.
|
||||
</summary>
|
||||
<param name="message">
|
||||
The message that describes the error.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ActivationException.#ctor(System.String,System.Exception)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Exception" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.
|
||||
</summary>
|
||||
<param name="message">
|
||||
The error message that explains the reason for the exception.
|
||||
</param>
|
||||
<param name="innerException">
|
||||
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
|
||||
</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.IServiceLocator">
|
||||
<summary>
|
||||
The generic Service Locator interface. This interface is used
|
||||
to retrieve services (instances identified by type and optional
|
||||
name) from a container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance(System.Type)">
|
||||
<summary>
|
||||
Get an instance of the given <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetAllInstances(System.Type)">
|
||||
<summary>
|
||||
Get all instances of the given <paramref name="serviceType"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <paramref name="serviceType"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance``1">
|
||||
<summary>
|
||||
Get an instance of the given <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetInstance``1(System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.IServiceLocator.GetAllInstances``1">
|
||||
<summary>
|
||||
Get all instances of the given <typeparamref name="TService"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <typeparamref name="TService"/>.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocator">
|
||||
<summary>
|
||||
This class provides the ambient container for this application. If your
|
||||
framework defines such an ambient container, use ServiceLocator.Current
|
||||
to get it.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocator.SetLocatorProvider(Microsoft.Practices.ServiceLocation.ServiceLocatorProvider)">
|
||||
<summary>
|
||||
Set the delegate that is used to retrieve the current container.
|
||||
</summary>
|
||||
<param name="newProvider">Delegate that, when called, will return
|
||||
the current ambient container.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.ServiceLocator.Current">
|
||||
<summary>
|
||||
The current ambient container.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase">
|
||||
<summary>
|
||||
This class is a helper that provides a default implementation
|
||||
for most of the methods of <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetService(System.Type)">
|
||||
<summary>
|
||||
Implementation of <see cref="M:System.IServiceProvider.GetService(System.Type)"/>.
|
||||
</summary>
|
||||
<param name="serviceType">The requested service.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error in resolving the service instance.</exception>
|
||||
<returns>The requested object.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(System.Type)">
|
||||
<summary>
|
||||
Get an instance of the given <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <paramref name="serviceType"/>.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is an error resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetAllInstances(System.Type)">
|
||||
<summary>
|
||||
Get all instances of the given <paramref name="serviceType"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<param name="serviceType">Type of object requested.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <paramref name="serviceType"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance``1">
|
||||
<summary>
|
||||
Get an instance of the given <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetInstance``1(System.String)">
|
||||
<summary>
|
||||
Get an instance of the given named <typeparamref name="TService"/>.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<param name="key">Name the object was registered with.</param>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.GetAllInstances``1">
|
||||
<summary>
|
||||
Get all instances of the given <typeparamref name="TService"/> currently
|
||||
registered in the container.
|
||||
</summary>
|
||||
<typeparam name="TService">Type of object requested.</typeparam>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">if there is are errors resolving
|
||||
the service instance.</exception>
|
||||
<returns>A sequence of instances of the requested <typeparamref name="TService"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.DoGetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
When implemented by inheriting classes, this method will do the actual work of resolving
|
||||
the requested service instance.
|
||||
</summary>
|
||||
<param name="serviceType">Type of instance requested.</param>
|
||||
<param name="key">Name of registered service you want. May be null.</param>
|
||||
<returns>The requested service instance.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.DoGetAllInstances(System.Type)">
|
||||
<summary>
|
||||
When implemented by inheriting classes, this method will do the actual work of
|
||||
resolving all the requested service instances.
|
||||
</summary>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<returns>Sequence of service instance objects.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.FormatActivationExceptionMessage(System.Exception,System.Type,System.String)">
|
||||
<summary>
|
||||
Format the exception message for use in an <see cref="T:Microsoft.Practices.ServiceLocation.ActivationException"/>
|
||||
that occurs while resolving a single service.
|
||||
</summary>
|
||||
<param name="actualException">The actual exception thrown by the implementation.</param>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<param name="key">Name requested.</param>
|
||||
<returns>The formatted exception message string.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase.FormatActivateAllExceptionMessage(System.Exception,System.Type)">
|
||||
<summary>
|
||||
Format the exception message for use in an <see cref="T:Microsoft.Practices.ServiceLocation.ActivationException"/>
|
||||
that occurs while resolving multiple service instances.
|
||||
</summary>
|
||||
<param name="actualException">The actual exception thrown by the implementation.</param>
|
||||
<param name="serviceType">Type of service requested.</param>
|
||||
<returns>The formatted exception message string.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.ServiceLocatorProvider">
|
||||
<summary>
|
||||
This delegate type is used to provide a method that will
|
||||
return the current container. Used with the <see cref="T:Microsoft.Practices.ServiceLocation.ServiceLocator"/>
|
||||
static accessor class.
|
||||
</summary>
|
||||
<returns>An <see cref="T:Microsoft.Practices.ServiceLocation.IServiceLocator"/>.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Practices.ServiceLocation.Properties.Resources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ActivateAllExceptionMessage">
|
||||
<summary>
|
||||
Looks up a localized string similar to Activation error occurred while trying to get all instances of type {0}.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ActivationExceptionMessage">
|
||||
<summary>
|
||||
Looks up a localized string similar to Activation error occurred while trying to get instance of type {0}, key "{1}".
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Practices.ServiceLocation.Properties.Resources.ServiceLocationProviderNotSetMessage">
|
||||
<summary>
|
||||
Looks up a localized string similar to ServiceLocationProvider must be set..
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
packages/EntityFramework.6.2.0/EntityFramework.6.2.0.nupkg
vendored
Normal file
5
packages/EntityFramework.6.2.0/content/net40/App.config.transform
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
<configuration>
|
||||
<configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
</configSections>
|
||||
</configuration>
|
5
packages/EntityFramework.6.2.0/content/net40/Web.config.transform
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
<configuration>
|
||||
<configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
</configSections>
|
||||
</configuration>
|
BIN
packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.dll
vendored
Normal file
1959
packages/EntityFramework.6.2.0/lib/net40/EntityFramework.SqlServer.xml
vendored
Normal file
BIN
packages/EntityFramework.6.2.0/lib/net40/EntityFramework.dll
vendored
Normal file
45898
packages/EntityFramework.6.2.0/lib/net40/EntityFramework.xml
vendored
Normal file
BIN
packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.dll
vendored
Normal file
2093
packages/EntityFramework.6.2.0/lib/net45/EntityFramework.SqlServer.xml
vendored
Normal file
BIN
packages/EntityFramework.6.2.0/lib/net45/EntityFramework.dll
vendored
Normal file
53236
packages/EntityFramework.6.2.0/lib/net45/EntityFramework.xml
vendored
Normal file
BIN
packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.Utility.dll
vendored
Normal file
BIN
packages/EntityFramework.6.2.0/tools/EntityFramework.PowerShell.dll
vendored
Normal file
BIN
packages/EntityFramework.6.2.0/tools/EntityFramework.psd1
vendored
Normal file
1176
packages/EntityFramework.6.2.0/tools/EntityFramework.psm1
vendored
Normal file
48
packages/EntityFramework.6.2.0/tools/about_EntityFramework.help.txt
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
TOPIC
|
||||
about_EntityFramework
|
||||
|
||||
SHORT DESCRIPTION
|
||||
Provides information about Entity Framework commands.
|
||||
|
||||
LONG DESCRIPTION
|
||||
This topic describes the Entity Framework commands. Entity Framework is
|
||||
Microsoft's recommended data access technology for new applications.
|
||||
|
||||
The following Entity Framework cmdlets are used with Entity Framework
|
||||
Migrations.
|
||||
|
||||
Cmdlet Description
|
||||
----------------- ---------------------------------------------------
|
||||
Enable-Migrations Enables Code First Migrations in a project.
|
||||
|
||||
Add-Migration Scaffolds a migration script for any pending model
|
||||
changes.
|
||||
|
||||
Update-Database Applies any pending migrations to the database.
|
||||
|
||||
Get-Migrations Displays the migrations that have been applied to
|
||||
the target database.
|
||||
|
||||
The following Entity Framework cmdlets are used by NuGet packages that
|
||||
install Entity Framework providers. These commands are not usually used as
|
||||
part of normal application development.
|
||||
|
||||
Cmdlet Description
|
||||
------------------------------ ---------------------------------------
|
||||
Add-EFProvider Adds or updates an Entity Framework
|
||||
provider entry in the project config
|
||||
file.
|
||||
|
||||
Add-EFDefaultConnectionFactory Adds or updates an Entity Framework
|
||||
default connection factory in the
|
||||
project config file.
|
||||
|
||||
Initialize-EFConfiguration Initializes the Entity Framework
|
||||
section in the project config file and
|
||||
sets defaults.
|
||||
|
||||
SEE ALSO
|
||||
Enable-Migrations
|
||||
Add-Migration
|
||||
Update-Database
|
||||
Get-Migrations
|
155
packages/EntityFramework.6.2.0/tools/init.ps1
vendored
Normal file
@ -0,0 +1,155 @@
|
||||
param($installPath, $toolsPath, $package, $project)
|
||||
|
||||
if (Get-Module | ?{ $_.Name -eq 'EntityFramework' })
|
||||
{
|
||||
Remove-Module EntityFramework
|
||||
}
|
||||
|
||||
Import-Module (Join-Path $toolsPath EntityFramework.psd1)
|
||||
|
||||
# SIG # Begin signature block
|
||||
# MIIa3gYJKoZIhvcNAQcCoIIazzCCGssCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
|
||||
# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
|
||||
# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUjXj4E03IfImYfKMB4CA3DfY0
|
||||
# KZmgghWAMIIEwjCCA6qgAwIBAgITMwAAAMDeLD0HlORJeQAAAAAAwDANBgkqhkiG
|
||||
# 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G
|
||||
# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw
|
||||
# HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTYwOTA3MTc1ODUw
|
||||
# WhcNMTgwOTA3MTc1ODUwWjCBsjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp
|
||||
# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw
|
||||
# b3JhdGlvbjEMMAoGA1UECxMDQU9DMScwJQYDVQQLEx5uQ2lwaGVyIERTRSBFU046
|
||||
# N0FCNS0yREYyLURBM0YxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl
|
||||
# cnZpY2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDoiKVSfklVAB4E
|
||||
# Oc9+r95kl32muXNITYcTbaRtuJl+MQzEnD0eU2JUXx2mI06ONnTfFW39ZQPF1pvU
|
||||
# WkHBrS6m8oKy7Em4Ol91RJ5Knwy1VvY2Tawqh+VxwdARRgOeFtFm0S+Pa+BrXtVU
|
||||
# hTtGl0BGMsKGEQKdDNGJD259Iq47qPLw3CmllE3/YFw1GGoJ9C3ry+I7ntxIjJYB
|
||||
# LXA122vw93OOD/zWFh1SVq2AejPxcjKtHH2hjoeTKwkFeMNtIekrUSvhbuCGxW5r
|
||||
# 54KW0Yus4o8392l9Vz8lSEn2j/TgPTqD6EZlzkpw54VSwede/vyqgZIrRbat0bAh
|
||||
# b8doY8vDAgMBAAGjggEJMIIBBTAdBgNVHQ4EFgQUFf5K2jOJ0xmF1WRZxNxTQRBP
|
||||
# tzUwHwYDVR0jBBgwFoAUIzT42VJGcArtQPt2+7MrsMM1sw8wVAYDVR0fBE0wSzBJ
|
||||
# oEegRYZDaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv
|
||||
# TWljcm9zb2Z0VGltZVN0YW1wUENBLmNybDBYBggrBgEFBQcBAQRMMEowSAYIKwYB
|
||||
# BQUHMAKGPGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9z
|
||||
# b2Z0VGltZVN0YW1wUENBLmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG
|
||||
# 9w0BAQUFAAOCAQEAGeJAuzJMR+kovMi8RK/LtfrKazWlR5Lx02hM9GFmMk1zWCSc
|
||||
# pfVY6xqfzWFllCFHBtOaJZqLiV97jfNCLpG0PULz24CWSkG7jJ+mZaCSicZ7ZC3b
|
||||
# WDh1zpc54llYVyyTkRVYx/mtc9GujqbS8CBZgjaT/JsECnvGAPUcLYuSGt53CU1b
|
||||
# UuiNwuzAhai4glcYyq3/7qMmmAtbnbCZhR5ySoMy7BwdzN70drLtafCJQncfAHXV
|
||||
# O5r6SX4U/2J2zvWhA8lqhZu9SRulFGRvf81VTf+k5rJ2TjL6dYtSchooJ5YVvUk6
|
||||
# i7bfV0VBN8xpaUhk8jbBnxhDPKIvDvnZlhPuJjCCBOswggPToAMCAQICEzMAAAF4
|
||||
# JVq1zSPGX5UAAQAAAXgwDQYJKoZIhvcNAQEFBQAweTELMAkGA1UEBhMCVVMxEzAR
|
||||
# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p
|
||||
# Y3Jvc29mdCBDb3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2ln
|
||||
# bmluZyBQQ0EwHhcNMTcwODExMjAxMTE1WhcNMTgwODExMjAxMTE1WjCBgjELMAkG
|
||||
# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx
|
||||
# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEMMAoGA1UECxMDQU9DMR4w
|
||||
# HAYDVQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUA
|
||||
# A4IBDwAwggEKAoIBAQCZbh1TVaudsrIbXUPPB9c8S+E+dKSbskHKYlG6SGTH8jhT
|
||||
# hpuvGiAO87F2b9GHVN+DvszaMkGy/xQgHaGEJLfpnb3kpakic7E0bjDHdG4KnHRb
|
||||
# no/wfUkGLfS79o+cw//RY8Ck6yE+0czDBcxp0Gbw5JyGP+KFqvzRR/3Tv3nt/5x0
|
||||
# 5ZnEOHYP+eDVikDvn/DH+oxxtiCfX3tkvtm/yX4eOb47YdmYKQjCgz2+Nil/lupY
|
||||
# vU0QFIjvke3jshqQINDng/vO9ys2qA0ex/q5hlLKQTST99dGoM86Ge6F723ReToq
|
||||
# KnGLN8kiCG7uNapOAIQrpCHZq96CVumiaA5ZvxU9AgMBAAGjggFgMIIBXDATBgNV
|
||||
# HSUEDDAKBggrBgEFBQcDAzAdBgNVHQ4EFgQUjuhtD3FD7tk/RKloJFX05cpgLjcw
|
||||
# UQYDVR0RBEowSKRGMEQxDDAKBgNVBAsTA0FPQzE0MDIGA1UEBRMrMjI5ODAzKzFh
|
||||
# YmY5ZTVmLWNlZDAtNDJlNi1hNjVkLWQ5MzUwOTU5ZmUwZTAfBgNVHSMEGDAWgBTL
|
||||
# EejK0rQWWAHJNy4zFha5TJoKHzBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3Js
|
||||
# Lm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNDb2RTaWdQQ0FfMDgt
|
||||
# MzEtMjAxMC5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8v
|
||||
# d3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY0NvZFNpZ1BDQV8wOC0zMS0y
|
||||
# MDEwLmNydDANBgkqhkiG9w0BAQUFAAOCAQEAYnG/oHG/xgZYR8NAMHZ/vE9GM0e4
|
||||
# 7YdhuTea2uY7pSGwM707wp8Wan0Fa6evK1PWfcd/XNOh2BpEv5o8RmKDoEsG0ECP
|
||||
# 13Jug7cklfKreBVHQ+Djg43VVFLZpuo7aOAVK6wjlcnpPUtn+SfH9K0aM2FjDKVJ
|
||||
# FW6XFKXBat5R+Zp6uOxWTxpSeMTeDC5zF6IY6ogR1uzU+9EQoRlAvkwX6po+exEL
|
||||
# nMLr4++P+fqOxIU+PODIoB8ijClAqwwKvLlMPa3qlrNHt+LweTMu7lvGC/RA18wU
|
||||
# zzXAeomuZ03blUw+bkOiVgWOk4S0RN7EnW7zjJV8gd/+G2dbToUi1cB/fTCCBbww
|
||||
# ggOkoAMCAQICCmEzJhoAAAAAADEwDQYJKoZIhvcNAQEFBQAwXzETMBEGCgmSJomT
|
||||
# 8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UEAxMk
|
||||
# TWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMDgzMTIy
|
||||
# MTkzMloXDTIwMDgzMTIyMjkzMloweTELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh
|
||||
# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD
|
||||
# b3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0Ew
|
||||
# ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCycllcGTBkvx2aYCAgQpl2
|
||||
# U2w+G9ZvzMvx6mv+lxYQ4N86dIMaty+gMuz/3sJCTiPVcgDbNVcKicquIEn08Gis
|
||||
# TUuNpb15S3GbRwfa/SXfnXWIz6pzRH/XgdvzvfI2pMlcRdyvrT3gKGiXGqelcnNW
|
||||
# 8ReU5P01lHKg1nZfHndFg4U4FtBzWwW6Z1KNpbJpL9oZC/6SdCnidi9U3RQwWfjS
|
||||
# jWL9y8lfRjFQuScT5EAwz3IpECgixzdOPaAyPZDNoTgGhVxOVoIoKgUyt0vXT2Pn
|
||||
# 0i1i8UU956wIAPZGoZ7RW4wmU+h6qkryRs83PDietHdcpReejcsRj1Y8wawJXwPT
|
||||
# AgMBAAGjggFeMIIBWjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTLEejK0rQW
|
||||
# WAHJNy4zFha5TJoKHzALBgNVHQ8EBAMCAYYwEgYJKwYBBAGCNxUBBAUCAwEAATAj
|
||||
# BgkrBgEEAYI3FQIEFgQU/dExTtMmipXhmGA7qDFvpjy82C0wGQYJKwYBBAGCNxQC
|
||||
# BAweCgBTAHUAYgBDAEEwHwYDVR0jBBgwFoAUDqyCYEBWJ5flJRP8KuEKU5VZ5KQw
|
||||
# UAYDVR0fBEkwRzBFoEOgQYY/aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j
|
||||
# cmwvcHJvZHVjdHMvbWljcm9zb2Z0cm9vdGNlcnQuY3JsMFQGCCsGAQUFBwEBBEgw
|
||||
# RjBEBggrBgEFBQcwAoY4aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0
|
||||
# cy9NaWNyb3NvZnRSb290Q2VydC5jcnQwDQYJKoZIhvcNAQEFBQADggIBAFk5Pn8m
|
||||
# Rq/rb0CxMrVq6w4vbqhJ9+tfde1MOy3XQ60L/svpLTGjI8x8UJiAIV2sPS9MuqKo
|
||||
# VpzjcLu4tPh5tUly9z7qQX/K4QwXaculnCAt+gtQxFbNLeNK0rxw56gNogOlVuC4
|
||||
# iktX8pVCnPHz7+7jhh80PLhWmvBTI4UqpIIck+KUBx3y4k74jKHK6BOlkU7IG9KP
|
||||
# cpUqcW2bGvgc8FPWZ8wi/1wdzaKMvSeyeWNWRKJRzfnpo1hW3ZsCRUQvX/TartSC
|
||||
# Mm78pJUT5Otp56miLL7IKxAOZY6Z2/Wi+hImCWU4lPF6H0q70eFW6NB4lhhcyTUW
|
||||
# X92THUmOLb6tNEQc7hAVGgBd3TVbIc6YxwnuhQ6MT20OE049fClInHLR82zKwexw
|
||||
# o1eSV32UjaAbSANa98+jZwp0pTbtLS8XyOZyNxL0b7E8Z4L5UrKNMxZlHg6K3RDe
|
||||
# ZPRvzkbU0xfpecQEtNP7LN8fip6sCvsTJ0Ct5PnhqX9GuwdgR2VgQE6wQuxO7bN2
|
||||
# edgKNAltHIAxH+IOVN3lofvlRxCtZJj/UBYufL8FIXrilUEnacOTj5XJjdibIa4N
|
||||
# XJzwoq6GaIMMai27dmsAHZat8hZ79haDJLmIz2qoRzEvmtzjcT3XAH5iR9HOiMm4
|
||||
# GPoOco3Boz2vAkBq/2mbluIQqBC0N1AI1sM9MIIGBzCCA++gAwIBAgIKYRZoNAAA
|
||||
# AAAAHDANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPyLGQBGRYDY29tMRkwFwYK
|
||||
# CZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3NvZnQgUm9vdCBD
|
||||
# ZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcwNDAzMTI1MzA5WhcNMjEwNDAzMTMw
|
||||
# MzA5WjB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE
|
||||
# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEwHwYD
|
||||
# VQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwggEiMA0GCSqGSIb3DQEBAQUA
|
||||
# A4IBDwAwggEKAoIBAQCfoWyx39tIkip8ay4Z4b3i48WZUSNQrc7dGE4kD+7Rp9FM
|
||||
# rXQwIBHrB9VUlRVJlBtCkq6YXDAm2gBr6Hu97IkHD/cOBJjwicwfyzMkh53y9Gcc
|
||||
# LPx754gd6udOo6HBI1PKjfpFzwnQXq/QsEIEovmmbJNn1yjcRlOwhtDlKEYuJ6yG
|
||||
# T1VSDOQDLPtqkJAwbofzWTCd+n7Wl7PoIZd++NIT8wi3U21StEWQn0gASkdmEScp
|
||||
# ZqiX5NMGgUqi+YSnEUcUCYKfhO1VeP4Bmh1QCIUAEDBG7bfeI0a7xC1Un68eeEEx
|
||||
# d8yb3zuDk6FhArUdDbH895uyAc4iS1T/+QXDwiALAgMBAAGjggGrMIIBpzAPBgNV
|
||||
# HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQjNPjZUkZwCu1A+3b7syuwwzWzDzALBgNV
|
||||
# HQ8EBAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwgZgGA1UdIwSBkDCBjYAUDqyCYEBW
|
||||
# J5flJRP8KuEKU5VZ5KShY6RhMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJ
|
||||
# kiaJk/IsZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290IENl
|
||||
# cnRpZmljYXRlIEF1dGhvcml0eYIQea0WoUqgpa1Mc1j0BxMuZTBQBgNVHR8ESTBH
|
||||
# MEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0
|
||||
# cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEESDBGMEQGCCsGAQUF
|
||||
# BzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jvc29m
|
||||
# dFJvb3RDZXJ0LmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG9w0BAQUF
|
||||
# AAOCAgEAEJeKw1wDRDbd6bStd9vOeVFNAbEudHFbbQwTq86+e4+4LtQSooxtYrhX
|
||||
# AstOIBNQmd16QOJXu69YmhzhHQGGrLt48ovQ7DsB7uK+jwoFyI1I4vBTFd1Pq5Lk
|
||||
# 541q1YDB5pTyBi+FA+mRKiQicPv2/OR4mS4N9wficLwYTp2OawpylbihOZxnLcVR
|
||||
# DupiXD8WmIsgP+IHGjL5zDFKdjE9K3ILyOpwPf+FChPfwgphjvDXuBfrTot/xTUr
|
||||
# XqO/67x9C0J71FNyIe4wyrt4ZVxbARcKFA7S2hSY9Ty5ZlizLS/n+YWGzFFW6J1w
|
||||
# lGysOUzU9nm/qhh6YinvopspNAZ3GmLJPR5tH4LwC8csu89Ds+X57H2146SodDW4
|
||||
# TsVxIxImdgs8UoxxWkZDFLyzs7BNZ8ifQv+AeSGAnhUwZuhCEl4ayJ4iIdBD6Svp
|
||||
# u/RIzCzU2DKATCYqSCRfWupW76bemZ3KOm+9gSd0BhHudiG/m4LBJ1S2sWo9iaF2
|
||||
# YbRuoROmv6pH8BJv/YoybLL+31HIjCPJZr2dHYcSZAI9La9Zj7jkIeW1sMpjtHhU
|
||||
# BdRBLlCslLCleKuzoJZ1GtmShxN1Ii8yqAhuoFuMJb+g74TKIdbrHk/Jmu5J4PcB
|
||||
# ZW+JC33Iacjmbuqnl84xKf8OxVtc2E0bodj6L54/LlUWa8kTo/0xggTIMIIExAIB
|
||||
# ATCBkDB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE
|
||||
# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMwIQYD
|
||||
# VQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQQITMwAAAXglWrXNI8ZflQAB
|
||||
# AAABeDAJBgUrDgMCGgUAoIHhMBkGCSqGSIb3DQEJAzEMBgorBgEEAYI3AgEEMBwG
|
||||
# CisGAQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMCMGCSqGSIb3DQEJBDEWBBTq02RG
|
||||
# y+pjEYntEMXja7SF8TbmOjCBgAYKKwYBBAGCNwIBDDFyMHCgUoBQAEUAbgB0AGkA
|
||||
# dAB5ACAARgByAGEAbQBlAHcAbwByAGsAIABUAG8AbwBsAHMAIABmAG8AcgAgAFYA
|
||||
# aQBzAHUAYQBsACAAUwB0AHUAZABpAG+hGoAYaHR0cDovL21zZG4uY29tL2RhdGEv
|
||||
# ZWYgMA0GCSqGSIb3DQEBAQUABIIBAHQSKzEL3TItnbRhSBIYMFwe3udOxpA/S2dB
|
||||
# gUgxV1NkH+j0UbOnslGkt8gDBIlFre+2F+b7U4dnBiOjhizMyeAKSHYGdHqSoDJ0
|
||||
# lM4D5tuTSnoJ8FZtem/IjyBgKCmFMv05/ivF2StQ/nBhLj0QYcF4S9NZXj6JKFNa
|
||||
# WZJjFRaMRbkyvyD+p22Y1FyvcZPetZfoBYXs7GoaDdLvwrvfjKFwv4YGZ40WIGDX
|
||||
# 566IZCmnpMNJ2bfj8rNZUQBi8SZocFfAPw+9r/FLz51UTrKB0YRCBTXeWMYOJRpt
|
||||
# 6is5bbSLYJz7Y/BvoLy1Lt+BaqJEntP2lB3RvSsEm+BZOtDCcAahggIoMIICJAYJ
|
||||
# KoZIhvcNAQkGMYICFTCCAhECAQEwgY4wdzELMAkGA1UEBhMCVVMxEzARBgNVBAgT
|
||||
# Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m
|
||||
# dCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB
|
||||
# AhMzAAAAwN4sPQeU5El5AAAAAADAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMx
|
||||
# CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xNzEwMjMyMDEzNDVaMCMGCSqG
|
||||
# SIb3DQEJBDEWBBSn3QkcYO648MmwXthSXKh2NV8R9TANBgkqhkiG9w0BAQUFAASC
|
||||
# AQCnYTuQPUR6cHCGZStrauV4FQS+OC0dCo7D+mHETHYnDfgRKAloSQFBSqCm4C2+
|
||||
# GH20vmak1LgnN48Gc7YBQ4tXyW0HXo8yfCJDBeaF1tYGGLIMPthq3Pqu0+mqrJ2C
|
||||
# rklJw6+cKsF9+ESo9hoTCf3qztNjbEtaXrsakX+dALcMzJ4ism2oh5bUHd6CxWfF
|
||||
# Z/xLn4VQxzmZUSPbnhkIAoPwauAswHi1jgqo7Qd0HSIKHGNex7SOGgBfTWD4gCe4
|
||||
# IzGJlFFmCT6pFsjvreEnaQLNBv+yOj9P1Pf4MDVrNQn0OLeWSxfpf+XfgECLi0LS
|
||||
# QMxcy5Q0PezBaxQKzBTp39mT
|
||||
# SIG # End signature block
|
154
packages/EntityFramework.6.2.0/tools/install.ps1
vendored
Normal file
@ -0,0 +1,154 @@
|
||||
param($installPath, $toolsPath, $package, $project)
|
||||
|
||||
Initialize-EFConfiguration $project
|
||||
Add-EFProvider $project 'System.Data.SqlClient' 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer'
|
||||
|
||||
Write-Host
|
||||
Write-Host "Type 'get-help EntityFramework' to see all available Entity Framework commands."
|
||||
|
||||
# SIG # Begin signature block
|
||||
# MIIa3gYJKoZIhvcNAQcCoIIazzCCGssCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
|
||||
# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
|
||||
# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUt8mwpdjiFmu2B4KBh+vEeQ+V
|
||||
# VnSgghWAMIIEwjCCA6qgAwIBAgITMwAAALu2dyRxSiAAIAAAAAAAuzANBgkqhkiG
|
||||
# 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G
|
||||
# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw
|
||||
# HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTYwOTA3MTc1ODQ3
|
||||
# WhcNMTgwOTA3MTc1ODQ3WjCBsjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp
|
||||
# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw
|
||||
# b3JhdGlvbjEMMAoGA1UECxMDQU9DMScwJQYDVQQLEx5uQ2lwaGVyIERTRSBFU046
|
||||
# MERFOC0yREM1LTNDQTkxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl
|
||||
# cnZpY2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC48+U38sLxQNu8
|
||||
# OO1wnT9mKeHv+f/jxafTFXzx9VF59IK/n/jLv4HIXt8ucy3KjBTM5Jf6D0nQlI4h
|
||||
# Sizjrn6lO61q+V8oZiYYhjgR258rg8MDIrPpZMxK6OmD0d1wtksHW1cG21YKg5jg
|
||||
# idT2hmQBpiL9Cra3ccY5keu0kl6OfZFoj4DF0i0JRVFSy1C9gKP4H950XIjlA2Yo
|
||||
# TWN0LuHEHYMvwD1mOpAq2dVwPZh6xeNnpV8U/qLneyb9I/SqY/87tsZCn4FH7R3x
|
||||
# 0TgK2eRwpWXfwGbUb1R/UTLd20aQ+my4NWwSsndeG+0vsYwaF40heB2lo1ThmByr
|
||||
# OTBmEosTAgMBAAGjggEJMIIBBTAdBgNVHQ4EFgQUj9yNX+4+R8GZ7rcy4MdnJHXO
|
||||
# KkswHwYDVR0jBBgwFoAUIzT42VJGcArtQPt2+7MrsMM1sw8wVAYDVR0fBE0wSzBJ
|
||||
# oEegRYZDaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv
|
||||
# TWljcm9zb2Z0VGltZVN0YW1wUENBLmNybDBYBggrBgEFBQcBAQRMMEowSAYIKwYB
|
||||
# BQUHMAKGPGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9z
|
||||
# b2Z0VGltZVN0YW1wUENBLmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG
|
||||
# 9w0BAQUFAAOCAQEAcMI8Q0PxQVvxZSD1fjszuD6VF/qPZjKZj9WLTjWjZT2k9lzG
|
||||
# yvSL7vy9J7lnyMATrbm5ptqAfdonNygLaBm05MnrIvgPJYK89wyTIyS1u71ro7z+
|
||||
# EVrGPaKZiD+WvH8SWP+OWZQNf55fEL8tZo+a1oHm3lUARi5rR916OQvb4UnCENyV
|
||||
# g8IfmupnwpxHcmIBUWZtTKAuKmuX/c8G2z4KJ8WhruYjPDWYQXJrQ5t7PhZa19Ge
|
||||
# kOOtigge9EKIAWhZUJkw9fnfRm2IFX0gWtOzRXVNhR109ISacbNxd0oUboRYHmlq
|
||||
# wGrOz64/3SDdOeN7PjvLwFmThuoXIsxrjQD8ODCCBOswggPToAMCAQICEzMAAAF4
|
||||
# JVq1zSPGX5UAAQAAAXgwDQYJKoZIhvcNAQEFBQAweTELMAkGA1UEBhMCVVMxEzAR
|
||||
# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p
|
||||
# Y3Jvc29mdCBDb3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2ln
|
||||
# bmluZyBQQ0EwHhcNMTcwODExMjAxMTE1WhcNMTgwODExMjAxMTE1WjCBgjELMAkG
|
||||
# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx
|
||||
# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEMMAoGA1UECxMDQU9DMR4w
|
||||
# HAYDVQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUA
|
||||
# A4IBDwAwggEKAoIBAQCZbh1TVaudsrIbXUPPB9c8S+E+dKSbskHKYlG6SGTH8jhT
|
||||
# hpuvGiAO87F2b9GHVN+DvszaMkGy/xQgHaGEJLfpnb3kpakic7E0bjDHdG4KnHRb
|
||||
# no/wfUkGLfS79o+cw//RY8Ck6yE+0czDBcxp0Gbw5JyGP+KFqvzRR/3Tv3nt/5x0
|
||||
# 5ZnEOHYP+eDVikDvn/DH+oxxtiCfX3tkvtm/yX4eOb47YdmYKQjCgz2+Nil/lupY
|
||||
# vU0QFIjvke3jshqQINDng/vO9ys2qA0ex/q5hlLKQTST99dGoM86Ge6F723ReToq
|
||||
# KnGLN8kiCG7uNapOAIQrpCHZq96CVumiaA5ZvxU9AgMBAAGjggFgMIIBXDATBgNV
|
||||
# HSUEDDAKBggrBgEFBQcDAzAdBgNVHQ4EFgQUjuhtD3FD7tk/RKloJFX05cpgLjcw
|
||||
# UQYDVR0RBEowSKRGMEQxDDAKBgNVBAsTA0FPQzE0MDIGA1UEBRMrMjI5ODAzKzFh
|
||||
# YmY5ZTVmLWNlZDAtNDJlNi1hNjVkLWQ5MzUwOTU5ZmUwZTAfBgNVHSMEGDAWgBTL
|
||||
# EejK0rQWWAHJNy4zFha5TJoKHzBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3Js
|
||||
# Lm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNDb2RTaWdQQ0FfMDgt
|
||||
# MzEtMjAxMC5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8v
|
||||
# d3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY0NvZFNpZ1BDQV8wOC0zMS0y
|
||||
# MDEwLmNydDANBgkqhkiG9w0BAQUFAAOCAQEAYnG/oHG/xgZYR8NAMHZ/vE9GM0e4
|
||||
# 7YdhuTea2uY7pSGwM707wp8Wan0Fa6evK1PWfcd/XNOh2BpEv5o8RmKDoEsG0ECP
|
||||
# 13Jug7cklfKreBVHQ+Djg43VVFLZpuo7aOAVK6wjlcnpPUtn+SfH9K0aM2FjDKVJ
|
||||
# FW6XFKXBat5R+Zp6uOxWTxpSeMTeDC5zF6IY6ogR1uzU+9EQoRlAvkwX6po+exEL
|
||||
# nMLr4++P+fqOxIU+PODIoB8ijClAqwwKvLlMPa3qlrNHt+LweTMu7lvGC/RA18wU
|
||||
# zzXAeomuZ03blUw+bkOiVgWOk4S0RN7EnW7zjJV8gd/+G2dbToUi1cB/fTCCBbww
|
||||
# ggOkoAMCAQICCmEzJhoAAAAAADEwDQYJKoZIhvcNAQEFBQAwXzETMBEGCgmSJomT
|
||||
# 8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UEAxMk
|
||||
# TWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4XDTEwMDgzMTIy
|
||||
# MTkzMloXDTIwMDgzMTIyMjkzMloweTELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh
|
||||
# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD
|
||||
# b3Jwb3JhdGlvbjEjMCEGA1UEAxMaTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQQ0Ew
|
||||
# ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCycllcGTBkvx2aYCAgQpl2
|
||||
# U2w+G9ZvzMvx6mv+lxYQ4N86dIMaty+gMuz/3sJCTiPVcgDbNVcKicquIEn08Gis
|
||||
# TUuNpb15S3GbRwfa/SXfnXWIz6pzRH/XgdvzvfI2pMlcRdyvrT3gKGiXGqelcnNW
|
||||
# 8ReU5P01lHKg1nZfHndFg4U4FtBzWwW6Z1KNpbJpL9oZC/6SdCnidi9U3RQwWfjS
|
||||
# jWL9y8lfRjFQuScT5EAwz3IpECgixzdOPaAyPZDNoTgGhVxOVoIoKgUyt0vXT2Pn
|
||||
# 0i1i8UU956wIAPZGoZ7RW4wmU+h6qkryRs83PDietHdcpReejcsRj1Y8wawJXwPT
|
||||
# AgMBAAGjggFeMIIBWjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTLEejK0rQW
|
||||
# WAHJNy4zFha5TJoKHzALBgNVHQ8EBAMCAYYwEgYJKwYBBAGCNxUBBAUCAwEAATAj
|
||||
# BgkrBgEEAYI3FQIEFgQU/dExTtMmipXhmGA7qDFvpjy82C0wGQYJKwYBBAGCNxQC
|
||||
# BAweCgBTAHUAYgBDAEEwHwYDVR0jBBgwFoAUDqyCYEBWJ5flJRP8KuEKU5VZ5KQw
|
||||
# UAYDVR0fBEkwRzBFoEOgQYY/aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j
|
||||
# cmwvcHJvZHVjdHMvbWljcm9zb2Z0cm9vdGNlcnQuY3JsMFQGCCsGAQUFBwEBBEgw
|
||||
# RjBEBggrBgEFBQcwAoY4aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0
|
||||
# cy9NaWNyb3NvZnRSb290Q2VydC5jcnQwDQYJKoZIhvcNAQEFBQADggIBAFk5Pn8m
|
||||
# Rq/rb0CxMrVq6w4vbqhJ9+tfde1MOy3XQ60L/svpLTGjI8x8UJiAIV2sPS9MuqKo
|
||||
# VpzjcLu4tPh5tUly9z7qQX/K4QwXaculnCAt+gtQxFbNLeNK0rxw56gNogOlVuC4
|
||||
# iktX8pVCnPHz7+7jhh80PLhWmvBTI4UqpIIck+KUBx3y4k74jKHK6BOlkU7IG9KP
|
||||
# cpUqcW2bGvgc8FPWZ8wi/1wdzaKMvSeyeWNWRKJRzfnpo1hW3ZsCRUQvX/TartSC
|
||||
# Mm78pJUT5Otp56miLL7IKxAOZY6Z2/Wi+hImCWU4lPF6H0q70eFW6NB4lhhcyTUW
|
||||
# X92THUmOLb6tNEQc7hAVGgBd3TVbIc6YxwnuhQ6MT20OE049fClInHLR82zKwexw
|
||||
# o1eSV32UjaAbSANa98+jZwp0pTbtLS8XyOZyNxL0b7E8Z4L5UrKNMxZlHg6K3RDe
|
||||
# ZPRvzkbU0xfpecQEtNP7LN8fip6sCvsTJ0Ct5PnhqX9GuwdgR2VgQE6wQuxO7bN2
|
||||
# edgKNAltHIAxH+IOVN3lofvlRxCtZJj/UBYufL8FIXrilUEnacOTj5XJjdibIa4N
|
||||
# XJzwoq6GaIMMai27dmsAHZat8hZ79haDJLmIz2qoRzEvmtzjcT3XAH5iR9HOiMm4
|
||||
# GPoOco3Boz2vAkBq/2mbluIQqBC0N1AI1sM9MIIGBzCCA++gAwIBAgIKYRZoNAAA
|
||||
# AAAAHDANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPyLGQBGRYDY29tMRkwFwYK
|
||||
# CZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3NvZnQgUm9vdCBD
|
||||
# ZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcwNDAzMTI1MzA5WhcNMjEwNDAzMTMw
|
||||
# MzA5WjB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE
|
||||
# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEwHwYD
|
||||
# VQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwggEiMA0GCSqGSIb3DQEBAQUA
|
||||
# A4IBDwAwggEKAoIBAQCfoWyx39tIkip8ay4Z4b3i48WZUSNQrc7dGE4kD+7Rp9FM
|
||||
# rXQwIBHrB9VUlRVJlBtCkq6YXDAm2gBr6Hu97IkHD/cOBJjwicwfyzMkh53y9Gcc
|
||||
# LPx754gd6udOo6HBI1PKjfpFzwnQXq/QsEIEovmmbJNn1yjcRlOwhtDlKEYuJ6yG
|
||||
# T1VSDOQDLPtqkJAwbofzWTCd+n7Wl7PoIZd++NIT8wi3U21StEWQn0gASkdmEScp
|
||||
# ZqiX5NMGgUqi+YSnEUcUCYKfhO1VeP4Bmh1QCIUAEDBG7bfeI0a7xC1Un68eeEEx
|
||||
# d8yb3zuDk6FhArUdDbH895uyAc4iS1T/+QXDwiALAgMBAAGjggGrMIIBpzAPBgNV
|
||||
# HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQjNPjZUkZwCu1A+3b7syuwwzWzDzALBgNV
|
||||
# HQ8EBAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwgZgGA1UdIwSBkDCBjYAUDqyCYEBW
|
||||
# J5flJRP8KuEKU5VZ5KShY6RhMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAXBgoJ
|
||||
# kiaJk/IsZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290IENl
|
||||
# cnRpZmljYXRlIEF1dGhvcml0eYIQea0WoUqgpa1Mc1j0BxMuZTBQBgNVHR8ESTBH
|
||||
# MEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0
|
||||
# cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEESDBGMEQGCCsGAQUF
|
||||
# BzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jvc29m
|
||||
# dFJvb3RDZXJ0LmNydDATBgNVHSUEDDAKBggrBgEFBQcDCDANBgkqhkiG9w0BAQUF
|
||||
# AAOCAgEAEJeKw1wDRDbd6bStd9vOeVFNAbEudHFbbQwTq86+e4+4LtQSooxtYrhX
|
||||
# AstOIBNQmd16QOJXu69YmhzhHQGGrLt48ovQ7DsB7uK+jwoFyI1I4vBTFd1Pq5Lk
|
||||
# 541q1YDB5pTyBi+FA+mRKiQicPv2/OR4mS4N9wficLwYTp2OawpylbihOZxnLcVR
|
||||
# DupiXD8WmIsgP+IHGjL5zDFKdjE9K3ILyOpwPf+FChPfwgphjvDXuBfrTot/xTUr
|
||||
# XqO/67x9C0J71FNyIe4wyrt4ZVxbARcKFA7S2hSY9Ty5ZlizLS/n+YWGzFFW6J1w
|
||||
# lGysOUzU9nm/qhh6YinvopspNAZ3GmLJPR5tH4LwC8csu89Ds+X57H2146SodDW4
|
||||
# TsVxIxImdgs8UoxxWkZDFLyzs7BNZ8ifQv+AeSGAnhUwZuhCEl4ayJ4iIdBD6Svp
|
||||
# u/RIzCzU2DKATCYqSCRfWupW76bemZ3KOm+9gSd0BhHudiG/m4LBJ1S2sWo9iaF2
|
||||
# YbRuoROmv6pH8BJv/YoybLL+31HIjCPJZr2dHYcSZAI9La9Zj7jkIeW1sMpjtHhU
|
||||
# BdRBLlCslLCleKuzoJZ1GtmShxN1Ii8yqAhuoFuMJb+g74TKIdbrHk/Jmu5J4PcB
|
||||
# ZW+JC33Iacjmbuqnl84xKf8OxVtc2E0bodj6L54/LlUWa8kTo/0xggTIMIIExAIB
|
||||
# ATCBkDB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE
|
||||
# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMwIQYD
|
||||
# VQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQQITMwAAAXglWrXNI8ZflQAB
|
||||
# AAABeDAJBgUrDgMCGgUAoIHhMBkGCSqGSIb3DQEJAzEMBgorBgEEAYI3AgEEMBwG
|
||||
# CisGAQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMCMGCSqGSIb3DQEJBDEWBBSYs3+C
|
||||
# WsAb+LOoocEiqHmU0Q3ALzCBgAYKKwYBBAGCNwIBDDFyMHCgUoBQAEUAbgB0AGkA
|
||||
# dAB5ACAARgByAGEAbQBlAHcAbwByAGsAIABUAG8AbwBsAHMAIABmAG8AcgAgAFYA
|
||||
# aQBzAHUAYQBsACAAUwB0AHUAZABpAG+hGoAYaHR0cDovL21zZG4uY29tL2RhdGEv
|
||||
# ZWYgMA0GCSqGSIb3DQEBAQUABIIBABPzPT3kEODvGlQjfMBKfQudfoZrNqovPz0Y
|
||||
# cdler/amP+mg1mtJd+v+zn+UQXQi1DbBmqGuxQYj18vdb6eBGBZAlwYag91Lkp95
|
||||
# ILAZ926dAn0DXTLoXlZL1AVpRM8+/kqsHFCboI+Q1vO8FTO4/XpwuaCfwlvGAXxH
|
||||
# AcUVLEnmJeZvBv0npW8NghCkfrAVT3G2nE+4mjP/cRHlukWUDiogHhkcWZOrWYBk
|
||||
# aEEbojPYO1I+NW16NNp0Fq3VZO1Crr96I2HbrT2ogR2EJOWpPH0IyogZv4b0+E7S
|
||||
# VXX33Lp5YpzbzgdIPUvsFpKfidoRzLmi4SD0Tc8S46NlgXotFM6hggIoMIICJAYJ
|
||||
# KoZIhvcNAQkGMYICFTCCAhECAQEwgY4wdzELMAkGA1UEBhMCVVMxEzARBgNVBAgT
|
||||
# Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m
|
||||
# dCBDb3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB
|
||||
# AhMzAAAAu7Z3JHFKIAAgAAAAAAC7MAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMx
|
||||
# CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0xNzEwMjMyMDEzMzlaMCMGCSqG
|
||||
# SIb3DQEJBDEWBBR5eDKlzjbXG+gQhPSdEMDmmjY6BTANBgkqhkiG9w0BAQUFAASC
|
||||
# AQB777+HNR9jVbg2sXZm72fSrm3jxSLugzhcA4OxhZObW96AnJknlduQvAGqcDV+
|
||||
# Lt9CyaYLMt6I89MGkP9PBv8t5xhW0rHuBykna+5tTL8wvYrKd7r4ZvXT7YtHrqxO
|
||||
# c+WLBPUD8XvSxI2wEsXt6uPCt44sd8PdO7VMiRNWth9aWo7rWaP0kGGAt0qhspI8
|
||||
# 6mhsnam+SRGuDCpoLYcMTc1vVVKu1zZ9wgfxNCaf9YVswKmFc7Mj7VNpA3qd6Te0
|
||||
# RNAEkgZr84KzCf8CYtWMsSy9k68drBbP0JosTxCLrJ9/zud6fykp5UcljzdKHKdU
|
||||
# LMT4QBU8ya4StU9IgrUFBBcI
|
||||
# SIG # End signature block
|
BIN
packages/EntityFramework.6.2.0/tools/migrate.exe
vendored
Normal file
BIN
packages/GMap.NET.Windows.1.8.5/GMap.NET.Windows.1.8.5.nupkg
vendored
Normal file
BIN
packages/GMap.NET.Windows.1.8.5/lib/net40/GMap.NET.Core.dll
vendored
Normal file
BIN
packages/GMap.NET.Windows.1.8.5/lib/net40/GMap.NET.Core.dll1
vendored
Normal file
BIN
packages/GMap.NET.Windows.1.8.5/lib/net40/GMap.NET.WindowsForms.dll
vendored
Normal file
BIN
packages/GMap.NET.Windows.1.8.5/lib/net40/GMap.NET.WindowsPresentation.dll
vendored
Normal file
36
packages/GMap.NET.Windows.1.8.5/lib/readme.txt
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
*** GMap.NET - Maps for Windows Forms & Presentation ***
|
||||
|
||||
GMap.NET is great and Powerful, Free, cross platform, open source
|
||||
.NET control. Enable use routing, geocoding, directions and maps
|
||||
from Google, Yahoo!, Bing, OpenStreetMap, ArcGIS, Pergo, SigPac,
|
||||
Yendux, Mapy.cz, Maps.lt, iKarte.lv, NearMap, HereMap, CloudMade,
|
||||
WikiMapia, MapQuest in Windows Forms & Presentation, Supports
|
||||
caching and run on Windows Forms, Presentation & Mobile!
|
||||
|
||||
|
||||
License: The MIT License (MIT)
|
||||
-------------------------------------------------------------------
|
||||
Copyright (c) MainSoft Technology 2016-2018
|
||||
|
||||
WARNING: This software can access some map providers and may viotile
|
||||
their Terms of Service, you use it at your own risk, nothing is forcing
|
||||
you to accept this Source itself is legal!
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the "Software"),
|
||||
to deal in the Software without restriction, including without limitation
|
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
-------------------------------------------------------------------
|
BIN
packages/GMap/GMap.NET.Core.dll
Normal file
BIN
packages/GMap/GMap.NET.Core.dll1
Normal file
BIN
packages/GMap/GMap.NET.WindowsPresentation.dll
Normal file
BIN
packages/HelixToolkit.2.4.0/.signature.p7s
vendored
Normal file
13
packages/HelixToolkit.2.4.0/AUTHORS
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
# This is the official list of Helix Toolkit authors for copyright purposes.
|
||||
# This file is distinct from the CONTRIBUTORS file.
|
||||
# See the latter for an explanation.
|
||||
|
||||
# Names should be added to this file as
|
||||
# Name or Organization <email address>
|
||||
# The email address is not required for organizations.
|
||||
|
||||
# Please keep the list sorted.
|
||||
# Please notify the first person on the list to be added here.
|
||||
|
||||
Oystein Bjorke <oystein.bjorke@gmail.com>
|
||||
Lunci Hua <lunci.app@gmail.com>
|
50
packages/HelixToolkit.2.4.0/CONTRIBUTORS
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
# This is the official list of people who have contributed
|
||||
# to the Helix Toolkit repository.
|
||||
# The AUTHORS file lists the copyright holders; this file
|
||||
# lists people.
|
||||
|
||||
# People submitting code should be listed in this file (by email address).
|
||||
|
||||
# Names should be added to this file like so:
|
||||
# Name <email address>
|
||||
|
||||
# Please keep the list sorted.
|
||||
|
||||
Aleksey Shubin <alekseysshubin@gmail.com>
|
||||
ando23 <andreas@herzig-net.de>
|
||||
Beppe Marazzi <beppemarazzi@gmail.com>
|
||||
Benglin (Ben) Goh <benglin@outlook.com>
|
||||
Brad Phelan <bradphelan@xtargets.com>
|
||||
Carl Philipp Bickmeier <c.bickmeier@diomex.de>
|
||||
ccHanibal <oliver91daum@hotmail.de>
|
||||
christophano@hotmail.com
|
||||
Christof Konstantinopoulos <chrkon@web.de>
|
||||
Christof <chrkon@mail.de>
|
||||
ck <konstantinopoulos@glm-laser.com>
|
||||
cureos
|
||||
dgwaldo <don.g.waldo@gmail.com>
|
||||
dturvey_bhc
|
||||
Don Waldo <don.g.waldo@gmail.com>
|
||||
Edward Zhu <edward.zr.zhu@gmail.com>
|
||||
Franz Spitaler <spitefr@gmail.com>
|
||||
Gary Johnson <gary@gjtt.com>
|
||||
Ian Keough <ian.keough@autodesk.com>
|
||||
Jack Ukleja <jack@ukleja.com>
|
||||
Jérémy Ansel <JeremyAnsel@users.noreply.github.com>
|
||||
jesperll
|
||||
Johan Larsson <johan_gavle1@hotmail.com>
|
||||
johnsonlu <johnsonlu82@gmail.com>
|
||||
lcouz <couzinetlionel@hotmail.com>
|
||||
lrieger <lr@live.de>
|
||||
Lunci Hua <lunci.app@gmail.com>
|
||||
mertkokusen <mertkokusen@hotmail.com>
|
||||
mortalV <vriadchenko@initium.ru>
|
||||
omnillogix <github@omnilogix.com>
|
||||
Oystein Bjorke <oystein.bjorke@gmail.com>
|
||||
Peter Boyer <peter.b.boyer@gmail.com>
|
||||
PillowSky <pillowsky@qq.com>
|
||||
Piotr Steclik <piotr@steclik.com>
|
||||
przem
|
||||
Samuel Carlsson <samuel.carlsson@gmail.com>
|
||||
smischke <survivorx@gmx.de>
|
||||
Zonggui Zhu <zhuzonggui@outlook.com>
|
BIN
packages/HelixToolkit.2.4.0/HelixToolkit.2.4.0.nupkg
vendored
Normal file
22
packages/HelixToolkit.2.4.0/LICENSE
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2018 Helix Toolkit contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
80
packages/HelixToolkit.2.4.0/README.md
vendored
Normal file
@ -0,0 +1,80 @@
|
||||
<img src='https://avatars3.githubusercontent.com/u/8432523?s=200&v=4' width='64' />
|
||||
|
||||
# Helix Toolkit
|
||||
|
||||
**Helix Toolkit is a collection of 3D components for .NET Framework.**
|
||||
|
||||
[**HelixToolkit.WPF:**](https://github.com/helix-toolkit/helix-toolkit/tree/develop/Source/HelixToolkit.Wpf)
|
||||
Adds variety of functionalities/models on the top of internal WPF 3D model (Media3D namespace).
|
||||
|
||||
[**HelixToolkit.SharpDX.WPF:**](https://github.com/helix-toolkit/helix-toolkit/tree/develop/Source/HelixToolkit.Wpf.SharpDX)
|
||||
3D Components and XAML/MVVM compatible Scene Graphs based on [SharpDX](https://github.com/sharpdx/SharpDX)(DirectX 11) for high performance usage.
|
||||
|
||||
[**HelixToolkit.UWP:**](https://github.com/helix-toolkit/helix-toolkit/tree/develop/Source/HelixToolkit.UWP)
|
||||
3D Components and XAML/MVVM compatible Scene Graphs based on [SharpDX](https://github.com/sharpdx/SharpDX)(DirectX 11) for Universal Windows App.
|
||||
|
||||
[**Examples:**](https://github.com/helix-toolkit/helix-toolkit/tree/develop/Source/Examples)
|
||||
Please download full source code to run examples. Or download [compiled version](https://ci.appveyor.com/project/objorke/helix-toolkit/branch/develop/artifacts)
|
||||
|
||||
[](https://ci.appveyor.com/project/objorke/helix-toolkit)
|
||||
|
||||
Description | Value
|
||||
--------------------|-----------------------
|
||||
License | The MIT License (MIT)
|
||||
Web page | http://helix-toolkit.org/
|
||||
Documentation | http://docs.helix-toolkit.org/
|
||||
Forum | http://forum.helix-toolkit.org/
|
||||
Chat | https://gitter.im/helix-toolkit/helix-toolkit
|
||||
Source repository | http://github.com/helix-toolkit/helix-toolkit
|
||||
Latest build | http://ci.appveyor.com/project/objorke/helix-toolkit
|
||||
Issue tracker | http://github.com/helix-toolkit/helix-toolkit/issues
|
||||
NuGet packages | http://www.nuget.org/packages?q=HelixToolkit
|
||||
MyGet feed | https://www.myget.org/F/helix-toolkit
|
||||
StackOverflow | http://stackoverflow.com/questions/tagged/helix-3d-toolkit
|
||||
Twitter | https://twitter.com/hashtag/Helix3DToolkit
|
||||
|
||||
## Project Build
|
||||
|
||||
**Visual Studio 2017. Windows 10 SDK (Min Ver.10.0.10586.0).**
|
||||
|
||||
Windows 10 SDK **Ver.10.0.10586.0** can be selected and installed using Visual Studio 2017 installer.If you installed the higher version only, please change the target version in **HelixToolkit.Native.ShaderBuilder** property to the proper version installed on your machine.
|
||||
|
||||
## Notes
|
||||
|
||||
#### 1. Right-handed Cartesian coordinate system and row major matrix by default
|
||||
HelixToolkit default is using right-handed Cartesian coordinate system, including Meshbuilder etc. To use left-handed Cartesian coordinate system (Camera.CreateLeftHandedSystem = true), user must manually correct the triangle winding order or IsFrontCounterClockwise in raster state description if using SharpDX. Matrices are row major by default.
|
||||
|
||||
#### 2. Performance [Topics](https://github.com/helix-toolkit/helix-toolkit/wiki/Tips-on-performance-optimization-(WPF.SharpDX-and-UWP)) for WPF.SharpDX and UWP.
|
||||
|
||||
#### 3. Following features are not supported currently on FeatureLevel 10 graphics card:
|
||||
FXAA, Order Independant Transparent Rendering, Particle system, Tessellation.
|
||||
|
||||
#### 4. [Wiki](https://github.com/helix-toolkit/helix-toolkit/wiki)
|
||||
|
||||
## News
|
||||
|
||||
#### 2018-07-22
|
||||
[V2.3.0](https://github.com/helix-toolkit/helix-toolkit/tree/release/2.3.0) releases are available on nuget. [Release Note](https://github.com/helix-toolkit/helix-toolkit/blob/master/CHANGELOG.md)
|
||||
- [WPF](https://www.nuget.org/packages/HelixToolkit.Wpf/2.3.0)
|
||||
- [WPF.SharpDX](https://www.nuget.org/packages/HelixToolkit.Wpf.SharpDX/2.3.0)
|
||||
- [UWP](https://www.nuget.org/packages/HelixToolkit.UWP/2.3.0)
|
||||
|
||||
#### Changes (Please refer to [Release Note](https://github.com/helix-toolkit/helix-toolkit/blob/master/CHANGELOG.md) for details)
|
||||
1. Dynamic Buffer Support for geometry data streaming. (WPF.SharpDX and UWP) [Wiki](https://github.com/helix-toolkit/helix-toolkit/wiki/Dynamic-Geometry3D-for-Data-Streaming)
|
||||
2. New TransformManipulator. See Manipulator Demo. (WPF.SharpDX and UWP)
|
||||
3. Ply format reader. (All)
|
||||
4. Support Order Independent Transparency for DiffuseMaterial. (WPF.SharpDX and UWP)
|
||||
5. Add BatchedMeshGeometryModel3D for mesh batching, supports multiple material color properties.(WPF.SharpDX and UWP)
|
||||
6. Add SharpDX.Core simple viewport and performance tester (SharpDX.Core).
|
||||
7. Support Manual Render Ordering. (WPF.SharpDX and UWP)
|
||||
|
||||
#### 2018-06-17
|
||||
[V2.2.0](https://github.com/helix-toolkit/helix-toolkit/tree/release/2.2.0) releases are available on nuget. [Release Note](https://github.com/helix-toolkit/helix-toolkit/blob/master/CHANGELOG.md)
|
||||
- [WPF](https://www.nuget.org/packages/HelixToolkit.Wpf/2.2.0)
|
||||
- [WPF.SharpDX](https://www.nuget.org/packages/HelixToolkit.Wpf.SharpDX/2.2.0)
|
||||
- [UWP](https://www.nuget.org/packages/HelixToolkit.UWP/2.2.0)
|
||||
|
||||
#### 2018-05-04
|
||||
[V2.1.0](https://github.com/helix-toolkit/helix-toolkit/tree/release/2.1.0) releases are available on nuget. [Release Note](https://github.com/helix-toolkit/helix-toolkit/blob/master/CHANGELOG.md)
|
||||
|
||||
##### Note: 2.0 Breaking changes from version 1.x.x. (HelixToolkit.SharpDX only) see [ChangeLog](https://github.com/helix-toolkit/helix-toolkit/blob/develop/CHANGELOG.md)
|
BIN
packages/HelixToolkit.2.4.0/lib/netstandard1.1/HelixToolkit.dll
vendored
Normal file
BIN
packages/HelixToolkit.2.4.0/lib/netstandard1.1/HelixToolkit.pdb
vendored
Normal file
144
packages/HelixToolkit.2.4.0/lib/netstandard1.1/HelixToolkit.xml
vendored
Normal file
@ -0,0 +1,144 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>HelixToolkit</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:HelixToolkit.StringExtensions">
|
||||
<summary>
|
||||
Extension methods for strings.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:HelixToolkit.StringExtensions.oneOrMoreWhitespaces">
|
||||
<summary>
|
||||
A regular expression containing "a one or more whitespaces" pattern.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:HelixToolkit.StringExtensions.SplitOnWhitespace(System.String)">
|
||||
<summary>
|
||||
Splits the string on whitespace.
|
||||
</summary>
|
||||
<param name="input">The input string.</param>
|
||||
<returns>Array of strings.</returns>
|
||||
</member>
|
||||
<member name="M:HelixToolkit.StringExtensions.EnumerateToString(System.Collections.IEnumerable,System.String,System.String)">
|
||||
<summary>
|
||||
Creates a string from the items in an enumerable.
|
||||
</summary>
|
||||
<param name="items">The items.</param>
|
||||
<param name="prefix">The prefix.</param>
|
||||
<param name="separator">The separator.</param>
|
||||
<returns>
|
||||
A string.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:HelixToolkit.Logger.DebugLogger">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
<seealso cref="T:HelixToolkit.Logger.ILogger" />
|
||||
</member>
|
||||
<member name="M:HelixToolkit.Logger.DebugLogger.Log``1(HelixToolkit.Logger.LogLevel,``0,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Logs the specified log level.
|
||||
</summary>
|
||||
<typeparam name="MsgType">The type of the sg type.</typeparam>
|
||||
<param name="logLevel">The log level.</param>
|
||||
<param name="msg">The MSG.</param>
|
||||
<param name="caller">The caller.</param>
|
||||
<param name="lineNumber"></param>
|
||||
<param name="className"></param>
|
||||
</member>
|
||||
<member name="T:HelixToolkit.Logger.ILogger">
|
||||
<summary>
|
||||
Provide simple log interface for user to log helix toolkit internal logs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:HelixToolkit.Logger.ILogger.Log``1(HelixToolkit.Logger.LogLevel,``0,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Logs the specified log level.
|
||||
</summary>
|
||||
<typeparam name="MsgType">The type of the sg type.</typeparam>
|
||||
<param name="logLevel">The log level.</param>
|
||||
<param name="msg">The MSG.</param>
|
||||
<param name="className"></param>
|
||||
<param name="methodName">The caller.</param>
|
||||
<param name="lineNumber"></param>
|
||||
</member>
|
||||
<member name="T:HelixToolkit.Logger.LogLevel">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:HelixToolkit.Logger.LogLevel.Trace">
|
||||
<summary>
|
||||
The trace
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:HelixToolkit.Logger.LogLevel.Debug">
|
||||
<summary>
|
||||
The debug
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:HelixToolkit.Logger.LogLevel.Information">
|
||||
<summary>
|
||||
The information
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:HelixToolkit.Logger.LogLevel.Warning">
|
||||
<summary>
|
||||
The warning
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:HelixToolkit.Logger.LogLevel.Error">
|
||||
<summary>
|
||||
The error
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:HelixToolkit.Logger.LogWrapper">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:HelixToolkit.Logger.LogWrapper.#ctor">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:HelixToolkit.Logger.LogWrapper"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:HelixToolkit.Logger.LogWrapper.#ctor(HelixToolkit.Logger.ILogger)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:HelixToolkit.Logger.LogWrapper"/> class.
|
||||
</summary>
|
||||
<param name="logger">The logger.</param>
|
||||
</member>
|
||||
<member name="M:HelixToolkit.Logger.LogWrapper.Log``1(HelixToolkit.Logger.LogLevel,``0,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Logs the specified log level.
|
||||
</summary>
|
||||
<typeparam name="MsgType">The type of the sg type.</typeparam>
|
||||
<param name="logLevel">The log level.</param>
|
||||
<param name="msg">The MSG.</param>
|
||||
<param name="caller">The caller.</param>
|
||||
<param name="className"></param>
|
||||
<param name="sourceLineNumber"></param>
|
||||
</member>
|
||||
<member name="T:HelixToolkit.Logger.NullLogger">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
<seealso cref="T:HelixToolkit.Logger.ILogger" />
|
||||
</member>
|
||||
<member name="M:HelixToolkit.Logger.NullLogger.Log``1(HelixToolkit.Logger.LogLevel,``0,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Logs the specified log level.
|
||||
</summary>
|
||||
<typeparam name="MsgType">The type of the sg type.</typeparam>
|
||||
<param name="logLevel">The log level.</param>
|
||||
<param name="msg">The MSG.</param>
|
||||
<param name="className"></param>
|
||||
<param name="methodName">The caller.</param>
|
||||
<param name="lineNumber"></param>
|
||||
<exception cref="T:System.NotImplementedException"></exception>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
packages/HelixToolkit.Wpf.2.4.0/.signature.p7s
vendored
Normal file
13
packages/HelixToolkit.Wpf.2.4.0/AUTHORS
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
# This is the official list of Helix Toolkit authors for copyright purposes.
|
||||
# This file is distinct from the CONTRIBUTORS file.
|
||||
# See the latter for an explanation.
|
||||
|
||||
# Names should be added to this file as
|
||||
# Name or Organization <email address>
|
||||
# The email address is not required for organizations.
|
||||
|
||||
# Please keep the list sorted.
|
||||
# Please notify the first person on the list to be added here.
|
||||
|
||||
Oystein Bjorke <oystein.bjorke@gmail.com>
|
||||
Lunci Hua <lunci.app@gmail.com>
|
50
packages/HelixToolkit.Wpf.2.4.0/CONTRIBUTORS
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
# This is the official list of people who have contributed
|
||||
# to the Helix Toolkit repository.
|
||||
# The AUTHORS file lists the copyright holders; this file
|
||||
# lists people.
|
||||
|
||||
# People submitting code should be listed in this file (by email address).
|
||||
|
||||
# Names should be added to this file like so:
|
||||
# Name <email address>
|
||||
|
||||
# Please keep the list sorted.
|
||||
|
||||
Aleksey Shubin <alekseysshubin@gmail.com>
|
||||
ando23 <andreas@herzig-net.de>
|
||||
Beppe Marazzi <beppemarazzi@gmail.com>
|
||||
Benglin (Ben) Goh <benglin@outlook.com>
|
||||
Brad Phelan <bradphelan@xtargets.com>
|
||||
Carl Philipp Bickmeier <c.bickmeier@diomex.de>
|
||||
ccHanibal <oliver91daum@hotmail.de>
|
||||
christophano@hotmail.com
|
||||
Christof Konstantinopoulos <chrkon@web.de>
|
||||
Christof <chrkon@mail.de>
|
||||
ck <konstantinopoulos@glm-laser.com>
|
||||
cureos
|
||||
dgwaldo <don.g.waldo@gmail.com>
|
||||
dturvey_bhc
|
||||
Don Waldo <don.g.waldo@gmail.com>
|
||||
Edward Zhu <edward.zr.zhu@gmail.com>
|
||||
Franz Spitaler <spitefr@gmail.com>
|
||||
Gary Johnson <gary@gjtt.com>
|
||||
Ian Keough <ian.keough@autodesk.com>
|
||||
Jack Ukleja <jack@ukleja.com>
|
||||
Jérémy Ansel <JeremyAnsel@users.noreply.github.com>
|
||||
jesperll
|
||||
Johan Larsson <johan_gavle1@hotmail.com>
|
||||
johnsonlu <johnsonlu82@gmail.com>
|
||||
lcouz <couzinetlionel@hotmail.com>
|
||||
lrieger <lr@live.de>
|
||||
Lunci Hua <lunci.app@gmail.com>
|
||||
mertkokusen <mertkokusen@hotmail.com>
|
||||
mortalV <vriadchenko@initium.ru>
|
||||
omnillogix <github@omnilogix.com>
|
||||
Oystein Bjorke <oystein.bjorke@gmail.com>
|
||||
Peter Boyer <peter.b.boyer@gmail.com>
|
||||
PillowSky <pillowsky@qq.com>
|
||||
Piotr Steclik <piotr@steclik.com>
|
||||
przem
|
||||
Samuel Carlsson <samuel.carlsson@gmail.com>
|
||||
smischke <survivorx@gmx.de>
|
||||
Zonggui Zhu <zhuzonggui@outlook.com>
|
BIN
packages/HelixToolkit.Wpf.2.4.0/HelixToolkit.Wpf.2.4.0.nupkg
vendored
Normal file
22
packages/HelixToolkit.Wpf.2.4.0/LICENSE
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2018 Helix Toolkit contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included
|
||||
in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
80
packages/HelixToolkit.Wpf.2.4.0/README.md
vendored
Normal file
@ -0,0 +1,80 @@
|
||||
<img src='https://avatars3.githubusercontent.com/u/8432523?s=200&v=4' width='64' />
|
||||
|
||||
# Helix Toolkit
|
||||
|
||||
**Helix Toolkit is a collection of 3D components for .NET Framework.**
|
||||
|
||||
[**HelixToolkit.WPF:**](https://github.com/helix-toolkit/helix-toolkit/tree/develop/Source/HelixToolkit.Wpf)
|
||||
Adds variety of functionalities/models on the top of internal WPF 3D model (Media3D namespace).
|
||||
|
||||
[**HelixToolkit.SharpDX.WPF:**](https://github.com/helix-toolkit/helix-toolkit/tree/develop/Source/HelixToolkit.Wpf.SharpDX)
|
||||
3D Components and XAML/MVVM compatible Scene Graphs based on [SharpDX](https://github.com/sharpdx/SharpDX)(DirectX 11) for high performance usage.
|
||||
|
||||
[**HelixToolkit.UWP:**](https://github.com/helix-toolkit/helix-toolkit/tree/develop/Source/HelixToolkit.UWP)
|
||||
3D Components and XAML/MVVM compatible Scene Graphs based on [SharpDX](https://github.com/sharpdx/SharpDX)(DirectX 11) for Universal Windows App.
|
||||
|
||||
[**Examples:**](https://github.com/helix-toolkit/helix-toolkit/tree/develop/Source/Examples)
|
||||
Please download full source code to run examples. Or download [compiled version](https://ci.appveyor.com/project/objorke/helix-toolkit/branch/develop/artifacts)
|
||||
|
||||
[](https://ci.appveyor.com/project/objorke/helix-toolkit)
|
||||
|
||||
Description | Value
|
||||
--------------------|-----------------------
|
||||
License | The MIT License (MIT)
|
||||
Web page | http://helix-toolkit.org/
|
||||
Documentation | http://docs.helix-toolkit.org/
|
||||
Forum | http://forum.helix-toolkit.org/
|
||||
Chat | https://gitter.im/helix-toolkit/helix-toolkit
|
||||
Source repository | http://github.com/helix-toolkit/helix-toolkit
|
||||
Latest build | http://ci.appveyor.com/project/objorke/helix-toolkit
|
||||
Issue tracker | http://github.com/helix-toolkit/helix-toolkit/issues
|
||||
NuGet packages | http://www.nuget.org/packages?q=HelixToolkit
|
||||
MyGet feed | https://www.myget.org/F/helix-toolkit
|
||||
StackOverflow | http://stackoverflow.com/questions/tagged/helix-3d-toolkit
|
||||
Twitter | https://twitter.com/hashtag/Helix3DToolkit
|
||||
|
||||
## Project Build
|
||||
|
||||
**Visual Studio 2017. Windows 10 SDK (Min Ver.10.0.10586.0).**
|
||||
|
||||
Windows 10 SDK **Ver.10.0.10586.0** can be selected and installed using Visual Studio 2017 installer.If you installed the higher version only, please change the target version in **HelixToolkit.Native.ShaderBuilder** property to the proper version installed on your machine.
|
||||
|
||||
## Notes
|
||||
|
||||
#### 1. Right-handed Cartesian coordinate system and row major matrix by default
|
||||
HelixToolkit default is using right-handed Cartesian coordinate system, including Meshbuilder etc. To use left-handed Cartesian coordinate system (Camera.CreateLeftHandedSystem = true), user must manually correct the triangle winding order or IsFrontCounterClockwise in raster state description if using SharpDX. Matrices are row major by default.
|
||||
|
||||
#### 2. Performance [Topics](https://github.com/helix-toolkit/helix-toolkit/wiki/Tips-on-performance-optimization-(WPF.SharpDX-and-UWP)) for WPF.SharpDX and UWP.
|
||||
|
||||
#### 3. Following features are not supported currently on FeatureLevel 10 graphics card:
|
||||
FXAA, Order Independant Transparent Rendering, Particle system, Tessellation.
|
||||
|
||||
#### 4. [Wiki](https://github.com/helix-toolkit/helix-toolkit/wiki)
|
||||
|
||||
## News
|
||||
|
||||
#### 2018-07-22
|
||||
[V2.3.0](https://github.com/helix-toolkit/helix-toolkit/tree/release/2.3.0) releases are available on nuget. [Release Note](https://github.com/helix-toolkit/helix-toolkit/blob/master/CHANGELOG.md)
|
||||
- [WPF](https://www.nuget.org/packages/HelixToolkit.Wpf/2.3.0)
|
||||
- [WPF.SharpDX](https://www.nuget.org/packages/HelixToolkit.Wpf.SharpDX/2.3.0)
|
||||
- [UWP](https://www.nuget.org/packages/HelixToolkit.UWP/2.3.0)
|
||||
|
||||
#### Changes (Please refer to [Release Note](https://github.com/helix-toolkit/helix-toolkit/blob/master/CHANGELOG.md) for details)
|
||||
1. Dynamic Buffer Support for geometry data streaming. (WPF.SharpDX and UWP) [Wiki](https://github.com/helix-toolkit/helix-toolkit/wiki/Dynamic-Geometry3D-for-Data-Streaming)
|
||||
2. New TransformManipulator. See Manipulator Demo. (WPF.SharpDX and UWP)
|
||||
3. Ply format reader. (All)
|
||||
4. Support Order Independent Transparency for DiffuseMaterial. (WPF.SharpDX and UWP)
|
||||
5. Add BatchedMeshGeometryModel3D for mesh batching, supports multiple material color properties.(WPF.SharpDX and UWP)
|
||||
6. Add SharpDX.Core simple viewport and performance tester (SharpDX.Core).
|
||||
7. Support Manual Render Ordering. (WPF.SharpDX and UWP)
|
||||
|
||||
#### 2018-06-17
|
||||
[V2.2.0](https://github.com/helix-toolkit/helix-toolkit/tree/release/2.2.0) releases are available on nuget. [Release Note](https://github.com/helix-toolkit/helix-toolkit/blob/master/CHANGELOG.md)
|
||||
- [WPF](https://www.nuget.org/packages/HelixToolkit.Wpf/2.2.0)
|
||||
- [WPF.SharpDX](https://www.nuget.org/packages/HelixToolkit.Wpf.SharpDX/2.2.0)
|
||||
- [UWP](https://www.nuget.org/packages/HelixToolkit.UWP/2.2.0)
|
||||
|
||||
#### 2018-05-04
|
||||
[V2.1.0](https://github.com/helix-toolkit/helix-toolkit/tree/release/2.1.0) releases are available on nuget. [Release Note](https://github.com/helix-toolkit/helix-toolkit/blob/master/CHANGELOG.md)
|
||||
|
||||
##### Note: 2.0 Breaking changes from version 1.x.x. (HelixToolkit.SharpDX only) see [ChangeLog](https://github.com/helix-toolkit/helix-toolkit/blob/develop/CHANGELOG.md)
|
22171
packages/HelixToolkit.Wpf.2.4.0/lib/net45/HelixToolkit.Wpf.XML
vendored
Normal file
BIN
packages/HelixToolkit.Wpf.2.4.0/lib/net45/HelixToolkit.Wpf.dll
vendored
Normal file
BIN
packages/HelixToolkit.Wpf.2.4.0/lib/net45/HelixToolkit.Wpf.pdb
vendored
Normal file
BIN
packages/MahApps.Metro.1.5.0/MahApps.Metro.1.5.0.nupkg
vendored
Normal file
8287
packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.XML
vendored
Normal file
BIN
packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.dll
vendored
Normal file
BIN
packages/MahApps.Metro.1.5.0/lib/net40/MahApps.Metro.pdb
vendored
Normal file
BIN
packages/MahApps.Metro.1.5.0/lib/net40/System.Windows.Interactivity.dll
vendored
Normal file
8287
packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.XML
vendored
Normal file
BIN
packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.dll
vendored
Normal file
BIN
packages/MahApps.Metro.1.5.0/lib/net45/MahApps.Metro.pdb
vendored
Normal file
BIN
packages/MahApps.Metro.1.5.0/lib/net45/System.Windows.Interactivity.dll
vendored
Normal file
3
packages/MahApps.Metro.1.5.0/tools/install.ps1
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
param($rootPath, $toolsPath, $package, $project)
|
||||
|
||||
$project.DTE.ItemOperations.Navigate('http://mahapps.com/guides/quick-start.html')
|
BIN
packages/MaterialDesignColors.1.1.2/MaterialDesignColors.1.1.2.nupkg
vendored
Normal file
BIN
packages/MaterialDesignColors.1.1.2/lib/net45/MaterialDesignColors.dll
vendored
Normal file
BIN
packages/MaterialDesignThemes.1.4.0.473/MaterialDesignThemes.1.4.0.473.nupkg
vendored
Normal file
BIN
packages/MaterialDesignThemes.1.4.0.473/lib/net45/MaterialDesignThemes.Wpf.dll
vendored
Normal file
BIN
packages/Microsoft.Maps.MapControl.WPF.1.0.0.3/Microsoft.Maps.MapControl.WPF.1.0.0.3.nupkg
vendored
Normal file
BIN
packages/Microsoft.Maps.MapControl.WPF.1.0.0.3/lib/net40-Client/Microsoft.Maps.MapControl.WPF.dll
vendored
Normal file
1509
packages/Microsoft.Maps.MapControl.WPF.1.0.0.3/lib/net40-Client/Microsoft.Maps.MapControl.WPF.xml
vendored
Normal file
BIN
packages/MvvmLightLibs.5.2.0.0/MvvmLightLibs.5.2.0.0.nupkg
vendored
Normal file
BIN
packages/MvvmLightLibs.5.2.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.dll
vendored
Normal file
BIN
packages/MvvmLightLibs.5.2.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.pdb
vendored
Normal file
621
packages/MvvmLightLibs.5.2.0.0/lib/SL4/GalaSoft.MvvmLight.Extras.xml
vendored
Normal file
@ -0,0 +1,621 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>GalaSoft.MvvmLight.Extras</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:GalaSoft.MvvmLight.Ioc.ISimpleIoc">
|
||||
<summary>
|
||||
A very simple IOC container with basic functionality needed to register and resolve
|
||||
instances. If needed, this class can be replaced by another more elaborate
|
||||
IOC container implementing the IServiceLocator interface.
|
||||
The inspiration for this class is at https://gist.github.com/716137 but it has
|
||||
been extended with additional features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.ContainsCreated``1">
|
||||
<summary>
|
||||
Checks whether at least one instance of a given class is already created in the container.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that is queried.</typeparam>
|
||||
<returns>True if at least on instance of the class is already created, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.ContainsCreated``1(System.String)">
|
||||
<summary>
|
||||
Checks whether the instance with the given key is already created for a given class
|
||||
in the container.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that is queried.</typeparam>
|
||||
<param name="key">The key that is queried.</param>
|
||||
<returns>True if the instance with the given key is already registered for the given class,
|
||||
false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.IsRegistered``1">
|
||||
<summary>
|
||||
Gets a value indicating whether a given type T is already registered.
|
||||
</summary>
|
||||
<typeparam name="T">The type that the method checks for.</typeparam>
|
||||
<returns>True if the type is registered, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.IsRegistered``1(System.String)">
|
||||
<summary>
|
||||
Gets a value indicating whether a given type T and a give key
|
||||
are already registered.
|
||||
</summary>
|
||||
<typeparam name="T">The type that the method checks for.</typeparam>
|
||||
<param name="key">The key that the method checks for.</param>
|
||||
<returns>True if the type and key are registered, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``2">
|
||||
<summary>
|
||||
Registers a given type for a given interface.
|
||||
</summary>
|
||||
<typeparam name="TInterface">The interface for which instances will be resolved.</typeparam>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``2(System.Boolean)">
|
||||
<summary>
|
||||
Registers a given type for a given interface with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TInterface">The interface for which instances will be resolved.</typeparam>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1">
|
||||
<summary>
|
||||
Registers a given type.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Boolean)">
|
||||
<summary>
|
||||
Registers a given type with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Func{``0})">
|
||||
<summary>
|
||||
Registers a given instance for a given type.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Func{``0},System.Boolean)">
|
||||
<summary>
|
||||
Registers a given instance for a given type with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Func{``0},System.String)">
|
||||
<summary>
|
||||
Registers a given instance for a given type and a given key.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="key">The key for which the given instance is registered.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Func{``0},System.String,System.Boolean)">
|
||||
<summary>
|
||||
Registers a given instance for a given type and a given key with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="key">The key for which the given instance is registered.</param>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Reset">
|
||||
<summary>
|
||||
Resets the instance in its original states. This deletes all the
|
||||
registrations.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Unregister``1">
|
||||
<summary>
|
||||
Unregisters a class from the cache and removes all the previously
|
||||
created instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that must be removed.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Unregister``1(``0)">
|
||||
<summary>
|
||||
Removes the given instance from the cache. The class itself remains
|
||||
registered and can be used to create other instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type of the instance to be removed.</typeparam>
|
||||
<param name="instance">The instance that must be removed.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Unregister``1(System.String)">
|
||||
<summary>
|
||||
Removes the instance corresponding to the given key from the cache. The class itself remains
|
||||
registered and can be used to create other instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type of the instance to be removed.</typeparam>
|
||||
<param name="key">The key corresponding to the instance that must be removed.</param>
|
||||
</member>
|
||||
<member name="T:GalaSoft.MvvmLight.Ioc.PreferredConstructorAttribute">
|
||||
<summary>
|
||||
When used with the SimpleIoc container, specifies which constructor
|
||||
should be used to instantiate when GetInstance is called.
|
||||
If there is only one constructor in the class, this attribute is
|
||||
not needed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:GalaSoft.MvvmLight.Ioc.SimpleIoc">
|
||||
<summary>
|
||||
A very simple IOC container with basic functionality needed to register and resolve
|
||||
instances. If needed, this class can be replaced by another more elaborate
|
||||
IOC container implementing the IServiceLocator interface.
|
||||
The inspiration for this class is at https://gist.github.com/716137 but it has
|
||||
been extended with additional features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.ContainsCreated``1">
|
||||
<summary>
|
||||
Checks whether at least one instance of a given class is already created in the container.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that is queried.</typeparam>
|
||||
<returns>True if at least on instance of the class is already created, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.ContainsCreated``1(System.String)">
|
||||
<summary>
|
||||
Checks whether the instance with the given key is already created for a given class
|
||||
in the container.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that is queried.</typeparam>
|
||||
<param name="key">The key that is queried.</param>
|
||||
<returns>True if the instance with the given key is already registered for the given class,
|
||||
false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.IsRegistered``1">
|
||||
<summary>
|
||||
Gets a value indicating whether a given type T is already registered.
|
||||
</summary>
|
||||
<typeparam name="T">The type that the method checks for.</typeparam>
|
||||
<returns>True if the type is registered, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.IsRegistered``1(System.String)">
|
||||
<summary>
|
||||
Gets a value indicating whether a given type T and a give key
|
||||
are already registered.
|
||||
</summary>
|
||||
<typeparam name="T">The type that the method checks for.</typeparam>
|
||||
<param name="key">The key that the method checks for.</param>
|
||||
<returns>True if the type and key are registered, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``2">
|
||||
<summary>
|
||||
Registers a given type for a given interface.
|
||||
</summary>
|
||||
<typeparam name="TInterface">The interface for which instances will be resolved.</typeparam>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``2(System.Boolean)">
|
||||
<summary>
|
||||
Registers a given type for a given interface with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TInterface">The interface for which instances will be resolved.</typeparam>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1">
|
||||
<summary>
|
||||
Registers a given type.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Boolean)">
|
||||
<summary>
|
||||
Registers a given type with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Func{``0})">
|
||||
<summary>
|
||||
Registers a given instance for a given type.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Func{``0},System.Boolean)">
|
||||
<summary>
|
||||
Registers a given instance for a given type with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Func{``0},System.String)">
|
||||
<summary>
|
||||
Registers a given instance for a given type and a given key.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="key">The key for which the given instance is registered.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Func{``0},System.String,System.Boolean)">
|
||||
<summary>
|
||||
Registers a given instance for a given type and a given key with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="key">The key for which the given instance is registered.</param>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Reset">
|
||||
<summary>
|
||||
Resets the instance in its original states. This deletes all the
|
||||
registrations.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Unregister``1">
|
||||
<summary>
|
||||
Unregisters a class from the cache and removes all the previously
|
||||
created instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that must be removed.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Unregister``1(``0)">
|
||||
<summary>
|
||||
Removes the given instance from the cache. The class itself remains
|
||||
registered and can be used to create other instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type of the instance to be removed.</typeparam>
|
||||
<param name="instance">The instance that must be removed.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Unregister``1(System.String)">
|
||||
<summary>
|
||||
Removes the instance corresponding to the given key from the cache. The class itself remains
|
||||
registered and can be used to create other instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type of the instance to be removed.</typeparam>
|
||||
<param name="key">The key corresponding to the instance that must be removed.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetAllCreatedInstances(System.Type)">
|
||||
<summary>
|
||||
Provides a way to get all the created instances of a given type available in the
|
||||
cache. Registering a class or a factory does not automatically
|
||||
create the corresponding instance! To create an instance, either register
|
||||
the class or the factory with createInstanceImmediately set to true,
|
||||
or call the GetInstance method before calling GetAllCreatedInstances.
|
||||
Alternatively, use the GetAllInstances method, which auto-creates default
|
||||
instances for all registered classes.
|
||||
</summary>
|
||||
<param name="serviceType">The class of which all instances
|
||||
must be returned.</param>
|
||||
<returns>All the already created instances of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetAllCreatedInstances``1">
|
||||
<summary>
|
||||
Provides a way to get all the created instances of a given type available in the
|
||||
cache. Registering a class or a factory does not automatically
|
||||
create the corresponding instance! To create an instance, either register
|
||||
the class or the factory with createInstanceImmediately set to true,
|
||||
or call the GetInstance method before calling GetAllCreatedInstances.
|
||||
Alternatively, use the GetAllInstances method, which auto-creates default
|
||||
instances for all registered classes.
|
||||
</summary>
|
||||
<typeparam name="TService">The class of which all instances
|
||||
must be returned.</typeparam>
|
||||
<returns>All the already created instances of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetService(System.Type)">
|
||||
<summary>
|
||||
Gets the service object of the specified type.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<returns>
|
||||
A service object of type <paramref name="serviceType"/>.
|
||||
</returns>
|
||||
<param name="serviceType">An object that specifies the type of service object to get.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetAllInstances(System.Type)">
|
||||
<summary>
|
||||
Provides a way to get all the created instances of a given type available in the
|
||||
cache. Calling this method auto-creates default
|
||||
instances for all registered classes.
|
||||
</summary>
|
||||
<param name="serviceType">The class of which all instances
|
||||
must be returned.</param>
|
||||
<returns>All the instances of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetAllInstances``1">
|
||||
<summary>
|
||||
Provides a way to get all the created instances of a given type available in the
|
||||
cache. Calling this method auto-creates default
|
||||
instances for all registered classes.
|
||||
</summary>
|
||||
<typeparam name="TService">The class of which all instances
|
||||
must be returned.</typeparam>
|
||||
<returns>All the instances of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance(System.Type)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. If no instance had been instantiated
|
||||
before, a new instance will be created. If an instance had already
|
||||
been created, that same instance will be returned.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<param name="serviceType">The class of which an instance
|
||||
must be returned.</param>
|
||||
<returns>An instance of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstanceWithoutCaching(System.Type)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. This method
|
||||
always returns a new instance and doesn't cache it in the IOC container.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<param name="serviceType">The class of which an instance
|
||||
must be returned.</param>
|
||||
<returns>An instance of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type corresponding
|
||||
to a given key. If no instance had been instantiated with this
|
||||
key before, a new instance will be created. If an instance had already
|
||||
been created with the same key, that same instance will be returned.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<param name="serviceType">The class of which an instance must be returned.</param>
|
||||
<param name="key">The key uniquely identifying this instance.</param>
|
||||
<returns>An instance corresponding to the given type and key.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstanceWithoutCaching(System.Type,System.String)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. This method
|
||||
always returns a new instance and doesn't cache it in the IOC container.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<param name="serviceType">The class of which an instance must be returned.</param>
|
||||
<param name="key">The key uniquely identifying this instance.</param>
|
||||
<returns>An instance corresponding to the given type and key.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance``1">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. If no instance had been instantiated
|
||||
before, a new instance will be created. If an instance had already
|
||||
been created, that same instance will be returned.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type TService has not
|
||||
been registered before calling this method.</exception>
|
||||
<typeparam name="TService">The class of which an instance
|
||||
must be returned.</typeparam>
|
||||
<returns>An instance of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstanceWithoutCaching``1">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. This method
|
||||
always returns a new instance and doesn't cache it in the IOC container.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type TService has not
|
||||
been registered before calling this method.</exception>
|
||||
<typeparam name="TService">The class of which an instance
|
||||
must be returned.</typeparam>
|
||||
<returns>An instance of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance``1(System.String)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type corresponding
|
||||
to a given key. If no instance had been instantiated with this
|
||||
key before, a new instance will be created. If an instance had already
|
||||
been created with the same key, that same instance will be returned.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type TService has not
|
||||
been registered before calling this method.</exception>
|
||||
<typeparam name="TService">The class of which an instance must be returned.</typeparam>
|
||||
<param name="key">The key uniquely identifying this instance.</param>
|
||||
<returns>An instance corresponding to the given type and key.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstanceWithoutCaching``1(System.String)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. This method
|
||||
always returns a new instance and doesn't cache it in the IOC container.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type TService has not
|
||||
been registered before calling this method.</exception>
|
||||
<typeparam name="TService">The class of which an instance must be returned.</typeparam>
|
||||
<param name="key">The key uniquely identifying this instance.</param>
|
||||
<returns>An instance corresponding to the given type and key.</returns>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Ioc.SimpleIoc.Default">
|
||||
<summary>
|
||||
This class' default instance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:GalaSoft.MvvmLight.Command.EventToCommand">
|
||||
<summary>
|
||||
This <see cref="T:System.Windows.Interactivity.TriggerAction`1"/> can be
|
||||
used to bind any event on any FrameworkElement to an <see cref="T:System.Windows.Input.ICommand"/>.
|
||||
Typically, this element is used in XAML to connect the attached element
|
||||
to a command located in a ViewModel. This trigger can only be attached
|
||||
to a FrameworkElement or a class deriving from FrameworkElement.
|
||||
<para>To access the EventArgs of the fired event, use a RelayCommand<EventArgs>
|
||||
and leave the CommandParameter and CommandParameterValue empty!</para>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameterPropertyName">
|
||||
<summary>
|
||||
The <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameter"/> dependency property's name.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommandPropertyName">
|
||||
<summary>
|
||||
The <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommand"/> dependency property's name.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameterProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameter"/> dependency property
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.CommandProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/> dependency property
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabledProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabled"/> dependency property
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.EventToCommand.OnAttached">
|
||||
<summary>
|
||||
Called when this trigger is attached to a FrameworkElement.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.EventToCommand.GetCommand">
|
||||
<summary>
|
||||
This method is here for compatibility
|
||||
with the Silverlight 3 version.
|
||||
</summary>
|
||||
<returns>The command that must be executed when
|
||||
this trigger is invoked.</returns>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameterProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameter"/> dependency property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommandProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommand"/> dependency property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.EventToCommand.Invoke">
|
||||
<summary>
|
||||
Provides a simple way to invoke this trigger programatically
|
||||
without any EventArgs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.EventToCommand.Invoke(System.Object)">
|
||||
<summary>
|
||||
Executes the trigger.
|
||||
<para>To access the EventArgs of the fired event, use a RelayCommand<EventArgs>
|
||||
and leave the CommandParameter and CommandParameterValue empty!</para>
|
||||
</summary>
|
||||
<param name="parameter">The EventArgs of the fired event.</param>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.Command">
|
||||
<summary>
|
||||
Gets or sets the ICommand that this trigger is bound to. This
|
||||
is a DependencyProperty.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameter">
|
||||
<summary>
|
||||
Gets or sets an object that will be passed to the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/>
|
||||
attached to this trigger. This is a DependencyProperty.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameterValue">
|
||||
<summary>
|
||||
Gets or sets an object that will be passed to the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/>
|
||||
attached to this trigger. This property is here for compatibility
|
||||
with the Silverlight version. This is NOT a DependencyProperty.
|
||||
For databinding, use the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameter"/> property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabled">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether the attached element must be
|
||||
disabled when the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/> property's CanExecuteChanged
|
||||
event fires. If this property is true, and the command's CanExecute
|
||||
method returns false, the element will be disabled. If this property
|
||||
is false, the element will not be disabled when the command's
|
||||
CanExecute method changes. This is a DependencyProperty.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabledValue">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether the attached element must be
|
||||
disabled when the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/> property's CanExecuteChanged
|
||||
event fires. If this property is true, and the command's CanExecute
|
||||
method returns false, the element will be disabled. This property is here for
|
||||
compatibility with the Silverlight version. This is NOT a DependencyProperty.
|
||||
For databinding, use the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabled"/> property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.PassEventArgsToCommand">
|
||||
<summary>
|
||||
Specifies whether the EventArgs of the event that triggered this
|
||||
action should be passed to the bound RelayCommand. If this is true,
|
||||
the command should accept arguments of the corresponding
|
||||
type (for example RelayCommand<MouseButtonEventArgs>).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverter">
|
||||
<summary>
|
||||
Gets or sets a converter used to convert the EventArgs when using
|
||||
<see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.PassEventArgsToCommand"/>. If PassEventArgsToCommand is false,
|
||||
this property is never used.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameter">
|
||||
<summary>
|
||||
Gets or sets a parameters for the converter used to convert the EventArgs when using
|
||||
<see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.PassEventArgsToCommand"/>. If PassEventArgsToCommand is false,
|
||||
this property is never used. This is a dependency property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommand">
|
||||
<summary>
|
||||
Gets or sets a value indicating if the command should be invoked even
|
||||
if the attached control is disabled. This is a dependency property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:GalaSoft.MvvmLight.Command.IEventArgsConverter">
|
||||
<summary>
|
||||
The definition of the converter used to convert an EventArgs
|
||||
in the <see cref="T:GalaSoft.MvvmLight.Command.EventToCommand"/> class, if the
|
||||
<see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.PassEventArgsToCommand"/> property is true.
|
||||
Set an instance of this class to the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverter"/>
|
||||
property of the EventToCommand instance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.IEventArgsConverter.Convert(System.Object,System.Object)">
|
||||
<summary>
|
||||
The method used to convert the EventArgs instance.
|
||||
</summary>
|
||||
<param name="value">An instance of EventArgs passed by the
|
||||
event that the EventToCommand instance is handling.</param>
|
||||
<param name="parameter">An optional parameter used for the conversion. Use
|
||||
the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameter"/> property
|
||||
to set this value. This may be null.</param>
|
||||
<returns>The converted value.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
BIN
packages/MvvmLightLibs.5.2.0.0/lib/SL4/GalaSoft.MvvmLight.dll
vendored
Normal file
BIN
packages/MvvmLightLibs.5.2.0.0/lib/SL4/GalaSoft.MvvmLight.pdb
vendored
Normal file
1681
packages/MvvmLightLibs.5.2.0.0/lib/SL4/GalaSoft.MvvmLight.xml
vendored
Normal file
BIN
packages/MvvmLightLibs.5.2.0.0/lib/SL4/System.Windows.Interactivity.dll
vendored
Normal file
1025
packages/MvvmLightLibs.5.2.0.0/lib/SL4/System.Windows.Interactivity.xml
vendored
Normal file
BIN
packages/MvvmLightLibs.5.2.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.dll
vendored
Normal file
BIN
packages/MvvmLightLibs.5.2.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.pdb
vendored
Normal file
621
packages/MvvmLightLibs.5.2.0.0/lib/SL5/GalaSoft.MvvmLight.Extras.xml
vendored
Normal file
@ -0,0 +1,621 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>GalaSoft.MvvmLight.Extras</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:GalaSoft.MvvmLight.Ioc.ISimpleIoc">
|
||||
<summary>
|
||||
A very simple IOC container with basic functionality needed to register and resolve
|
||||
instances. If needed, this class can be replaced by another more elaborate
|
||||
IOC container implementing the IServiceLocator interface.
|
||||
The inspiration for this class is at https://gist.github.com/716137 but it has
|
||||
been extended with additional features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.ContainsCreated``1">
|
||||
<summary>
|
||||
Checks whether at least one instance of a given class is already created in the container.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that is queried.</typeparam>
|
||||
<returns>True if at least on instance of the class is already created, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.ContainsCreated``1(System.String)">
|
||||
<summary>
|
||||
Checks whether the instance with the given key is already created for a given class
|
||||
in the container.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that is queried.</typeparam>
|
||||
<param name="key">The key that is queried.</param>
|
||||
<returns>True if the instance with the given key is already registered for the given class,
|
||||
false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.IsRegistered``1">
|
||||
<summary>
|
||||
Gets a value indicating whether a given type T is already registered.
|
||||
</summary>
|
||||
<typeparam name="T">The type that the method checks for.</typeparam>
|
||||
<returns>True if the type is registered, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.IsRegistered``1(System.String)">
|
||||
<summary>
|
||||
Gets a value indicating whether a given type T and a give key
|
||||
are already registered.
|
||||
</summary>
|
||||
<typeparam name="T">The type that the method checks for.</typeparam>
|
||||
<param name="key">The key that the method checks for.</param>
|
||||
<returns>True if the type and key are registered, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``2">
|
||||
<summary>
|
||||
Registers a given type for a given interface.
|
||||
</summary>
|
||||
<typeparam name="TInterface">The interface for which instances will be resolved.</typeparam>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``2(System.Boolean)">
|
||||
<summary>
|
||||
Registers a given type for a given interface with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TInterface">The interface for which instances will be resolved.</typeparam>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1">
|
||||
<summary>
|
||||
Registers a given type.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Boolean)">
|
||||
<summary>
|
||||
Registers a given type with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Func{``0})">
|
||||
<summary>
|
||||
Registers a given instance for a given type.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Func{``0},System.Boolean)">
|
||||
<summary>
|
||||
Registers a given instance for a given type with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Func{``0},System.String)">
|
||||
<summary>
|
||||
Registers a given instance for a given type and a given key.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="key">The key for which the given instance is registered.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Register``1(System.Func{``0},System.String,System.Boolean)">
|
||||
<summary>
|
||||
Registers a given instance for a given type and a given key with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="key">The key for which the given instance is registered.</param>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Reset">
|
||||
<summary>
|
||||
Resets the instance in its original states. This deletes all the
|
||||
registrations.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Unregister``1">
|
||||
<summary>
|
||||
Unregisters a class from the cache and removes all the previously
|
||||
created instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that must be removed.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Unregister``1(``0)">
|
||||
<summary>
|
||||
Removes the given instance from the cache. The class itself remains
|
||||
registered and can be used to create other instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type of the instance to be removed.</typeparam>
|
||||
<param name="instance">The instance that must be removed.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.ISimpleIoc.Unregister``1(System.String)">
|
||||
<summary>
|
||||
Removes the instance corresponding to the given key from the cache. The class itself remains
|
||||
registered and can be used to create other instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type of the instance to be removed.</typeparam>
|
||||
<param name="key">The key corresponding to the instance that must be removed.</param>
|
||||
</member>
|
||||
<member name="T:GalaSoft.MvvmLight.Ioc.PreferredConstructorAttribute">
|
||||
<summary>
|
||||
When used with the SimpleIoc container, specifies which constructor
|
||||
should be used to instantiate when GetInstance is called.
|
||||
If there is only one constructor in the class, this attribute is
|
||||
not needed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:GalaSoft.MvvmLight.Ioc.SimpleIoc">
|
||||
<summary>
|
||||
A very simple IOC container with basic functionality needed to register and resolve
|
||||
instances. If needed, this class can be replaced by another more elaborate
|
||||
IOC container implementing the IServiceLocator interface.
|
||||
The inspiration for this class is at https://gist.github.com/716137 but it has
|
||||
been extended with additional features.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.ContainsCreated``1">
|
||||
<summary>
|
||||
Checks whether at least one instance of a given class is already created in the container.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that is queried.</typeparam>
|
||||
<returns>True if at least on instance of the class is already created, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.ContainsCreated``1(System.String)">
|
||||
<summary>
|
||||
Checks whether the instance with the given key is already created for a given class
|
||||
in the container.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that is queried.</typeparam>
|
||||
<param name="key">The key that is queried.</param>
|
||||
<returns>True if the instance with the given key is already registered for the given class,
|
||||
false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.IsRegistered``1">
|
||||
<summary>
|
||||
Gets a value indicating whether a given type T is already registered.
|
||||
</summary>
|
||||
<typeparam name="T">The type that the method checks for.</typeparam>
|
||||
<returns>True if the type is registered, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.IsRegistered``1(System.String)">
|
||||
<summary>
|
||||
Gets a value indicating whether a given type T and a give key
|
||||
are already registered.
|
||||
</summary>
|
||||
<typeparam name="T">The type that the method checks for.</typeparam>
|
||||
<param name="key">The key that the method checks for.</param>
|
||||
<returns>True if the type and key are registered, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``2">
|
||||
<summary>
|
||||
Registers a given type for a given interface.
|
||||
</summary>
|
||||
<typeparam name="TInterface">The interface for which instances will be resolved.</typeparam>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``2(System.Boolean)">
|
||||
<summary>
|
||||
Registers a given type for a given interface with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TInterface">The interface for which instances will be resolved.</typeparam>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1">
|
||||
<summary>
|
||||
Registers a given type.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Boolean)">
|
||||
<summary>
|
||||
Registers a given type with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that must be used to create instances.</typeparam>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Func{``0})">
|
||||
<summary>
|
||||
Registers a given instance for a given type.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Func{``0},System.Boolean)">
|
||||
<summary>
|
||||
Registers a given instance for a given type with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Func{``0},System.String)">
|
||||
<summary>
|
||||
Registers a given instance for a given type and a given key.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="key">The key for which the given instance is registered.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Register``1(System.Func{``0},System.String,System.Boolean)">
|
||||
<summary>
|
||||
Registers a given instance for a given type and a given key with the possibility for immediate
|
||||
creation of the instance.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type that is being registered.</typeparam>
|
||||
<param name="factory">The factory method able to create the instance that
|
||||
must be returned when the given type is resolved.</param>
|
||||
<param name="key">The key for which the given instance is registered.</param>
|
||||
<param name="createInstanceImmediately">If true, forces the creation of the default
|
||||
instance of the provided class.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Reset">
|
||||
<summary>
|
||||
Resets the instance in its original states. This deletes all the
|
||||
registrations.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Unregister``1">
|
||||
<summary>
|
||||
Unregisters a class from the cache and removes all the previously
|
||||
created instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The class that must be removed.</typeparam>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Unregister``1(``0)">
|
||||
<summary>
|
||||
Removes the given instance from the cache. The class itself remains
|
||||
registered and can be used to create other instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type of the instance to be removed.</typeparam>
|
||||
<param name="instance">The instance that must be removed.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.Unregister``1(System.String)">
|
||||
<summary>
|
||||
Removes the instance corresponding to the given key from the cache. The class itself remains
|
||||
registered and can be used to create other instances.
|
||||
</summary>
|
||||
<typeparam name="TClass">The type of the instance to be removed.</typeparam>
|
||||
<param name="key">The key corresponding to the instance that must be removed.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetAllCreatedInstances(System.Type)">
|
||||
<summary>
|
||||
Provides a way to get all the created instances of a given type available in the
|
||||
cache. Registering a class or a factory does not automatically
|
||||
create the corresponding instance! To create an instance, either register
|
||||
the class or the factory with createInstanceImmediately set to true,
|
||||
or call the GetInstance method before calling GetAllCreatedInstances.
|
||||
Alternatively, use the GetAllInstances method, which auto-creates default
|
||||
instances for all registered classes.
|
||||
</summary>
|
||||
<param name="serviceType">The class of which all instances
|
||||
must be returned.</param>
|
||||
<returns>All the already created instances of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetAllCreatedInstances``1">
|
||||
<summary>
|
||||
Provides a way to get all the created instances of a given type available in the
|
||||
cache. Registering a class or a factory does not automatically
|
||||
create the corresponding instance! To create an instance, either register
|
||||
the class or the factory with createInstanceImmediately set to true,
|
||||
or call the GetInstance method before calling GetAllCreatedInstances.
|
||||
Alternatively, use the GetAllInstances method, which auto-creates default
|
||||
instances for all registered classes.
|
||||
</summary>
|
||||
<typeparam name="TService">The class of which all instances
|
||||
must be returned.</typeparam>
|
||||
<returns>All the already created instances of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetService(System.Type)">
|
||||
<summary>
|
||||
Gets the service object of the specified type.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<returns>
|
||||
A service object of type <paramref name="serviceType"/>.
|
||||
</returns>
|
||||
<param name="serviceType">An object that specifies the type of service object to get.</param>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetAllInstances(System.Type)">
|
||||
<summary>
|
||||
Provides a way to get all the created instances of a given type available in the
|
||||
cache. Calling this method auto-creates default
|
||||
instances for all registered classes.
|
||||
</summary>
|
||||
<param name="serviceType">The class of which all instances
|
||||
must be returned.</param>
|
||||
<returns>All the instances of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetAllInstances``1">
|
||||
<summary>
|
||||
Provides a way to get all the created instances of a given type available in the
|
||||
cache. Calling this method auto-creates default
|
||||
instances for all registered classes.
|
||||
</summary>
|
||||
<typeparam name="TService">The class of which all instances
|
||||
must be returned.</typeparam>
|
||||
<returns>All the instances of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance(System.Type)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. If no instance had been instantiated
|
||||
before, a new instance will be created. If an instance had already
|
||||
been created, that same instance will be returned.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<param name="serviceType">The class of which an instance
|
||||
must be returned.</param>
|
||||
<returns>An instance of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstanceWithoutCaching(System.Type)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. This method
|
||||
always returns a new instance and doesn't cache it in the IOC container.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<param name="serviceType">The class of which an instance
|
||||
must be returned.</param>
|
||||
<returns>An instance of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance(System.Type,System.String)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type corresponding
|
||||
to a given key. If no instance had been instantiated with this
|
||||
key before, a new instance will be created. If an instance had already
|
||||
been created with the same key, that same instance will be returned.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<param name="serviceType">The class of which an instance must be returned.</param>
|
||||
<param name="key">The key uniquely identifying this instance.</param>
|
||||
<returns>An instance corresponding to the given type and key.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstanceWithoutCaching(System.Type,System.String)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. This method
|
||||
always returns a new instance and doesn't cache it in the IOC container.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type serviceType has not
|
||||
been registered before calling this method.</exception>
|
||||
<param name="serviceType">The class of which an instance must be returned.</param>
|
||||
<param name="key">The key uniquely identifying this instance.</param>
|
||||
<returns>An instance corresponding to the given type and key.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance``1">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. If no instance had been instantiated
|
||||
before, a new instance will be created. If an instance had already
|
||||
been created, that same instance will be returned.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type TService has not
|
||||
been registered before calling this method.</exception>
|
||||
<typeparam name="TService">The class of which an instance
|
||||
must be returned.</typeparam>
|
||||
<returns>An instance of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstanceWithoutCaching``1">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. This method
|
||||
always returns a new instance and doesn't cache it in the IOC container.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type TService has not
|
||||
been registered before calling this method.</exception>
|
||||
<typeparam name="TService">The class of which an instance
|
||||
must be returned.</typeparam>
|
||||
<returns>An instance of the given type.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstance``1(System.String)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type corresponding
|
||||
to a given key. If no instance had been instantiated with this
|
||||
key before, a new instance will be created. If an instance had already
|
||||
been created with the same key, that same instance will be returned.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type TService has not
|
||||
been registered before calling this method.</exception>
|
||||
<typeparam name="TService">The class of which an instance must be returned.</typeparam>
|
||||
<param name="key">The key uniquely identifying this instance.</param>
|
||||
<returns>An instance corresponding to the given type and key.</returns>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Ioc.SimpleIoc.GetInstanceWithoutCaching``1(System.String)">
|
||||
<summary>
|
||||
Provides a way to get an instance of a given type. This method
|
||||
always returns a new instance and doesn't cache it in the IOC container.
|
||||
</summary>
|
||||
<exception cref="T:Microsoft.Practices.ServiceLocation.ActivationException">If the type TService has not
|
||||
been registered before calling this method.</exception>
|
||||
<typeparam name="TService">The class of which an instance must be returned.</typeparam>
|
||||
<param name="key">The key uniquely identifying this instance.</param>
|
||||
<returns>An instance corresponding to the given type and key.</returns>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Ioc.SimpleIoc.Default">
|
||||
<summary>
|
||||
This class' default instance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:GalaSoft.MvvmLight.Command.EventToCommand">
|
||||
<summary>
|
||||
This <see cref="T:System.Windows.Interactivity.TriggerAction`1"/> can be
|
||||
used to bind any event on any FrameworkElement to an <see cref="T:System.Windows.Input.ICommand"/>.
|
||||
Typically, this element is used in XAML to connect the attached element
|
||||
to a command located in a ViewModel. This trigger can only be attached
|
||||
to a FrameworkElement or a class deriving from FrameworkElement.
|
||||
<para>To access the EventArgs of the fired event, use a RelayCommand<EventArgs>
|
||||
and leave the CommandParameter and CommandParameterValue empty!</para>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameterPropertyName">
|
||||
<summary>
|
||||
The <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameter"/> dependency property's name.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommandPropertyName">
|
||||
<summary>
|
||||
The <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommand"/> dependency property's name.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameterProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameter"/> dependency property
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.CommandProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/> dependency property
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabledProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabled"/> dependency property
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.EventToCommand.OnAttached">
|
||||
<summary>
|
||||
Called when this trigger is attached to a FrameworkElement.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.EventToCommand.GetCommand">
|
||||
<summary>
|
||||
This method is here for compatibility
|
||||
with the Silverlight 3 version.
|
||||
</summary>
|
||||
<returns>The command that must be executed when
|
||||
this trigger is invoked.</returns>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameterProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameter"/> dependency property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommandProperty">
|
||||
<summary>
|
||||
Identifies the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommand"/> dependency property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.EventToCommand.Invoke">
|
||||
<summary>
|
||||
Provides a simple way to invoke this trigger programatically
|
||||
without any EventArgs.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.EventToCommand.Invoke(System.Object)">
|
||||
<summary>
|
||||
Executes the trigger.
|
||||
<para>To access the EventArgs of the fired event, use a RelayCommand<EventArgs>
|
||||
and leave the CommandParameter and CommandParameterValue empty!</para>
|
||||
</summary>
|
||||
<param name="parameter">The EventArgs of the fired event.</param>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.Command">
|
||||
<summary>
|
||||
Gets or sets the ICommand that this trigger is bound to. This
|
||||
is a DependencyProperty.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameter">
|
||||
<summary>
|
||||
Gets or sets an object that will be passed to the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/>
|
||||
attached to this trigger. This is a DependencyProperty.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameterValue">
|
||||
<summary>
|
||||
Gets or sets an object that will be passed to the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/>
|
||||
attached to this trigger. This property is here for compatibility
|
||||
with the Silverlight version. This is NOT a DependencyProperty.
|
||||
For databinding, use the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.CommandParameter"/> property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabled">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether the attached element must be
|
||||
disabled when the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/> property's CanExecuteChanged
|
||||
event fires. If this property is true, and the command's CanExecute
|
||||
method returns false, the element will be disabled. If this property
|
||||
is false, the element will not be disabled when the command's
|
||||
CanExecute method changes. This is a DependencyProperty.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabledValue">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether the attached element must be
|
||||
disabled when the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.Command"/> property's CanExecuteChanged
|
||||
event fires. If this property is true, and the command's CanExecute
|
||||
method returns false, the element will be disabled. This property is here for
|
||||
compatibility with the Silverlight version. This is NOT a DependencyProperty.
|
||||
For databinding, use the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.MustToggleIsEnabled"/> property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.PassEventArgsToCommand">
|
||||
<summary>
|
||||
Specifies whether the EventArgs of the event that triggered this
|
||||
action should be passed to the bound RelayCommand. If this is true,
|
||||
the command should accept arguments of the corresponding
|
||||
type (for example RelayCommand<MouseButtonEventArgs>).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverter">
|
||||
<summary>
|
||||
Gets or sets a converter used to convert the EventArgs when using
|
||||
<see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.PassEventArgsToCommand"/>. If PassEventArgsToCommand is false,
|
||||
this property is never used.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameter">
|
||||
<summary>
|
||||
Gets or sets a parameters for the converter used to convert the EventArgs when using
|
||||
<see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.PassEventArgsToCommand"/>. If PassEventArgsToCommand is false,
|
||||
this property is never used. This is a dependency property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:GalaSoft.MvvmLight.Command.EventToCommand.AlwaysInvokeCommand">
|
||||
<summary>
|
||||
Gets or sets a value indicating if the command should be invoked even
|
||||
if the attached control is disabled. This is a dependency property.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:GalaSoft.MvvmLight.Command.IEventArgsConverter">
|
||||
<summary>
|
||||
The definition of the converter used to convert an EventArgs
|
||||
in the <see cref="T:GalaSoft.MvvmLight.Command.EventToCommand"/> class, if the
|
||||
<see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.PassEventArgsToCommand"/> property is true.
|
||||
Set an instance of this class to the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverter"/>
|
||||
property of the EventToCommand instance.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:GalaSoft.MvvmLight.Command.IEventArgsConverter.Convert(System.Object,System.Object)">
|
||||
<summary>
|
||||
The method used to convert the EventArgs instance.
|
||||
</summary>
|
||||
<param name="value">An instance of EventArgs passed by the
|
||||
event that the EventToCommand instance is handling.</param>
|
||||
<param name="parameter">An optional parameter used for the conversion. Use
|
||||
the <see cref="P:GalaSoft.MvvmLight.Command.EventToCommand.EventArgsConverterParameter"/> property
|
||||
to set this value. This may be null.</param>
|
||||
<returns>The converted value.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|