* Rename Utils project to PABCCoreUtils * Move FormatTools from ParserTools project to PABCCoreUtils * Move SourceFilesProviders class and FileReader class to PABCCoreUtils
35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net40</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>PascalABCCompiler</RootNamespace>
|
|
|
|
<ApplicationIcon>App.ico</ApplicationIcon>
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AssemblyName>pabcnetc</AssemblyName>
|
|
|
|
<Deterministic>false</Deterministic>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="App.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="App.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CoreUtils\PABCCoreUtils.csproj" />
|
|
<ProjectReference Include="..\Localization\Localization.csproj" />
|
|
<ProjectReference Include="..\Compiler\Compiler.csproj" />
|
|
<ProjectReference Include="..\CompilerTools\CompilerTools.csproj" />
|
|
<ProjectReference Include="..\Errors\Errors.csproj" />
|
|
<ProjectReference Include="..\LanguageIntegrator\LanguageIntegrator.csproj" />
|
|
<ProjectReference Include="..\ParserTools\ParserTools.csproj" />
|
|
<ProjectReference Include="..\SyntaxTree\SyntaxTree.csproj" />
|
|
</ItemGroup>
|
|
</Project> |