fix caching Localization assembly (#3263)

This commit is contained in:
samuraiGH 2025-04-07 08:35:22 +03:00 committed by GitHub
parent 771ea7b445
commit 0353abf57c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,7 +19,11 @@
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<Target Name="MakeLangResFile" BeforeTargets="BeforeBuild">
<ItemGroup>
<LangFiles Include="..\bin\Lng\Rus\**\*" />
</ItemGroup>
<Target Name="MakeLangResFile" BeforeTargets="BeforeBuild" Inputs="@(LangFiles)" Outputs="DefaultLang.resources">
<Exec
Command="cd ..\Utils\DefaultLanguageResMaker &amp; LanguageResMaker.exe"
Condition="$(OS) == 'Windows_NT'" />