├── .editorconfig ├── .gitignore ├── LICENSE ├── NuGet.Config ├── README.md ├── azure-pipelines.yml ├── icon ├── 128.png ├── 200.png ├── 32.png ├── 48.png ├── 64.png ├── Merq.ico └── icon.png ├── lib └── Microsoft.ComponentModel.Composition.Diagnostics.dll ├── msbuild.rsp └── src ├── Core ├── Merq.Core.Tests │ ├── CommandBusSpec.cs │ ├── EventStreamSamples.cs │ ├── EventStreamSpec.cs │ └── Merq.Core.Tests.csproj ├── Merq.Core │ ├── CommandBus.cs │ ├── EventStream.cs │ ├── Merq.Core.csproj │ └── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx └── Merq │ ├── GitInfo.txt │ ├── IAsyncCommand.cs │ ├── IAsyncCommandHandler.cs │ ├── ICanExecute.cs │ ├── ICommand.cs │ ├── ICommandBus.cs │ ├── ICommandHandler.cs │ ├── IEventStream.cs │ ├── IEventStreamExtensions.cs │ ├── IExecutable.cs │ ├── IExecutableCommandHandler.cs │ ├── Merq.csproj │ └── Merq.targets ├── Directory.Build.props ├── Directory.Build.targets ├── GitInfo.txt ├── GlobalAssemblyInfo.cs ├── Installers ├── Merq.Installer.props ├── Merq.Installer.targets ├── Merq.Lib │ ├── Directories.wxs │ ├── Library.wxs │ ├── Merq.Lib.wixproj │ └── packages.config ├── Merq.Msi │ ├── Merq.Msi.targets │ ├── Merq.Msi.wixproj │ ├── Merq.wxi │ ├── Product.wxs │ └── packages.config ├── SampleBundle │ ├── Bundle.wxs │ ├── Resources │ │ ├── 1033 │ │ │ └── ClassicTheme.wxl │ │ ├── 3082 │ │ │ └── ClassicTheme.wxl │ │ ├── ClassicTheme.wxl │ │ ├── ClassicTheme.xml │ │ ├── banner.bmp │ │ └── banner.pdn │ ├── SampleBundle.wixproj │ └── packages.config ├── SampleExtension │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SampleExtension.csproj │ ├── project.json │ └── source.extension.vsixmanifest └── build │ ├── Merq.VisualStudio.WiX.targets │ ├── Merq.VisualStudio.props │ ├── Merq.VisualStudio.targets │ └── Readme.txt ├── Merq.VisualStudio.proj ├── Merq.key ├── Merq.props ├── Merq.sln ├── Merq.snk ├── Merq.vssettings ├── StaFact.cs ├── Version.targets ├── Vsix ├── Merq.Vsix.IntegrationTests │ ├── ComponentsSpec.cs │ └── Merq.Vsix.IntegrationTests.csproj ├── Merq.Vsix.Tests │ ├── CommandBusComponentSpec.cs │ ├── EventStreamComponentSpec.cs │ ├── GlobalSuppressions.cs │ └── Merq.Vsix.Tests.csproj └── Merq.Vsix │ ├── Components │ ├── CommandBusComponent.cs │ ├── DefaultExportProvider.cs │ └── EventStreamComponent.cs │ ├── Merq.Vsix.csproj │ ├── Merq.Vsix.props │ ├── Merq.Vsix.targets │ ├── MerqPackage.cs │ ├── MerqPackage.resx │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ └── source.extension.vsixmanifest └── _._ /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /icon/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/icon/128.png -------------------------------------------------------------------------------- /icon/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/icon/200.png -------------------------------------------------------------------------------- /icon/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/icon/32.png -------------------------------------------------------------------------------- /icon/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/icon/48.png -------------------------------------------------------------------------------- /icon/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/icon/64.png -------------------------------------------------------------------------------- /icon/Merq.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/icon/Merq.ico -------------------------------------------------------------------------------- /icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/icon/icon.png -------------------------------------------------------------------------------- /lib/Microsoft.ComponentModel.Composition.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/lib/Microsoft.ComponentModel.Composition.Diagnostics.dll -------------------------------------------------------------------------------- /msbuild.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/msbuild.rsp -------------------------------------------------------------------------------- /src/Core/Merq.Core.Tests/CommandBusSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core.Tests/CommandBusSpec.cs -------------------------------------------------------------------------------- /src/Core/Merq.Core.Tests/EventStreamSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core.Tests/EventStreamSamples.cs -------------------------------------------------------------------------------- /src/Core/Merq.Core.Tests/EventStreamSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core.Tests/EventStreamSpec.cs -------------------------------------------------------------------------------- /src/Core/Merq.Core.Tests/Merq.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core.Tests/Merq.Core.Tests.csproj -------------------------------------------------------------------------------- /src/Core/Merq.Core/CommandBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core/CommandBus.cs -------------------------------------------------------------------------------- /src/Core/Merq.Core/EventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core/EventStream.cs -------------------------------------------------------------------------------- /src/Core/Merq.Core/Merq.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core/Merq.Core.csproj -------------------------------------------------------------------------------- /src/Core/Merq.Core/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Core/Merq.Core/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq.Core/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Core/Merq/GitInfo.txt: -------------------------------------------------------------------------------- 1 | 1.1.1 -------------------------------------------------------------------------------- /src/Core/Merq/IAsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/IAsyncCommand.cs -------------------------------------------------------------------------------- /src/Core/Merq/IAsyncCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/IAsyncCommandHandler.cs -------------------------------------------------------------------------------- /src/Core/Merq/ICanExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/ICanExecute.cs -------------------------------------------------------------------------------- /src/Core/Merq/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/ICommand.cs -------------------------------------------------------------------------------- /src/Core/Merq/ICommandBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/ICommandBus.cs -------------------------------------------------------------------------------- /src/Core/Merq/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/ICommandHandler.cs -------------------------------------------------------------------------------- /src/Core/Merq/IEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/IEventStream.cs -------------------------------------------------------------------------------- /src/Core/Merq/IEventStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/IEventStreamExtensions.cs -------------------------------------------------------------------------------- /src/Core/Merq/IExecutable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/IExecutable.cs -------------------------------------------------------------------------------- /src/Core/Merq/IExecutableCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/IExecutableCommandHandler.cs -------------------------------------------------------------------------------- /src/Core/Merq/Merq.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/Merq.csproj -------------------------------------------------------------------------------- /src/Core/Merq/Merq.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Core/Merq/Merq.targets -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/GitInfo.txt: -------------------------------------------------------------------------------- 1 | 1.2.0 2 | -------------------------------------------------------------------------------- /src/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /src/Installers/Merq.Installer.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Installer.props -------------------------------------------------------------------------------- /src/Installers/Merq.Installer.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Installer.targets -------------------------------------------------------------------------------- /src/Installers/Merq.Lib/Directories.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Lib/Directories.wxs -------------------------------------------------------------------------------- /src/Installers/Merq.Lib/Library.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Lib/Library.wxs -------------------------------------------------------------------------------- /src/Installers/Merq.Lib/Merq.Lib.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Lib/Merq.Lib.wixproj -------------------------------------------------------------------------------- /src/Installers/Merq.Lib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Lib/packages.config -------------------------------------------------------------------------------- /src/Installers/Merq.Msi/Merq.Msi.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Msi/Merq.Msi.targets -------------------------------------------------------------------------------- /src/Installers/Merq.Msi/Merq.Msi.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Msi/Merq.Msi.wixproj -------------------------------------------------------------------------------- /src/Installers/Merq.Msi/Merq.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Msi/Merq.wxi -------------------------------------------------------------------------------- /src/Installers/Merq.Msi/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Msi/Product.wxs -------------------------------------------------------------------------------- /src/Installers/Merq.Msi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/Merq.Msi/packages.config -------------------------------------------------------------------------------- /src/Installers/SampleBundle/Bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/Bundle.wxs -------------------------------------------------------------------------------- /src/Installers/SampleBundle/Resources/1033/ClassicTheme.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/Resources/1033/ClassicTheme.wxl -------------------------------------------------------------------------------- /src/Installers/SampleBundle/Resources/3082/ClassicTheme.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/Resources/3082/ClassicTheme.wxl -------------------------------------------------------------------------------- /src/Installers/SampleBundle/Resources/ClassicTheme.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/Resources/ClassicTheme.wxl -------------------------------------------------------------------------------- /src/Installers/SampleBundle/Resources/ClassicTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/Resources/ClassicTheme.xml -------------------------------------------------------------------------------- /src/Installers/SampleBundle/Resources/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/Resources/banner.bmp -------------------------------------------------------------------------------- /src/Installers/SampleBundle/Resources/banner.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/Resources/banner.pdn -------------------------------------------------------------------------------- /src/Installers/SampleBundle/SampleBundle.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/SampleBundle.wixproj -------------------------------------------------------------------------------- /src/Installers/SampleBundle/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleBundle/packages.config -------------------------------------------------------------------------------- /src/Installers/SampleExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Installers/SampleExtension/SampleExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleExtension/SampleExtension.csproj -------------------------------------------------------------------------------- /src/Installers/SampleExtension/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleExtension/project.json -------------------------------------------------------------------------------- /src/Installers/SampleExtension/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/SampleExtension/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Installers/build/Merq.VisualStudio.WiX.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/build/Merq.VisualStudio.WiX.targets -------------------------------------------------------------------------------- /src/Installers/build/Merq.VisualStudio.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/build/Merq.VisualStudio.props -------------------------------------------------------------------------------- /src/Installers/build/Merq.VisualStudio.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/build/Merq.VisualStudio.targets -------------------------------------------------------------------------------- /src/Installers/build/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Installers/build/Readme.txt -------------------------------------------------------------------------------- /src/Merq.VisualStudio.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Merq.VisualStudio.proj -------------------------------------------------------------------------------- /src/Merq.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Merq.key -------------------------------------------------------------------------------- /src/Merq.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Merq.props -------------------------------------------------------------------------------- /src/Merq.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Merq.sln -------------------------------------------------------------------------------- /src/Merq.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Merq.snk -------------------------------------------------------------------------------- /src/Merq.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Merq.vssettings -------------------------------------------------------------------------------- /src/StaFact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/StaFact.cs -------------------------------------------------------------------------------- /src/Version.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Version.targets -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix.IntegrationTests/ComponentsSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix.IntegrationTests/ComponentsSpec.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix.IntegrationTests/Merq.Vsix.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix.IntegrationTests/Merq.Vsix.IntegrationTests.csproj -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix.Tests/CommandBusComponentSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix.Tests/CommandBusComponentSpec.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix.Tests/EventStreamComponentSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix.Tests/EventStreamComponentSpec.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix.Tests/Merq.Vsix.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix.Tests/Merq.Vsix.Tests.csproj -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Components/CommandBusComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Components/CommandBusComponent.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Components/DefaultExportProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Components/DefaultExportProvider.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Components/EventStreamComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Components/EventStreamComponent.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Merq.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Merq.Vsix.csproj -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Merq.Vsix.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Merq.Vsix.props -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Merq.Vsix.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Merq.Vsix.targets -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/MerqPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/MerqPackage.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/MerqPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/MerqPackage.resx -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Vsix/Merq.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobileEssentials/Merq/HEAD/src/Vsix/Merq.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/_._: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------