From adc60e506dcf8e3f7a5965e8eea4645faa0936c7 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 2 Feb 2015 12:39:30 +0000 Subject: [PATCH] Initial skeleton --- .gitignore | 176 +++++++++++++++++++++++++++ SharpHash.sln | 17 +++ SharpHash/Program.cs | 12 ++ SharpHash/Properties/AssemblyInfo.cs | 27 ++++ SharpHash/SharpHash.csproj | 40 ++++++ 5 files changed, 272 insertions(+) create mode 100644 .gitignore create mode 100644 SharpHash.sln create mode 100644 SharpHash/Program.cs create mode 100644 SharpHash/Properties/AssemblyInfo.cs create mode 100644 SharpHash/SharpHash.csproj diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6d7938c --- /dev/null +++ b/.gitignore @@ -0,0 +1,176 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +x64/ +build/ +bld/ +[Bb]in/ +[Oo]bj/ + +# 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 + +*_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 +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# 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 addin-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +*.ncrunch* +_NCrunch_* +.*crunch*.local.xml + +# 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 + +# NuGet Packages Directory +packages/ +## TODO: If the tool you use requires repositories.config uncomment the next line +#!packages/repositories.config + +# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets +# This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented) +!packages/build/ + +# Windows Azure Build Output +csx/ +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +sql/ +*.Cache +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.pfx +*.publishsettings +node_modules/ + +# 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/ + +*.userprefs diff --git a/SharpHash.sln b/SharpHash.sln new file mode 100644 index 0000000..7762d3c --- /dev/null +++ b/SharpHash.sln @@ -0,0 +1,17 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpHash", "SharpHash\SharpHash.csproj", "{02548536-0F8B-472E-B543-A090CA1BFA30}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {02548536-0F8B-472E-B543-A090CA1BFA30}.Debug|x86.ActiveCfg = Debug|x86 + {02548536-0F8B-472E-B543-A090CA1BFA30}.Debug|x86.Build.0 = Debug|x86 + {02548536-0F8B-472E-B543-A090CA1BFA30}.Release|x86.ActiveCfg = Release|x86 + {02548536-0F8B-472E-B543-A090CA1BFA30}.Release|x86.Build.0 = Release|x86 + EndGlobalSection +EndGlobal diff --git a/SharpHash/Program.cs b/SharpHash/Program.cs new file mode 100644 index 0000000..c4df2fb --- /dev/null +++ b/SharpHash/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace SharpHash +{ + class MainClass + { + public static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/SharpHash/Properties/AssemblyInfo.cs b/SharpHash/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b8c7394 --- /dev/null +++ b/SharpHash/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("SharpHash")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Claunia.com")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("© Claunia.com")] +[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/SharpHash/SharpHash.csproj b/SharpHash/SharpHash.csproj new file mode 100644 index 0000000..9e58cf5 --- /dev/null +++ b/SharpHash/SharpHash.csproj @@ -0,0 +1,40 @@ + + + + Debug + x86 + {02548536-0F8B-472E-B543-A090CA1BFA30} + Exe + SharpHash + SharpHash + 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