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>
|
2022-08-16 17:28:41 +01:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
|
2022-08-16 17:29:20 +01:00
|
|
|
|
<PackageReference Include="Moq" Version="4.18.2" />
|
2022-05-19 05:05:16 +01:00
|
|
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
2022-01-25 19:32:48 +00:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
|
2022-08-16 17:29:05 +01:00
|
|
|
|
<PackageReference Include="NUnit.Console" Version="3.15.2" />
|
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>
|