├── .gitattributes ├── .github └── workflows │ └── cla.yml ├── .gitignore ├── LICENSE.TXT ├── README.md ├── Votive.sln ├── appveyor.yml ├── nuget.config ├── src ├── Icons │ ├── IncludeFile.ico │ ├── LocalizationFile.ico │ ├── ProductFile.ico │ ├── ProjectFile.ico │ ├── WixBundle.ico │ ├── WixLibrary.ico │ ├── WixLibraryFile.ico │ └── WixMergeModule.ico ├── Schemas │ └── v3 │ │ ├── WixLogo.png │ │ ├── redirects │ │ ├── wix.ca.targets │ │ ├── wix.nativeca.targets │ │ └── wix.targets │ │ ├── schemas │ │ ├── Dependency.xsd │ │ ├── bal.xsd │ │ ├── complus.xsd │ │ ├── difxapp.xsd │ │ ├── firewall.xsd │ │ ├── gaming.xsd │ │ ├── http.xsd │ │ ├── iis.xsd │ │ ├── lux.xsd │ │ ├── msmq.xsd │ │ ├── netfx.xsd │ │ ├── ps.xsd │ │ ├── sql.xsd │ │ ├── tag.xsd │ │ ├── thmutil.xsd │ │ ├── util.xsd │ │ ├── vs.xsd │ │ ├── wix.xsd │ │ └── wixloc.xsd │ │ ├── source.extension.vsixmanifest │ │ └── v3schemas.csproj ├── Templates │ └── v3 │ │ ├── Items │ │ ├── BlankFile │ │ │ ├── BlankFile.ico │ │ │ ├── BlankFile.vstemplate │ │ │ └── BlankFile.wxs │ │ ├── IncludeFile │ │ │ ├── IncludeFile.ico │ │ │ ├── IncludeFile.vstemplate │ │ │ └── IncludeFile.wxi │ │ ├── LocalizationFile │ │ │ ├── LocalizationFile.ico │ │ │ ├── LocalizationFile.vstemplate │ │ │ └── LocalizationFile.wxl │ │ └── TextFile │ │ │ ├── TextFile.ico │ │ │ ├── TextFile.txt │ │ │ └── TextFile.vstemplate │ │ ├── Projects │ │ ├── CustomActionCPP │ │ │ ├── CustomAction.cpp │ │ │ ├── CustomAction.def │ │ │ ├── CustomAction.vcxproj │ │ │ ├── CustomActionCPP.ico │ │ │ ├── CustomActionCPP.vstemplate │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ ├── CustomActionCS │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CustomAction.config │ │ │ ├── CustomAction.cs │ │ │ ├── CustomAction.csproj │ │ │ └── CustomActionCS.vstemplate │ │ ├── CustomActionVB │ │ │ ├── AssemblyInfo.vb │ │ │ ├── CustomAction.config │ │ │ ├── CustomAction.vb │ │ │ ├── CustomAction.vbproj │ │ │ └── CustomActionVB.vstemplate │ │ ├── WixBundleProject │ │ │ ├── Bundle.Generated.wxs │ │ │ ├── Bundle.wxs │ │ │ ├── BundleProject.wixproj │ │ │ ├── WixBundle.ico │ │ │ └── WixBundle.vstemplate │ │ ├── WixLibrary │ │ │ ├── Library.wxs │ │ │ ├── WixLibrary.ico │ │ │ ├── WixLibrary.vstemplate │ │ │ └── setuplibrary.wixproj │ │ ├── WixMergeModule │ │ │ ├── MergeModule.wixproj │ │ │ ├── MergeModule.wxs │ │ │ ├── WixMergeModule.ico │ │ │ └── WixMergeModule.vstemplate │ │ ├── WixProject │ │ │ ├── Product.wxs │ │ │ ├── SetupProject.wixproj │ │ │ ├── WixProject.ico │ │ │ └── WixProject.vstemplate │ │ └── customaction.config │ │ └── v3templates.csproj ├── Votive2010 │ ├── Votive2010.csproj │ ├── WixLogoDev10.png │ └── source.extension.vsixmanifest ├── Votive2012 │ ├── Votive2012.csproj │ ├── WixLogoDev11.png │ └── source.extension.vsixmanifest ├── Votive2013 │ ├── Votive2013.csproj │ ├── WixLogoDev12.png │ └── source.extension.vsixmanifest ├── Votive2015 │ ├── Votive2015.csproj │ ├── WixLogoDev14.png │ └── source.extension.vsixmanifest ├── Votive2017 │ ├── Votive2017.csproj │ ├── WixLogoDev15.png │ ├── redirects │ │ └── v3 │ │ │ ├── wix.ca.targets │ │ │ ├── wix.nativeca.targets │ │ │ └── wix.targets │ ├── schemas │ │ ├── Dependency.xsd │ │ ├── bal.xsd │ │ ├── complus.xsd │ │ ├── difxapp.xsd │ │ ├── firewall.xsd │ │ ├── gaming.xsd │ │ ├── http.xsd │ │ ├── iis.xsd │ │ ├── lux.xsd │ │ ├── msmq.xsd │ │ ├── netfx.xsd │ │ ├── ps.xsd │ │ ├── sql.xsd │ │ ├── tag.xsd │ │ ├── thmutil.xsd │ │ ├── util.xsd │ │ ├── vs.xsd │ │ ├── wix.xsd │ │ └── wixloc.xsd │ └── source.extension.vsixmanifest ├── Votive2019 │ ├── Votive2019.csproj │ ├── WixLogoDev16.png │ └── source.extension.vsixmanifest ├── Votive2022 │ ├── Votive2022.csproj │ ├── WixLogoDev17.png │ └── source.extension.vsixmanifest ├── common │ ├── WixDistribution.cs │ ├── WixDistribution.h │ ├── WixDistribution.wxl │ ├── WixLogo.png │ ├── WixLogoSmall.png │ ├── precomp.cpp │ ├── wix.rc │ └── wixstrsafe.h ├── src.proj ├── votive.shared │ ├── Controls │ │ ├── FolderBrowserTextBox.Designer.cs │ │ ├── FolderBrowserTextBox.cs │ │ ├── FolderBrowserTextBox.resx │ │ ├── WixBuildEventEditor.Designer.cs │ │ ├── WixBuildEventEditor.cs │ │ ├── WixBuildEventEditor.resx │ │ ├── WixBuildEventTextBox.cs │ │ ├── WixBuildEventTextBox.resx │ │ ├── WixColorUserControl.Designer.cs │ │ ├── WixColorUserControl.cs │ │ ├── WixColorUserControl.resx │ │ ├── WixFoldersSelector.Designer.cs │ │ ├── WixFoldersSelector.cs │ │ ├── WixFoldersSelector.resx │ │ ├── WixGroupBox.cs │ │ ├── WixGroupBox.resx │ │ ├── WixGroupLabel.cs │ │ └── WixGroupLabel.resx │ ├── CustomDictionary.xml │ ├── DontShowAgainDialog.Designer.cs │ ├── DontShowAgainDialog.cs │ ├── DontShowAgainDialog.resx │ ├── FileOverwriteDialog.Designer.cs │ ├── FileOverwriteDialog.cs │ ├── FileOverwriteDialog.resx │ ├── FileSearchHelperMethods.cs │ ├── Forms │ │ ├── WixBuildEventEditorForm.Designer.cs │ │ ├── WixBuildEventEditorForm.cs │ │ └── WixBuildEventEditorForm.resx │ ├── GlobalSuppressions.cs │ ├── IProjectSourceNode.cs │ ├── IsolatedDomain.cs │ ├── Microsoft.VisualStudio.Package.Project.resx │ ├── OAWixProject.cs │ ├── ProjectBase │ │ ├── AssemblyReferenceNode.cs │ │ ├── Attributes.cs │ │ ├── BuildDependency.cs │ │ ├── BuildManagerAdapter.cs │ │ ├── BuildPropertyPage.cs │ │ ├── ComReferenceNode.cs │ │ ├── ConfigProvider.cs │ │ ├── ConfigurationProperties.cs │ │ ├── DataObject.cs │ │ ├── DependentFileNode.cs │ │ ├── DesignPropertyDescriptor.cs │ │ ├── DocumentManager.cs │ │ ├── EnumDependencies.cs │ │ ├── FileChangeManager.cs │ │ ├── FileDocumentManager.cs │ │ ├── FileNode.cs │ │ ├── FolderNode.cs │ │ ├── GlobalPropertyHandler.cs │ │ ├── GlobalSuppressions.cs │ │ ├── HierarchyNode.cs │ │ ├── IDEBuildLogger.cs │ │ ├── ImageHandler.cs │ │ ├── Interfaces.cs │ │ ├── LangProj │ │ │ ├── OAAssemblyReference.cs │ │ │ ├── OABuildManager.cs │ │ │ ├── OAComReference.cs │ │ │ ├── OAProjectReference.cs │ │ │ ├── OAReferenceBase.cs │ │ │ ├── OAReferences.cs │ │ │ ├── OAVSProject.cs │ │ │ └── OAVSProjectItem.cs │ │ ├── LocalizableProperties.cs │ │ ├── Microsoft.VisualStudio.Package.Project.cs │ │ ├── Misc │ │ │ ├── ConnectionPointContainer.cs │ │ │ ├── ExternDll.cs │ │ │ ├── NativeMethods.cs │ │ │ └── UnsafeNativeMethods.cs │ │ ├── NestedProjectBuildDependency.cs │ │ ├── NestedProjectNode.cs │ │ ├── NodeProperties.cs │ │ ├── OAFileItem.cs │ │ ├── OAFolderItem.cs │ │ ├── OANavigableProjectItems.cs │ │ ├── OANestedProjectItem.cs │ │ ├── OANullProperty.cs │ │ ├── OAProject.cs │ │ ├── OAProjectItem.cs │ │ ├── OAProjectItems.cs │ │ ├── OAProperties.cs │ │ ├── OAProperty.cs │ │ ├── OAReferenceFolderItem.cs │ │ ├── OAReferenceItem.cs │ │ ├── OASolutionFolder.cs │ │ ├── OleServiceProvider.cs │ │ ├── Output.cs │ │ ├── OutputGroup.cs │ │ ├── ProjectConfig.cs │ │ ├── ProjectContainerNode.cs │ │ ├── ProjectDesignerDocumentManager.cs │ │ ├── ProjectDocumentsListener.cs │ │ ├── ProjectElement.cs │ │ ├── ProjectFactory.cs │ │ ├── ProjectFileConstants.cs │ │ ├── ProjectNode.CopyPaste.cs │ │ ├── ProjectNode.Events.cs │ │ ├── ProjectNode.cs │ │ ├── ProjectOptions.cs │ │ ├── ProjectPackage.cs │ │ ├── ProjectReferenceNode.cs │ │ ├── PropertiesEditorLauncher.cs │ │ ├── ReferenceContainerNode.cs │ │ ├── ReferenceNode.cs │ │ ├── RegisteredProjectType.cs │ │ ├── SelectionListener.cs │ │ ├── SettingsPage.cs │ │ ├── SingleFileGenerator.cs │ │ ├── SingleFileGeneratorFactory.cs │ │ ├── SolutionListener.cs │ │ ├── SolutionListenerForBuildDependencyUpdate.cs │ │ ├── SolutionListenerForProjectEvents.cs │ │ ├── SolutionListenerForProjectOpen.cs │ │ ├── SolutionListenerForProjectReferenceUpdate.cs │ │ ├── StructuresEnums.cs │ │ ├── SuspendFileChanges.cs │ │ ├── TokenProcessor.cs │ │ ├── Tracing.cs │ │ ├── TrackDocumentsHelper.cs │ │ ├── TypeConverters.cs │ │ ├── UpdateSolutionEventsListener.cs │ │ ├── Url.cs │ │ ├── Utilities.cs │ │ ├── VSCommands.cs │ │ ├── VSMDCodeDomProvider.cs │ │ └── VSShellUtilities.cs │ ├── ProjectProperty.cs │ ├── ProjectPropertyArgumentException.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertyPages │ │ ├── WixBuildEventsPropertyPage.cs │ │ ├── WixBuildEventsPropertyPagePanel.Designer.cs │ │ ├── WixBuildEventsPropertyPagePanel.cs │ │ ├── WixBuildEventsPropertyPagePanel.resx │ │ ├── WixBuildPropertyPage.cs │ │ ├── WixBuildPropertyPagePanel.Designer.cs │ │ ├── WixBuildPropertyPagePanel.cs │ │ ├── WixBuildPropertyPagePanel.resx │ │ ├── WixInstallerPropertyPage.cs │ │ ├── WixInstallerPropertyPagePanel.Designer.cs │ │ ├── WixInstallerPropertyPagePanel.cs │ │ ├── WixInstallerPropertyPagePanel.resx │ │ ├── WixPathsPropertyPage.cs │ │ ├── WixPathsPropertyPagePanel.Designer.cs │ │ ├── WixPathsPropertyPagePanel.cs │ │ ├── WixPathsPropertyPagePanel.resx │ │ ├── WixPropertyPage.cs │ │ ├── WixPropertyPagePanel.Designer.cs │ │ ├── WixPropertyPagePanel.cs │ │ ├── WixPropertyPagePanel.resx │ │ ├── WixToolsSettingsPropertyPage.cs │ │ ├── WixToolsSettingsPropertyPagePanel.Designer.cs │ │ ├── WixToolsSettingsPropertyPagePanel.cs │ │ └── WixToolsSettingsPropertyPagePanel.resx │ ├── PropertyValidator.cs │ ├── Resources │ │ ├── Delete.png │ │ ├── DownArrow.png │ │ ├── IncludeFile.ico │ │ ├── LocalizationFile.ico │ │ ├── Package.ico │ │ ├── ProductFile.ico │ │ ├── ProjectFile.ico │ │ ├── Splash.bmp │ │ ├── UpArrow.png │ │ ├── WixLibraryFile.ico │ │ └── imagelis.bmp │ ├── RunPostBuildEvent.cs │ ├── Templates │ │ └── v3 │ │ │ ├── Items │ │ │ ├── BlankFile │ │ │ │ ├── BlankFile.ico │ │ │ │ ├── BlankFile.vstemplate │ │ │ │ └── BlankFile.wxs │ │ │ ├── IncludeFile │ │ │ │ ├── IncludeFile.ico │ │ │ │ ├── IncludeFile.vstemplate │ │ │ │ └── IncludeFile.wxi │ │ │ ├── LocalizationFile │ │ │ │ ├── LocalizationFile.ico │ │ │ │ ├── LocalizationFile.vstemplate │ │ │ │ └── LocalizationFile.wxl │ │ │ └── TextFile │ │ │ │ ├── TextFile.ico │ │ │ │ ├── TextFile.txt │ │ │ │ └── TextFile.vstemplate │ │ │ └── Projects │ │ │ ├── CustomActionCS │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CustomAction.config │ │ │ ├── CustomAction.cs │ │ │ ├── CustomAction.csproj │ │ │ └── CustomActionCS.vstemplate │ │ │ ├── CustomActionVB │ │ │ ├── AssemblyInfo.vb │ │ │ ├── CustomAction.config │ │ │ ├── CustomAction.vb │ │ │ ├── CustomAction.vbproj │ │ │ └── CustomActionVB.vstemplate │ │ │ ├── WixBundleProject │ │ │ ├── Bundle.Generated.wxs │ │ │ ├── Bundle.wxs │ │ │ ├── BundleProject.wixproj │ │ │ ├── WixBundle.ico │ │ │ └── WixBundle.vstemplate │ │ │ ├── WixLibrary │ │ │ ├── Library.wxs │ │ │ ├── WixLibrary.ico │ │ │ ├── WixLibrary.vstemplate │ │ │ └── setuplibrary.wixproj │ │ │ ├── WixMergeModule │ │ │ ├── MergeModule.wixproj │ │ │ ├── MergeModule.wxs │ │ │ ├── WixMergeModule.ico │ │ │ └── WixMergeModule.vstemplate │ │ │ ├── WixProject │ │ │ ├── Product.wxs │ │ │ ├── SetupProject.wixproj │ │ │ ├── WixProject.ico │ │ │ └── WixProject.vstemplate │ │ │ └── customaction.config │ ├── WixBuildMacroCollection.cs │ ├── WixConfigProvider.cs │ ├── WixDesignPropertyDescriptor.cs │ ├── WixExtensionReferenceNode.cs │ ├── WixExtensionReferenceNodeProperties.cs │ ├── WixFileNode.cs │ ├── WixFileNodeNonMemberProperties.cs │ ├── WixFileNodeProperties.cs │ ├── WixFolderNode.cs │ ├── WixFolderNodeNonMemberProperties.cs │ ├── WixFolderNodeProperties.cs │ ├── WixHelperMethods.cs │ ├── WixLibraryReferenceNode.cs │ ├── WixLibraryReferenceNodeProperties.cs │ ├── WixLinkedFileNodeProperties.cs │ ├── WixLocalizedCategoryAttribute.cs │ ├── WixLocalizedControlTextAttribute.cs │ ├── WixLocalizedDescriptionAttribute.cs │ ├── WixLocalizedDisplayNameAttribute.cs │ ├── WixNonMemberDesignPropertyDescriptor.cs │ ├── WixOutputType.cs │ ├── WixPackage.cs │ ├── WixPackageSettings.cs │ ├── WixProjectConfig.cs │ ├── WixProjectFactory.cs │ ├── WixProjectFileConstants.cs │ ├── WixProjectMembers.cs │ ├── WixProjectNode.cs │ ├── WixProjectNodeProperties.cs │ ├── WixProjectReferenceNode.cs │ ├── WixProjectReferenceNodeProperties.cs │ ├── WixReferenceContainerNode.cs │ ├── WixReferenceNode.cs │ ├── WixReferenceNodeProperties.cs │ ├── WixReferenceValidator.cs │ ├── WixStrings.Designer.cs │ ├── WixStrings.resx │ ├── WixVsConstants.cs │ ├── WixWarningLevel.cs │ ├── votive.shared.projitems │ └── votive.shared.shproj └── votive │ └── votive.csproj ├── tools ├── Dotnet.targets ├── OneTimeWixBuildInitialization.proj ├── Traversal.targets ├── Wix.ruleset ├── WixBuild.Signing.targets ├── WixBuild.Tools.targets ├── WixBuild.csproj.props ├── WixBuild.csproj.targets ├── WixBuild.props ├── WixBuild.targets ├── appsettings.json ├── bin │ └── NuGet.exe ├── publickey_wix.snk └── signing-filter.none.txt └── version.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/README.md -------------------------------------------------------------------------------- /Votive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/Votive.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/appveyor.yml -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/nuget.config -------------------------------------------------------------------------------- /src/Icons/IncludeFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Icons/IncludeFile.ico -------------------------------------------------------------------------------- /src/Icons/LocalizationFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Icons/LocalizationFile.ico -------------------------------------------------------------------------------- /src/Icons/ProductFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Icons/ProductFile.ico -------------------------------------------------------------------------------- /src/Icons/ProjectFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Icons/ProjectFile.ico -------------------------------------------------------------------------------- /src/Icons/WixBundle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Icons/WixBundle.ico -------------------------------------------------------------------------------- /src/Icons/WixLibrary.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Icons/WixLibrary.ico -------------------------------------------------------------------------------- /src/Icons/WixLibraryFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Icons/WixLibraryFile.ico -------------------------------------------------------------------------------- /src/Icons/WixMergeModule.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Icons/WixMergeModule.ico -------------------------------------------------------------------------------- /src/Schemas/v3/WixLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/WixLogo.png -------------------------------------------------------------------------------- /src/Schemas/v3/redirects/wix.ca.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/redirects/wix.ca.targets -------------------------------------------------------------------------------- /src/Schemas/v3/redirects/wix.nativeca.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/redirects/wix.nativeca.targets -------------------------------------------------------------------------------- /src/Schemas/v3/redirects/wix.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/redirects/wix.targets -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/Dependency.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/Dependency.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/bal.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/bal.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/complus.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/complus.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/difxapp.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/difxapp.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/firewall.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/firewall.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/gaming.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/gaming.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/http.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/http.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/iis.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/iis.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/lux.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/lux.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/msmq.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/msmq.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/netfx.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/netfx.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/ps.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/ps.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/sql.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/sql.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/tag.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/tag.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/thmutil.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/thmutil.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/util.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/util.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/vs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/vs.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/wix.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/wix.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/schemas/wixloc.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/schemas/wixloc.xsd -------------------------------------------------------------------------------- /src/Schemas/v3/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Schemas/v3/v3schemas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Schemas/v3/v3schemas.csproj -------------------------------------------------------------------------------- /src/Templates/v3/Items/BlankFile/BlankFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/BlankFile/BlankFile.ico -------------------------------------------------------------------------------- /src/Templates/v3/Items/BlankFile/BlankFile.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/BlankFile/BlankFile.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Items/BlankFile/BlankFile.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/BlankFile/BlankFile.wxs -------------------------------------------------------------------------------- /src/Templates/v3/Items/IncludeFile/IncludeFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/IncludeFile/IncludeFile.ico -------------------------------------------------------------------------------- /src/Templates/v3/Items/IncludeFile/IncludeFile.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/IncludeFile/IncludeFile.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Items/IncludeFile/IncludeFile.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/IncludeFile/IncludeFile.wxi -------------------------------------------------------------------------------- /src/Templates/v3/Items/LocalizationFile/LocalizationFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/LocalizationFile/LocalizationFile.ico -------------------------------------------------------------------------------- /src/Templates/v3/Items/LocalizationFile/LocalizationFile.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/LocalizationFile/LocalizationFile.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Items/LocalizationFile/LocalizationFile.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/LocalizationFile/LocalizationFile.wxl -------------------------------------------------------------------------------- /src/Templates/v3/Items/TextFile/TextFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/TextFile/TextFile.ico -------------------------------------------------------------------------------- /src/Templates/v3/Items/TextFile/TextFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Templates/v3/Items/TextFile/TextFile.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Items/TextFile/TextFile.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCPP/CustomAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCPP/CustomAction.cpp -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCPP/CustomAction.def: -------------------------------------------------------------------------------- 1 | LIBRARY "$projectname$" 2 | 3 | EXPORTS 4 | CustomAction1 5 | -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCPP/CustomAction.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCPP/CustomAction.vcxproj -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCPP/CustomActionCPP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCPP/CustomActionCPP.ico -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCPP/CustomActionCPP.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCPP/CustomActionCPP.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCPP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCPP/stdafx.cpp -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCPP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCPP/stdafx.h -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCPP/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCPP/targetver.h -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCS/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCS/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCS/CustomAction.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCS/CustomAction.config -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCS/CustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCS/CustomAction.cs -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCS/CustomAction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCS/CustomAction.csproj -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionCS/CustomActionCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionCS/CustomActionCS.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionVB/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionVB/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionVB/CustomAction.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionVB/CustomAction.config -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionVB/CustomAction.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionVB/CustomAction.vb -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionVB/CustomAction.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionVB/CustomAction.vbproj -------------------------------------------------------------------------------- /src/Templates/v3/Projects/CustomActionVB/CustomActionVB.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/CustomActionVB/CustomActionVB.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixBundleProject/Bundle.Generated.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixBundleProject/Bundle.Generated.wxs -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixBundleProject/Bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixBundleProject/Bundle.wxs -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixBundleProject/BundleProject.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixBundleProject/BundleProject.wixproj -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixBundleProject/WixBundle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixBundleProject/WixBundle.ico -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixBundleProject/WixBundle.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixBundleProject/WixBundle.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixLibrary/Library.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixLibrary/Library.wxs -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixLibrary/WixLibrary.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixLibrary/WixLibrary.ico -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixLibrary/WixLibrary.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixLibrary/WixLibrary.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixLibrary/setuplibrary.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixLibrary/setuplibrary.wixproj -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixMergeModule/MergeModule.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixMergeModule/MergeModule.wixproj -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixMergeModule/MergeModule.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixMergeModule/MergeModule.wxs -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixMergeModule/WixMergeModule.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixMergeModule/WixMergeModule.ico -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixMergeModule/WixMergeModule.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixMergeModule/WixMergeModule.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixProject/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixProject/Product.wxs -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixProject/SetupProject.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixProject/SetupProject.wixproj -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixProject/WixProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixProject/WixProject.ico -------------------------------------------------------------------------------- /src/Templates/v3/Projects/WixProject/WixProject.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/WixProject/WixProject.vstemplate -------------------------------------------------------------------------------- /src/Templates/v3/Projects/customaction.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/Projects/customaction.config -------------------------------------------------------------------------------- /src/Templates/v3/v3templates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Templates/v3/v3templates.csproj -------------------------------------------------------------------------------- /src/Votive2010/Votive2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2010/Votive2010.csproj -------------------------------------------------------------------------------- /src/Votive2010/WixLogoDev10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2010/WixLogoDev10.png -------------------------------------------------------------------------------- /src/Votive2010/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2010/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Votive2012/Votive2012.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2012/Votive2012.csproj -------------------------------------------------------------------------------- /src/Votive2012/WixLogoDev11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2012/WixLogoDev11.png -------------------------------------------------------------------------------- /src/Votive2012/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2012/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Votive2013/Votive2013.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2013/Votive2013.csproj -------------------------------------------------------------------------------- /src/Votive2013/WixLogoDev12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2013/WixLogoDev12.png -------------------------------------------------------------------------------- /src/Votive2013/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2013/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Votive2015/Votive2015.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2015/Votive2015.csproj -------------------------------------------------------------------------------- /src/Votive2015/WixLogoDev14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2015/WixLogoDev14.png -------------------------------------------------------------------------------- /src/Votive2015/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2015/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Votive2017/Votive2017.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/Votive2017.csproj -------------------------------------------------------------------------------- /src/Votive2017/WixLogoDev15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/WixLogoDev15.png -------------------------------------------------------------------------------- /src/Votive2017/redirects/v3/wix.ca.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/redirects/v3/wix.ca.targets -------------------------------------------------------------------------------- /src/Votive2017/redirects/v3/wix.nativeca.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/redirects/v3/wix.nativeca.targets -------------------------------------------------------------------------------- /src/Votive2017/redirects/v3/wix.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/redirects/v3/wix.targets -------------------------------------------------------------------------------- /src/Votive2017/schemas/Dependency.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/Dependency.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/bal.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/bal.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/complus.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/complus.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/difxapp.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/difxapp.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/firewall.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/firewall.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/gaming.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/gaming.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/http.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/http.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/iis.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/iis.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/lux.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/lux.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/msmq.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/msmq.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/netfx.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/netfx.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/ps.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/ps.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/sql.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/sql.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/tag.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/tag.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/thmutil.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/thmutil.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/util.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/util.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/vs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/vs.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/wix.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/wix.xsd -------------------------------------------------------------------------------- /src/Votive2017/schemas/wixloc.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/schemas/wixloc.xsd -------------------------------------------------------------------------------- /src/Votive2017/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2017/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Votive2019/Votive2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2019/Votive2019.csproj -------------------------------------------------------------------------------- /src/Votive2019/WixLogoDev16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2019/WixLogoDev16.png -------------------------------------------------------------------------------- /src/Votive2019/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2019/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/Votive2022/Votive2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2022/Votive2022.csproj -------------------------------------------------------------------------------- /src/Votive2022/WixLogoDev17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2022/WixLogoDev17.png -------------------------------------------------------------------------------- /src/Votive2022/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/Votive2022/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/common/WixDistribution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/common/WixDistribution.cs -------------------------------------------------------------------------------- /src/common/WixDistribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/common/WixDistribution.h -------------------------------------------------------------------------------- /src/common/WixDistribution.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/common/WixDistribution.wxl -------------------------------------------------------------------------------- /src/common/WixLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/common/WixLogo.png -------------------------------------------------------------------------------- /src/common/WixLogoSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/common/WixLogoSmall.png -------------------------------------------------------------------------------- /src/common/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/common/precomp.cpp -------------------------------------------------------------------------------- /src/common/wix.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/common/wix.rc -------------------------------------------------------------------------------- /src/common/wixstrsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/common/wixstrsafe.h -------------------------------------------------------------------------------- /src/src.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/src.proj -------------------------------------------------------------------------------- /src/votive.shared/Controls/FolderBrowserTextBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/FolderBrowserTextBox.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/FolderBrowserTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/FolderBrowserTextBox.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/FolderBrowserTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/FolderBrowserTextBox.resx -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixBuildEventEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixBuildEventEditor.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixBuildEventEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixBuildEventEditor.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixBuildEventEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixBuildEventEditor.resx -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixBuildEventTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixBuildEventTextBox.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixBuildEventTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixBuildEventTextBox.resx -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixColorUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixColorUserControl.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixColorUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixColorUserControl.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixColorUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixColorUserControl.resx -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixFoldersSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixFoldersSelector.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixFoldersSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixFoldersSelector.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixFoldersSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixFoldersSelector.resx -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixGroupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixGroupBox.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixGroupBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixGroupBox.resx -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixGroupLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixGroupLabel.cs -------------------------------------------------------------------------------- /src/votive.shared/Controls/WixGroupLabel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Controls/WixGroupLabel.resx -------------------------------------------------------------------------------- /src/votive.shared/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/CustomDictionary.xml -------------------------------------------------------------------------------- /src/votive.shared/DontShowAgainDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/DontShowAgainDialog.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/DontShowAgainDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/DontShowAgainDialog.cs -------------------------------------------------------------------------------- /src/votive.shared/DontShowAgainDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/DontShowAgainDialog.resx -------------------------------------------------------------------------------- /src/votive.shared/FileOverwriteDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/FileOverwriteDialog.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/FileOverwriteDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/FileOverwriteDialog.cs -------------------------------------------------------------------------------- /src/votive.shared/FileOverwriteDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/FileOverwriteDialog.resx -------------------------------------------------------------------------------- /src/votive.shared/FileSearchHelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/FileSearchHelperMethods.cs -------------------------------------------------------------------------------- /src/votive.shared/Forms/WixBuildEventEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Forms/WixBuildEventEditorForm.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/Forms/WixBuildEventEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Forms/WixBuildEventEditorForm.cs -------------------------------------------------------------------------------- /src/votive.shared/Forms/WixBuildEventEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Forms/WixBuildEventEditorForm.resx -------------------------------------------------------------------------------- /src/votive.shared/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/votive.shared/IProjectSourceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/IProjectSourceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/IsolatedDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/IsolatedDomain.cs -------------------------------------------------------------------------------- /src/votive.shared/Microsoft.VisualStudio.Package.Project.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Microsoft.VisualStudio.Package.Project.resx -------------------------------------------------------------------------------- /src/votive.shared/OAWixProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/OAWixProject.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/AssemblyReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/AssemblyReferenceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Attributes.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/BuildDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/BuildDependency.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/BuildManagerAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/BuildManagerAdapter.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/BuildPropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/BuildPropertyPage.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ComReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ComReferenceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ConfigProvider.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ConfigurationProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ConfigurationProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/DataObject.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/DependentFileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/DependentFileNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/DesignPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/DesignPropertyDescriptor.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/DocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/DocumentManager.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/EnumDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/EnumDependencies.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/FileChangeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/FileChangeManager.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/FileDocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/FileDocumentManager.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/FileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/FileNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/FolderNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/FolderNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/GlobalPropertyHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/GlobalPropertyHandler.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/HierarchyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/HierarchyNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/IDEBuildLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/IDEBuildLogger.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ImageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ImageHandler.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Interfaces.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LangProj/OAAssemblyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LangProj/OAAssemblyReference.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LangProj/OABuildManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LangProj/OABuildManager.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LangProj/OAComReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LangProj/OAComReference.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LangProj/OAProjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LangProj/OAProjectReference.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LangProj/OAReferenceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LangProj/OAReferenceBase.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LangProj/OAReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LangProj/OAReferences.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LangProj/OAVSProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LangProj/OAVSProject.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LangProj/OAVSProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LangProj/OAVSProjectItem.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/LocalizableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/LocalizableProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Microsoft.VisualStudio.Package.Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Microsoft.VisualStudio.Package.Project.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Misc/ConnectionPointContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Misc/ConnectionPointContainer.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Misc/ExternDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Misc/ExternDll.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Misc/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Misc/NativeMethods.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Misc/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Misc/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/NestedProjectBuildDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/NestedProjectBuildDependency.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/NestedProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/NestedProjectNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/NodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/NodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAFileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAFileItem.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAFolderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAFolderItem.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OANavigableProjectItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OANavigableProjectItems.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OANestedProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OANestedProjectItem.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OANullProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OANullProperty.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAProject.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAProjectItem.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAProjectItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAProjectItems.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAProperty.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAReferenceFolderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAReferenceFolderItem.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OAReferenceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OAReferenceItem.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OASolutionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OASolutionFolder.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OleServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OleServiceProvider.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Output.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/OutputGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/OutputGroup.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectConfig.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectContainerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectContainerNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectDesignerDocumentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectDesignerDocumentManager.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectDocumentsListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectDocumentsListener.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectElement.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectFactory.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectFileConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectFileConstants.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectNode.CopyPaste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectNode.CopyPaste.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectNode.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectNode.Events.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectOptions.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectPackage.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ProjectReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ProjectReferenceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/PropertiesEditorLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/PropertiesEditorLauncher.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ReferenceContainerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ReferenceContainerNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/ReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/ReferenceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/RegisteredProjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/RegisteredProjectType.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SelectionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SelectionListener.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SettingsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SettingsPage.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SingleFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SingleFileGenerator.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SingleFileGeneratorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SingleFileGeneratorFactory.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SolutionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SolutionListener.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SolutionListenerForBuildDependencyUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SolutionListenerForBuildDependencyUpdate.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SolutionListenerForProjectEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SolutionListenerForProjectEvents.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SolutionListenerForProjectOpen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SolutionListenerForProjectOpen.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SolutionListenerForProjectReferenceUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SolutionListenerForProjectReferenceUpdate.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/StructuresEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/StructuresEnums.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/SuspendFileChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/SuspendFileChanges.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/TokenProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/TokenProcessor.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Tracing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Tracing.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/TrackDocumentsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/TrackDocumentsHelper.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/TypeConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/TypeConverters.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/UpdateSolutionEventsListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/UpdateSolutionEventsListener.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Url.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Url.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/Utilities.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/VSCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/VSCommands.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/VSMDCodeDomProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/VSMDCodeDomProvider.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectBase/VSShellUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectBase/VSShellUtilities.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectProperty.cs -------------------------------------------------------------------------------- /src/votive.shared/ProjectPropertyArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/ProjectPropertyArgumentException.cs -------------------------------------------------------------------------------- /src/votive.shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixBuildEventsPropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixBuildEventsPropertyPage.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixBuildEventsPropertyPagePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixBuildEventsPropertyPagePanel.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixBuildEventsPropertyPagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixBuildEventsPropertyPagePanel.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixBuildEventsPropertyPagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixBuildEventsPropertyPagePanel.resx -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixBuildPropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixBuildPropertyPage.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixBuildPropertyPagePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixBuildPropertyPagePanel.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixBuildPropertyPagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixBuildPropertyPagePanel.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixBuildPropertyPagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixBuildPropertyPagePanel.resx -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixInstallerPropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixInstallerPropertyPage.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixInstallerPropertyPagePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixInstallerPropertyPagePanel.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixInstallerPropertyPagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixInstallerPropertyPagePanel.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixInstallerPropertyPagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixInstallerPropertyPagePanel.resx -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixPathsPropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixPathsPropertyPage.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixPathsPropertyPagePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixPathsPropertyPagePanel.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixPathsPropertyPagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixPathsPropertyPagePanel.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixPathsPropertyPagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixPathsPropertyPagePanel.resx -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixPropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixPropertyPage.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixPropertyPagePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixPropertyPagePanel.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixPropertyPagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixPropertyPagePanel.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixPropertyPagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixPropertyPagePanel.resx -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixToolsSettingsPropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixToolsSettingsPropertyPage.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixToolsSettingsPropertyPagePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixToolsSettingsPropertyPagePanel.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixToolsSettingsPropertyPagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixToolsSettingsPropertyPagePanel.cs -------------------------------------------------------------------------------- /src/votive.shared/PropertyPages/WixToolsSettingsPropertyPagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyPages/WixToolsSettingsPropertyPagePanel.resx -------------------------------------------------------------------------------- /src/votive.shared/PropertyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/PropertyValidator.cs -------------------------------------------------------------------------------- /src/votive.shared/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/Delete.png -------------------------------------------------------------------------------- /src/votive.shared/Resources/DownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/DownArrow.png -------------------------------------------------------------------------------- /src/votive.shared/Resources/IncludeFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/IncludeFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Resources/LocalizationFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/LocalizationFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/Package.ico -------------------------------------------------------------------------------- /src/votive.shared/Resources/ProductFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/ProductFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Resources/ProjectFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/ProjectFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Resources/Splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/Splash.bmp -------------------------------------------------------------------------------- /src/votive.shared/Resources/UpArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/UpArrow.png -------------------------------------------------------------------------------- /src/votive.shared/Resources/WixLibraryFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/WixLibraryFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Resources/imagelis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Resources/imagelis.bmp -------------------------------------------------------------------------------- /src/votive.shared/RunPostBuildEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/RunPostBuildEvent.cs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/BlankFile/BlankFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/BlankFile/BlankFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/BlankFile/BlankFile.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/BlankFile/BlankFile.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/BlankFile/BlankFile.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/BlankFile/BlankFile.wxs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/IncludeFile/IncludeFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/IncludeFile/IncludeFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/IncludeFile/IncludeFile.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/IncludeFile/IncludeFile.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/IncludeFile/IncludeFile.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/IncludeFile/IncludeFile.wxi -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/LocalizationFile/LocalizationFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/LocalizationFile/LocalizationFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/LocalizationFile/LocalizationFile.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/LocalizationFile/LocalizationFile.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/LocalizationFile/LocalizationFile.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/LocalizationFile/LocalizationFile.wxl -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/TextFile/TextFile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/TextFile/TextFile.ico -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/TextFile/TextFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Items/TextFile/TextFile.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Items/TextFile/TextFile.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionCS/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionCS/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionCS/CustomAction.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionCS/CustomAction.config -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionCS/CustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionCS/CustomAction.cs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionCS/CustomAction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionCS/CustomAction.csproj -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionCS/CustomActionCS.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionCS/CustomActionCS.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionVB/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionVB/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionVB/CustomAction.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionVB/CustomAction.config -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionVB/CustomAction.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionVB/CustomAction.vb -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionVB/CustomAction.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionVB/CustomAction.vbproj -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/CustomActionVB/CustomActionVB.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/CustomActionVB/CustomActionVB.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixBundleProject/Bundle.Generated.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixBundleProject/Bundle.Generated.wxs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixBundleProject/Bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixBundleProject/Bundle.wxs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixBundleProject/BundleProject.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixBundleProject/BundleProject.wixproj -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixBundleProject/WixBundle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixBundleProject/WixBundle.ico -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixBundleProject/WixBundle.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixBundleProject/WixBundle.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixLibrary/Library.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixLibrary/Library.wxs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixLibrary/WixLibrary.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixLibrary/WixLibrary.ico -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixLibrary/WixLibrary.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixLibrary/WixLibrary.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixLibrary/setuplibrary.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixLibrary/setuplibrary.wixproj -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixMergeModule/MergeModule.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixMergeModule/MergeModule.wixproj -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixMergeModule/MergeModule.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixMergeModule/MergeModule.wxs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixMergeModule/WixMergeModule.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixMergeModule/WixMergeModule.ico -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixMergeModule/WixMergeModule.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixMergeModule/WixMergeModule.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixProject/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixProject/Product.wxs -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixProject/SetupProject.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixProject/SetupProject.wixproj -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixProject/WixProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixProject/WixProject.ico -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/WixProject/WixProject.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/WixProject/WixProject.vstemplate -------------------------------------------------------------------------------- /src/votive.shared/Templates/v3/Projects/customaction.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/Templates/v3/Projects/customaction.config -------------------------------------------------------------------------------- /src/votive.shared/WixBuildMacroCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixBuildMacroCollection.cs -------------------------------------------------------------------------------- /src/votive.shared/WixConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixConfigProvider.cs -------------------------------------------------------------------------------- /src/votive.shared/WixDesignPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixDesignPropertyDescriptor.cs -------------------------------------------------------------------------------- /src/votive.shared/WixExtensionReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixExtensionReferenceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/WixExtensionReferenceNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixExtensionReferenceNodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixFileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixFileNode.cs -------------------------------------------------------------------------------- /src/votive.shared/WixFileNodeNonMemberProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixFileNodeNonMemberProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixFileNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixFileNodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixFolderNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixFolderNode.cs -------------------------------------------------------------------------------- /src/votive.shared/WixFolderNodeNonMemberProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixFolderNodeNonMemberProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixFolderNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixFolderNodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixHelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixHelperMethods.cs -------------------------------------------------------------------------------- /src/votive.shared/WixLibraryReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixLibraryReferenceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/WixLibraryReferenceNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixLibraryReferenceNodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixLinkedFileNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixLinkedFileNodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixLocalizedCategoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixLocalizedCategoryAttribute.cs -------------------------------------------------------------------------------- /src/votive.shared/WixLocalizedControlTextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixLocalizedControlTextAttribute.cs -------------------------------------------------------------------------------- /src/votive.shared/WixLocalizedDescriptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixLocalizedDescriptionAttribute.cs -------------------------------------------------------------------------------- /src/votive.shared/WixLocalizedDisplayNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixLocalizedDisplayNameAttribute.cs -------------------------------------------------------------------------------- /src/votive.shared/WixNonMemberDesignPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixNonMemberDesignPropertyDescriptor.cs -------------------------------------------------------------------------------- /src/votive.shared/WixOutputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixOutputType.cs -------------------------------------------------------------------------------- /src/votive.shared/WixPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixPackage.cs -------------------------------------------------------------------------------- /src/votive.shared/WixPackageSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixPackageSettings.cs -------------------------------------------------------------------------------- /src/votive.shared/WixProjectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixProjectConfig.cs -------------------------------------------------------------------------------- /src/votive.shared/WixProjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixProjectFactory.cs -------------------------------------------------------------------------------- /src/votive.shared/WixProjectFileConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixProjectFileConstants.cs -------------------------------------------------------------------------------- /src/votive.shared/WixProjectMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixProjectMembers.cs -------------------------------------------------------------------------------- /src/votive.shared/WixProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixProjectNode.cs -------------------------------------------------------------------------------- /src/votive.shared/WixProjectNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixProjectNodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixProjectReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixProjectReferenceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/WixProjectReferenceNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixProjectReferenceNodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixReferenceContainerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixReferenceContainerNode.cs -------------------------------------------------------------------------------- /src/votive.shared/WixReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixReferenceNode.cs -------------------------------------------------------------------------------- /src/votive.shared/WixReferenceNodeProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixReferenceNodeProperties.cs -------------------------------------------------------------------------------- /src/votive.shared/WixReferenceValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixReferenceValidator.cs -------------------------------------------------------------------------------- /src/votive.shared/WixStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixStrings.Designer.cs -------------------------------------------------------------------------------- /src/votive.shared/WixStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixStrings.resx -------------------------------------------------------------------------------- /src/votive.shared/WixVsConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixVsConstants.cs -------------------------------------------------------------------------------- /src/votive.shared/WixWarningLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/WixWarningLevel.cs -------------------------------------------------------------------------------- /src/votive.shared/votive.shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/votive.shared.projitems -------------------------------------------------------------------------------- /src/votive.shared/votive.shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive.shared/votive.shared.shproj -------------------------------------------------------------------------------- /src/votive/votive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/src/votive/votive.csproj -------------------------------------------------------------------------------- /tools/Dotnet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/Dotnet.targets -------------------------------------------------------------------------------- /tools/OneTimeWixBuildInitialization.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/OneTimeWixBuildInitialization.proj -------------------------------------------------------------------------------- /tools/Traversal.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/Traversal.targets -------------------------------------------------------------------------------- /tools/Wix.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/Wix.ruleset -------------------------------------------------------------------------------- /tools/WixBuild.Signing.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/WixBuild.Signing.targets -------------------------------------------------------------------------------- /tools/WixBuild.Tools.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/WixBuild.Tools.targets -------------------------------------------------------------------------------- /tools/WixBuild.csproj.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/WixBuild.csproj.props -------------------------------------------------------------------------------- /tools/WixBuild.csproj.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/WixBuild.csproj.targets -------------------------------------------------------------------------------- /tools/WixBuild.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/WixBuild.props -------------------------------------------------------------------------------- /tools/WixBuild.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/WixBuild.targets -------------------------------------------------------------------------------- /tools/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/appsettings.json -------------------------------------------------------------------------------- /tools/bin/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/bin/NuGet.exe -------------------------------------------------------------------------------- /tools/publickey_wix.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/tools/publickey_wix.snk -------------------------------------------------------------------------------- /tools/signing-filter.none.txt: -------------------------------------------------------------------------------- 1 | sign-no-files 2 | -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wixtoolset/VisualStudioExtension/HEAD/version.json --------------------------------------------------------------------------------