Skip to content

Commit

Permalink
Reverting ms test adapter changes
Browse files Browse the repository at this point in the history
MSTest is failing to tests in the framework unit test assembly. Reverting the mstest version
  • Loading branch information
jwenclcsv committed Oct 10, 2022
1 parent bcf79ce commit a09da50
Showing 1 changed file with 31 additions and 35 deletions.
66 changes: 31 additions & 35 deletions Framework/FrameworkUnitTests/FrameworkUnitTests.csproj
Original file line number Diff line number Diff line change
@@ -1,38 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net471;netcoreapp3.1</TargetFrameworks>
<ProjectGuid>{D3E59B9F-445E-4484-9B2F-B3FE3ED82CE5}</ProjectGuid>
<IsPackable>false</IsPackable>
<SonarQubeTestProject>false</SonarQubeTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="Moq" Version="4.18.2" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BaseDatabaseTest\BaseDatabaseTest.csproj" />
<ProjectReference Include="..\BaseEmailTest\BaseEmailTest.csproj" />
<ProjectReference Include="..\BaseMongoTest\BaseMongoTest.csproj" />
<ProjectReference Include="..\BasePlaywrightTest\BasePlaywrightTest.csproj" />
<ProjectReference Include="..\BaseSeleniumTest\BaseSeleniumTest.csproj" />
<ProjectReference Include="..\BaseTest\BaseTest.csproj" />
<ProjectReference Include="..\BaseWebServiceTest\BaseWebServiceTest.csproj" />
<ProjectReference Include="..\Utilities\Utilities.csproj" />
</ItemGroup>

<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<PropertyGroup>
<TargetFrameworks>net471;netcoreapp3.1</TargetFrameworks>
<ProjectGuid>{D3E59B9F-445E-4484-9B2F-B3FE3ED82CE5}</ProjectGuid>
<IsPackable>false</IsPackable>
<SonarQubeTestProject>false</SonarQubeTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="Moq" Version="4.18.2" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BaseDatabaseTest\BaseDatabaseTest.csproj" />
<ProjectReference Include="..\BaseEmailTest\BaseEmailTest.csproj" />
<ProjectReference Include="..\BaseMongoTest\BaseMongoTest.csproj" />
<ProjectReference Include="..\BasePlaywrightTest\BasePlaywrightTest.csproj" />
<ProjectReference Include="..\BaseSeleniumTest\BaseSeleniumTest.csproj" />
<ProjectReference Include="..\BaseTest\BaseTest.csproj" />
<ProjectReference Include="..\BaseWebServiceTest\BaseWebServiceTest.csproj" />
<ProjectReference Include="..\Utilities\Utilities.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>

0 comments on commit a09da50

Please sign in to comment.