pascalabcnet/CompilerTools/CompilerTools.csproj

26 lines
857 B
XML
Raw Normal View History

2015-05-14 22:35:07 +03:00
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
2015-05-14 22:35:07 +03:00
<PropertyGroup>
<TargetFramework>net40</TargetFramework>
<RootNamespace>PascalABCCompiler</RootNamespace>
2015-05-14 22:35:07 +03:00
<OutputPath>..\bin\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2015-05-14 22:35:07 +03:00
</PropertyGroup>
2015-05-14 22:35:07 +03:00
<ItemGroup>
<Compile Include="..\Configuration\GlobalAssemblyInfo.cs">
<Link>Conf\GlobalAssemblyInfo.cs</Link>
</Compile>
</ItemGroup>
2015-05-14 22:35:07 +03:00
<ItemGroup>
<ProjectReference Include="..\Errors\Errors.csproj" />
<ProjectReference Include="..\Localization\Localization.csproj" />
<ProjectReference Include="..\SyntaxTree\SyntaxTree.csproj" />
<ProjectReference Include="..\SemanticTree\SemanticTree.csproj" />
2015-05-14 22:35:07 +03:00
</ItemGroup>
</Project>