* converting project files into sdk style * new build commands * adding new dll into nsis * removing unused .cs files
21 lines
579 B
XML
21 lines
579 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net40</TargetFramework>
|
|
|
|
<RootNamespace>PascalABCCompiler</RootNamespace>
|
|
|
|
<OutputPath>..\bin\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="DefaultLang.resources" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
</Project> |