Example.csproj 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>{B0A602CD-E176-449D-8663-64238D54F857}</ProjectGuid>
  7. <OutputType>Exe</OutputType>
  8. <RootNamespace>Terminal</RootNamespace>
  9. <AssemblyName>Terminal</AssemblyName>
  10. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  13. <DebugSymbols>true</DebugSymbols>
  14. <DebugType>full</DebugType>
  15. <Optimize>false</Optimize>
  16. <OutputPath>bin\Debug</OutputPath>
  17. <DefineConstants>DEBUG;</DefineConstants>
  18. <ErrorReport>prompt</ErrorReport>
  19. <WarningLevel>4</WarningLevel>
  20. <ExternalConsole>true</ExternalConsole>
  21. <PlatformTarget>x86</PlatformTarget>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release</OutputPath>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <DocumentationFile>bin\Release\Terminal.xml</DocumentationFile>
  29. <ExternalConsole>true</ExternalConsole>
  30. <PlatformTarget>x86</PlatformTarget>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System" />
  34. <Reference Include="NStack">
  35. <HintPath>..\packages\NStack.Core.0.11.0\lib\netstandard1.5\NStack.dll</HintPath>
  36. <Private>False</Private>
  37. </Reference>
  38. <Reference Include="NStack">
  39. <HintPath>..\packages\NStack.Core.0.11.0\lib\netstandard1.5\NStack.dll</HintPath>
  40. </Reference>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="demo.cs" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <ProjectReference Include="..\Terminal.Gui\Terminal.Gui.csproj">
  47. <Project>{00F366F8-DEE4-482C-B9FD-6DB0200B79E5}</Project>
  48. <Name>Terminal.Gui</Name>
  49. </ProjectReference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <None Include="packages.config" />
  53. </ItemGroup>
  54. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  55. </Project>