Skip to content

Commit

Permalink
Copied from the main LiquidProjections repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisdoomen committed May 5, 2017
0 parents commit f200887
Show file tree
Hide file tree
Showing 37 changed files with 4,560 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Disable line endings normalization, force crlf
* -text

# Identified this repository with a unique name
#VisionSuite

*.sln -text merge=union
181 changes: 181 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
## 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/
[Rr]elease/
x64/
[Oo]bj/
[Bb]in/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc

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

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

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# 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
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
packages/

# Windows Azure Build Output
csx
*.build.csdef

# Windows Store app package directory
AppPackages/

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings

# 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
App_Data/*.mdf
App_Data/*.ldf


#LightSwitch generated files
GeneratedArtifacts/
_Pvt_Extensions/
ModelManifest.xml

# =========================
# Windows detritus
# =========================

# Some stackdump file that sometimes appears
us.stackdump

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac desktop service store files
.DS_Store
Package/Lib
*.nupkg

# Temporary files created when merging
*.orig
*.LOCAL.*.xml
*.REMOTE.*.xml
*.BASE.*.xml
*.BACKUP.*.xml

# Symbolic links and other files created by ConfigureSolutions
Output/*
**/*/Raven/CompiledIndexCache/

#Visual Studio 2015 files
**/*.sln.ide/**
_NCrunch_LiquidProjections/
Artifacts/**

# User-specific stuff:
.idea

# Cake related
Build/**
!Build/packages.config
Tools/**
4 changes: 4 additions & 0 deletions Build/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake" version="0.18.0" />
</packages>
Binary file added Lib/GitVersion.exe
Binary file not shown.
Binary file added Lib/NuGet.exe
Binary file not shown.
Binary file added Lib/lib/win32/x86/git2-381caf5.dll
Binary file not shown.
42 changes: 42 additions & 0 deletions LiquidProjections.NEventStore.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26403.7
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{27C8B175-6555-4591-87B1-177A2874FEA9}"
ProjectSection(SolutionItems) = preProject
NuGet.Config = NuGet.Config
SharedAssemblyInfo.cs = SharedAssemblyInfo.cs
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Src", "Src", "{AE89AB5E-BC68-4AA3-9183-A222AC81691C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Specs", "Specs", "{15D45AC7-E234-431A-8EF9-0A3311A33926}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiquidProjections.NEventStore", "Src\LiquidProjections.NEventStore\LiquidProjections.NEventStore.csproj", "{99FACA9D-D5E8-4EF4-B552-EAEA15B75B0D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiquidProjections.NEventStore.Specs", "Tests\LiquidProjections.NEventStore.Specs\LiquidProjections.NEventStore.Specs.csproj", "{D6415757-98F4-407D-BFED-D0C1BBF6A8E3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{99FACA9D-D5E8-4EF4-B552-EAEA15B75B0D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{99FACA9D-D5E8-4EF4-B552-EAEA15B75B0D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{99FACA9D-D5E8-4EF4-B552-EAEA15B75B0D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{99FACA9D-D5E8-4EF4-B552-EAEA15B75B0D}.Release|Any CPU.Build.0 = Release|Any CPU
{D6415757-98F4-407D-BFED-D0C1BBF6A8E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D6415757-98F4-407D-BFED-D0C1BBF6A8E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D6415757-98F4-407D-BFED-D0C1BBF6A8E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D6415757-98F4-407D-BFED-D0C1BBF6A8E3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{99FACA9D-D5E8-4EF4-B552-EAEA15B75B0D} = {AE89AB5E-BC68-4AA3-9183-A222AC81691C}
{D6415757-98F4-407D-BFED-D0C1BBF6A8E3} = {15D45AC7-E234-431A-8EF9-0A3311A33926}
EndGlobalSection
EndGlobal
Loading

0 comments on commit f200887

Please sign in to comment.