Example.csproj 2.3 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.7.2</TargetFrameworkVersion>
  11. <RuntimeIdentifier>win-x64</RuntimeIdentifier>
  12. <NuGetPackageImportStamp>
  13. </NuGetPackageImportStamp>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug</OutputPath>
  21. <DefineConstants>DEBUG;</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <ExternalConsole>true</ExternalConsole>
  25. <PlatformTarget>x64</PlatformTarget>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release</OutputPath>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <DocumentationFile>bin\Release\Terminal.xml</DocumentationFile>
  33. <ExternalConsole>true</ExternalConsole>
  34. <PlatformTarget>x86</PlatformTarget>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="NStack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  38. <HintPath>..\packages\NStack.Core.0.14.0\lib\netstandard2.0\NStack.dll</HintPath>
  39. </Reference>
  40. <Reference Include="System" />
  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>