Skip to content

Commit a7bc14a

Browse files
author
Usman Aziz
committed
Merge pull request #13 from usmanazizgroupdocs/master
Outlook plugin
2 parents e35e5f9 + 57b2a83 commit a7bc14a

22 files changed

Lines changed: 1694 additions & 0 deletions
23.3 KB
Loading
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GroupDocs.Metadata.OutlookAddin", "GroupDocs.Metadata.OutlookAddin\GroupDocs.Metadata.OutlookAddin.csproj", "{5F074529-B192-4907-87A8-71A64E95CA93}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
CD_ROM|Any CPU = CD_ROM|Any CPU
9+
Debug|Any CPU = Debug|Any CPU
10+
DVD-5|Any CPU = DVD-5|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
SingleImage|Any CPU = SingleImage|Any CPU
13+
EndGlobalSection
14+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15+
{5F074529-B192-4907-87A8-71A64E95CA93}.CD_ROM|Any CPU.ActiveCfg = Release|Any CPU
16+
{5F074529-B192-4907-87A8-71A64E95CA93}.CD_ROM|Any CPU.Build.0 = Release|Any CPU
17+
{5F074529-B192-4907-87A8-71A64E95CA93}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{5F074529-B192-4907-87A8-71A64E95CA93}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{5F074529-B192-4907-87A8-71A64E95CA93}.DVD-5|Any CPU.ActiveCfg = Debug|Any CPU
20+
{5F074529-B192-4907-87A8-71A64E95CA93}.DVD-5|Any CPU.Build.0 = Debug|Any CPU
21+
{5F074529-B192-4907-87A8-71A64E95CA93}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{5F074529-B192-4907-87A8-71A64E95CA93}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{5F074529-B192-4907-87A8-71A64E95CA93}.SingleImage|Any CPU.ActiveCfg = Release|Any CPU
24+
{5F074529-B192-4907-87A8-71A64E95CA93}.SingleImage|Any CPU.Build.0 = Release|Any CPU
25+
EndGlobalSection
26+
GlobalSection(SolutionProperties) = preSolution
27+
HideSolutionNode = FALSE
28+
EndGlobalSection
29+
EndGlobal
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<appSettings>
4+
<add key="LicensePath" value="C:\GroupDocs.Metadata.lic"/>
5+
</appSettings>
6+
</configuration>
Lines changed: 273 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,273 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<!--
4+
This section defines project-level properties.
5+
6+
AssemblyName
7+
Name of the output assembly.
8+
Configuration
9+
Specifies a default value for debug.
10+
OutputType
11+
Must be "Library" for VSTO.
12+
Platform
13+
Specifies what CPU the output of this project can run on.
14+
NoStandardLibraries
15+
Set to "false" for VSTO.
16+
RootNamespace
17+
In C#, this specifies the namespace given to new files. In VB, all objects are
18+
wrapped in this namespace at runtime.
19+
-->
20+
<PropertyGroup>
21+
<ProjectTypeGuids>{BAA0C2D2-18E2-41B9-852F-F413020CAA33};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
22+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
23+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
24+
<ProjectGuid>{5F074529-B192-4907-87A8-71A64E95CA93}</ProjectGuid>
25+
<OutputType>Library</OutputType>
26+
<NoStandardLibraries>false</NoStandardLibraries>
27+
<RootNamespace>GroupDocs.Metadata.OutlookAddin</RootNamespace>
28+
<AssemblyName>GroupDocs.Metadata.OutlookAddin</AssemblyName>
29+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
30+
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
31+
<DefineConstants>VSTO40</DefineConstants>
32+
<IsWebBootstrapper>False</IsWebBootstrapper>
33+
<BootstrapperEnabled>true</BootstrapperEnabled>
34+
<PublishUrl>E:\Published\</PublishUrl>
35+
<InstallUrl />
36+
<TargetCulture>en</TargetCulture>
37+
<ApplicationVersion>1.0.0.0</ApplicationVersion>
38+
<AutoIncrementApplicationRevision>true</AutoIncrementApplicationRevision>
39+
<UpdateEnabled>true</UpdateEnabled>
40+
<UpdateInterval>7</UpdateInterval>
41+
<UpdateIntervalUnits>days</UpdateIntervalUnits>
42+
<ProductName>GroupDocs.Metadata.OutlookAddin</ProductName>
43+
<PublisherName />
44+
<SupportUrl />
45+
<FriendlyName>GroupDocs.Metadata.OutlookAddin</FriendlyName>
46+
<OfficeApplicationDescription />
47+
<LoadBehavior>3</LoadBehavior>
48+
</PropertyGroup>
49+
<ItemGroup>
50+
<BootstrapperPackage Include=".NETFramework,Version=v4.0,Profile=Client">
51+
<Visible>False</Visible>
52+
<ProductName>Microsoft .NET Framework 4 Client Profile %28x86 and x64%29</ProductName>
53+
<Install>true</Install>
54+
</BootstrapperPackage>
55+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
56+
<Visible>False</Visible>
57+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
58+
<Install>false</Install>
59+
</BootstrapperPackage>
60+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
61+
<Visible>False</Visible>
62+
<ProductName>.NET Framework 3.5 SP1</ProductName>
63+
<Install>false</Install>
64+
</BootstrapperPackage>
65+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
66+
<Visible>False</Visible>
67+
<ProductName>Windows Installer 3.1</ProductName>
68+
<Install>true</Install>
69+
</BootstrapperPackage>
70+
</ItemGroup>
71+
<PropertyGroup>
72+
<!--
73+
OfficeApplication
74+
Add-in host application
75+
-->
76+
<OfficeApplication>Outlook</OfficeApplication>
77+
</PropertyGroup>
78+
<!--
79+
This section defines properties that are set when the "Debug" configuration is selected.
80+
81+
DebugSymbols
82+
If "true", create symbols (.pdb). If "false", do not create symbols.
83+
DefineConstants
84+
Constants defined for the preprocessor.
85+
EnableUnmanagedDebugging
86+
If "true", starting the debugger will attach both managed and unmanaged debuggers.
87+
Optimize
88+
If "true", optimize the build output. If "false", do not optimize.
89+
OutputPath
90+
Output path of project relative to the project file.
91+
WarningLevel
92+
Warning level for the compiler.
93+
-->
94+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
95+
<DebugSymbols>true</DebugSymbols>
96+
<DebugType>full</DebugType>
97+
<Optimize>false</Optimize>
98+
<OutputPath>bin\Debug\</OutputPath>
99+
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
100+
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
101+
<WarningLevel>4</WarningLevel>
102+
</PropertyGroup>
103+
<!--
104+
This section defines properties that are set when the "Release" configuration is selected.
105+
106+
DebugSymbols
107+
If "true", create symbols (.pdb). If "false", do not create symbols.
108+
DefineConstants
109+
Constants defined for the preprocessor.
110+
EnableUnmanagedDebugging
111+
If "true", starting the debugger will attach both managed and unmanaged debuggers.
112+
Optimize
113+
If "true", optimize the build output. If "false", do not optimize.
114+
OutputPath
115+
Output path of project relative to the project file.
116+
WarningLevel
117+
Warning level for the compiler.
118+
-->
119+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
120+
<DebugType>pdbonly</DebugType>
121+
<Optimize>true</Optimize>
122+
<OutputPath>bin\Release\</OutputPath>
123+
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
124+
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
125+
<WarningLevel>4</WarningLevel>
126+
</PropertyGroup>
127+
<!--
128+
This section enables pre- and post-build steps. However, in VSTO use
129+
MSBuild tasks instead of these properties.
130+
-->
131+
<PropertyGroup>
132+
<PreBuildEvent>
133+
</PreBuildEvent>
134+
<PostBuildEvent>
135+
</PostBuildEvent>
136+
</PropertyGroup>
137+
<PropertyGroup>
138+
<SignManifests>true</SignManifests>
139+
</PropertyGroup>
140+
<PropertyGroup>
141+
<ManifestKeyFile>GroupDocs.Metadata.OutlookAddin_TemporaryKey.pfx</ManifestKeyFile>
142+
</PropertyGroup>
143+
<PropertyGroup>
144+
<ManifestCertificateThumbprint>3D77D44EBEDBB93587A9B4E1B43C6AFE6706500A</ManifestCertificateThumbprint>
145+
</PropertyGroup>
146+
<!--
147+
This section specifies references for the project.
148+
-->
149+
<ItemGroup>
150+
<Reference Include="Accessibility" />
151+
<Reference Include="GroupDocs.Metadata, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
152+
<SpecificVersion>False</SpecificVersion>
153+
<HintPath>bin\Debug\GroupDocs.Metadata.dll</HintPath>
154+
</Reference>
155+
<Reference Include="System" />
156+
<Reference Include="System.configuration" />
157+
<Reference Include="System.Configuration.Install" />
158+
<Reference Include="System.Data" />
159+
<Reference Include="System.Drawing" />
160+
<Reference Include="System.Management" />
161+
<Reference Include="System.Windows.Forms" />
162+
<Reference Include="System.Xml" />
163+
<Reference Include="System.Core" />
164+
<Reference Include="System.Xml.Linq" />
165+
<Reference Include="System.Data.DataSetExtensions" />
166+
<Reference Include="Microsoft.CSharp" />
167+
</ItemGroup>
168+
<ItemGroup>
169+
<Reference Include="Microsoft.Office.Tools.v4.0.Framework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
170+
<Reference Include="Microsoft.VisualStudio.Tools.Applications.Runtime, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
171+
<Reference Include="Microsoft.Office.Tools, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
172+
<Reference Include="Microsoft.Office.Tools.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
173+
<Reference Include="Microsoft.Office.Tools.Outlook, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
174+
</ItemGroup>
175+
<ItemGroup>
176+
<Reference Include="Microsoft.Office.Tools.Common.v4.0.Utilities, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
177+
<Private>True</Private>
178+
</Reference>
179+
<Reference Include="Microsoft.Office.Tools.Outlook.v4.0.Utilities, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
180+
<Private>True</Private>
181+
</Reference>
182+
</ItemGroup>
183+
<ItemGroup>
184+
<Reference Include="Office, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
185+
<Private>False</Private>
186+
<EmbedInteropTypes>true</EmbedInteropTypes>
187+
</Reference>
188+
<Reference Include="Microsoft.Office.Interop.Outlook, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
189+
<Private>False</Private>
190+
<EmbedInteropTypes>true</EmbedInteropTypes>
191+
</Reference>
192+
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
193+
<Private>False</Private>
194+
</Reference>
195+
</ItemGroup>
196+
<!--
197+
This section defines the user source files that are part of the project.
198+
199+
A "Compile" element specifies a source file to compile.
200+
An "EmbeddedResource" element specifies an .resx file for embedded resources.
201+
A "None" element specifies a file that is not to be passed to the compiler (for instance,
202+
a text file or XML file).
203+
The "AppDesigner" element specifies the directory where the application properties files
204+
can be found.
205+
-->
206+
<ItemGroup>
207+
<Compile Include="MetadataCleaner.cs" />
208+
<Compile Include="Properties\AssemblyInfo.cs">
209+
<SubType>Code</SubType>
210+
</Compile>
211+
<EmbeddedResource Include="Properties\Resources.resx">
212+
<Generator>ResXFileCodeGenerator</Generator>
213+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
214+
<SubType>Designer</SubType>
215+
</EmbeddedResource>
216+
<Compile Include="Properties\Resources.Designer.cs">
217+
<AutoGen>True</AutoGen>
218+
<DependentUpon>Resources.resx</DependentUpon>
219+
<DesignTime>True</DesignTime>
220+
</Compile>
221+
<None Include="App.config">
222+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
223+
</None>
224+
<None Include="bin\Debug\Groupdocs.Metadata.lic" />
225+
<None Include="GroupDocs.Metadata.OutlookAddin_TemporaryKey.pfx" />
226+
<None Include="Properties\Settings.settings">
227+
<Generator>SettingsSingleFileGenerator</Generator>
228+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
229+
</None>
230+
<Compile Include="Properties\Settings.Designer.cs">
231+
<AutoGen>True</AutoGen>
232+
<DependentUpon>Settings.settings</DependentUpon>
233+
</Compile>
234+
<Compile Include="Ribbon1.cs" />
235+
<Compile Include="ThisAddIn.cs">
236+
<SubType>Code</SubType>
237+
</Compile>
238+
<None Include="ThisAddIn.Designer.xml">
239+
<DependentUpon>ThisAddIn.cs</DependentUpon>
240+
</None>
241+
<Compile Include="ThisAddIn.Designer.cs">
242+
<DependentUpon>ThisAddIn.Designer.xml</DependentUpon>
243+
</Compile>
244+
<AppDesigner Include="Properties\" />
245+
</ItemGroup>
246+
<ItemGroup>
247+
<Content Include="bin\Debug\GroupDocs.Metadata.dll" />
248+
<Content Include="bin\Debug\GroupDocs.Metadata.OutlookAddin.dll" />
249+
<Content Include="bin\Debug\GroupDocs.Metadata.OutlookAddin.pdb" />
250+
<Content Include="bin\Debug\Microsoft.Office.Tools.Common.v4.0.Utilities.dll" />
251+
<Content Include="bin\Debug\Microsoft.Office.Tools.Outlook.v4.0.Utilities.dll" />
252+
<Content Include="Image\Clear-icon.png" />
253+
<None Include="Resources\logo4.jpg" />
254+
<EmbeddedResource Include="Ribbon1.xml">
255+
<SubType>Designer</SubType>
256+
</EmbeddedResource>
257+
</ItemGroup>
258+
<!-- Include the build rules for a C# project. -->
259+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
260+
<!-- Include additional build rules for an Office application add-in. -->
261+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\OfficeTools\Microsoft.VisualStudio.Tools.Office.targets" />
262+
<!-- This section defines VSTO properties that describe the host-changeable project properties. -->
263+
<ProjectExtensions>
264+
<VisualStudio>
265+
<FlavorProperties GUID="{BAA0C2D2-18E2-41B9-852F-F413020CAA33}">
266+
<ProjectProperties HostName="Outlook" HostPackage="{20A848B8-E01F-4801-962E-25DB0FF57389}" OfficeVersion="14.0" VstxVersion="4.0" ApplicationType="Outlook" Language="cs" TemplatesPath="" DebugInfoExeName="#Software\Microsoft\Office\14.0\Outlook\InstallRoot\Path#outlook.exe" AddItemTemplatesGuid="{A58A78EB-1C92-4DDD-80CF-E8BD872ABFC4}" />
267+
<Host Name="Outlook" GeneratedCodeNamespace="GroupDocs.Metadata.OutlookAddin" IconIndex="0">
268+
<HostItem Name="ThisAddIn" Code="ThisAddIn.cs" CanonicalName="AddIn" CanActivate="false" IconIndex="1" Blueprint="ThisAddIn.Designer.xml" GeneratedCode="ThisAddIn.Designer.cs" />
269+
</Host>
270+
</FlavorProperties>
271+
</VisualStudio>
272+
</ProjectExtensions>
273+
</Project>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ProjectView>ShowAllFiles</ProjectView>
5+
<PublishUrlHistory />
6+
<InstallUrlHistory />
7+
<SupportUrlHistory />
8+
</PropertyGroup>
9+
</Project>

0 commit comments

Comments
 (0)