Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
adlez27 committed Apr 23, 2023
1 parent c2e2ecb commit 5edebaa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CyriljiPhonemizer/CyriljiPhonemizer.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
Expand All @@ -12,7 +12,7 @@
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy &quot;$(TargetDir)$(TargetName).dll&quot; &quot;$(SolutionDir)OpenUtau\bin\Debug\net6.0-windows\Plugins\$(TargetName).dll&quot;" />
<Exec Command="copy &quot;$(TargetDir)$(TargetName).dll&quot; &quot;$(SolutionDir)OpenUtau\bin\Debug\net6.0-windows\win-x64\Plugins\$(TargetName).dll&quot;" />
</Target>

</Project>
1 change: 0 additions & 1 deletion OpenUtau.Test/Plugins/PhonemizerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,4 @@ public class JapaneseCVVCPhonemizerTest : PhonemizerTest<JapaneseCVVCPhonemizer>
public class JapaneseVCVPhonemizerTest : PhonemizerTest<JapaneseVCVPhonemizer> { }
public class KoreanCVCPhonemizerTest : PhonemizerTest<KoreanCVCPhonemizer> { }
public class KoreanCVVCStandardPronunciationPhonemizerTest : PhonemizerTest<KoreanCVVCStandardPronunciationPhonemizer> { }
public class JapaneseCyrillicPhonemizerTest : PhonemizerTest<JapaneseCyrillicPhonemizer> { }
}
6 changes: 3 additions & 3 deletions SHOPhonemizer/SHOPhonemizer.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0-windows</TargetFramework>
<TargetFramework>net6.0-windows</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand All @@ -10,7 +10,7 @@
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy &quot;$(TargetDir)$(TargetName).dll&quot; &quot;$(SolutionDir)OpenUtau\bin\Debug\net6.0-windows\Plugins\$(TargetName).dll&quot;" />
<Exec Command="copy &quot;$(TargetDir)$(TargetName).dll&quot; &quot;$(SolutionDir)OpenUtau\bin\Debug\net6.0-windows\win-x64\Plugins\$(TargetName).dll&quot;" />
</Target>

</Project>
2 changes: 1 addition & 1 deletion TetoEnglishPhonemizer/TetoEnPhonemizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy &quot;$(TargetDir)$(TargetName).dll&quot; &quot;$(SolutionDir)OpenUtau\bin\Debug\net6.0-windows\Plugins\$(TargetName).dll&quot;" />
<Exec Command="copy &quot;$(TargetDir)$(TargetName).dll&quot; &quot;$(SolutionDir)OpenUtau\bin\Debug\net6.0-windows\win-x64\Plugins\$(TargetName).dll&quot;" />
</Target>

</Project>

0 comments on commit 5edebaa

Please sign in to comment.