Skip to content

Commit

Permalink
Experiment: Rename adapter assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Dec 18, 2023
1 parent 0e604e4 commit 3423937
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<!--
<None Include="$(MSBuildThisFileDirectory)xunit.runner.visualstudio.testadapter.dll">
<Link>xunit.runner.visualstudio.testadapter.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand All @@ -22,7 +21,6 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</None>
-->
<ProjectCapability Include="TestContainer" />
</ItemGroup>
</Project>
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<!--
<None Include="$(MSBuildThisFileDirectory)xunit.runner.visualstudio.dotnetcore.testadapter.dll">
<Link>xunit.runner.visualstudio.dotnetcore.testadapter.dll</Link>
<None Include="$(MSBuildThisFileDirectory)xunit.runner.visualstudio.testadapter.dll">
<Link>xunit.runner.visualstudio.testadapter.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</None>
Expand All @@ -17,7 +16,6 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>False</Visible>
</None>
-->
<ProjectCapability Include="TestContainer" />
</ItemGroup>
</Project>
Expand Up @@ -2,8 +2,7 @@

<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName Condition=" '$(TargetFramework)' == 'net462' ">xunit.runner.visualstudio.testadapter</AssemblyName>
<AssemblyName Condition=" '$(TargetFramework)' == 'net6.0' ">xunit.runner.visualstudio.dotnetcore.testadapter</AssemblyName>
<AssemblyName>xunit.runner.visualstudio.testadapter</AssemblyName>
<AssemblyTitle>xUnit.net Runner for Visual Studio ($(TargetFramework))</AssemblyTitle>
<CopyLocalLockFileAssemblies Condition=" '$(TargetFramework)' == 'net6.0' ">true</CopyLocalLockFileAssemblies>
<NoWarn>$(NoWarn);CS0436</NoWarn>
Expand Down

0 comments on commit 3423937

Please sign in to comment.