* converting project files into sdk style * new build commands * adding new dll into nsis * removing unused .cs files
22 lines
945 B
XML
22 lines
945 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net40</TargetFramework>
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Compiler\Compiler.csproj" />
|
|
<ProjectReference Include="..\Errors\Errors.csproj" />
|
|
<ProjectReference Include="..\LanguageIntegrator\LanguageIntegrator.csproj" />
|
|
<ProjectReference Include="..\ParserTools\ParserTools.csproj" />
|
|
<ProjectReference Include="..\SemanticTree\SemanticTree.csproj" />
|
|
<ProjectReference Include="..\StringConstants\StringConstants.csproj" />
|
|
<ProjectReference Include="..\SyntaxTree\SyntaxTree.csproj" />
|
|
<ProjectReference Include="..\TreeConverter\TreeConverter.csproj" />
|
|
</ItemGroup>
|
|
</Project> |