2023-05-06 12:24:28 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-24 13:10:13 +01:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-05-27 20:44:58 +01:00
|
|
|
<TargetFrameworks>net7.0;net6.0;net5.0</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>
|
2023-03-05 14:21:03 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
|
2023-03-05 14:26:35 +00:00
|
|
|
<PackageReference Include="Moq" Version="4.18.4" />
|
2022-05-19 05:05:16 +01:00
|
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
2023-05-06 12:24:28 +01:00
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
|
2023-04-11 19:54:10 +01:00
|
|
|
<PackageReference Include="NUnit.Console" Version="3.16.3" />
|
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>
|