mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Fix fpcalc tests
This commit is contained in:
parent
ee31ff1e89
commit
d163b124a7
1 changed files with 2 additions and 2 deletions
|
@ -2,10 +2,10 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<RuntimeFiles Include="..\Runtimes\$(RuntimeIdentifier)\*" />
|
<RuntimeFiles Include="..\Runtimes\$(RuntimeIdentifier)\*" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Target Name="CopyRuntimeFilesOnBuild" AfterTargets="AfterBuild">
|
<Target Name="CopyRuntimeFilesOnBuild" AfterTargets="AfterBuild" Condition="!$(RuntimeIdentifier.StartsWith('linux')) or '$(TargetFramework)' == 'netcoreapp3.1'">
|
||||||
<Copy SourceFiles="@(RuntimeFiles)" DestinationFolder="$(OutDir)" />
|
<Copy SourceFiles="@(RuntimeFiles)" DestinationFolder="$(OutDir)" />
|
||||||
</Target>
|
</Target>
|
||||||
<Target Name="CopyRuntimeFilesOnPublish" AfterTargets="Publish">
|
<Target Name="CopyRuntimeFilesOnPublish" AfterTargets="Publish" Condition="!$(RuntimeIdentifier.StartsWith('linux')) or '$(TargetFramework)' == 'netcoreapp3.1'">
|
||||||
<Copy SourceFiles="@(RuntimeFiles)" DestinationFolder="$(PublishDir)" />
|
<Copy SourceFiles="@(RuntimeFiles)" DestinationFolder="$(PublishDir)" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue