2022-07-10 14:51:51 +03:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-07-10 14:51:51 +03:00
|
|
|
|
<PropertyGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<TargetFramework>net471</TargetFramework>
|
|
|
|
|
|
|
2022-07-10 14:51:51 +03:00
|
|
|
|
<RootNamespace>VisualPascalABCPlugins</RootNamespace>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
|
2022-07-10 14:51:51 +03:00
|
|
|
|
<OutputPath>..\..\bin\</OutputPath>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
|
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
|
|
|
|
|
|
|
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
|
2022-07-10 14:51:51 +03:00
|
|
|
|
</PropertyGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\CompilerTools\CompilerTools.csproj"/>
|
|
|
|
|
|
<ProjectReference Include="..\..\Compiler\Compiler.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\Errors\Errors.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\Localization\Localization.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\ParserTools\ParserTools.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\PluginsSupport\PluginsSupport.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\SyntaxTree\SyntaxTree.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-07-10 14:51:51 +03:00
|
|
|
|
<ItemGroup>
|
2022-08-14 15:54:41 +03:00
|
|
|
|
<Reference Include="System.Management" />
|
2022-08-07 13:38:40 +03:00
|
|
|
|
<Reference Include="System.Net.Http" />
|
2022-08-14 15:54:41 +03:00
|
|
|
|
<Reference Include="System.Security" />
|
2022-07-10 14:51:51 +03:00
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
2022-08-07 13:38:40 +03:00
|
|
|
|
</ItemGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
|
2022-08-07 13:38:40 +03:00
|
|
|
|
<ItemGroup>
|
2025-03-03 20:34:51 +03:00
|
|
|
|
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
|
2022-08-07 13:38:40 +03:00
|
|
|
|
</ItemGroup>
|
2022-07-10 14:51:51 +03:00
|
|
|
|
</Project>
|