Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@

<ItemGroup>
<None Update="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
<None Update="app.config" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

<!-- Copy app.config with correct name for .NET Framework test runner -->
<Target Name="CopyAppConfigForNet472" AfterTargets="Build" Condition="'$(TargetFramework)' == 'net472'">
<Copy SourceFiles="app.config" DestinationFiles="$(OutputPath)$(AssemblyName).dll.config" SkipUnchangedFiles="true" />
</Target>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@

<ItemGroup>
<None Update="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
<None Update="app.config" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

<!-- Copy app.config with correct name for .NET Framework test runner -->
<Target Name="CopyAppConfigForNet472" AfterTargets="Build" Condition="'$(TargetFramework)' == 'net472'">
<Copy SourceFiles="app.config" DestinationFiles="$(OutputPath)$(AssemblyName).dll.config" SkipUnchangedFiles="true" />
</Target>

</Project>
Loading