* converting project files into sdk style * new build commands * adding new dll into nsis * removing unused .cs files
40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net462</TargetFramework>
|
|
|
|
<RootNamespace>Converter</RootNamespace>
|
|
|
|
<OutputPath>..\..\bin\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="Rules_CS.txt" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Rules_CS.txt" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\CompilerTools\CompilerTools.csproj" />
|
|
<ProjectReference Include="..\..\Compiler\Compiler.csproj" />
|
|
<ProjectReference Include="..\..\Errors\Errors.csproj" />
|
|
<ProjectReference Include="..\..\Localization\Localization.csproj" />
|
|
<ProjectReference Include="..\..\PluginsSupport\PluginsSupport.csproj" />
|
|
<ProjectReference Include="..\..\SemanticTree\SemanticTree.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
|
|
</ItemGroup>
|
|
</Project> |