pascalabcnet/Compiler/Compiler.csproj

32 lines
1.4 KiB
XML
Raw Permalink 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>
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>
<ItemGroup>
<Compile Include="..\Configuration\GlobalAssemblyInfo.cs">
<Link>Config\GlobalAssemblyInfo.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CoreUtils\PABCCoreUtils.csproj" />
<ProjectReference Include="..\Errors\Errors.csproj" />
<ProjectReference Include="..\LanguageIntegrator\LanguageIntegrator.csproj" />
<ProjectReference Include="..\Localization\Localization.csproj" />
<ProjectReference Include="..\NETGenerator\NETGenerator.csproj" />
<ProjectReference Include="..\CompilerTools\CompilerTools.csproj" />
<ProjectReference Include="..\ParserTools\ParserTools.csproj" />
<ProjectReference Include="..\SemanticTree\SemanticTree.csproj" />
<ProjectReference Include="..\StringConstants\StringConstants.csproj" />
<ProjectReference Include="..\SyntaxTree\SyntaxTree.csproj" />
<ProjectReference Include="..\SyntaxVisitors\SyntaxVisitors.csproj" />
<ProjectReference Include="..\TreeConverter\TreeConverter.csproj" />
</ItemGroup>
2015-05-14 22:35:07 +03:00
</Project>