2015-05-14 22:35:07 +03:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2015-05-14 22:35:07 +03:00
|
|
|
|
<PropertyGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<TargetFramework>net40</TargetFramework>
|
|
|
|
|
|
|
2015-05-14 22:35:07 +03:00
|
|
|
|
<RootNamespace>PascalABCCompiler</RootNamespace>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
|
2015-05-14 22:35:07 +03:00
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</PropertyGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
|
2015-05-14 22:35:07 +03:00
|
|
|
|
<ItemGroup>
|
2025-03-16 13:28:03 +03:00
|
|
|
|
<EmbeddedResource Include="DefaultLang.resources" Visible="false" />
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</ItemGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
|
2015-05-14 22:35:07 +03:00
|
|
|
|
<ItemGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</ItemGroup>
|
2025-03-16 13:28:03 +03:00
|
|
|
|
|
2025-04-07 08:35:22 +03:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<LangFiles Include="..\bin\Lng\Rus\**\*" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<Target Name="MakeLangResFile" BeforeTargets="BeforeBuild" Inputs="@(LangFiles)" Outputs="DefaultLang.resources">
|
2025-03-16 13:28:03 +03:00
|
|
|
|
<Exec
|
|
|
|
|
|
Command="cd ..\Utils\DefaultLanguageResMaker & LanguageResMaker.exe"
|
|
|
|
|
|
Condition="$(OS) == 'Windows_NT'" />
|
|
|
|
|
|
|
|
|
|
|
|
<Exec
|
|
|
|
|
|
Command="cd ../Utils/DefaultLanguageResMaker && mono LanguageResMaker.exe"
|
|
|
|
|
|
Condition="$(OS) != 'Windows_NT'" />
|
|
|
|
|
|
</Target>
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</Project>
|