From defd14fbac2e8ea82c09782b4fecd387714ded52 Mon Sep 17 00:00:00 2001 From: zloy-zhake Date: Mon, 29 Aug 2016 00:13:05 +0600 Subject: [PATCH] Initial MonoDeveloper project commit --- .gitignore | 40 ++++++++++++++++++++++++++++++++++++++ Program.cs | 12 ++++++++++++ Properties/AssemblyInfo.cs | 27 +++++++++++++++++++++++++ iag4t.csproj | 40 ++++++++++++++++++++++++++++++++++++++ iag4t.sln | 17 ++++++++++++++++ 5 files changed, 136 insertions(+) create mode 100644 .gitignore create mode 100644 Program.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 iag4t.csproj create mode 100644 iag4t.sln diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7bbcfed --- /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..d6b70c9 --- /dev/null +++ b/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace iag4t +{ + 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..72cba8b --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -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("iag4t")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("zhake")] +[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/iag4t.csproj b/iag4t.csproj new file mode 100644 index 0000000..484d143 --- /dev/null +++ b/iag4t.csproj @@ -0,0 +1,40 @@ + + + + Debug + x86 + {5672220D-570B-4F81-AD49-7E7B4295F022} + Exe + iag4t + iag4t + v4.5 + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + true + x86 + + + full + true + bin\Release + prompt + 4 + true + x86 + + + + + + + + + + \ No newline at end of file diff --git a/iag4t.sln b/iag4t.sln new file mode 100644 index 0000000..d3b5df2 --- /dev/null +++ b/iag4t.sln @@ -0,0 +1,17 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "iag4t", "iag4t.csproj", "{5672220D-570B-4F81-AD49-7E7B4295F022}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5672220D-570B-4F81-AD49-7E7B4295F022}.Debug|x86.ActiveCfg = Debug|x86 + {5672220D-570B-4F81-AD49-7E7B4295F022}.Debug|x86.Build.0 = Debug|x86 + {5672220D-570B-4F81-AD49-7E7B4295F022}.Release|x86.ActiveCfg = Release|x86 + {5672220D-570B-4F81-AD49-7E7B4295F022}.Release|x86.Build.0 = Release|x86 + EndGlobalSection +EndGlobal