-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from AamirWaseem/master
New Plugin - Explore Aspose.Words for .NET API Examples using Visual Studio Plugin
- Loading branch information
Showing
60 changed files
with
6,931 additions
and
1 deletion.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
Plugins/Visual Studio/Aspose.Words.VisualStudioPlugin/AsposeVisualStudioPlugin.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2010 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsposeVisualStudioPlugin", "AsposeVisualStudioPlugin\AsposeVisualStudioPlugin.csproj", "{54C786E5-FD14-4036-92AE-E9F25B71534B}" | ||
EndProject | ||
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "Installer", "Installer\Installer.wixproj", "{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Debug|Mixed Platforms = Debug|Mixed Platforms | ||
Debug|x86 = Debug|x86 | ||
Release|Any CPU = Release|Any CPU | ||
Release|Mixed Platforms = Release|Mixed Platforms | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Debug|x86.ActiveCfg = Debug|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Release|Mixed Platforms.Build.0 = Release|Any CPU | ||
{54C786E5-FD14-4036-92AE-E9F25B71534B}.Release|x86.ActiveCfg = Release|Any CPU | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Debug|Any CPU.ActiveCfg = Debug|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Debug|Mixed Platforms.Build.0 = Debug|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Debug|x86.ActiveCfg = Debug|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Debug|x86.Build.0 = Debug|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Release|Any CPU.ActiveCfg = Release|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Release|Mixed Platforms.ActiveCfg = Release|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Release|Mixed Platforms.Build.0 = Release|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Release|x86.ActiveCfg = Release|x86 | ||
{CE553C9B-6E0B-4BEA-B242-17F294FDDE7F}.Release|x86.Build.0 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Binary file added
BIN
+116 KB
Plugins/Visual Studio/Aspose.Words.VisualStudioPlugin/AsposeVisualStudioPlugin.suo
Binary file not shown.
Binary file added
BIN
+100 KB
Plugins/Visual Studio/Aspose.Words.VisualStudioPlugin/AsposeVisualStudioPlugin.v11.suo
Binary file not shown.
240 changes: 240 additions & 0 deletions
240
.../Aspose.Words.VisualStudioPlugin/AsposeVisualStudioPlugin/AsposeVisualStudioPlugin.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,240 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>8.0.30424</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{54C786E5-FD14-4036-92AE-E9F25B71534B}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<StartupObject> | ||
</StartupObject> | ||
<NoStandardLibraries>false</NoStandardLibraries> | ||
<AssemblyName>AsposeVisualStudioPluginForWords</AssemblyName> | ||
<DeploymentDirectory>.\bin\</DeploymentDirectory> | ||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<Optimize>false</Optimize> | ||
<IntermediateOutputPath>..\..\obj\</IntermediateOutputPath> | ||
<OutputPath>..\out\</OutputPath> | ||
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<WarningLevel>4</WarningLevel> | ||
<IncrementalBuild>false</IncrementalBuild> | ||
<Prefer32Bit>false</Prefer32Bit> | ||
<DocumentationFile>AsposeVisualStudioPlugin.xml</DocumentationFile> | ||
<RegisterForComInterop>false</RegisterForComInterop> | ||
<PlatformTarget>x86</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugSymbols>false</DebugSymbols> | ||
<Optimize>true</Optimize> | ||
<IntermediateOutputPath>..\..\obj\</IntermediateOutputPath> | ||
<OutputPath>..\..\bin\Debug\</OutputPath> | ||
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<WarningLevel>4</WarningLevel> | ||
<IncrementalBuild>false</IncrementalBuild> | ||
<Prefer32Bit>false</Prefer32Bit> | ||
<DocumentationFile>AsposeVisualStudioPlugin.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<RootNamespace>AsposeVisualStudioPluginWords</RootNamespace> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SignAssembly>false</SignAssembly> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyOriginatorKeyFile>AsposeWordsVSPlugin.pfx</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ApplicationIcon>aspose.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<Win32Resource> | ||
</Win32Resource> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Extensibility, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<EmbedInteropTypes>False</EmbedInteropTypes> | ||
</Reference> | ||
<Reference Include="ICSharpCode.SharpZipLib"> | ||
<HintPath>..\libs\ICSharpCode.SharpZipLib.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Ionic.Zip"> | ||
<HintPath>..\libs\Ionic.Zip.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Microsoft.VisualStudio.ComponentModelHost, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> | ||
<Reference Include="NGit, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL"> | ||
<SpecificVersion>False</SpecificVersion> | ||
<HintPath>..\libs\GIT\NGit.dll</HintPath> | ||
</Reference> | ||
<Reference Include="NSch"> | ||
<HintPath>..\libs\GIT\NSch.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Sharpen"> | ||
<HintPath>..\libs\GIT\Sharpen.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.EnterpriseServices" /> | ||
<Reference Include="System.Web.Services" /> | ||
<Reference Include="System.Windows.Forms" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="VSLangProj, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<EmbedInteropTypes>True</EmbedInteropTypes> | ||
</Reference> | ||
<Reference Include="VSLangProj80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<EmbedInteropTypes>True</EmbedInteropTypes> | ||
</Reference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="AssemblyInfo.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Include="Connect.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Include="Core\AsposeComponent.cs" /> | ||
<Compile Include="Core\AsposeComponents.cs" /> | ||
<Compile Include="Core\AsposeComponentsManager.cs" /> | ||
<Compile Include="Core\AsyncDownload.cs" /> | ||
<Compile Include="Core\AsyncDownloadList.cs" /> | ||
<Compile Include="Core\Constants.cs" /> | ||
<Compile Include="Core\GitHelper.cs" /> | ||
<Compile Include="Core\GlobalData.cs" /> | ||
<Compile Include="Core\TreeNodeData.cs" /> | ||
<Compile Include="Core\ZipUtilities.cs" /> | ||
<Compile Include="GUI\ComponentWizardPage.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Include="GUI\ComponentWizardPage.Designer.cs"> | ||
<DependentUpon>ComponentWizardPage.cs</DependentUpon> | ||
</Compile> | ||
<Compile Include="GUI\SampleWizardPage.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Include="GUI\SampleWizardPage.Designer.cs"> | ||
<DependentUpon>SampleWizardPage.cs</DependentUpon> | ||
</Compile> | ||
<Compile Include="Properties\Resources.Designer.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DesignTime>True</DesignTime> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
</Compile> | ||
<Compile Include="Properties\Settings.Designer.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DesignTimeSharedInput>True</DesignTimeSharedInput> | ||
<DependentUpon>Settings.settings</DependentUpon> | ||
</Compile> | ||
<Compile Include="XML\DynamicObjectSerializer.cs" /> | ||
<Compile Include="XML\Examples.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<COMReference Include="EnvDTE"> | ||
<Guid>{80CC9F66-E7D8-4DDD-85B6-D9E6CD0E93E2}</Guid> | ||
<VersionMajor>8</VersionMajor> | ||
<VersionMinor>0</VersionMinor> | ||
<Lcid>0</Lcid> | ||
<WrapperTool>primary</WrapperTool> | ||
<Isolated>False</Isolated> | ||
<EmbedInteropTypes>False</EmbedInteropTypes> | ||
</COMReference> | ||
<COMReference Include="EnvDTE80"> | ||
<Guid>{1A31287A-4D7D-413E-8E32-3B374931BD89}</Guid> | ||
<VersionMajor>8</VersionMajor> | ||
<VersionMinor>0</VersionMinor> | ||
<Lcid>0</Lcid> | ||
<WrapperTool>primary</WrapperTool> | ||
<Isolated>False</Isolated> | ||
<EmbedInteropTypes>False</EmbedInteropTypes> | ||
</COMReference> | ||
<COMReference Include="Microsoft.VisualStudio.CommandBars"> | ||
<Guid>{1CBA492E-7263-47BB-87FE-639000619B15}</Guid> | ||
<VersionMajor>8</VersionMajor> | ||
<VersionMinor>0</VersionMinor> | ||
<Lcid>0</Lcid> | ||
<WrapperTool>primary</WrapperTool> | ||
<Isolated>False</Isolated> | ||
<EmbedInteropTypes>False</EmbedInteropTypes> | ||
</COMReference> | ||
<COMReference Include="stdole"> | ||
<Guid>{00020430-0000-0000-C000-000000000046}</Guid> | ||
<VersionMajor>2</VersionMajor> | ||
<VersionMinor>0</VersionMinor> | ||
<Lcid>0</Lcid> | ||
<WrapperTool>primary</WrapperTool> | ||
<Isolated>False</Isolated> | ||
<EmbedInteropTypes>False</EmbedInteropTypes> | ||
</COMReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="aspose.ico" /> | ||
<Content Include="AsposeVisualStudioPluginWords.AddIn"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="Config Files\info.txt" /> | ||
<None Include="AsposeWordsVSPlugin.pfx" /> | ||
<None Include="Resources\aspose.words.png" /> | ||
<None Include="asposedotnetsignkey.snk" /> | ||
<None Include="Resources\pnglogosmall.png" /> | ||
<None Include="Resources\bmplogo.bmp" /> | ||
<None Include="app.config"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Include="Resources\aspose.ico" /> | ||
<None Include="Resources\long_banner.PNG" /> | ||
<None Include="Resources\aspose.png" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="Config Files\AsposeVisualStudioPlugin.vsz" /> | ||
<None Include="Config Files\AsposeWizard.vsdir" /> | ||
<None Include="Properties\Settings.settings"> | ||
<Generator>SettingsSingleFileGenerator</Generator> | ||
<LastGenOutput>Settings.Designer.cs</LastGenOutput> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="GUI\ComponentWizardPage.resx"> | ||
<DependentUpon>ComponentWizardPage.cs</DependentUpon> | ||
<SubType>Designer</SubType> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="GUI\SampleWizardPage.resx"> | ||
<DependentUpon>SampleWizardPage.cs</DependentUpon> | ||
<SubType>Designer</SubType> | ||
</EmbeddedResource> | ||
<EmbeddedResource Include="Properties\Resources.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
<SubType>Designer</SubType> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<ItemGroup /> | ||
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" /> | ||
<PropertyGroup> | ||
<PreBuildEvent> | ||
</PreBuildEvent> | ||
<PostBuildEvent>copy E:\Aspose.VisualStudioPluginForWords\Source\out\AsposeVisualStudioPluginForWords.dll E:\Aspose.VisualStudioPluginForWords\Source\out\AsposeVisualStudioPluginForWords5.dll | ||
copy E:\Aspose.VisualStudioPluginForWords\Source\out\AsposeVisualStudioPluginForWords.dll E:\Aspose.VisualStudioPluginForWords\Source\out\AsposeVisualStudioPluginForWords8.dll | ||
copy E:\Aspose.VisualStudioPluginForWords\Source\out\AsposeVisualStudioPluginForWords.dll E:\Aspose.VisualStudioPluginForWords\Source\out\AsposeVisualStudioPluginForWords12.dll | ||
copy E:\Aspose.VisualStudioPluginForWords\Source\out\AsposeVisualStudioPluginForWords.dll E:\Aspose.VisualStudioPluginForWords\Source\out\AsposeVisualStudioPluginForWords13.dll</PostBuildEvent> | ||
</PropertyGroup> | ||
<ProjectExtensions /> | ||
<Target Name="AfterBuild"> | ||
<ItemGroup> | ||
<AllOutputFiles Include="$(OutputPath)*.*" /> | ||
</ItemGroup> | ||
<Copy SourceFiles="@(AllOutputFiles)" DestinationFiles="@(AllOutputFiles->'$(DeploymentDirectory)\%(Filename)%(Extension)')"> | ||
<Output TaskParameter="DestinationFiles" ItemName="FileWrites" /> | ||
</Copy> | ||
</Target> | ||
</Project> |
18 changes: 18 additions & 0 deletions
18
...se.Words.VisualStudioPlugin/AsposeVisualStudioPlugin/AsposeVisualStudioPlugin.csproj.user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> | ||
<StartWorkingDirectory>C:\Program Files %28x86%29\Microsoft Visual Studio 11.0\Common7\IDE\</StartWorkingDirectory> | ||
<StartProgram>C:\Program Files %28x86%29\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe</StartProgram> | ||
<StartArguments>/resetaddin AsposeVisualStudioPluginWords.Connect</StartArguments> | ||
<StartAction>Program</StartAction> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'"> | ||
<StartWorkingDirectory>C:\Program Files %28x86%29\Microsoft Visual Studio 11.0\Common7\IDE\</StartWorkingDirectory> | ||
<StartProgram>C:\Program Files %28x86%29\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe</StartProgram> | ||
<StartArguments>/resetaddin AsposeVisualStudioPlugin.Connect</StartArguments> | ||
<StartAction>Program</StartAction> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ProjectView>ShowAllFiles</ProjectView> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.