IF.Lastfm/IF.Lastfm.Core/IF.Lastfm.Core.csproj

134 lines
7.0 KiB
XML
Raw Normal View History

2013-06-08 18:49:21 +01: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>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C4B8883C-757A-4952-81D0-34221BAABB67}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>IF.Lastfm.Core</RootNamespace>
<AssemblyName>IF.Lastfm.Core</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Profile104</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
2013-06-08 18:49:21 +01: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>
</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>
</PropertyGroup>
<ItemGroup>
<!-- A reference to the entire .NET Framework is automatically included -->
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="Api\AlbumApi.cs" />
2013-07-01 23:18:06 +01:00
<Compile Include="Api\ArtistApi.cs" />
<Compile Include="Api\Commands\AlbumApi\GetAlbumInfoCommand.cs" />
<Compile Include="Api\Commands\AlbumApi\GetAlbumShoutsCommand.cs" />
2013-07-01 23:18:06 +01:00
<Compile Include="Api\Commands\ArtistApi\GetArtistInfoCommand.cs" />
2013-07-24 07:59:07 +01:00
<Compile Include="Api\Commands\ArtistApi\GetArtistShoutsCommand.cs" />
2013-06-23 20:10:57 +01:00
<Compile Include="Api\Commands\GetAsyncCommandBase.cs" />
<Compile Include="Api\Commands\PostAsyncCommandBase.cs" />
<Compile Include="Api\Commands\TrackApi\GetTrackInfoCommand.cs" />
<Compile Include="Api\Commands\TrackApi\GetTrackShoutsCommand.cs" />
<Compile Include="Api\Commands\TrackApi\LoveTrackCommand.cs" />
<Compile Include="Api\Commands\TrackApi\UnloveTrackCommand.cs" />
2013-06-23 20:10:57 +01:00
<Compile Include="Api\Commands\UserApi\GetRecentScrobblesCommand.cs" />
<Compile Include="Api\Commands\UserApi\GetRecentStationsCommand.cs" />
2013-06-23 20:10:57 +01:00
<Compile Include="Api\Commands\UserApi\GetTopAlbumsCommand.cs" />
<Compile Include="Api\Commands\UserApi\GetUserInfoCommand.cs" />
<Compile Include="Api\Commands\UserApi\GetUserShoutsCommand.cs" />
2013-06-13 17:27:51 +01:00
<Compile Include="Api\Helpers\ApiExtensions.cs" />
<Compile Include="Api\Helpers\ApiNameAttribute.cs" />
2013-06-08 20:43:52 +01:00
<Compile Include="Api\Auth.cs" />
2013-07-23 22:46:29 +01:00
<Compile Include="Api\Commands\IAsyncCommand.cs" />
<Compile Include="Api\Helpers\LastResponse.cs" />
<Compile Include="Api\Helpers\PageResponse.cs" />
<Compile Include="Api\IAlbumApi.cs" />
2013-06-14 13:25:02 +01:00
<Compile Include="Api\IArtistApi.cs" />
<Compile Include="Api\ITrackApi.cs" />
2013-06-13 17:27:51 +01:00
<Compile Include="Api\IUserApi.cs" />
<Compile Include="Api\Enums\LastStatsTimeSpan.cs" />
<Compile Include="Api\Helpers\LastResponse{T}.cs" />
<Compile Include="Api\Scrobble.cs" />
<Compile Include="Api\TrackApi.cs" />
<Compile Include="Objects\User.cs" />
<Compile Include="Api\UserApi.cs" />
2013-06-08 20:43:52 +01:00
<Compile Include="Json\LastFmBooleanConverter.cs" />
<Compile Include="Api\IAuth.cs" />
2013-06-08 18:49:21 +01:00
<Compile Include="ILastFm.cs" />
<Compile Include="LastFm.cs" />
<Compile Include="Api\Enums\LastFmApiError.cs" />
<Compile Include="Objects\Album.cs" />
2013-06-14 13:25:02 +01:00
<Compile Include="Objects\Artist.cs" />
<Compile Include="Objects\BuyLink.cs" />
<Compile Include="Objects\CountryCode.cs" />
<Compile Include="Objects\ILastFmObject.cs" />
<Compile Include="Objects\LastImageCollection.cs" />
<Compile Include="Objects\Shout.cs" />
2013-06-15 17:02:11 +01:00
<Compile Include="Objects\Station.cs" />
<Compile Include="Objects\Tag.cs" />
<Compile Include="Objects\Track.cs" />
2013-06-08 18:49:21 +01:00
<Compile Include="Properties\AssemblyInfo.cs" />
2013-06-08 20:43:52 +01:00
<Compile Include="Objects\UserSession.cs" />
2013-06-08 18:49:21 +01:00
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.Threading.Tasks">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.16\lib\portable-net40+sl4+win8+wp71\Microsoft.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks.Extensions">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.16\lib\portable-net40+sl4+win8+wp71\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.5.0.6\lib\portable-net40+sl4+wp7+win8\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http">
<HintPath>..\packages\Microsoft.Net.Http.2.1.10\lib\portable-net40+sl4+win8+wp71\System.Net.Http.dll</HintPath>
2013-06-08 18:49:21 +01:00
</Reference>
<Reference Include="System.Net.Http.Extensions">
<HintPath>..\packages\Microsoft.Net.Http.2.1.10\lib\portable-net40+sl4+win8+wp71\System.Net.Http.Extensions.dll</HintPath>
2013-06-08 18:49:21 +01:00
</Reference>
<Reference Include="System.Net.Http.Primitives">
<HintPath>..\packages\Microsoft.Net.Http.2.1.10\lib\portable-net40+sl4+win8+wp71\System.Net.Http.Primitives.dll</HintPath>
<Private>True</Private>
2013-06-08 18:49:21 +01:00
</Reference>
<Reference Include="System.Runtime">
<HintPath>..\packages\Microsoft.Bcl.1.0.19\lib\portable-net40+sl4+win8+wp71\System.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks">
<HintPath>..\packages\Microsoft.Bcl.1.0.19\lib\portable-net40+sl4+win8+wp71\System.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="xBrainLab.Security.Cryptography">
<HintPath>..\lib\xBrainLab.Security.Cryptography.dll</HintPath>
</Reference>
</ItemGroup>
2013-07-07 16:16:54 +01:00
<ItemGroup />
2013-06-08 18:49:21 +01:00
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
2013-06-08 18:49:21 +01:00
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.7\tools\Microsoft.Bcl.Build.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>