Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Starkku committed Sep 23, 2022
0 parents commit cb7a3a7
Show file tree
Hide file tree
Showing 16 changed files with 3,678 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
* eol=crlf

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf
*.cs text eol=crlf
*.csproj text eol=crlf
*.manifest text eol=crlf
*.resx text eol=crlf
*.settings text eol=crlf

# Denote all files that are truly binary and should not be modified.
*.dll binary
*.pdb binary
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

#Ignore thumbnails created by Windows
Thumbs.db
#Ignore files built by Visual Studio
*.obj
*.exe
*.pdb
*.user
*.aps
*.pch
*.vspscc
*_i.c
*_p.c
*.ncb
*.suo
*.tlb
*.tlh
*.bak
*.cache
*.ilk
*.log
[Bb]in
[Dd]ebug*/
*.lib
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
.vs/
#Nuget packages folder
packages/
Test/
37 changes: 37 additions & 0 deletions BatchTMPConverter.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32901.215
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BatchTMPConverter", "BatchTMPConverter\BatchTMPConverter.csproj", "{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Debug|x64.ActiveCfg = Debug|x64
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Debug|x64.Build.0 = Debug|x64
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Debug|x86.ActiveCfg = Debug|x86
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Debug|x86.Build.0 = Debug|x86
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Release|Any CPU.Build.0 = Release|Any CPU
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Release|x64.ActiveCfg = Release|x64
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Release|x64.Build.0 = Release|x64
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Release|x86.ActiveCfg = Release|x86
{A1C5025A-70ED-46A4-BEC2-96F09CC69A5E}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7D578911-29D4-4EFA-B36F-72B22187DEB1}
EndGlobalSection
EndGlobal
Loading

0 comments on commit cb7a3a7

Please sign in to comment.