* Move yield string constants to StringConstants class * Add GeneratedNamesManager class to store all generated names during unit compilation * Make GeneratedNamesManager class non static * Add Utils project to installer files * Add GeneratedNamesManager usage in CapturedVariablesSubstitutionsManager * Move GeneratedNamesManager initialization in CompilationUnit constructor * More GeneratedNamesManager usage * QuestionPointDesugarVisitor fix
22 lines
1,023 B
XML
22 lines
1,023 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net40</TargetFramework>
|
|
|
|
<RootNamespace>Languages.SPython.Frontend.Converters</RootNamespace>
|
|
|
|
<OutputPath>..\..\..\..\bin\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\..\CoreUtils\Utils.csproj" />
|
|
<ProjectReference Include="..\..\..\..\Errors\Errors.csproj" />
|
|
<ProjectReference Include="..\..\..\..\LanguageIntegrator\LanguageIntegrator.csproj" />
|
|
<ProjectReference Include="..\..\..\..\Localization\Localization.csproj" />
|
|
<ProjectReference Include="..\..\..\..\StringConstants\StringConstants.csproj" />
|
|
<ProjectReference Include="..\..\..\..\SyntaxTree\SyntaxTree.csproj" />
|
|
<ProjectReference Include="..\..\..\..\SyntaxVisitors\SyntaxVisitors.csproj" />
|
|
</ItemGroup>
|
|
</Project> |