2017-09-04 02:20:56 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="14.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>{5370BFF7-1BD7-46BC-AF06-7D9EA5CDA1D6}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2017-09-06 03:38:05 +00:00
|
|
|
|
<RootNamespace>Lidarr.Http</RootNamespace>
|
|
|
|
|
<AssemblyName>Lidarr.Http</AssemblyName>
|
2019-05-11 02:48:12 +00:00
|
|
|
|
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
2017-09-04 02:20:56 +00:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
2017-09-21 02:05:00 +00:00
|
|
|
|
<TargetFrameworkProfile />
|
2017-09-04 02:20:56 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<OutputPath>bin\x86\Debug\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2017-09-21 02:05:00 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2017-09-04 02:20:56 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
|
|
|
<OutputPath>bin\x86\Release\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2017-09-21 02:05:00 +00:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2017-09-04 02:20:56 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Data.SQLite">
|
|
|
|
|
<HintPath>..\Libraries\Sqlite\System.Data.SQLite.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2018-06-02 01:59:54 +00:00
|
|
|
|
<Compile Include="ClientSchema\FieldMapping.cs" />
|
2017-09-04 02:20:56 +00:00
|
|
|
|
<Compile Include="Exceptions\ApiException.cs" />
|
|
|
|
|
<Compile Include="Authentication\AuthenticationModule.cs" />
|
|
|
|
|
<Compile Include="Authentication\AuthenticationService.cs" />
|
|
|
|
|
<Compile Include="Authentication\EnableAuthInNancy.cs" />
|
|
|
|
|
<Compile Include="Authentication\LoginResource.cs" />
|
|
|
|
|
<Compile Include="Authentication\NzbDroneUser.cs" />
|
|
|
|
|
<Compile Include="ClientSchema\Field.cs" />
|
|
|
|
|
<Compile Include="ClientSchema\SchemaBuilder.cs" />
|
|
|
|
|
<Compile Include="ClientSchema\SelectOption.cs" />
|
|
|
|
|
<Compile Include="ErrorManagement\ErrorHandler.cs" />
|
|
|
|
|
<Compile Include="ErrorManagement\ErrorModel.cs" />
|
2017-09-27 02:06:05 +00:00
|
|
|
|
<Compile Include="ErrorManagement\LidarrErrorPipeline.cs" />
|
2017-09-04 02:20:56 +00:00
|
|
|
|
<Compile Include="Exceptions\InvalidApiKeyException.cs" />
|
|
|
|
|
<Compile Include="Extensions\AccessControlHeaders.cs" />
|
|
|
|
|
<Compile Include="Extensions\NancyJsonSerializer.cs" />
|
|
|
|
|
<Compile Include="Extensions\Pipelines\CacheHeaderPipeline.cs" />
|
|
|
|
|
<Compile Include="Extensions\Pipelines\CorsPipeline.cs" />
|
|
|
|
|
<Compile Include="Extensions\Pipelines\GZipPipeline.cs" />
|
|
|
|
|
<Compile Include="Extensions\Pipelines\IfModifiedPipeline.cs" />
|
|
|
|
|
<Compile Include="Extensions\Pipelines\IRegisterNancyPipeline.cs" />
|
|
|
|
|
<Compile Include="Extensions\Pipelines\RequestLoggingPipeline.cs" />
|
2017-09-27 02:06:05 +00:00
|
|
|
|
<Compile Include="Extensions\Pipelines\LidarrVersionPipeline.cs" />
|
2018-04-27 01:15:48 +00:00
|
|
|
|
<Compile Include="Extensions\Pipelines\UrlBasePipeline.cs" />
|
2017-09-04 02:20:56 +00:00
|
|
|
|
<Compile Include="Extensions\ReqResExtensions.cs" />
|
|
|
|
|
<Compile Include="Extensions\RequestExtensions.cs" />
|
|
|
|
|
<Compile Include="Frontend\CacheableSpecification.cs" />
|
2018-04-28 03:29:25 +00:00
|
|
|
|
<Compile Include="Frontend\InitializeJsModule.cs" />
|
2017-09-04 02:20:56 +00:00
|
|
|
|
<Compile Include="Frontend\Mappers\BackupFileMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\CacheBreakerProvider.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\FaviconMapper.cs" />
|
2018-04-27 01:15:48 +00:00
|
|
|
|
<Compile Include="Frontend\Mappers\HtmlMapperBase.cs" />
|
2017-09-04 02:20:56 +00:00
|
|
|
|
<Compile Include="Frontend\Mappers\IMapHttpRequestsToDisk.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\IndexHtmlMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\LogFileMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\LoginHtmlMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\BrowserConfig.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\MediaCoverMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\RobotsTxtMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\ManifestMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\StaticResourceMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\StaticResourceMapperBase.cs" />
|
|
|
|
|
<Compile Include="Frontend\Mappers\UpdateLogFileMapper.cs" />
|
|
|
|
|
<Compile Include="Frontend\StaticResourceModule.cs" />
|
|
|
|
|
<Compile Include="Mapping\MappingValidation.cs" />
|
|
|
|
|
<Compile Include="Mapping\ResourceMappingException.cs" />
|
|
|
|
|
<Compile Include="PagingResource.cs" />
|
2018-03-15 01:28:46 +00:00
|
|
|
|
<Compile Include="PagingResourceFilter.cs" />
|
2017-09-04 02:20:56 +00:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="ResourceChangeMessage.cs" />
|
|
|
|
|
<Compile Include="REST\BadRequestException.cs" />
|
|
|
|
|
<Compile Include="REST\MethodNotAllowedException.cs" />
|
|
|
|
|
<Compile Include="REST\NotFoundException.cs" />
|
|
|
|
|
<Compile Include="REST\ResourceValidator.cs" />
|
|
|
|
|
<Compile Include="REST\RestModule.cs" />
|
|
|
|
|
<Compile Include="REST\RestResource.cs" />
|
|
|
|
|
<Compile Include="LidarrBootstrapper.cs" />
|
|
|
|
|
<Compile Include="LidarrRestModule.cs" />
|
|
|
|
|
<Compile Include="LidarrRestModuleWithSignalR.cs" />
|
2018-01-14 22:11:37 +00:00
|
|
|
|
<Compile Include="REST\UnsupportedMediaTypeException.cs" />
|
2017-09-04 02:20:56 +00:00
|
|
|
|
<Compile Include="TinyIoCNancyBootstrapper.cs" />
|
|
|
|
|
<Compile Include="Validation\EmptyCollectionValidator.cs" />
|
|
|
|
|
<Compile Include="Validation\RssSyncIntervalValidator.cs" />
|
|
|
|
|
<Compile Include="Validation\RuleBuilderExtensions.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Marr.Data\Marr.Data.csproj">
|
|
|
|
|
<Project>{F6FC6BE7-0847-4817-A1ED-223DC647C3D7}</Project>
|
|
|
|
|
<Name>Marr.Data</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\NzbDrone.Common\NzbDrone.Common.csproj">
|
|
|
|
|
<Project>{F2BE0FDF-6E47-4827-A420-DD4EF82407F8}</Project>
|
|
|
|
|
<Name>NzbDrone.Common</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\NzbDrone.Core\NzbDrone.Core.csproj">
|
|
|
|
|
<Project>{FF5EE3B6-913B-47CE-9CEB-11C51B4E1205}</Project>
|
|
|
|
|
<Name>NzbDrone.Core</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\NzbDrone.SignalR\NzbDrone.SignalR.csproj">
|
|
|
|
|
<Project>{7C2CC69F-5CA0-4E5C-85CB-983F9F6C3B36}</Project>
|
|
|
|
|
<Name>NzbDrone.SignalR</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="app.config" />
|
2019-06-09 19:48:24 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="FluentValidation">
|
|
|
|
|
<Version>6.2.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Nancy">
|
|
|
|
|
<Version>1.4.4</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Nancy.Authentication.Basic">
|
|
|
|
|
<Version>1.4.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Nancy.Authentication.Forms">
|
|
|
|
|
<Version>1.4.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json">
|
2019-07-28 12:25:45 +00:00
|
|
|
|
<Version>12.0.2</Version>
|
2019-06-09 19:48:24 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="NLog">
|
|
|
|
|
<Version>4.5.4</Version>
|
|
|
|
|
</PackageReference>
|
2017-09-04 02:20:56 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<!-- 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>
|
|
|
|
|
-->
|
|
|
|
|
</Project>
|