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>
|
|
|
|
|
|
|
|
|
|
|
|
<RootNamespace>PascalABCCompiler</RootNamespace>
|
|
|
|
|
|
|
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>
|
2019-03-03 15:02:49 +03:00
|
|
|
|
<Compile Include="..\Configuration\GlobalAssemblyInfo.cs">
|
|
|
|
|
|
<Link>Config\GlobalAssemblyInfo.cs</Link>
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</Compile>
|
|
|
|
|
|
</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="..\CompilerTools\CompilerTools.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Errors\Errors.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\SemanticTree\SemanticTree.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\StringConstants\StringConstants.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\TreeConverter\TreeConverter.csproj" />
|
2015-05-14 22:35:07 +03:00
|
|
|
|
</ItemGroup>
|
2020-08-26 08:53:11 +03:00
|
|
|
|
</Project>
|