31 lines
947 B
XML
31 lines
947 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net40</TargetFramework>
|
|
|
|
<RootNamespace>PascalABCCompiler</RootNamespace>
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="DefaultLang.resources" Visible="false" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="MakeLangResFile" BeforeTargets="BeforeBuild">
|
|
<Exec
|
|
Command="cd ..\Utils\DefaultLanguageResMaker & LanguageResMaker.exe"
|
|
Condition="$(OS) == 'Windows_NT'" />
|
|
|
|
<Exec
|
|
Command="cd ../Utils/DefaultLanguageResMaker && mono LanguageResMaker.exe"
|
|
Condition="$(OS) != 'Windows_NT'" />
|
|
</Target>
|
|
</Project> |