ef0f86d79d
Moved configuration to separate form. Added option to show past appointments from the selected day (previous in time, that is). Added some tooltips.
327 lines
14 KiB
XML
327 lines
14 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<!--
|
|
This section defines project-level properties.
|
|
|
|
AssemblyName
|
|
Name of the output assembly.
|
|
Configuration
|
|
Specifies a default value for debug.
|
|
OutputType
|
|
Must be "Library" for VSTO.
|
|
Platform
|
|
Specifies what CPU the output of this project can run on.
|
|
NoStandardLibraries
|
|
Set to "false" for VSTO.
|
|
RootNamespace
|
|
In C#, this specifies the namespace given to new files. In VB, all objects are
|
|
wrapped in this namespace at runtime.
|
|
-->
|
|
<PropertyGroup>
|
|
<ProjectTypeGuids>{BAA0C2D2-18E2-41B9-852F-F413020CAA33};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{EF0CD4A2-56E1-4C98-BE40-ED2D969F16A8}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<NoStandardLibraries>false</NoStandardLibraries>
|
|
<RootNamespace>Outlook2013TodoAddIn</RootNamespace>
|
|
<AssemblyName>Outlook2013TodoAddIn</AssemblyName>
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
<DefineConstants>VSTO40</DefineConstants>
|
|
<IsWebBootstrapper>False</IsWebBootstrapper>
|
|
<SccProjectName>%24/outlook2013addin/Outlook2013TodoAddIn</SccProjectName>
|
|
<SccLocalPath>.</SccLocalPath>
|
|
<SccAuxPath>https://tfs.codeplex.com/tfs/tfs04</SccAuxPath>
|
|
<SccProvider>{4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}</SccProvider>
|
|
<TargetFrameworkProfile />
|
|
<BootstrapperEnabled>false</BootstrapperEnabled>
|
|
<PublishUrl>publish\</PublishUrl>
|
|
<InstallUrl />
|
|
<TargetCulture>en</TargetCulture>
|
|
<ApplicationVersion>1.0.0.0</ApplicationVersion>
|
|
<AutoIncrementApplicationRevision>false</AutoIncrementApplicationRevision>
|
|
<UpdateEnabled>false</UpdateEnabled>
|
|
<UpdateInterval>0</UpdateInterval>
|
|
<UpdateIntervalUnits>days</UpdateIntervalUnits>
|
|
<ProductName>Outlook2013TodoAddIn</ProductName>
|
|
<PublisherName />
|
|
<SupportUrl />
|
|
<FriendlyName>Outlook2013TodoAddIn</FriendlyName>
|
|
<OfficeApplicationDescription />
|
|
<LoadBehavior>3</LoadBehavior>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
|
|
<Visible>False</Visible>
|
|
<ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
|
|
<Install>true</Install>
|
|
</BootstrapperPackage>
|
|
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
|
<Visible>False</Visible>
|
|
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
|
<Install>false</Install>
|
|
</BootstrapperPackage>
|
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
|
<Visible>False</Visible>
|
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
|
<Install>false</Install>
|
|
</BootstrapperPackage>
|
|
<BootstrapperPackage Include="Microsoft.Windows.Installer.4.5">
|
|
<Visible>False</Visible>
|
|
<ProductName>Windows Installer 4.5</ProductName>
|
|
<Install>true</Install>
|
|
</BootstrapperPackage>
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<!--
|
|
OfficeApplication
|
|
Add-in host application
|
|
-->
|
|
<OfficeApplication>Outlook</OfficeApplication>
|
|
</PropertyGroup>
|
|
<!--
|
|
This section defines properties that are set when the "Debug" configuration is selected.
|
|
|
|
DebugSymbols
|
|
If "true", create symbols (.pdb). If "false", do not create symbols.
|
|
DefineConstants
|
|
Constants defined for the preprocessor.
|
|
EnableUnmanagedDebugging
|
|
If "true", starting the debugger will attach both managed and unmanaged debuggers.
|
|
Optimize
|
|
If "true", optimize the build output. If "false", do not optimize.
|
|
OutputPath
|
|
Output path of project relative to the project file.
|
|
WarningLevel
|
|
Warning level for the compiler.
|
|
-->
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
|
|
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<!--
|
|
This section defines properties that are set when the "Release" configuration is selected.
|
|
|
|
DebugSymbols
|
|
If "true", create symbols (.pdb). If "false", do not create symbols.
|
|
DefineConstants
|
|
Constants defined for the preprocessor.
|
|
EnableUnmanagedDebugging
|
|
If "true", starting the debugger will attach both managed and unmanaged debuggers.
|
|
Optimize
|
|
If "true", optimize the build output. If "false", do not optimize.
|
|
OutputPath
|
|
Output path of project relative to the project file.
|
|
WarningLevel
|
|
Warning level for the compiler.
|
|
-->
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
|
|
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<!--
|
|
This section specifies references for the project.
|
|
-->
|
|
<ItemGroup>
|
|
<Reference Include="Accessibility" />
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.Office.Tools.v4.0.Framework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
|
<Reference Include="Microsoft.VisualStudio.Tools.Applications.Runtime, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
|
<Reference Include="Microsoft.Office.Tools, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
|
<Reference Include="Microsoft.Office.Tools.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
|
<Reference Include="Microsoft.Office.Tools.Outlook, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.Office.Tools.Common.v4.0.Utilities, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
<Private>True</Private>
|
|
</Reference>
|
|
<Reference Include="Microsoft.Office.Tools.Outlook.v4.0.Utilities, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
<Private>True</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
|
|
<Private>False</Private>
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
</Reference>
|
|
<Reference Include="Microsoft.Office.Interop.Outlook, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
|
|
<Private>False</Private>
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
</Reference>
|
|
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
<Private>False</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<!--
|
|
This section defines the user source files that are part of the project.
|
|
|
|
A "Compile" element specifies a source file to compile.
|
|
An "EmbeddedResource" element specifies an .resx file for embedded resources.
|
|
A "None" element specifies a file that is not to be passed to the compiler (for instance,
|
|
a text file or XML file).
|
|
The "AppDesigner" element specifies the directory where the application properties files
|
|
can be found.
|
|
-->
|
|
<ItemGroup>
|
|
<Compile Include="CustomCalendar.cs">
|
|
<SubType>UserControl</SubType>
|
|
</Compile>
|
|
<Compile Include="CustomCalendar.Designer.cs">
|
|
<DependentUpon>CustomCalendar.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Forms\FormConfiguration.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Forms\FormConfiguration.Designer.cs">
|
|
<DependentUpon>FormConfiguration.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Forms\FormRecurringOpen.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Forms\FormRecurringOpen.Designer.cs">
|
|
<DependentUpon>FormRecurringOpen.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Forms\NewMailAlert.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Forms\NewMailAlert.Designer.cs">
|
|
<DependentUpon>NewMailAlert.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="OutlookHelper.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="AppointmentsControl.cs">
|
|
<SubType>UserControl</SubType>
|
|
</Compile>
|
|
<Compile Include="AppointmentsControl.Designer.cs">
|
|
<DependentUpon>AppointmentsControl.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="SoundHelper.cs" />
|
|
<Compile Include="TodoRibbonAddIn.cs">
|
|
<SubType>Component</SubType>
|
|
</Compile>
|
|
<Compile Include="TodoRibbonAddIn.Designer.cs">
|
|
<DependentUpon>TodoRibbonAddIn.cs</DependentUpon>
|
|
</Compile>
|
|
<EmbeddedResource Include="CustomCalendar.resx">
|
|
<DependentUpon>CustomCalendar.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Forms\FormConfiguration.resx">
|
|
<DependentUpon>FormConfiguration.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Forms\FormRecurringOpen.resx">
|
|
<DependentUpon>FormRecurringOpen.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Forms\NewMailAlert.resx">
|
|
<DependentUpon>NewMailAlert.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
<DesignTime>True</DesignTime>
|
|
</Compile>
|
|
<EmbeddedResource Include="AppointmentsControl.resx">
|
|
<DependentUpon>AppointmentsControl.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="TodoRibbonAddIn.resx">
|
|
<DependentUpon>TodoRibbonAddIn.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<None Include="app.config" />
|
|
<None Include="Outlook2013TodoAddIn.pfx" />
|
|
<None Include="Properties\Settings.settings">
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
</None>
|
|
<Compile Include="Properties\Settings.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
</Compile>
|
|
<Compile Include="ThisAddIn.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<None Include="ThisAddIn.Designer.xml">
|
|
<DependentUpon>ThisAddIn.cs</DependentUpon>
|
|
</None>
|
|
<Compile Include="ThisAddIn.Designer.cs">
|
|
<DependentUpon>ThisAddIn.Designer.xml</DependentUpon>
|
|
</Compile>
|
|
<AppDesigner Include="Properties\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Images\2012-11-20_1546.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Images\Delete.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Images\Flag.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Images\Envelope.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Images\gear.png" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<SignManifests>true</SignManifests>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ManifestKeyFile>Outlook2013TodoAddIn.pfx</ManifestKeyFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ManifestCertificateThumbprint>37F03CD5E30D210FD9AA8C01D4EADA287F695A9F</ManifestCertificateThumbprint>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<SignAssembly>false</SignAssembly>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AssemblyOriginatorKeyFile>
|
|
</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
<!-- Include the build rules for a C# project. -->
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
<!-- Include additional build rules for an Office application add-in. -->
|
|
<Import Project="$(VSToolsPath)\OfficeTools\Microsoft.VisualStudio.Tools.Office.targets" Condition="'$(VSToolsPath)' != ''" />
|
|
<!-- This section defines VSTO properties that describe the host-changeable project properties. -->
|
|
<ProjectExtensions>
|
|
<VisualStudio>
|
|
<FlavorProperties GUID="{BAA0C2D2-18E2-41B9-852F-F413020CAA33}">
|
|
<ProjectProperties HostName="Outlook" HostPackage="{29A7B9D7-A7F1-4328-8EF0-6B2D1A56B2C1}" OfficeVersion="15.0" VstxVersion="4.0" ApplicationType="Outlook" Language="cs" TemplatesPath="" DebugInfoExeName="#Software\Microsoft\Office\15.0\Outlook\InstallRoot\Path#outlook.exe" AddItemTemplatesGuid="{A58A78EB-1C92-4DDD-80CF-E8BD872ABFC4}" />
|
|
<Host Name="Outlook" GeneratedCodeNamespace="Outlook2013TodoAddIn" PublishedHash="69C324AB27932AA2FBF2B7EA72250886FF164DE6" IconIndex="0">
|
|
<HostItem Name="ThisAddIn" Code="ThisAddIn.cs" CanonicalName="AddIn" PublishedHash="476FA5A6435101C0D3075D6CBDCD61031B3B8007" CanActivate="false" IconIndex="1" Blueprint="ThisAddIn.Designer.xml" GeneratedCode="ThisAddIn.Designer.cs" />
|
|
</Host>
|
|
</FlavorProperties>
|
|
</VisualStudio>
|
|
</ProjectExtensions>
|
|
</Project> |