Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
yadazula committed May 13, 2012
0 parents commit ce673f8
Show file tree
Hide file tree
Showing 57 changed files with 9,071 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
@@ -0,0 +1,13 @@
*resharper.user
[Dd]ebug/
[Rr]elease/
build/
[Bb]in/
[Oo]bj/
[Hh]elp/
*.suo
*.sln.cache
_ReSharper.*/
*.user
packages
doc
32 changes: 32 additions & 0 deletions S3Emulator.sln
@@ -0,0 +1,32 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "S3Emulator", "src\S3Emulator\S3Emulator.csproj", "{BB9957DE-CD2E-4E76-A1E0-F251A2E91030}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "S3Emulator.Tests", "test\S3Emulator.Tests\S3Emulator.Tests.csproj", "{CFFD14BE-18CE-43D8-8CF6-05DBEBFF03AE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "S3Emulator.Sample", "src\S3Emulator.Sample\S3Emulator.Sample.csproj", "{F7199CDF-7938-4FA3-8098-B2CEB34AFC81}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BB9957DE-CD2E-4E76-A1E0-F251A2E91030}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BB9957DE-CD2E-4E76-A1E0-F251A2E91030}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BB9957DE-CD2E-4E76-A1E0-F251A2E91030}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BB9957DE-CD2E-4E76-A1E0-F251A2E91030}.Release|Any CPU.Build.0 = Release|Any CPU
{CFFD14BE-18CE-43D8-8CF6-05DBEBFF03AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CFFD14BE-18CE-43D8-8CF6-05DBEBFF03AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CFFD14BE-18CE-43D8-8CF6-05DBEBFF03AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CFFD14BE-18CE-43D8-8CF6-05DBEBFF03AE}.Release|Any CPU.Build.0 = Release|Any CPU
{F7199CDF-7938-4FA3-8098-B2CEB34AFC81}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F7199CDF-7938-4FA3-8098-B2CEB34AFC81}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F7199CDF-7938-4FA3-8098-B2CEB34AFC81}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F7199CDF-7938-4FA3-8098-B2CEB34AFC81}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
11 changes: 11 additions & 0 deletions build.cmd
@@ -0,0 +1,11 @@
@echo off

if '%1'=='/?' goto help
if '%1'=='-help' goto help
if '%1'=='-h' goto help

powershell -NoProfile -ExecutionPolicy Bypass -Command "& '.\psake.ps1' '.\default.ps1' %*; if ($psake.build_success -eq $false) { exit 1 } else { exit 0 }"
goto :eof

:help
powershell -NoProfile -ExecutionPolicy Bypass -Command "& '%~dp0\psake.ps1' -help"
20 changes: 20 additions & 0 deletions default.ps1
@@ -0,0 +1,20 @@
properties {
$base_dir = resolve-path .
$tools_dir = "$base_dir\tools"
$sln_file = "$base_dir\S3Emulator.sln"
$version = "1.0.0.0"
}

task default -depends Compile

task Nuget {
$nugetConfigs = Get-ChildItem $base_dir -Recurse | ?{$_.name -match "packages\.config"} | select
foreach ($nugetConfig in $nugetConfigs) {
Write-Host "restoring packages from $($nugetConfig.FullName)"
.\Tools\NuGet\NuGet.exe install $($nugetConfig.FullName) /OutputDirectory packages
}
}

Task Compile -depend Nuget {
msbuild "$sln_file"
}

0 comments on commit ce673f8

Please sign in to comment.