Skip to content

Commit

Permalink
Source push
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew committed Jan 7, 2016
1 parent 46defac commit cad7358
Show file tree
Hide file tree
Showing 21 changed files with 7,669 additions and 0 deletions.
111 changes: 111 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
[Bb]in/
[Oo]bj/

# mstest test results
TestResults

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates
*.userprefs

# Build results
[Dd]ebug/
[Rr]elease/
x64/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.log
*.vspscc
*.vssscc
.builds

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# 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
*.Publish.xml

# NuGet Packages Directory
packages

# Windows Azure Build Output
csx
*.build.csdef

# Windows Store app package directory
AppPackages/

# Others
[Bb]in
[Oo]bj
sql
TestResults
[Tt]est[Rr]esult*
*.Cache
ClientBin
[Ss]tyle[Cc]op.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects

# 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

Installer/*setup.exe
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Steam Cleaner

![images](https://i.imgur.com/IM5aHsl.png)

### What is it?

Steam Cleaner is a tool that will remove large amounts of data left behind by Steam, this tool can clear up gigabytes of data in a few seconds. No configuration needed, simply run it and it will detect all your steam games.

This software is under development

### How to install and run Steam Cleaner

#### Install from Releases

- Download the latest build from: https://github.com/Codeusa/SteamCleaner/releases/latest

- Install it

- Run it


### Contact

[Twitter](https://twitter.com/andrewmd5)
[Website](https://andrew.im)

### Borderless Gaming

Be to also check out [Borderless Gaming](http://store.steampowered.com/app/388080)
22 changes: 22 additions & 0 deletions SteamCleaner.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SteamCleaner", "SteamCleaner\SteamCleaner.csproj", "{A0A697AF-27B9-4708-AC71-EBBA205336E2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A0A697AF-27B9-4708-AC71-EBBA205336E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A0A697AF-27B9-4708-AC71-EBBA205336E2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A0A697AF-27B9-4708-AC71-EBBA205336E2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A0A697AF-27B9-4708-AC71-EBBA205336E2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
6 changes: 6 additions & 0 deletions SteamCleaner/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
Loading

0 comments on commit cad7358

Please sign in to comment.