From 6aa4b5db05ad4d23b03fc8e613f9dbcfb04ec7b1 Mon Sep 17 00:00:00 2001 From: Harald Wolff Date: Thu, 23 Nov 2017 19:19:09 +0100 Subject: [PATCH] Initial Commit --- .gitignore | 40 ++++++++++++++++++++++++++++++++++++++ Program.cs | 12 ++++++++++++ Properties/AssemblyInfo.cs | 26 +++++++++++++++++++++++++ TradingManager.csproj | 39 +++++++++++++++++++++++++++++++++++++ 4 files changed, 117 insertions(+) create mode 100644 .gitignore create mode 100644 Program.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 TradingManager.csproj diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e82d27 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Autosave files +*~ + +# build +[Oo]bj/ +[Bb]in/ +packages/ +TestResults/ + +# globs +Makefile.in +*.DS_Store +*.sln.cache +*.suo +*.cache +*.pidb +*.userprefs +*.usertasks +config.log +config.make +config.status +aclocal.m4 +install-sh +autom4te.cache/ +*.user +*.tar.gz +tarballs/ +test-results/ +Thumbs.db + +# Mac bundle stuff +*.dmg +*.app + +# resharper +*_Resharper.* +*.Resharper + +# dotCover +*.dotCover diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..aa06003 --- /dev/null +++ b/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace TradingManager +{ + class MainClass + { + public static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..e699dc1 --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,26 @@ +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("TradingManager")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[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("")] diff --git a/TradingManager.csproj b/TradingManager.csproj new file mode 100644 index 0000000..2b96a06 --- /dev/null +++ b/TradingManager.csproj @@ -0,0 +1,39 @@ + + + + Debug + x86 + {AEDD0134-5761-4C0F-88B4-0EBE1BBD0A8A} + Exe + TradingManager + TradingManager + v4.5 + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + true + x86 + + + true + bin\Release + prompt + 4 + true + x86 + + + + + + + + + + \ No newline at end of file