2018-12-22 20:12:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-24 13:10:13 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-11-13 13:43:00 +00:00
|
|
|
|
<TargetFrameworks>net5.0;netcoreapp3.1;netcoreapp2.2</TargetFrameworks>
|
2021-05-01 16:11:24 +01:00
|
|
|
|
<LangVersion>9.0</LangVersion>
|
2018-08-24 13:10:13 +01:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-06-04 20:48:55 +01:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
|
2021-03-03 08:37:18 +00:00
|
|
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
2021-05-09 17:32:41 +01:00
|
|
|
|
<PackageReference Include="NUnit" Version="3.13.2" />
|
2020-07-14 09:10:32 +01:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
|
2021-01-18 22:31:37 +00:00
|
|
|
|
<PackageReference Include="NUnit.Console" Version="3.12.0" />
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SpotifyAPI.Web\SpotifyAPI.Web.csproj" />
|
2020-05-15 19:06:24 +01:00
|
|
|
|
<ProjectReference Include="..\SpotifyAPI.Web.Auth\SpotifyAPI.Web.Auth.csproj" />
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-05-01 16:11:24 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Fixtures\*.*">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-08-24 13:10:13 +01:00
|
|
|
|
</Project>
|