Skip to content

Commit

Permalink
Added RunSharp.2013.sln
Browse files Browse the repository at this point in the history
  • Loading branch information
yallie committed Mar 9, 2015
1 parent fa2a7d6 commit cd2f44f
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# EditorConfig is awesome: http://EditorConfig.org
# Visual Studio extension: https://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328

# Windows-style newlines with a newline ending every file
[*]
end_of_line = crlf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,py,cs}]
charset = utf-8

# Tab indentation (no size specified)
[*.{cs,tt,ttinclude}]
indent_style = tab

# 1 space indentation
[*.config]
indent_style = space
indent_size = 1

# 2 space indentation
[*.resx]
indent_style = space
indent_size = 2

# Indentation override for all JS under lib directory
[lib/**.js]
indent_style = space
indent_size = 2

# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/RunSharp.2013.sln.GhostDoc.xml
/RunSharp.2013.sln.ide
/RunSharp/bin
/RunSharp/obj
/Examples/bin
/Examples/obj
30 changes: 30 additions & 0 deletions RunSharp.2013.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RunSharp", "RunSharp\RunSharp.csproj", "{C835BB75-7955-4315-B52C-FA59E25219F4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Examples", "Examples\Examples.csproj", "{2267D578-07C3-46B8-9EC8-E2C33AC920E7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
CodeAnalysis|Any CPU = CodeAnalysis|Any CPU
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C835BB75-7955-4315-B52C-FA59E25219F4}.CodeAnalysis|Any CPU.ActiveCfg = CodeAnalysis|Any CPU
{C835BB75-7955-4315-B52C-FA59E25219F4}.CodeAnalysis|Any CPU.Build.0 = CodeAnalysis|Any CPU
{C835BB75-7955-4315-B52C-FA59E25219F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C835BB75-7955-4315-B52C-FA59E25219F4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C835BB75-7955-4315-B52C-FA59E25219F4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C835BB75-7955-4315-B52C-FA59E25219F4}.Release|Any CPU.Build.0 = Release|Any CPU
{2267D578-07C3-46B8-9EC8-E2C33AC920E7}.CodeAnalysis|Any CPU.ActiveCfg = Release|Any CPU
{2267D578-07C3-46B8-9EC8-E2C33AC920E7}.CodeAnalysis|Any CPU.Build.0 = Release|Any CPU
{2267D578-07C3-46B8-9EC8-E2C33AC920E7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2267D578-07C3-46B8-9EC8-E2C33AC920E7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2267D578-07C3-46B8-9EC8-E2C33AC920E7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2267D578-07C3-46B8-9EC8-E2C33AC920E7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

0 comments on commit cd2f44f

Please sign in to comment.