2018-12-22 20:12:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-24 13:10:13 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-11-10 19:12:12 +00:00
|
|
|
|
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1</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-11-10 17:55:57 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.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" />
|
2021-11-23 20:36:39 +00:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.1.0" />
|
2021-12-20 18:27:03 +00:00
|
|
|
|
<PackageReference Include="NUnit.Console" Version="3.13.0" />
|
2021-12-24 20:59:31 +00:00
|
|
|
|
<PackageReference Include="System.IO" Version="4.3.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>
|