12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net35</TargetFramework>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\XUnity.AutoTranslator.Plugin.Core\Endpoints\Www\WatsonTranslateEndpoint.cs" Link="WatsonTranslateEndpoint.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\XUnity.AutoTranslator.Plugin.Core\XUnity.AutoTranslator.Plugin.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="ExIni">
- <HintPath>..\..\..\libs\ExIni.dll</HintPath>
- </Reference>
- <Reference Include="UnityEngine">
- <HintPath>..\..\..\libs\UnityEngine.dll</HintPath>
- </Reference>
- </ItemGroup>
- <Target Name="PostBuild" AfterTargets="PostBuildEvent">
- <Exec Command="if $(ConfigurationName) == Release (
 XCOPY /Y /I "$(TargetDir)$(TargetName)$(TargetExt)" "$(SolutionDir)dist\Translators\"
)" />
- </Target>
- </Project>
|