mirror of
https://github.com/aluxnimm/outlookcaldavsynchronizer.git
synced 2025-10-06 00:12:52 +02:00
1108 lines
62 KiB
XML
1108 lines
62 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.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>{64937844-752B-49A4-9B3F-3526601E93E1}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<NoStandardLibraries>false</NoStandardLibraries>
|
|
<RootNamespace>CalDavSynchronizer</RootNamespace>
|
|
<AssemblyName>CalDavSynchronizer</AssemblyName>
|
|
<LoadBehavior>3</LoadBehavior>
|
|
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
|
<DefineConstants>VSTO40</DefineConstants>
|
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
|
<BootstrapperComponentsLocation>HomeSite</BootstrapperComponentsLocation>
|
|
<NuGetPackageImportStamp>
|
|
</NuGetPackageImportStamp>
|
|
<TargetFrameworkProfile />
|
|
</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.VSTORuntime.4.0">
|
|
<Visible>False</Visible>
|
|
<ProductName>Microsoft Visual Studio 2010 Tools for Office Runtime %28x86 and x64%29</ProductName>
|
|
<Install>true</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>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</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>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
<!--
|
|
This section specifies references for the project.
|
|
-->
|
|
<ItemGroup>
|
|
<Reference Include="Accessibility" />
|
|
<Reference Include="PresentationCore" />
|
|
<Reference Include="PresentationFramework" />
|
|
<Reference Include="System" />
|
|
<Reference Include="System.ComponentModel.Composition" />
|
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
|
<Reference Include="System.Configuration" />
|
|
<Reference Include="System.Data" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.IO.Compression" />
|
|
<Reference Include="System.IO.Compression.FileSystem" />
|
|
<Reference Include="System.Net" />
|
|
<Reference Include="System.Net.Http.WebRequest" />
|
|
<Reference Include="System.Numerics" />
|
|
<Reference Include="System.Runtime.Serialization" />
|
|
<Reference Include="System.Security" />
|
|
<Reference Include="System.Web" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<Reference Include="System.Xaml" />
|
|
<Reference Include="System.Xml" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Xml.Linq" />
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="UIAutomationProvider" />
|
|
<Reference Include="WindowsBase" />
|
|
<Reference Include="WindowsFormsIntegration" />
|
|
</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="AutomaticUpdates\AvailableVersionService.cs" />
|
|
<Compile Include="AutomaticUpdates\IAvailableVersionService.cs" />
|
|
<Compile Include="AutomaticUpdates\NewerVersionFoundEventArgs.cs" />
|
|
<Compile Include="AutomaticUpdates\UpdateChecker.cs" />
|
|
<Compile Include="CalDavSynchronizerRibbon.cs">
|
|
<SubType>Component</SubType>
|
|
</Compile>
|
|
<Compile Include="CalDavSynchronizerRibbon.Designer.cs">
|
|
<DependentUpon>CalDavSynchronizerRibbon.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="CalDavSynchronizerToolBar.cs" />
|
|
<Compile Include="ChangedOptions.cs" />
|
|
<Compile Include="ChangeWatching\AppointmentId.cs" />
|
|
<Compile Include="ChangeWatching\FolderChangeWatcher.cs" />
|
|
<Compile Include="ChangeWatching\FolderChangeWatcherFactory.cs" />
|
|
<Compile Include="ChangeWatching\GenericId.cs" />
|
|
<Compile Include="ChangeWatching\IOutlookId.cs" />
|
|
<Compile Include="ChangeWatching\IOutlookIdVisitor.cs" />
|
|
<Compile Include="ChangeWatching\ItemAction.cs" />
|
|
<Compile Include="ChangeWatching\NullItemCollectionChangeWatcher.cs" />
|
|
<Compile Include="ChangeWatching\IItemCollectionChangeWatcher.cs" />
|
|
<Compile Include="ChangeWatching\IFolderChangeWatcherFactory.cs" />
|
|
<Compile Include="ChangeWatching\ItemSavedEventArgs.cs" />
|
|
<Compile Include="DataAccess\RemoveInvalidXmlCharacterStreamReader.cs" />
|
|
<Compile Include="DDayICalWorkaround\CalDavSynchronizerSerializerFactory.cs" />
|
|
<Compile Include="DDayICalWorkaround\CustomAttendeeSerializer.cs" />
|
|
<Compile Include="DDayICalWorkaround\DDayICalCustomization.cs" />
|
|
<Compile Include="Globalization\LocalizationMarkupExtension.cs" />
|
|
<Compile Include="Globalization\StringResources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>StringResources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Implementation\Events\CalendarResourceResolver.cs" />
|
|
<Compile Include="Implementation\Events\ICalendarResourceResolver.cs" />
|
|
<Compile Include="IOneTimeTaskRunner.cs" />
|
|
<Compile Include="OneTimeTaskRunner.cs" />
|
|
<Compile Include="ComponentContainer.cs" />
|
|
<Compile Include="Contracts\AccountServerSettings.cs" />
|
|
<Compile Include="Contracts\ColorCategoryMapping.cs" />
|
|
<Compile Include="Contracts\IPropertyMappingConfiguration.cs" />
|
|
<Compile Include="Contracts\DistributionListType.cs" />
|
|
<Compile Include="Contracts\PropertyMapping.cs" />
|
|
<Compile Include="Contracts\GlobalOptions.cs" />
|
|
<Compile Include="Contracts\ToolbarSettings.cs" />
|
|
<Compile Include="Contracts\TaskMappingConfiguration.cs" />
|
|
<Compile Include="Contracts\ReminderMapping.cs" />
|
|
<Compile Include="Contracts\ContactMappingConfiguration.cs" />
|
|
<Compile Include="Contracts\EventMappingConfiguration.cs" />
|
|
<Compile Include="Contracts\MappingConfigurationBase.cs" />
|
|
<Compile Include="Contracts\GeneralOption.cs" />
|
|
<Compile Include="Contracts\ProfileEntry.cs" />
|
|
<Compile Include="Contracts\ProxyOptions.cs" />
|
|
<Compile Include="Contracts\ServerAdapterType.cs" />
|
|
<Compile Include="CreateCategoryResult.cs" />
|
|
<Compile Include="DataAccess\CalDavResources.cs" />
|
|
<Compile Include="DataAccess\ColorMappingDataAccess.cs" />
|
|
<Compile Include="DataAccess\FileDataAccess.cs" />
|
|
<Compile Include="DataAccess\FileSystemDavDataAccess.cs" />
|
|
<Compile Include="DataAccess\HttpClientBasedClient\NullHeaders.cs" />
|
|
<Compile Include="DataAccess\IColorMappingsDataAccess.cs" />
|
|
<Compile Include="DataAccess\IOptionDataAccess.cs" />
|
|
<Compile Include="DataAccess\OptionDataAccess.cs" />
|
|
<Compile Include="DataAccess\TaskListData.cs" />
|
|
<Compile Include="DataAccess\AddressBookData.cs" />
|
|
<Compile Include="DataAccess\GlobalOptionsDataAccess.cs" />
|
|
<Compile Include="DataAccess\IGlobalOptionsDataAccess.cs" />
|
|
<Compile Include="DataAccess\WebDavClientBase.cs" />
|
|
<Compile Include="DataAccess\CalendarData.cs" />
|
|
<Compile Include="DataAccess\WebExceptionMapper.cs" />
|
|
<Compile Include="DateTimeProvider.cs" />
|
|
<Compile Include="DDayICalWorkaround\IDateTimeExtension.cs" />
|
|
<Compile Include="EntityCacheVersionConversion\Version1To2.cs" />
|
|
<Compile Include="EntityCacheVersionConversion\Version2To3.cs" />
|
|
<Compile Include="Globalization\Strings.cs" />
|
|
<Compile Include="IComponentContainer.cs" />
|
|
<Compile Include="IDateTimeProvider.cs" />
|
|
<Compile Include="Implementation\Common\IOutlookTimeZones.cs" />
|
|
<Compile Include="Implementation\Common\OutlookTimeZones.cs" />
|
|
<Compile Include="Implementation\ComWrappers\ComWrapperFactory.cs" />
|
|
<Compile Include="Implementation\ComWrappers\DistListItemWrapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\GenericComObjectWrapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\IComWrapperFactory.cs" />
|
|
<Compile Include="Implementation\ComWrappers\IDistListItemWrapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\IAppointmentItemWrapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\IContactItemWrapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\TaskItemWrapper.cs" />
|
|
<Compile Include="Implementation\Contacts\ContactMatchData.cs" />
|
|
<Compile Include="Implementation\Contacts\ContactMatchDataFactory.cs" />
|
|
<Compile Include="Implementation\Contacts\LoggingEntityStateCollectionDecorator.cs" />
|
|
<Compile Include="Implementation\Contacts\LoggingStateAwareCardDavRepositoryDecorator.cs" />
|
|
<Compile Include="Implementation\DistributionLists\DistListMatchData.cs" />
|
|
<Compile Include="Implementation\DistributionLists\DistListEntityMatchDataFactory.cs" />
|
|
<Compile Include="Implementation\Common\EntityLogMessageFactory.cs" />
|
|
<Compile Include="Implementation\DistributionLists\Sogo\InitialSogoDistListEntityMatcher.cs" />
|
|
<Compile Include="Implementation\DistributionLists\VCard\UidDistListEntityMapper.cs" />
|
|
<Compile Include="Implementation\DistributionLists\VCard\DistListEntityMapperBase.cs" />
|
|
<Compile Include="Implementation\Events\ColorMapper.cs" />
|
|
<Compile Include="Implementation\Events\EventEntityMatchData.cs" />
|
|
<Compile Include="Implementation\Events\EventEntityMatchDataFactory.cs" />
|
|
<Compile Include="Implementation\Events\EventServerEntityMatchData.cs" />
|
|
<Compile Include="Implementation\Events\EventServerEntityMatchDataFactory.cs" />
|
|
<Compile Include="Implementation\Events\ColorCategoryMapper.cs" />
|
|
<Compile Include="Implementation\Events\IColorCategoryMapper.cs" />
|
|
<Compile Include="Implementation\Events\IColorCategoryMapperFactory.cs" />
|
|
<Compile Include="Implementation\Events\IDuplicateEventCleaner.cs" />
|
|
<Compile Include="Implementation\Events\EventSynchronizationContext.cs" />
|
|
<Compile Include="Implementation\Events\NullColorCategoryMapper.cs" />
|
|
<Compile Include="Implementation\Events\ColorCategoryMapperFactory.cs" />
|
|
<Compile Include="Implementation\Events\NullColorCategoryMapperFactory.cs" />
|
|
<Compile Include="Implementation\Events\NullEventSynchronizationContext.cs" />
|
|
<Compile Include="Implementation\ExceptionHandlingStrategy.cs" />
|
|
<Compile Include="Implementation\Common\IQueryOutlookContactItemFolderStrategy.cs" />
|
|
<Compile Include="Implementation\Common\IQueryOutlookDistListItemFolderStrategy.cs" />
|
|
<Compile Include="Implementation\Common\IQueryOutlookFolderStrategy.cs" />
|
|
<Compile Include="Implementation\Common\IQueryOutlookTaskItemFolderStrategy.cs" />
|
|
<Compile Include="Implementation\Common\OutlookFolderStrategyWrapper.cs" />
|
|
<Compile Include="Implementation\Common\QueryOutlookFolderByGetTableStrategy.cs" />
|
|
<Compile Include="Implementation\Common\QueryOutlookFolderByRequestingItemStrategy.cs" />
|
|
<Compile Include="Implementation\Common\IQueryOutlookAppointmentItemFolderStrategy.cs" />
|
|
<Compile Include="Implementation\Common\OutlookUtility.cs" />
|
|
<Compile Include="Implementation\Contacts\CardDavRepository.cs" />
|
|
<Compile Include="Implementation\Contacts\ICardDavRepositoryLogger.cs" />
|
|
<Compile Include="Implementation\Contacts\IUidCacheDataAccess.cs" />
|
|
<Compile Include="Implementation\Contacts\LoggingCardDavRepositoryDecorator.cs" />
|
|
<Compile Include="Implementation\Contacts\NullCardDavRepositoryLogger.cs" />
|
|
<Compile Include="Implementation\Contacts\EmailAddressCacheDataAccess.cs" />
|
|
<Compile Include="Implementation\Contacts\CacheItem.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\IdWithType.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\IVCardTypeCache.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\IVCardTypeCacheDataAccess.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\IVCardTypeDetector.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\TypeFilteringVCardRepositoryDecorator.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\VCardEntry.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\VCardType.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\VCardTypeCache.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\VCardTypeCacheDataAccess.cs" />
|
|
<Compile Include="Implementation\Contacts\VCardTypeSwitch\VCardTypeDetector.cs" />
|
|
<Compile Include="Implementation\DistributionLists\VCard\DistListConflictInitialSyncStateCreationStrategyAutomatic.cs" />
|
|
<Compile Include="Implementation\DistributionLists\VCard\OutlookDistListUpdateFromNewerToOlder.cs" />
|
|
<Compile Include="Implementation\DistributionLists\Sogo\SogoDistListConflictInitialSyncStateCreationStrategyAutomatic.cs" />
|
|
<Compile Include="Implementation\Contacts\EmailAddressCache.cs" />
|
|
<Compile Include="Implementation\DistributionLists\VCard\DistListEntityMapper.cs" />
|
|
<Compile Include="Implementation\DistributionLists\Sogo\SogoDistListEntityMapper.cs" />
|
|
<Compile Include="Implementation\DistributionLists\DistributionListSychronizationContext.cs" />
|
|
<Compile Include="Implementation\DistributionLists\VCard\InitialDistListEntityMatcher.cs" />
|
|
<Compile Include="Implementation\DistributionLists\Sogo\KnownDistributionListMember.cs" />
|
|
<Compile Include="Implementation\DistributionLists\Sogo\OutlookSogoDistListUpdateFromNewerToOlder.cs" />
|
|
<Compile Include="Implementation\DistributionLists\DistListRelationData.cs" />
|
|
<Compile Include="Implementation\DistributionLists\DistListRelationDataFactory.cs" />
|
|
<Compile Include="Implementation\DistributionLists\OutlookDistListRepository.cs" />
|
|
<Compile Include="Implementation\DistributionLists\Sogo\DistributionList.cs" />
|
|
<Compile Include="Implementation\DistributionLists\Sogo\DistributionListMember.cs" />
|
|
<Compile Include="Implementation\DistributionLists\Sogo\SogoDistributionListRepository.cs" />
|
|
<Compile Include="Implementation\Events\AppointmentSlim.cs" />
|
|
<Compile Include="Implementation\Events\EventSynchronizationInterceptorFactory.cs" />
|
|
<Compile Include="Implementation\Events\EventSynchronizationInterceptor.cs" />
|
|
<Compile Include="Implementation\Events\EventSynchronizationContextFactory.cs" />
|
|
<Compile Include="Implementation\Events\DuplicateEventCleaner.cs" />
|
|
<Compile Include="Implementation\Events\IEventSynchronizationContext.cs" />
|
|
<Compile Include="Implementation\Events\NullDuplicateEventCleaner.cs" />
|
|
<Compile Include="Implementation\Events\AppointmentId.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleApiOperationExecutor.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactCache.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactContext.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactContextFactory.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactConflictInitialSyncStateCreationStrategyAutomatic.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\ContactEntityMapper.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactVersion.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactRepository.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactRelationData.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactRelationDataFactory.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactVersionComparer.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactWrapper.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleGroupCache.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\IGoogleApiOperationExecutor.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\IGoogleContactCache.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\IGoogleContactContext.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\IGoogleGroupCache.cs" />
|
|
<Compile Include="Implementation\InitialSyncStateCreationStrategyFactory.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\InitialGoogleContactEntityMatcher.cs" />
|
|
<Compile Include="Implementation\GoogleContacts\GoogleContactUpdateFromNewerToOlder.cs" />
|
|
<Compile Include="Implementation\Tasks\TaskEntityMatchDataFactory.cs" />
|
|
<Compile Include="Implementation\Tasks\TaskEntityMatchData.cs" />
|
|
<Compile Include="Implementation\TimeZones\GlobalTimeZoneCache.cs" />
|
|
<Compile Include="Implementation\TimeZones\ITimeZoneCache.cs" />
|
|
<Compile Include="Implementation\TimeZones\TimeZoneCache.cs" />
|
|
<Compile Include="Implementation\WebDavCollectionSyncEntityStates.cs" />
|
|
<Compile Include="Implementation\WebRepositoryOverloadException.cs" />
|
|
<Compile Include="IOutlookSession.cs" />
|
|
<Compile Include="IProfileExportProcessor.cs" />
|
|
<Compile Include="OutlookCategory.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\CalendariCloudProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\FastMailProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\Open-XchangeProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\EGroupwareProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\untermStrichProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\Swisscom\SwisscomServerSettingsView.xaml.cs">
|
|
<DependentUpon>SwisscomServerSettingsView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="ProfileTypes\ConcreteTypes\Swisscom\SwisscomServerSettingsViewModel.cs" />
|
|
<Compile Include="Scheduling\ComponentCollectors\AvailableEventSynchronizerComponents.cs" />
|
|
<Compile Include="Scheduling\ComponentCollectors\AvailableGoogleContactSynchronizerSynchronizerComponents.cs" />
|
|
<Compile Include="Scheduling\ComponentCollectors\AvailableGoogleTaskApiSynchronizerComponents.cs" />
|
|
<Compile Include="Scheduling\ComponentCollectors\AvailableSynchronizerComponents.cs" />
|
|
<Compile Include="Scheduling\ComponentCollectors\AvailableTaskSynchronizerComponents.cs" />
|
|
<Compile Include="Scheduling\ComponentCollectors\AvailableContactSynchronizerComponents.cs" />
|
|
<Compile Include="Scheduling\ComponentCollectors\DataAccessComponents.cs" />
|
|
<Compile Include="Scheduling\DateTimeEqualityComparer.cs" />
|
|
<Compile Include="Scheduling\SynchronizationProfileRunner.ErrorHandlingStrategy.cs" />
|
|
<Compile Include="StartupComponentContainer.cs" />
|
|
<Compile Include="LoadErrorComponentContainer.cs" />
|
|
<Compile Include="OutlookSession.cs" />
|
|
<Compile Include="ProfileExportProcessor.cs" />
|
|
<Compile Include="Properties\AssemblyInfoVersion.cs" />
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
<AutoGen>True</AutoGen>
|
|
<DesignTime>True</DesignTime>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Scheduling\ContactSynchronizerComponents.cs" />
|
|
<Compile Include="Scheduling\ISynchronizationRunLogger.cs" />
|
|
<Compile Include="Scheduling\SchedulerStatusEventArgs.cs" />
|
|
<Compile Include="Scheduling\SynchronizationStatus.cs" />
|
|
<Compile Include="Synchronization\OutlookEventSynchronizer.cs" />
|
|
<Compile Include="Implementation\ContactAndDistListSynchronizer.cs" />
|
|
<Compile Include="Ui\AddResourceForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Ui\AddResourceForm.Designer.cs">
|
|
<DependentUpon>AddResourceForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\ConnectionTests\AccessPrivileges.cs" />
|
|
<Compile Include="Ui\ConnectionTests\CalendarOwnerProperties.cs" />
|
|
<Compile Include="Ui\DelegateCommandHandlingRequerySuggested.cs" />
|
|
<Compile Include="Ui\NullProgressUi.cs" />
|
|
<Compile Include="Ui\NullUiService.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\ViewModels\KolabMultipleOptionsTemplateViewModel.cs" />
|
|
<Compile Include="Ui\Options\EnumDisplayNameProvider.cs" />
|
|
<Compile Include="Ui\Options\IEnumDisplayNameProvider.cs" />
|
|
<Compile Include="Ui\Options\Models\ICustomPropertiesMappingConfigurationModel.cs" />
|
|
<Compile Include="Ui\Options\Models\IServerSettingsDetector.cs" />
|
|
<Compile Include="Ui\Options\Models\MappingConfigurationModel.cs" />
|
|
<Compile Include="Ui\Options\Models\NullServerSettingsDetector.cs" />
|
|
<Compile Include="Ui\Options\Models\OneTimeChangeCategoryTask.cs" />
|
|
<Compile Include="Ui\Options\Models\ServerSettingsDetector.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\ContactsiCloudProfile.cs" />
|
|
<Compile Include="ProfileTypes\DesignProfileModelFactory.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\Swisscom\SwisscomProfile.cs" />
|
|
<Compile Include="ProfileTypes\IProfileModelFactory.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\MailDeProfile.cs" />
|
|
<Compile Include="Ui\Options\Models\OptionModelSessionData.cs" />
|
|
<Compile Include="ProfileTypes\ProfileTypeBase.cs" />
|
|
<Compile Include="ProfileTypes\ProfileModelOptions.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\SmarterMailProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\WebDeProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\CozyProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\Swisscom\SwisscomServerSettingsDetector.cs" />
|
|
<Compile Include="ProfileTypes\DesignProfileType.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\MailboxOrgProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\FruuxProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\GenericProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\GmxCalendarProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\GoogleProfile.cs" />
|
|
<Compile Include="ProfileTypes\IProfileType.cs" />
|
|
<Compile Include="ProfileTypes\IProfileTypeRegistry.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\LandmarksProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\EasyProjectProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\KolabProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\NextcloudProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\PosteoProfile.cs" />
|
|
<Compile Include="ProfileTypes\ProfileModelFactoryBase.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\SarenetProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\SogoProfile.cs" />
|
|
<Compile Include="ProfileTypes\ConcreteTypes\YandexProfile.cs" />
|
|
<Compile Include="Ui\Options\ResourceSelection\ViewModels\AccessPrivilegesConverter.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\GeneralOptionsViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\ProfileViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\OXInfoDialogViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\SelectProfileViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\ViewOptions.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\IViewOptions.cs" />
|
|
<Compile Include="Ui\Options\Views\BooleanToVisibilityConverterInverted.cs" />
|
|
<Compile Include="Ui\Options\Views\GeneralOptionsWindow.xaml.cs">
|
|
<DependentUpon>GeneralOptionsWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\OXInfoDialog.xaml.cs">
|
|
<DependentUpon>OXInfoDialog.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\SelectProfileWindow.xaml.cs">
|
|
<DependentUpon>SelectProfileWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\IProfileStatusesViewModel.cs" />
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\IPermanentStatusesViewModel.cs" />
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\ITransientProfileStatusesViewModel.cs" />
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\OptionsEventArgs.cs" />
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\PermanentStatusesViewModel.cs" />
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\SynchronizationRunSummary.cs" />
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\SynchronizationRunSummaryCache.cs" />
|
|
<Compile Include="Ui\ViewModels\ProgressViewModel.cs" />
|
|
<Compile Include="Ui\Views\ProgressWindow.xaml.cs">
|
|
<DependentUpon>ProgressWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\AutoDiscoverResultStatus.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\ViewModels\GoogleServerSettingsTemplateViewModel.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\ViewModels\IServerSettingsTemplateViewModel.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\ViewModels\EasyProjectMultipleOptionsTemplateViewModel.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\ViewModels\ServerResources.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\ViewModels\EasyProjectServerSettingsTemplateViewModel.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\ViewModels\ServerSettingsTemplateViewModel.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\Views\GoogleServerSettingsTemplateView.xaml.cs">
|
|
<DependentUpon>GoogleServerSettingsTemplateView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\BulkOptions\Views\EasyProjectServerSettingsTemplateView.xaml.cs">
|
|
<DependentUpon>EasyProjectServerSettingsTemplateView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\BulkOptions\Views\ServerSettingsTemplateView.xaml.cs">
|
|
<DependentUpon>ServerSettingsTemplateView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\IOptionTasks.cs" />
|
|
<Compile Include="Ui\Options\ISynchronizationProfilesViewModel.cs" />
|
|
<Compile Include="Ui\Options\Models\ContactMappingConfigurationModel.cs" />
|
|
<Compile Include="Ui\Options\Models\EventMappingConfigurationModel.cs" />
|
|
<Compile Include="Ui\Options\Models\OptionsModel.cs" />
|
|
<Compile Include="Ui\Options\Models\PropertyMappingModel.cs" />
|
|
<Compile Include="Ui\Options\Models\TaskMappingConfigurationModel.cs" />
|
|
<Compile Include="Ui\Options\NullOptionTasks.cs" />
|
|
<Compile Include="Ui\Options\ResourceSelection\ViewModels\ResourceDataViewModelBase.cs" />
|
|
<Compile Include="Ui\Options\ResourceSelection\ViewModels\AddressBookDataViewModel.cs" />
|
|
<Compile Include="Ui\Options\ResourceSelection\ViewModels\CalendarDataViewModel.cs" />
|
|
<Compile Include="Ui\Options\ResourceSelection\ViewModels\TaskListDataViewModel.cs" />
|
|
<Compile Include="Ui\Options\BulkOptions\ViewModels\MultipleOptionsTemplateViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\ISubOptionsViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\ITreeNodeViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\Mapping\CustomPropertyMappingViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\TimeRangeViewModel.cs" />
|
|
<Compile Include="Ui\Options\Views\Mapping\CustomPropertyMappingView.xaml.cs">
|
|
<DependentUpon>CustomPropertyMappingView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\TimeRangeView.xaml.cs">
|
|
<DependentUpon>TimeRangeView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\OutlookFolderDescriptor.cs" />
|
|
<Compile Include="Ui\ViewModels\GenericReportViewModel.cs" />
|
|
<Compile Include="Ui\Views\GenericReportWindow.xaml.cs">
|
|
<DependentUpon>GenericReportWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Utilities\ArgbColor.cs" />
|
|
<Compile Include="DataAccess\HttpClientBasedClient\HttpResponseHeadersAdapter.cs" />
|
|
<Compile Include="DataAccess\HttpUtility.cs" />
|
|
<Compile Include="DataAccess\ICardDavDataAccess.cs" />
|
|
<Compile Include="DataAccess\IHttpHeaders.cs" />
|
|
<Compile Include="DataAccess\IGeneralOptionsDataAccess.cs" />
|
|
<Compile Include="DataAccess\GeneralOptionsDataAccess.cs" />
|
|
<Compile Include="DataAccess\ISynchronizationReportRepository.cs" />
|
|
<Compile Include="DataAccess\NullSynchronizationReportRepository.cs" />
|
|
<Compile Include="DataAccess\ReportAddedEventArgs.cs" />
|
|
<Compile Include="DataAccess\ReportEventArgs.cs" />
|
|
<Compile Include="DataAccess\SynchronizationReportRepository.cs" />
|
|
<Compile Include="DataAccess\WebDavClientException.cs" />
|
|
<Compile Include="DataAccess\WebDavDataAccess.cs" />
|
|
<Compile Include="DataAccess\CardDavDataAccess.cs" />
|
|
<Compile Include="DataAccess\IWebDavClient.cs" />
|
|
<Compile Include="DataAccess\HttpClientBasedClient\WebDavClient.cs" />
|
|
<Compile Include="DataAccess\IProfileListDataAccess.cs" />
|
|
<Compile Include="DataAccess\ProfileListDataAccess.cs" />
|
|
<Compile Include="DDayICalWorkaround\CalendarDataPreprocessor.cs" />
|
|
<Compile Include="EntityCacheVersionConversion\Version0To1.cs" />
|
|
<Compile Include="ICalDavSynchronizerCommands.cs" />
|
|
<Compile Include="Implementation\Common\CommonEntityMapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\ContactItemWrapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\ITaskItemWrapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\AppointmentItemWrapper.cs" />
|
|
<Compile Include="Implementation\ComWrappers\ComEnumerableExtensions.cs" />
|
|
<Compile Include="Implementation\ComWrappers\OutlookObjectExtensions.cs" />
|
|
<Compile Include="Implementation\Contacts\CardDavEntityRepository.cs" />
|
|
<Compile Include="Implementation\Contacts\ContactConflictInitialSyncStateCreationStrategyAutomatic.cs" />
|
|
<Compile Include="Implementation\Contacts\ContactEntityMapper.cs" />
|
|
<Compile Include="Implementation\Contacts\InitialContactEntityMatcher.cs" />
|
|
<Compile Include="Implementation\Contacts\OutlookCardDavUpdateFromNewerToOlder.cs" />
|
|
<Compile Include="Implementation\Contacts\OutlookContactRepository.cs" />
|
|
<Compile Include="Implementation\Contacts\OutlookContactRelationData.cs" />
|
|
<Compile Include="Implementation\Contacts\OutlookContactRelationDataFactory.cs" />
|
|
<Compile Include="Implementation\Events\TimeZoneMapper.cs" />
|
|
<Compile Include="Implementation\GoogleTasks\GoogleTaskRepository.cs" />
|
|
<Compile Include="Implementation\GoogleTasks\GoogleTaskMapper.cs" />
|
|
<Compile Include="Implementation\GoogleTasks\GoogleTaskRelationData.cs" />
|
|
<Compile Include="Implementation\GoogleTasks\GoogleTaskRelationDataFactory.cs" />
|
|
<Compile Include="Implementation\GoogleTasks\GoogleTaskUpdateFromNewerToOlder.cs" />
|
|
<Compile Include="Implementation\GoogleTasks\GoogleTasktEntityConflictSyncStateFactory_Automatic.cs" />
|
|
<Compile Include="Implementation\GoogleTasks\InitialGoogleTasktEntityMatcher.cs" />
|
|
<Compile Include="Implementation\DaslFilterProvider.cs" />
|
|
<Compile Include="Implementation\IDaslFilterProvider.cs" />
|
|
<Compile Include="Implementation\TimeRangeFiltering\DateTimeRange.cs" />
|
|
<Compile Include="Implementation\TimeRangeFiltering\DateTimeRangeProvider.cs" />
|
|
<Compile Include="Implementation\Events\EventConflictInitialSyncStateCreationStrategyAutomatic.cs" />
|
|
<Compile Include="Implementation\Events\OutlookEventRelationData.cs" />
|
|
<Compile Include="Implementation\Events\OutlookEventRelationDataFactory.cs" />
|
|
<Compile Include="Implementation\Events\InitialEventEntityMatcher.cs" />
|
|
<Compile Include="DataAccess\XmlDocumentWithNamespaceManager.cs" />
|
|
<Compile Include="Diagnostics\AutomaticStopwatch.cs" />
|
|
<Compile Include="Implementation\CalDavRepository.cs" />
|
|
<Compile Include="Implementation\Tasks\TasktEntityConflictSyncStateFactory_Automatic.cs" />
|
|
<Compile Include="Implementation\Tasks\InitialTasktEntityMatcher.cs" />
|
|
<Compile Include="Implementation\Tasks\TaskRelationData.cs" />
|
|
<Compile Include="Implementation\Tasks\TaskRelationDataFactory.cs" />
|
|
<Compile Include="Implementation\Tasks\TaskMapper.cs" />
|
|
<Compile Include="Implementation\Tasks\TaskUpdateFromNewerToOlder.cs" />
|
|
<Compile Include="Implementation\Tasks\OutlookTaskRepository.cs" />
|
|
<Compile Include="Implementation\TimeRangeFiltering\IDateTimeRangeProvider.cs" />
|
|
<Compile Include="Implementation\TimeRangeFiltering\NullDateTimeRangeProvider.cs" />
|
|
<Compile Include="DataAccess\WebResourceName.cs" />
|
|
<Compile Include="IOutlookAccountPasswordProvider.cs" />
|
|
<Compile Include="NullCalDavSynchronizerCommands.cs" />
|
|
<Compile Include="NullOutlookAccountPasswordProvider.cs" />
|
|
<Compile Include="OutlookAccountPasswordProvider.cs" />
|
|
<Compile Include="Properties\AssemblyInfoCommon.cs" />
|
|
<Compile Include="Reports\ReportGarbageCollection.cs" />
|
|
<Compile Include="Scheduling\ISynchronizerFactory.cs" />
|
|
<Compile Include="Synchronization\NullOutlookSynchronizer.cs" />
|
|
<Compile Include="Synchronization\IOutlookSynchronizer.cs" />
|
|
<Compile Include="Synchronization\OutlookSynchronizer.cs" />
|
|
<Compile Include="Scheduling\Scheduler.cs" />
|
|
<Compile Include="Scheduling\SynchronizationProfileRunner.cs" />
|
|
<Compile Include="Implementation\Events\OutlookCaldavEventUpdateFromNewerToOlder.cs" />
|
|
<Compile Include="Implementation\Events\OutlookEventRepository.cs" />
|
|
<Compile Include="DataAccess\CalDavDataAccess.cs" />
|
|
<Compile Include="DataAccess\ICalDavDataAccess.cs" />
|
|
<Compile Include="DataAccess\IOptionsDataAccess.cs" />
|
|
<Compile Include="DataAccess\OptionsDataAccess.cs" />
|
|
<Compile Include="Contracts\Options.cs" />
|
|
<Compile Include="Implementation\SynchronizationMode.cs" />
|
|
<Compile Include="Scheduling\SynchronizerFactory.cs" />
|
|
<Compile Include="ThoughtvCardWorkaround\ContactDataPreprocessor.cs" />
|
|
<Compile Include="Ui\DelegateCommandWithoutCanExecuteDelegation.cs" />
|
|
<Compile Include="Ui\Options\AutoDiscoveryResult.cs" />
|
|
<Compile Include="Ui\DelegateCommand.cs" />
|
|
<Compile Include="Ui\ColorInfo.cs" />
|
|
<Compile Include="Ui\ColorPicker.cs">
|
|
<SubType>Component</SubType>
|
|
</Compile>
|
|
<Compile Include="Ui\ColorPicker.Designer.cs">
|
|
<DependentUpon>ColorPicker.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\ConnectionTests\AddressBookProperties.cs" />
|
|
<Compile Include="Ui\ConnectionTests\CalendarProperties.cs" />
|
|
<Compile Include="Ui\ConnectionTests\ConnectionTester.cs" />
|
|
<Compile Include="Ui\ConnectionTests\ResourceType.cs" />
|
|
<Compile Include="Ui\ConnectionTests\TestResult.cs" />
|
|
<Compile Include="Ui\DraggableTabControl.cs">
|
|
<SubType>Component</SubType>
|
|
</Compile>
|
|
<Compile Include="Ui\GenericElementHostWindow.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Ui\GenericElementHostWindow.Designer.cs">
|
|
<DependentUpon>GenericElementHostWindow.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\GetNewVersionForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Ui\GetNewVersionForm.Designer.cs">
|
|
<DependentUpon>GetNewVersionForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\AboutForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Ui\AboutForm.Designer.cs">
|
|
<DependentUpon>AboutForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Item.cs" />
|
|
<Compile Include="Ui\IUiService.cs" />
|
|
<Compile Include="Ui\Options\OptionTasks.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\CloseEventArgs.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\DesignOptionsViewModelParent.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\DesignOutlookSession.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\GenericOptionsViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\GoogleServerSettingsViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\IOptionsSection.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\IOptionsViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\IOptionsViewModelParent.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\Mapping\ContactMappingConfigurationViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\Mapping\EventMappingConfigurationViewModel.cs" />
|
|
<Compile Include="Contracts\IMappingConfigurationViewModelFactory.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\Mapping\TaskMappingConfigurationViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\NetworkSettingsViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\OptionsCollectionViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\OptionsViewModelBase.cs" />
|
|
<Compile Include="ProfileTypes\ProfileTypeRegistry.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\OutlookFolderViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\ServerSettingsViewModel.cs" />
|
|
<Compile Include="Ui\Options\ViewModels\SyncSettingsViewModel.cs" />
|
|
<Compile Include="Ui\Options\Views\ToProfileImageConverter.cs" />
|
|
<Compile Include="Ui\Options\Views\OlCategoryColorConverter.cs" />
|
|
<Compile Include="Ui\Options\Views\BooleanNotConverter.cs" />
|
|
<Compile Include="Ui\Options\Views\GoogleServerSettingsView.xaml.cs">
|
|
<DependentUpon>GoogleServerSettingsView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\Mapping\ContactMappingConfigurationView.xaml.cs">
|
|
<DependentUpon>ContactMappingConfigurationView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\Mapping\EventMappingConfigurationView.xaml.cs">
|
|
<DependentUpon>EventMappingConfigurationView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\Mapping\TaskMappingConfigurationView.xaml.cs">
|
|
<DependentUpon>TaskMappingConfigurationView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\NetworkSettingsView.xaml.cs">
|
|
<DependentUpon>NetworkSettingsView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\OptionsCollectionView.xaml.cs">
|
|
<DependentUpon>OptionsCollectionView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\OptionsWindow.xaml.cs">
|
|
<DependentUpon>OptionsWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\OutlookFolderView.xaml.cs">
|
|
<DependentUpon>OutlookFolderView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\ServerSettingsView.xaml.cs">
|
|
<DependentUpon>ServerSettingsView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\Views\SyncSettingsView.xaml.cs">
|
|
<DependentUpon>SyncSettingsView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Reports\ViewModels\IReportsViewModelParent.cs" />
|
|
<Compile Include="Ui\Reports\ViewModels\IReportViewModelParent.cs" />
|
|
<Compile Include="Ui\Reports\ViewModels\NullReportsViewModelParent.cs" />
|
|
<Compile Include="Ui\Reports\ViewModels\NullReportViewModelParent.cs" />
|
|
<Compile Include="Ui\Reports\ViewModels\ReportViewModel.DesignInstance.cs" />
|
|
<Compile Include="Ui\Reports\Views\ReportDetailView.xaml.cs">
|
|
<DependentUpon>ReportDetailView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Reports\ViewModels\ReportProxy.cs" />
|
|
<Compile Include="Ui\Reports\Views\ReportsView.xaml.cs">
|
|
<DependentUpon>ReportsView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Reports\Views\ReportView.xaml.cs">
|
|
<DependentUpon>ReportView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Reports\ViewModels\ReportViewModel.cs" />
|
|
<Compile Include="Ui\Reports\ViewModels\ReportsViewModel.cs" />
|
|
<Compile Include="Ui\Reports\Views\EntitySynchronizationReportView.xaml.cs">
|
|
<DependentUpon>EntitySynchronizationReportView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Reports\Views\SynchronizationReportView.xaml.cs">
|
|
<DependentUpon>SynchronizationReportView.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\SelectResourceForm.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Include="Ui\Options\SelectResourceForm.Designer.cs">
|
|
<DependentUpon>SelectResourceForm.cs</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Properties\AssemblyInfo.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="Utilities\ExceptionExtensions.cs" />
|
|
<Compile Include="Utilities\StringExtensions.cs" />
|
|
<Compile Include="Utilities\DnsQueryHelper.cs" />
|
|
<Compile Include="Utilities\DictionaryExtensions.cs" />
|
|
<Compile Include="Utilities\SystemNetSettings.cs" />
|
|
<Compile Include="Utilities\X11Colors.cs" />
|
|
<Compile Include="Utilities\X11Color.cs" />
|
|
<Compile Include="WebResourceUrls.cs" />
|
|
<EmbeddedResource Include="CalDavSynchronizerRibbon.resx">
|
|
<DependentUpon>CalDavSynchronizerRibbon.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Globalization\StringResources.fr-FR.resx">
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Globalization\StringResources.it-IT.resx">
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Globalization\StringResources.pt-BR.resx">
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Globalization\StringResources.ru-RU.resx">
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Globalization\StringResources.de-DE.resx">
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Globalization\StringResources.zh-CN.resx">
|
|
<SubType>Designer</SubType>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Globalization\StringResources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>StringResources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Ui\AddResourceForm.resx">
|
|
<DependentUpon>AddResourceForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Ui\ColorPicker.resx">
|
|
<DependentUpon>ColorPicker.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Ui\GenericElementHostWindow.resx">
|
|
<DependentUpon>GenericElementHostWindow.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Ui\GetNewVersionForm.resx">
|
|
<DependentUpon>GetNewVersionForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Ui\AboutForm.resx">
|
|
<DependentUpon>AboutForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Ui\Options\SelectResourceForm.resx">
|
|
<DependentUpon>SelectResourceForm.cs</DependentUpon>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<SubType>Designer</SubType>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
<None Include="app.config">
|
|
<SubType>Designer</SubType>
|
|
</None>
|
|
<None Include="CalDavSynchronizer_TemporaryKey.pfx" />
|
|
<Compile Include="Ui\SystrayNotification\ITrayNotifier.cs" />
|
|
<Compile Include="Ui\SystrayNotification\NullTrayNotifier.cs" />
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\TransientProfileStatusesViewModel.cs" />
|
|
<Compile Include="Ui\SystrayNotification\ViewModels\ProfileStatusViewModel.cs" />
|
|
<Compile Include="Ui\SystrayNotification\SyncronizationRunResult.cs" />
|
|
<Compile Include="Ui\SystrayNotification\Views\ProfileStatusesViewModel.xaml.cs">
|
|
<DependentUpon>ProfileStatusesViewModel.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Include="Ui\SystrayNotification\TrayNotifier.cs" />
|
|
<Compile Include="Ui\UiService.cs" />
|
|
<Compile Include="Ui\ModelBase.cs" />
|
|
<Compile Include="Utilities\ColorHelper.cs" />
|
|
<Compile Include="Utilities\ExceptionHandler.cs" />
|
|
<Compile Include="Utilities\IExceptionHandler.cs" />
|
|
<Compile Include="Utilities\SecureStringUtility.cs" />
|
|
<Compile Include="Utilities\Serializer.cs" />
|
|
<Compile Include="Implementation\ConflictResolution.cs" />
|
|
<Compile Include="Implementation\Events\EventEntityMapper.cs" />
|
|
<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="Resources\Sync.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\Options.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="Resources\About.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="LICENSE.txt" />
|
|
<Resource Include="Resources\ProfileLogos\logo_untermStrich.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_ox_with_claim.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_fuago.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_fastmail.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_egroupware.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_ox.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_kolab.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_swisscom.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_iCloud.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_mail.de.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_smartermail.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_webde.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_mailbox.org.png" />
|
|
<None Include="Resources\SyncReport.png" />
|
|
<Resource Include="Resources\warning.ico" />
|
|
<None Include="Resources\SyncError.png" />
|
|
<None Include="Resources\report.ico" />
|
|
<None Include="Resources\GeneralOptions.ico" />
|
|
<Resource Include="Resources\ok.ico" />
|
|
<Resource Include="Resources\ApplicationIcon.ico" />
|
|
<Resource Include="Resources\error.ico" />
|
|
<Resource Include="Resources\ProfileLogos\logo_fruux.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_posteo.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_google.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_yandex.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_gmx.png" />
|
|
<Resource Include="Resources\Appointment.png" />
|
|
<Resource Include="Resources\Contact.png" />
|
|
<Resource Include="Resources\Task.png" />
|
|
<Resource Include="Resources\MoveDown.png" />
|
|
<Resource Include="Resources\MoveUp.png" />
|
|
<Resource Include="Resources\Add.png" />
|
|
<Resource Include="Resources\Copy.png" />
|
|
<Resource Include="Resources\Delete.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_sarenet.png" />
|
|
<Resource Include="Resources\AddMultiple.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_landmarks.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_sogo.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_cozy.png" />
|
|
<Resource Include="Resources\Folder.png" />
|
|
<Resource Include="Resources\CollapseAll.png" />
|
|
<Resource Include="Resources\Export.png" />
|
|
<Resource Include="Resources\Import.png" />
|
|
<Resource Include="Resources\ClearCache.png" />
|
|
<None Include="Resources\ApplicationLogoLarge.png" />
|
|
<Content Include="Resources\LogoBanner.bmp" />
|
|
<Resource Include="Resources\ExpandAll.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_nextcloud.png" />
|
|
<Resource Include="Resources\ProfileLogos\logo_easyproject.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CalDavSynchronizer.Conversions\CalDavSynchronizer.Conversions.csproj">
|
|
<Project>{71021de1-8dc8-4414-af56-fe821dd92f47}</Project>
|
|
<Name>CalDavSynchronizer.Conversions</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\CalDavSynchronizer.OAuth.Google\CalDavSynchronizer.OAuth.Google.csproj">
|
|
<Project>{230914cf-6ff1-4b09-a831-c37c6b41d127}</Project>
|
|
<Name>CalDavSynchronizer.OAuth.Google</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\CalDavSynchronizer.OAuth.Swisscom\CalDavSynchronizer.OAuth.Swisscom.csproj">
|
|
<Project>{424f803e-b641-4473-b9c3-b8df40e0b3b3}</Project>
|
|
<Name>CalDavSynchronizer.OAuth.Swisscom</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\GenSync\GenSync.csproj">
|
|
<Project>{76c932e7-eca5-4010-b602-2104327ee5ee}</Project>
|
|
<Name>GenSync</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Thought.vCards\Thought.vCards.csproj">
|
|
<Project>{a53d3ceb-f7af-41ab-aa04-4d3cf684bbaf}</Project>
|
|
<Name>Thought.vCards</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\Unicolour\Wacton.Unicolour.csproj">
|
|
<Project>{a8f93f45-42ea-4d4c-8dd1-b03410cc7c55}</Project>
|
|
<Name>Wacton.Unicolour</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="BouncyCastle">
|
|
<Version>1.8.9</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="DDay.iCal">
|
|
<Version>1.0.2.575</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Google.Apis.Tasks.v1">
|
|
<Version>1.59.0.2384</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Google.GData.Contacts">
|
|
<Version>2.2.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="log4net">
|
|
<Version>2.0.15</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Net.Http">
|
|
<Version>2.2.29</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="NodaTime">
|
|
<Version>3.1.6</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Net.Http">
|
|
<Version>4.3.4</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Runtime">
|
|
<Version>4.3.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Security.Cryptography.Algorithms">
|
|
<Version>4.3.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Security.Cryptography.X509Certificates">
|
|
<Version>4.3.2</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.ValueTuple">
|
|
<Version>4.5.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="Zlib.Portable.Signed">
|
|
<Version>1.11.0</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Page Include="Ui\Options\Views\GeneralOptionsWindow.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="ProfileTypes\ConcreteTypes\Swisscom\SwisscomResourceDictionary.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="ProfileTypes\ConcreteTypes\Swisscom\SwisscomServerSettingsView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\OXInfoDialog.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\SelectProfileWindow.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Views\ProgressWindow.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\BulkOptions\Views\GoogleServerSettingsTemplateView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\BulkOptions\Views\EasyProjectServerSettingsTemplateView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\BulkOptions\Views\ServerSettingsTemplateView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\GoogleServerSettingsView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\Mapping\ContactMappingConfigurationView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\Mapping\CustomPropertyMappingView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\Mapping\EventMappingConfigurationView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\Mapping\TaskMappingConfigurationView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\NetworkSettingsView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\OptionsCollectionView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\OptionsWindow.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\OutlookFolderView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\ServerSettingsView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\TimeRangeView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Options\Views\SyncSettingsView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Reports\Views\ReportDetailView.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Ui\Reports\Views\ReportsView.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Ui\Reports\Views\ReportView.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Ui\Reports\Views\EntitySynchronizationReportView.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Reports\Views\SynchronizationReportView.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
<Page Include="Ui\SystrayNotification\Views\ProfileStatusesViewModel.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Include="Ui\Views\GenericReportWindow.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
</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>
|
|
</ManifestKeyFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ManifestCertificateThumbprint>1DD03B86FE5C780F60AADFD80FC8963626189ECF</ManifestCertificateThumbprint>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ManifestTimestampUrl>http://timestamp.comodoca.com/rfc3161</ManifestTimestampUrl>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<SignAssembly>false</SignAssembly>
|
|
</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\16.0\Outlook\InstallRoot\Path#outlook.exe" AddItemTemplatesGuid="{A58A78EB-1C92-4DDD-80CF-E8BD872ABFC4}" />
|
|
<Host Name="Outlook" GeneratedCodeNamespace="CalDavSynchronizer" IconIndex="0">
|
|
<HostItem Name="ThisAddIn" Code="ThisAddIn.cs" CanonicalName="AddIn" CanActivate="false" IconIndex="1" Blueprint="ThisAddIn.Designer.xml" GeneratedCode="ThisAddIn.Designer.cs" />
|
|
</Host>
|
|
</FlavorProperties>
|
|
</VisualStudio>
|
|
</ProjectExtensions>
|
|
</Project> |