... I need peace

This commit is contained in:
2018-03-09 04:25:52 +01:00
parent 1efd8bc36d
commit 2be22d788b
47 changed files with 2044 additions and 11989 deletions

23
yaxwtui.Gtk2/Program.cs Normal file
View File

@ -0,0 +1,23 @@
using System;
using Xwt;
namespace yaxwtui.Gtk2
{
public class Program
{
[STAThread]
public static void Main (string[] args)
{
Application.Initialize (ToolkitType.Gtk);
MainWindow w = new MainWindow ();
w.Show ();
Application.Run ();
w.Dispose ();
Application.Dispose ();
}
}
}

View File

@ -0,0 +1,27 @@
using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle ("yaxwtui.Gtk2")]
[assembly: AssemblyDescription ("")]
[assembly: AssemblyConfiguration ("")]
[assembly: AssemblyCompany ("")]
[assembly: AssemblyProduct ("")]
[assembly: AssemblyCopyright ("Paul Schneider")]
[assembly: AssemblyTrademark ("")]
[assembly: AssemblyCulture ("")]
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion ("1.0.*")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Xwt" version="0.2.78" targetFramework="net45" />
<package id="Xwt.Gtk" version="0.2.78" targetFramework="net45" />
</packages>

View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{F245F76E-F532-4A1B-BA2E-43493F441711}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>yaxwtui.Gtk2</RootNamespace>
<AssemblyName>yaxwtui.Gtk2</AssemblyName>
<TargetFrameworkVersion>v4.5</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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Xwt">
<HintPath>..\packages\Xwt.0.2.78\lib\net40\Xwt.dll</HintPath>
</Reference>
<Reference Include="Xwt.Gtk">
<HintPath>..\packages\Xwt.Gtk.0.2.78\lib\net40\Xwt.Gtk.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Xwt.Gtk.0.2.78\build\Xwt.Gtk.props" Condition="Exists('..\packages\Xwt.Gtk.0.2.78\build\Xwt.Gtk.props')" />
<ItemGroup>
<ProjectReference Include="..\yaxwtui\yaxwtui.csproj">
<Project>{6077BDD8-7EDB-4039-AF41-3CD8BA094FB2}</Project>
<Name>yaxwtui</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
</Project>