GoogleTranslate.csproj 680 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net35</TargetFramework>
  4. </PropertyGroup>
  5. <ItemGroup>
  6. <ProjectReference Include="..\..\XUnity.AutoTranslator.Plugin.Core\XUnity.AutoTranslator.Plugin.Core.csproj" />
  7. </ItemGroup>
  8. <ItemGroup>
  9. <Reference Include="UnityEngine">
  10. <HintPath>..\..\..\libs\UnityEngine.dll</HintPath>
  11. </Reference>
  12. </ItemGroup>
  13. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  14. <Exec Command="if $(ConfigurationName) == Release (&#xD;&#xA; XCOPY /Y /I &quot;$(TargetDir)$(TargetName)$(TargetExt)&quot; &quot;$(SolutionDir)dist\Translators\&quot;&#xD;&#xA;)" />
  15. </Target>
  16. </Project>