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
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<RootNamespace>PascalABCCompiler</RootNamespace>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
|
|
|
|
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
|
|
|
|
|
|
2015-05-14 22:35:07 +03:00
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AssemblyName>pabcnetcclear</AssemblyName>
|
|
|
|
|
|
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
<Deterministic>false</Deterministic>
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<None Remove="App.ico" />
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Content Include="App.ico" />
|
|
|
|
|
|
</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
|
|
|
|
<ProjectReference Include="..\Compiler\Compiler.csproj" />
|
2026-03-13 08:02:04 +03:00
|
|
|
|
<ProjectReference Include="..\CoreUtils\PABCCoreUtils.csproj" />
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<ProjectReference Include="..\LanguageIntegrator\LanguageIntegrator.csproj" />
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|