|
@@ -1,76 +1,30 @@
|
|
|
-<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
+<Project Sdk="Microsoft.NET.Sdk">
|
|
|
<PropertyGroup>
|
|
|
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
- <ProjectGuid>{00F366F8-DEE4-482C-B9FD-6DB0200B79E5}</ProjectGuid>
|
|
|
- <OutputType>Library</OutputType>
|
|
|
+ <TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
|
|
|
<RootNamespace>Terminal.Gui</RootNamespace>
|
|
|
<AssemblyName>Terminal.Gui</AssemblyName>
|
|
|
- <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
|
|
- </PropertyGroup>
|
|
|
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
- <DebugSymbols>true</DebugSymbols>
|
|
|
<DebugType>full</DebugType>
|
|
|
- <Optimize>false</Optimize>
|
|
|
- <OutputPath>bin\Debug</OutputPath>
|
|
|
- <DefineConstants>DEBUG;</DefineConstants>
|
|
|
- <ErrorReport>prompt</ErrorReport>
|
|
|
- <WarningLevel>4</WarningLevel>
|
|
|
- <ConsolePause>false</ConsolePause>
|
|
|
- <Commandlineparameters></Commandlineparameters>
|
|
|
- </PropertyGroup>
|
|
|
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
- <Optimize>true</Optimize>
|
|
|
- <OutputPath>bin\Release</OutputPath>
|
|
|
- <ErrorReport>prompt</ErrorReport>
|
|
|
- <WarningLevel>4</WarningLevel>
|
|
|
<DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>
|
|
|
- <ConsolePause>false</ConsolePause>
|
|
|
+ <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
|
|
|
</PropertyGroup>
|
|
|
+ <PropertyGroup>
|
|
|
+ <GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
|
|
|
+ <PackageId>Terminal.Gui</PackageId>
|
|
|
+ <PackageVersion>0.1</PackageVersion>
|
|
|
+ <Authors>Miguel de Icaza</Authors>
|
|
|
+ <PackageLicenseUrl>https://github.com/migueldeicaza/gui.cs/blob/master/LICENSE</PackageLicenseUrl>
|
|
|
+ <PackageProjectUrl>https://github.com/migueldeicaza/gui.cs/</PackageProjectUrl>
|
|
|
+ <PackageTags>csharp, terminal, c#, f#, gui, toolkit, console</PackageTags>
|
|
|
+ <Description>Console-based user interface toolkit for .NET applications.</Description>
|
|
|
+ <Owners>Miguel de Icaza</Owners>
|
|
|
+ <Summary>Application framework for creating modern console applications using .NET </Summary>
|
|
|
+ <Title>Gui.cs is a framework for creating console user interfaces</Title>
|
|
|
+ </PropertyGroup>
|
|
|
+
|
|
|
<ItemGroup>
|
|
|
- <Reference Include="System" />
|
|
|
- <Reference Include="System.ValueTuple">
|
|
|
- <HintPath>..\packages\System.ValueTuple.4.4.0\lib\net461\System.ValueTuple.dll</HintPath>
|
|
|
- </Reference>
|
|
|
- <Reference Include="mscorlib" />
|
|
|
- <Reference Include="NStack">
|
|
|
- <HintPath>..\packages\NStack.Core.0.8.0\lib\netstandard1.5\NStack.dll</HintPath>
|
|
|
- </Reference>
|
|
|
- </ItemGroup>
|
|
|
- <ItemGroup>
|
|
|
- <Folder Include="Properties\" />
|
|
|
- <Folder Include="Types\" />
|
|
|
- <Folder Include="Views\" />
|
|
|
- <Folder Include="MonoCurses\" />
|
|
|
- </ItemGroup>
|
|
|
- <ItemGroup>
|
|
|
- <Compile Include="Types\Point.cs" />
|
|
|
- <Compile Include="Types\Rect.cs" />
|
|
|
- <Compile Include="Types\Size.cs" />
|
|
|
- <Compile Include="Views\Button.cs" />
|
|
|
- <Compile Include="Views\Checkbox.cs" />
|
|
|
- <Compile Include="Views\Dialog.cs" />
|
|
|
- <Compile Include="Views\Label.cs" />
|
|
|
- <Compile Include="Views\Menu.cs" />
|
|
|
- <Compile Include="Views\MessageBox.cs" />
|
|
|
- <Compile Include="Views\RadioGroup.cs" />
|
|
|
- <Compile Include="Views\ScrollView.cs" />
|
|
|
- <Compile Include="Views\TextField.cs" />
|
|
|
- <Compile Include="Core.cs" />
|
|
|
- <Compile Include="Driver.cs" />
|
|
|
- <Compile Include="Event.cs" />
|
|
|
- <Compile Include="MonoCurses\binding.cs" />
|
|
|
- <Compile Include="MonoCurses\constants.cs" />
|
|
|
- <Compile Include="MonoCurses\handles.cs" />
|
|
|
- <Compile Include="MonoCurses\mainloop.cs" />
|
|
|
- <Compile Include="Views\FrameView.cs" />
|
|
|
- <Compile Include="Views\ListView.cs" />
|
|
|
- <Compile Include="Views\Clipboard.cs" />
|
|
|
- <Compile Include="Views\ProgressBar.cs" />
|
|
|
+ <PackageReference Include="NStack.Core" Version="0.8.0" />
|
|
|
+ <PackageReference Include="System.ValueTuple" Version="4.4.0" />
|
|
|
</ItemGroup>
|
|
|
<ItemGroup>
|
|
|
- <None Include="packages.config" />
|
|
|
</ItemGroup>
|
|
|
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
|
-</Project>
|
|
|
+</Project>
|