2013-02-20 18:33:05 -07:00
|
|
|
|
<?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')" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProjectGuid>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>MediaBrowser.Model</RootNamespace>
|
|
|
|
|
<AssemblyName>MediaBrowser.Model</AssemblyName>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
|
|
|
|
|
<RestorePackages>true</RestorePackages>
|
2013-12-27 08:07:05 -07:00
|
|
|
|
<FodyPath>..\packages\Fody.1.19.1.0</FodyPath>
|
2013-09-24 14:06:21 -07:00
|
|
|
|
<ProductVersion>10.0.0</ProductVersion>
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
2013-12-11 12:54:33 -07:00
|
|
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2013-07-27 06:45:46 -07:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2013-12-11 12:54:33 -07:00
|
|
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2013-12-11 12:54:33 -07:00
|
|
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release Mono\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<RunPostBuildEvent>Always</RunPostBuildEvent>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2013-02-22 00:17:50 -07:00
|
|
|
|
<Compile Include="..\SharedVersion.cs">
|
|
|
|
|
<Link>Properties\SharedVersion.cs</Link>
|
|
|
|
|
</Compile>
|
2013-07-08 19:38:18 -07:00
|
|
|
|
<Compile Include="ApiClient\HttpResponseEventArgs.cs" />
|
2013-06-02 17:21:35 -07:00
|
|
|
|
<Compile Include="ApiClient\IApiClient.cs" />
|
2013-08-12 12:13:36 -07:00
|
|
|
|
<Compile Include="ApiClient\ApiClientExtensions.cs" />
|
2013-10-08 17:14:42 -07:00
|
|
|
|
<Compile Include="ApiClient\IServerEvents.cs" />
|
|
|
|
|
<Compile Include="ApiClient\ServerEventArgs.cs" />
|
2014-03-17 18:45:41 -07:00
|
|
|
|
<Compile Include="Channels\ChannelQuery.cs" />
|
2014-02-02 06:36:31 -07:00
|
|
|
|
<Compile Include="Configuration\AutoOrganize.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Configuration\BaseApplicationConfiguration.cs" />
|
2014-03-10 10:38:53 -07:00
|
|
|
|
<Compile Include="Configuration\DlnaOptions.cs" />
|
2013-07-08 09:13:21 -07:00
|
|
|
|
<Compile Include="Configuration\ManualLoginCategory.cs" />
|
2014-02-02 06:36:31 -07:00
|
|
|
|
<Compile Include="Configuration\MetadataPlugin.cs" />
|
|
|
|
|
<Compile Include="Configuration\MetadataOptions.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Configuration\ServerConfiguration.cs" />
|
2013-09-19 12:46:19 -07:00
|
|
|
|
<Compile Include="Drawing\ImageOutputFormat.cs" />
|
2013-02-21 10:56:21 -07:00
|
|
|
|
<Compile Include="Dto\BaseItemPerson.cs" />
|
|
|
|
|
<Compile Include="Dto\ChapterInfoDto.cs" />
|
2013-09-21 14:00:04 -07:00
|
|
|
|
<Compile Include="Dto\GameSystemSummary.cs" />
|
2013-03-08 09:40:01 -07:00
|
|
|
|
<Compile Include="Dto\IItemDto.cs" />
|
2013-05-04 21:49:49 -07:00
|
|
|
|
<Compile Include="Dto\ImageInfo.cs" />
|
2013-04-16 22:36:56 -07:00
|
|
|
|
<Compile Include="Dto\ItemByNameCounts.cs" />
|
2013-05-13 22:36:36 -07:00
|
|
|
|
<Compile Include="Dto\ItemCounts.cs" />
|
2013-10-05 20:03:08 -07:00
|
|
|
|
<Compile Include="Dto\ItemIndex.cs" />
|
2014-03-11 19:11:01 -07:00
|
|
|
|
<Compile Include="Dto\RecommendationDto.cs" />
|
2014-03-18 21:59:45 -07:00
|
|
|
|
<Compile Include="Dto\AlternateVersionInfo.cs" />
|
2013-11-07 10:27:05 -07:00
|
|
|
|
<Compile Include="Entities\PackageReviewInfo.cs" />
|
2014-01-20 09:09:53 -07:00
|
|
|
|
<Compile Include="FileOrganization\FileOrganizationResult.cs" />
|
|
|
|
|
<Compile Include="FileOrganization\FileOrganizationQuery.cs" />
|
2014-02-20 22:35:56 -07:00
|
|
|
|
<Compile Include="Library\PlayAccess.cs" />
|
2013-11-24 13:51:45 -07:00
|
|
|
|
<Compile Include="LiveTv\ChannelInfoDto.cs" />
|
|
|
|
|
<Compile Include="LiveTv\ChannelQuery.cs" />
|
2013-11-25 13:39:23 -07:00
|
|
|
|
<Compile Include="LiveTv\ProgramInfoDto.cs" />
|
2013-11-25 09:15:31 -07:00
|
|
|
|
<Compile Include="LiveTv\ProgramQuery.cs" />
|
2013-12-28 14:37:01 -07:00
|
|
|
|
<Compile Include="LiveTv\RecordingGroupDto.cs" />
|
2013-11-15 14:31:44 -07:00
|
|
|
|
<Compile Include="LiveTv\RecordingQuery.cs" />
|
2013-11-25 19:53:48 -07:00
|
|
|
|
<Compile Include="LiveTv\RecordingStatus.cs" />
|
2013-12-14 18:17:57 -07:00
|
|
|
|
<Compile Include="LiveTv\SeriesTimerInfoDto.cs" />
|
2013-11-27 12:04:19 -07:00
|
|
|
|
<Compile Include="LiveTv\TimerInfoDto.cs" />
|
2014-01-20 09:09:53 -07:00
|
|
|
|
<Compile Include="Logging\NullLogger.cs" />
|
2014-01-18 14:52:01 -07:00
|
|
|
|
<Compile Include="News\NewsItem.cs" />
|
2014-02-21 11:48:15 -07:00
|
|
|
|
<Compile Include="Providers\ExternalIdInfo.cs" />
|
2013-11-05 08:38:59 -07:00
|
|
|
|
<Compile Include="Providers\ImageProviderInfo.cs" />
|
2013-10-30 14:33:27 -07:00
|
|
|
|
<Compile Include="Providers\RemoteImageInfo.cs" />
|
2013-05-04 11:18:40 -07:00
|
|
|
|
<Compile Include="Dto\StudioDto.cs" />
|
2013-07-12 12:56:40 -07:00
|
|
|
|
<Compile Include="Entities\CollectionType.cs" />
|
2013-04-24 17:58:56 -07:00
|
|
|
|
<Compile Include="Entities\ItemReview.cs" />
|
2013-06-27 09:36:41 -07:00
|
|
|
|
<Compile Include="Entities\MediaUrl.cs" />
|
2013-06-09 07:15:59 -07:00
|
|
|
|
<Compile Include="Entities\MetadataFields.cs" />
|
2013-10-02 10:23:10 -07:00
|
|
|
|
<Compile Include="Entities\UserDataSaveReason.cs" />
|
2013-06-25 11:10:39 -07:00
|
|
|
|
<Compile Include="Entities\Video3DFormat.cs" />
|
2013-10-02 08:32:11 -07:00
|
|
|
|
<Compile Include="Games\GameSystem.cs" />
|
2013-08-09 18:16:31 -07:00
|
|
|
|
<Compile Include="IO\IIsoManager.cs" />
|
|
|
|
|
<Compile Include="IO\IIsoMount.cs" />
|
|
|
|
|
<Compile Include="IO\IIsoMounter.cs" />
|
2013-10-02 08:32:11 -07:00
|
|
|
|
<Compile Include="LiveTv\ChannelType.cs" />
|
2013-09-26 08:48:14 -07:00
|
|
|
|
<Compile Include="LiveTv\LiveTvServiceInfo.cs" />
|
2013-11-25 13:39:23 -07:00
|
|
|
|
<Compile Include="LiveTv\RecordingInfoDto.cs" />
|
2013-03-25 21:33:47 -07:00
|
|
|
|
<Compile Include="Net\WebSocketMessage.cs" />
|
2013-03-25 20:01:47 -07:00
|
|
|
|
<Compile Include="Net\WebSocketMessageType.cs" />
|
|
|
|
|
<Compile Include="Net\WebSocketState.cs" />
|
2013-07-06 14:23:32 -07:00
|
|
|
|
<Compile Include="Notifications\Notification.cs" />
|
|
|
|
|
<Compile Include="Notifications\NotificationLevel.cs" />
|
|
|
|
|
<Compile Include="Notifications\NotificationQuery.cs" />
|
|
|
|
|
<Compile Include="Notifications\NotificationResult.cs" />
|
|
|
|
|
<Compile Include="Notifications\NotificationsSummary.cs" />
|
2013-10-31 14:03:24 -07:00
|
|
|
|
<Compile Include="Providers\RemoteImageResult.cs" />
|
2014-02-19 21:53:15 -07:00
|
|
|
|
<Compile Include="Providers\RemoteSearchResult.cs" />
|
2013-04-24 07:30:12 -07:00
|
|
|
|
<Compile Include="Querying\ArtistsQuery.cs" />
|
2013-11-22 08:33:14 -07:00
|
|
|
|
<Compile Include="Querying\EpisodeQuery.cs" />
|
2013-10-20 20:01:22 -07:00
|
|
|
|
<Compile Include="Querying\ItemCountsQuery.cs" />
|
2013-03-09 22:36:39 -07:00
|
|
|
|
<Compile Include="Querying\ItemsByNameQuery.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Entities\BaseItemInfo.cs" />
|
2013-06-16 18:48:55 -07:00
|
|
|
|
<Compile Include="Querying\NextUpQuery.cs" />
|
2013-11-25 13:39:23 -07:00
|
|
|
|
<Compile Include="Querying\QueryResult.cs" />
|
2013-09-19 13:03:14 -07:00
|
|
|
|
<Compile Include="Querying\SessionQuery.cs" />
|
2013-06-03 19:02:49 -07:00
|
|
|
|
<Compile Include="Querying\SimilarItemsQuery.cs" />
|
2013-07-09 09:11:16 -07:00
|
|
|
|
<Compile Include="Querying\UserQuery.cs" />
|
2014-01-07 13:12:39 -07:00
|
|
|
|
<Compile Include="Search\SearchQuery.cs" />
|
2013-05-09 15:43:11 -07:00
|
|
|
|
<Compile Include="Session\BrowseRequest.cs" />
|
2013-08-27 21:16:21 -07:00
|
|
|
|
<Compile Include="Session\MessageCommand.cs" />
|
2013-05-09 15:43:11 -07:00
|
|
|
|
<Compile Include="Session\PlayRequest.cs" />
|
2013-07-09 09:11:16 -07:00
|
|
|
|
<Compile Include="Session\PlaystateCommand.cs" />
|
2013-02-26 10:21:18 -07:00
|
|
|
|
<Compile Include="Logging\ILogManager.cs" />
|
2013-02-20 23:38:23 -07:00
|
|
|
|
<Compile Include="MediaInfo\BlurayDiscInfo.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Entities\ChapterInfo.cs" />
|
|
|
|
|
<Compile Include="Entities\LocationType.cs" />
|
|
|
|
|
<Compile Include="Entities\MBRegistrationRecord.cs" />
|
|
|
|
|
<Compile Include="Entities\MediaType.cs" />
|
|
|
|
|
<Compile Include="Entities\PersonType.cs" />
|
|
|
|
|
<Compile Include="Entities\PluginSecurityInfo.cs" />
|
|
|
|
|
<Compile Include="Globalization\CountryInfo.cs" />
|
|
|
|
|
<Compile Include="Globalization\CultureDto.cs" />
|
|
|
|
|
<Compile Include="IO\FileSystemEntryInfo.cs" />
|
2013-02-21 10:56:21 -07:00
|
|
|
|
<Compile Include="Dto\ImageOptions.cs" />
|
2013-03-09 22:36:39 -07:00
|
|
|
|
<Compile Include="Querying\ItemFilter.cs" />
|
|
|
|
|
<Compile Include="Querying\ItemQuery.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Entities\LibraryUpdateInfo.cs" />
|
|
|
|
|
<Compile Include="Entities\ParentalRating.cs" />
|
2013-02-21 10:56:21 -07:00
|
|
|
|
<Compile Include="Dto\StreamOptions.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Entities\VirtualFolderInfo.cs" />
|
|
|
|
|
<Compile Include="Extensions\ModelExtensions.cs" />
|
2013-02-20 22:00:56 -07:00
|
|
|
|
<Compile Include="IO\IZipClient.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Logging\ILogger.cs" />
|
|
|
|
|
<Compile Include="Logging\LogSeverity.cs" />
|
2013-02-20 23:38:23 -07:00
|
|
|
|
<Compile Include="MediaInfo\IBlurayExaminer.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Net\HttpException.cs" />
|
2013-02-23 10:54:51 -07:00
|
|
|
|
<Compile Include="Net\NetworkShare.cs" />
|
|
|
|
|
<Compile Include="Net\NetworkShareType.cs" />
|
2013-04-24 07:30:12 -07:00
|
|
|
|
<Compile Include="Querying\PersonsQuery.cs" />
|
2013-04-24 09:37:12 -07:00
|
|
|
|
<Compile Include="Querying\ThemeSongsResult.cs" />
|
2013-04-27 06:05:33 -07:00
|
|
|
|
<Compile Include="Search\SearchHint.cs" />
|
2013-04-26 12:20:53 -07:00
|
|
|
|
<Compile Include="Search\SearchHintResult.cs" />
|
2013-02-24 14:53:54 -07:00
|
|
|
|
<Compile Include="Serialization\IJsonSerializer.cs" />
|
|
|
|
|
<Compile Include="Serialization\IXmlSerializer.cs" />
|
2013-05-09 15:43:11 -07:00
|
|
|
|
<Compile Include="Session\SessionInfoDto.cs" />
|
2013-08-27 21:16:21 -07:00
|
|
|
|
<Compile Include="Session\SystemCommand.cs" />
|
2013-10-03 11:02:23 -07:00
|
|
|
|
<Compile Include="Session\UserDataChangeInfo.cs" />
|
2014-02-27 21:49:02 -07:00
|
|
|
|
<Compile Include="Themes\AppTheme.cs" />
|
|
|
|
|
<Compile Include="Themes\ThemeImage.cs" />
|
2013-02-21 21:23:06 -07:00
|
|
|
|
<Compile Include="Updates\CheckForUpdateResult.cs" />
|
2013-04-03 11:18:36 -07:00
|
|
|
|
<Compile Include="Updates\PackageTargetSystem.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Updates\InstallationInfo.cs" />
|
|
|
|
|
<Compile Include="Updates\PackageType.cs" />
|
|
|
|
|
<Compile Include="Updates\PackageVersionClass.cs" />
|
|
|
|
|
<Compile Include="Entities\RequestResult.cs" />
|
|
|
|
|
<Compile Include="Configuration\UserConfiguration.cs" />
|
|
|
|
|
<Compile Include="Drawing\DrawingUtils.cs" />
|
2013-02-21 10:56:21 -07:00
|
|
|
|
<Compile Include="Dto\UserItemDataDto.cs" />
|
2013-03-09 22:36:39 -07:00
|
|
|
|
<Compile Include="Querying\ItemFields.cs" />
|
|
|
|
|
<Compile Include="Querying\ItemSortBy.cs" />
|
2013-02-21 10:56:21 -07:00
|
|
|
|
<Compile Include="Dto\BaseItemDto.cs" />
|
|
|
|
|
<Compile Include="Dto\UserDto.cs" />
|
2013-03-09 22:36:39 -07:00
|
|
|
|
<Compile Include="Querying\ItemsResult.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Entities\DisplayPreferences.cs" />
|
|
|
|
|
<Compile Include="Entities\ImageType.cs" />
|
|
|
|
|
<Compile Include="Entities\IHasProviderIds.cs" />
|
|
|
|
|
<Compile Include="Entities\MetadataProviders.cs" />
|
|
|
|
|
<Compile Include="Entities\SeriesStatus.cs" />
|
|
|
|
|
<Compile Include="Entities\MediaStream.cs" />
|
|
|
|
|
<Compile Include="Entities\VideoType.cs" />
|
|
|
|
|
<Compile Include="Plugins\BasePluginConfiguration.cs" />
|
|
|
|
|
<Compile Include="Plugins\PluginInfo.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="System\SystemInfo.cs" />
|
|
|
|
|
<Compile Include="Tasks\SystemEvent.cs" />
|
|
|
|
|
<Compile Include="Tasks\TaskCompletionStatus.cs" />
|
|
|
|
|
<Compile Include="Tasks\TaskResult.cs" />
|
|
|
|
|
<Compile Include="Tasks\TaskInfo.cs" />
|
|
|
|
|
<Compile Include="Tasks\TaskState.cs" />
|
|
|
|
|
<Compile Include="Tasks\TaskTriggerInfo.cs" />
|
|
|
|
|
<Compile Include="Updates\PackageInfo.cs" />
|
|
|
|
|
<Compile Include="Updates\PackageVersionInfo.cs" />
|
2013-07-08 09:13:21 -07:00
|
|
|
|
<Compile Include="Users\AuthenticationResult.cs" />
|
2013-06-24 07:06:25 -07:00
|
|
|
|
<Compile Include="Weather\WeatherUnits.cs" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<Compile Include="Web\QueryStringDictionary.cs" />
|
2013-09-07 05:04:46 -07:00
|
|
|
|
<None Include="Fody.targets" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<None Include="FodyWeavers.xml" />
|
2013-09-07 05:04:46 -07:00
|
|
|
|
<None Include="packages.config" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2013-07-27 06:45:46 -07:00
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Runtime.Serialization" />
|
2013-09-24 14:06:21 -07:00
|
|
|
|
<Reference Include="PropertyChanged">
|
|
|
|
|
<HintPath>..\packages\PropertyChanged.Fody.1.41.0.0\Lib\NET35\PropertyChanged.dll</HintPath>
|
|
|
|
|
<Private>False</Private>
|
|
|
|
|
</Reference>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</ItemGroup>
|
2013-07-27 06:45:46 -07:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<PropertyGroup>
|
2013-12-11 12:54:33 -07:00
|
|
|
|
<PostBuildEvent Condition=" '$(ConfigurationName)' != 'Release Mono' ">if '$(ConfigurationName)' == 'Release' (
|
2013-07-28 01:45:44 -07:00
|
|
|
|
xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\net45\" /y /d /r /i
|
2013-02-27 13:46:49 -07:00
|
|
|
|
)</PostBuildEvent>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
</PropertyGroup>
|
2013-12-25 12:26:49 -07:00
|
|
|
|
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition=" '$(ConfigurationName)' != 'Release Mono' " />
|
2013-09-07 05:04:46 -07:00
|
|
|
|
<Import Project="Fody.targets" />
|
2013-02-20 18:33:05 -07:00
|
|
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
|
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
|
|
|
<Target Name="BeforeBuild">
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="AfterBuild">
|
|
|
|
|
</Target>
|
|
|
|
|
-->
|
2012-07-11 23:55:27 -07:00
|
|
|
|
</Project>
|