I get this error when i try to build the app. I think somehow i need to do a .net restore but i dont know if it will work.. And i want to make it via code. The .csproj:
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Microsoft.Build.CentralPackageVersions" Version="2.0.36" />
<Import Project="..\..\..\..\MSBuild\root_configuration.props" />
<PropertyGroup>
<TargetFrameworks>net472</TargetFrameworks>
<OutputPath>$(NUnitTestBinDir)\NunitTSAdapter</OutputPath>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NUnit3TestAdapter" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NUnitTestAdapter\NUnitTestAdapter.csproj" />
<ProjectReference Include="..\NunitTSFeature\NunitTSFeature.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="WindowsBase" />
</ItemGroup>
</Project>