Designer.csproj 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProjectGuid>{1228D992-C801-49BB-839A-7BD28A3FFF0A}</ProjectGuid>
  7. <OutputType>Exe</OutputType>
  8. <RootNamespace>Designer</RootNamespace>
  9. <AssemblyName>Designer</AssemblyName>
  10. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  11. <RuntimeIdentifier>win-x86</RuntimeIdentifier>
  12. <TargetFrameworkProfile />
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>bin\Debug</OutputPath>
  19. <DefineConstants>DEBUG;</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ExternalConsole>true</ExternalConsole>
  23. <PlatformTarget>x86</PlatformTarget>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <ExternalConsole>true</ExternalConsole>
  31. <PlatformTarget>x86</PlatformTarget>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="NStack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  35. <HintPath>..\packages\NStack.Core.0.14.0\lib\netstandard2.0\NStack.dll</HintPath>
  36. </Reference>
  37. <Reference Include="System" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Compile Include="Program.cs" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj">
  44. <Project>{00F366F8-DEE4-482C-B9FD-6DB0200B79E5}</Project>
  45. <Name>Terminal.Gui</Name>
  46. </ProjectReference>
  47. </ItemGroup>
  48. <ItemGroup>
  49. <None Include="packages.config" />
  50. </ItemGroup>
  51. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  52. </Project>