1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net35</TargetFramework>
- <AssemblyName>GoogleTranslateLegitimate</AssemblyName>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\XUnity.AutoTranslator.Plugin.Core\Endpoints\Http\GoogleTranslateLegitimateEndpoint.cs" Link="GoogleTranslateLegitimateEndpoint.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>
|