apieceoffruit

Software: Build Template

Dec 11th, 2021 (edited)
1,099
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2.     <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets"/>
  3.     <ItemGroup>
  4.         <Compile Include="**\*.cs" />
  5.     </ItemGroup>
  6.     <ItemGroup>
  7.         <StuffForUnity Include="$(OutDir)\*.dll" Exclude="$(OutDir)\UnityEngine.dll"/>
  8.     </ItemGroup>
  9.      <Target Name="AfterBuild">
  10.          <Copy SourceFiles="@(StuffForUnity)" DestinationFolder="$(MSBuildStartupDirectory)\SendToUnity" />
  11.     </Target>
  12. </Project>
Add Comment
Please, Sign In to add comment