Add core tests project to sln + upgrade deps

This commit is contained in:
Rikki 2020-06-28 02:14:54 +01:00
parent 5ccdd7de95
commit c764337b1a
2 changed files with 11 additions and 17 deletions

View File

@ -7,6 +7,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{91BAA1F1-AA7
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IF.Lastfm.Core", "src\IF.Lastfm.Core\IF.Lastfm.Core.csproj", "{BFD08349-6DE7-49D1-8C94-CD79BDB138BC}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IF.Lastfm.Core", "src\IF.Lastfm.Core\IF.Lastfm.Core.csproj", "{BFD08349-6DE7-49D1-8C94-CD79BDB138BC}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IF.Lastfm.Core.Tests", "src\IF.Lastfm.Core.Tests\IF.Lastfm.Core.Tests.csproj", "{7CAA2717-2CFA-48AD-B29A-BDD2E1E393CC}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -20,8 +22,13 @@ Global
{BFD08349-6DE7-49D1-8C94-CD79BDB138BC}.Debug|Any CPU.Build.0 = Debug|Any CPU {BFD08349-6DE7-49D1-8C94-CD79BDB138BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BFD08349-6DE7-49D1-8C94-CD79BDB138BC}.Release|Any CPU.ActiveCfg = Release|Any CPU {BFD08349-6DE7-49D1-8C94-CD79BDB138BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BFD08349-6DE7-49D1-8C94-CD79BDB138BC}.Release|Any CPU.Build.0 = Release|Any CPU {BFD08349-6DE7-49D1-8C94-CD79BDB138BC}.Release|Any CPU.Build.0 = Release|Any CPU
{7CAA2717-2CFA-48AD-B29A-BDD2E1E393CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7CAA2717-2CFA-48AD-B29A-BDD2E1E393CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7CAA2717-2CFA-48AD-B29A-BDD2E1E393CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7CAA2717-2CFA-48AD-B29A-BDD2E1E393CC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(NestedProjects) = preSolution GlobalSection(NestedProjects) = preSolution
{BFD08349-6DE7-49D1-8C94-CD79BDB138BC} = {91BAA1F1-AA7B-4C1B-9AB9-300B74216920} {BFD08349-6DE7-49D1-8C94-CD79BDB138BC} = {91BAA1F1-AA7B-4C1B-9AB9-300B74216920}
{7CAA2717-2CFA-48AD-B29A-BDD2E1E393CC} = {91BAA1F1-AA7B-4C1B-9AB9-300B74216920}
EndGlobalSection EndGlobalSection
EndGlobal EndGlobal

View File

@ -1,17 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
<IsTestProject>true</IsTestProject> <IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="moq" Version="4.10.0" /> <PackageReference Include="moq" Version="4.10.0" />
<PackageReference Include="nunit" Version="3.10.1" /> <PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" /> <PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Appveyor.Testlogger" Version="2.0.0" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@ -27,16 +26,4 @@
<EmbeddedResource Include="Resources\**\*.json" /> <EmbeddedResource Include="Resources\**\*.json" />
<EmbeddedResource Include="Resources\TrackApi\*.txt" /> <EmbeddedResource Include="Resources\TrackApi\*.txt" />
</ItemGroup> </ItemGroup>
<!--
<ItemGroup>
<Reference Include="Moq, Version=4.2.1502.911, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>../../packages/Moq.4.2.1502.0911/lib/net40/Moq.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>../../packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll</HintPath>
</Reference>
</ItemGroup>
-->
</Project> </Project>