Added initial version of package and code.

This commit is contained in:
MattMo 2024-09-11 18:20:22 -07:00
parent d58cedeffc
commit 4ccee8afb3
8 changed files with 483 additions and 0 deletions

263
.gitignore vendored Normal file
View File

@ -0,0 +1,263 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUNIT
*.VisualState.xml
TestResult.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# DNX
project.lock.json
project.fragment.lock.json
*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# JustCode is a .NET coding add-in
.JustCode
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
#*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
*.mdf
*.ldf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# JetBrains Rider
.idea/
*.sln.iml
# CodeRush
.cr/
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
#Mac Store files
.DS_Store

View File

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<AssemblyName>MontoyaTech.ExtraConsole.Net.Example</AssemblyName>
<RootNamespace>MontoyaTech.ExtraConsole.Net.Example</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ExtraConsole.Net\ExtraConsole.Net.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,18 @@
using System;
namespace MontoyaTech.ExtraConsole.Net.Example
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
var console2 = new ExtraConsole();
console2.Open();
console2.WriteLine("Hello second console!");
Console.ReadLine();
}
}
}

31
ExtraConsole.Net.sln Normal file
View File

@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35303.130
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExtraConsole.Net", "ExtraConsole.Net\ExtraConsole.Net.csproj", "{4206B6ED-8BB2-4BC0-8440-6E9B49740895}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExtraConsole.Net.Example", "ExtraConsole.Net.Example\ExtraConsole.Net.Example.csproj", "{9D334289-DC7A-480E-888C-2C74D71AD551}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4206B6ED-8BB2-4BC0-8440-6E9B49740895}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4206B6ED-8BB2-4BC0-8440-6E9B49740895}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4206B6ED-8BB2-4BC0-8440-6E9B49740895}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4206B6ED-8BB2-4BC0-8440-6E9B49740895}.Release|Any CPU.Build.0 = Release|Any CPU
{9D334289-DC7A-480E-888C-2C74D71AD551}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D334289-DC7A-480E-888C-2C74D71AD551}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D334289-DC7A-480E-888C-2C74D71AD551}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D334289-DC7A-480E-888C-2C74D71AD551}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6B2DBAD4-5343-4D65-AB5D-D85F1120CC51}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,40 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
<RepositoryUrl>https://code.montoyatech.com/MontoyaTech/ExtraConsole.Net</RepositoryUrl>
<Authors>MontoyaTech</Authors>
<Company>MontoyaTech</Company>
<Copyright>MontoyaTech 2024</Copyright>
<PackageProjectUrl>https://code.montoyatech.com/MontoyaTech/ExtraConsole.Net</PackageProjectUrl>
<PackageTags>MontoyaTech;ExtraConsole.Net</PackageTags>
<AssemblyName>MontoyaTech.ExtraConsole.Net</AssemblyName>
<RootNamespace>MontoyaTech.ExtraConsole.Net</RootNamespace>
<Version>1.0.0</Version>
<Company>MontoyaTech</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>An open source C# package that opens an extra console that can be written to similar to the main Console provided. You can open as many extra consoles as needed.</Description>
</PropertyGroup>
<ItemGroup>
<None Include="..\Logo_Symbol_Black_Outline.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MontoyaTech.Process.Net" Version="1.0.0" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,95 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
using System.IO;
using MontoyaTech.Process.Net;
namespace MontoyaTech.ExtraConsole.Net
{
/// <summary>
/// The outline of a extra console that can be used to display information and status.
/// </summary>
public class ExtraConsole
{
private System.Diagnostics.Process _process = null;
private StreamWriter _writer = null;
/// <summary>
/// Opens this Console so that it can be written to.
/// </summary>
public void Open()
{
if (this._process == null)
{
var startInfo = new ProcessStartInfo()
{
FileName = Path.Combine(Environment.CurrentDirectory, "ExtraConsole.Net.exe"),
RedirectStandardInput = true
};
this._process = WinProcess.Create(startInfo, creationFlags: WinProcess.CreationFlags.CREATE_NEW_CONSOLE);
this._writer = this._process.StandardInput;
}
}
/// <summary>
/// Writes a string and a new line to this Console if open.
/// </summary>
/// <param name="str"></param>
/// <exception cref="InvalidOperationException"></exception>
public void WriteLine(string str)
{
if (this._process == null || this._writer == null)
throw new InvalidOperationException("Console must be open.");
this._writer.WriteLine(str);
}
/// <summary>
/// Writes a string to this Console if open.
/// </summary>
/// <param name="str"></param>
/// <exception cref="InvalidOperationException"></exception>
public void Write(string str)
{
if (this._process == null || this._writer == null)
throw new InvalidOperationException("Console must be open.");
this._writer.Write(str);
}
/// <summary>
/// Closes this Console if open.
/// </summary>
public void Close()
{
try
{
this._process?.Kill();
}
finally
{
this._process = null;
}
try
{
this._writer?.Close();
}
finally
{
this._writer = null;
}
}
~ExtraConsole()
{
this.Close();
}
}
}

View File

@ -0,0 +1,20 @@
using System;
namespace MontoyaTech.ExtraConsole.Net
{
internal class Program
{
static void Main(string[] args)
{
while (true)
{
//Keep reading while there are characters.
while (Console.In.Peek() > 0)
Console.Write((char)Console.In.Read());
//Pause and then try again.
System.Threading.Thread.Sleep(1);
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB