You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
692 B

2 years ago
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.0</TargetFramework>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <ProjectReference Include="..\FNA\FNA.Core.csproj">
  8. <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
  9. </ProjectReference>
  10. </ItemGroup>
  11. <Target Name="CopyDLLs" AfterTargets="Build">
  12. <CreateItem Include="fnalibs\x64\*.dll">
  13. <Output TaskParameter="Include" ItemName="DLLs"/>
  14. </CreateItem>
  15. <Message Text="@(DLLs) -> $(TargetDir)" Importance="High"/>
  16. <Copy SourceFiles="@(DLLs)" DestinationFolder="$(TargetDir)" SkipUnchangedFiles="true"/>
  17. </Target>
  18. </Project>