Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dotnet-bot committed Apr 29, 2015
0 parents commit 5b3975d
Show file tree
Hide file tree
Showing 264 changed files with 13,264 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

*.jpg binary
*.png binary
*.gif binary

*.cs text=auto diff=csharp
*.vb text=auto
*.resx text=auto
*.c text=auto
*.cpp text=auto
*.cxx text=auto
*.h text=auto
*.hxx text=auto
*.py text=auto
*.rb text=auto
*.java text=auto
*.html text=auto
*.htm text=auto
*.css text=auto
*.scss text=auto
*.sass text=auto
*.less text=auto
*.js text=auto
*.lisp text=auto
*.clj text=auto
*.sql text=auto
*.php text=auto
*.lua text=auto
*.m text=auto
*.asm text=auto
*.erl text=auto
*.fs text=auto
*.fsx text=auto
*.hs text=auto

*.csproj text=auto
*.vbproj text=auto
*.fsproj text=auto
*.dbproj text=auto
*.sln text=auto eol=crlf
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[Oo]bj/
[Bb]in/
*.xap
*.user
/TestResults
*.vspscc
*.vssscc
*.suo
*.cache
*.docstates
_ReSharper.*
*.csproj.user
*[Rr]e[Ss]harper.user
_ReSharper.*/
packages/*
artifacts/*
msbuild.log
PublishProfiles/
*.psess
*.vsp
*.pidb
*.userprefs
*DS_Store
*.ncrunchsolution
*.log
*.vspx
/.symbols
nuget.exe
build/
*net45.csproj
*k10.csproj
App_Data/
bower_components
node_modules
*.sln.ide
src/*/wwwroot
*.ng.ts
*.sln.ide
project.lock.json
.vs
env/PartsUnlimited.Environment/PartsUnlimited.Environment/Tools
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Copyright (c) Microsoft. All rights reserved.

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
7 changes: 7 additions & 0 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="AspNetRelease" value="https://www.myget.org/F/aspnetrelease/api/v2" />
<add key="nuget" value="https://www.nuget.org/api/v2/" />
</packageSources>
</configuration>
107 changes: 107 additions & 0 deletions PartsUnlimited.MRP.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22806.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{44621553-AA7D-4893-8834-79582A7D8348}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7D749BDA-4638-4517-B66A-D40DEDEEB141}"
ProjectSection(SolutionItems) = preProject
global.json = global.json
NuGet.config = NuGet.config
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{B7B176B6-8D4D-4EF1-BBD2-DDA650C78FFF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{363D2681-31A6-48C9-90BB-9ACFF4A41F06}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PartsUnlimited", "src\PartsUnlimitedWebsite\PartsUnlimited.xproj", "{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PartsUnlimited.UnitTests", "test\PartsUnlimited.UnitTests\PartsUnlimited.UnitTests.xproj", "{0C64E1A0-7791-457B-BD8A-60CBA4979702}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PartsUnlimited.Models", "src\PartsUnlimited.Models\PartsUnlimited.Models.xproj", "{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PartsUnlimited.WebJobs.UpdateProductInventory", "src\PartsUnlimited.WebJobs.UpdateProductInventory\PartsUnlimited.WebJobs.UpdateProductInventory.xproj", "{6F44879B-8659-4093-B9BB-E811B286CB49}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PartsUnlimited.WebJobs.ProcessOrder", "src\PartsUnlimited.WebJobs.ProcessOrder\PartsUnlimited.WebJobs.ProcessOrder.xproj", "{69D44EF8-50EB-4DB4-9371-AF08C69C8586}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|x86.ActiveCfg = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|Any CPU.Build.0 = Release|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|x86.ActiveCfg = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|x86.ActiveCfg = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|x86.Build.0 = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|Any CPU.Build.0 = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|x86.ActiveCfg = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|x86.Build.0 = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|x86.ActiveCfg = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|x86.Build.0 = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|Any CPU.Build.0 = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|x86.ActiveCfg = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|x86.Build.0 = Release|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Debug|x86.ActiveCfg = Debug|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Debug|x86.Build.0 = Debug|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Release|Any CPU.Build.0 = Release|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Release|x86.ActiveCfg = Release|Any CPU
{6F44879B-8659-4093-B9BB-E811B286CB49}.Release|x86.Build.0 = Release|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Debug|Any CPU.Build.0 = Debug|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Debug|x86.ActiveCfg = Debug|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Debug|x86.Build.0 = Debug|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Release|Any CPU.ActiveCfg = Release|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Release|Any CPU.Build.0 = Release|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Release|x86.ActiveCfg = Release|Any CPU
{69D44EF8-50EB-4DB4-9371-AF08C69C8586}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0} = {B7B176B6-8D4D-4EF1-BBD2-DDA650C78FFF}
{0C64E1A0-7791-457B-BD8A-60CBA4979702} = {363D2681-31A6-48C9-90BB-9ACFF4A41F06}
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25} = {B7B176B6-8D4D-4EF1-BBD2-DDA650C78FFF}
{6F44879B-8659-4093-B9BB-E811B286CB49} = {B7B176B6-8D4D-4EF1-BBD2-DDA650C78FFF}
{69D44EF8-50EB-4DB4-9371-AF08C69C8586} = {B7B176B6-8D4D-4EF1-BBD2-DDA650C78FFF}
EndGlobalSection
EndGlobal
77 changes: 77 additions & 0 deletions PartsUnlimited.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22806.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{44621553-AA7D-4893-8834-79582A7D8348}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7D749BDA-4638-4517-B66A-D40DEDEEB141}"
ProjectSection(SolutionItems) = preProject
global.json = global.json
NuGet.config = NuGet.config
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{B7B176B6-8D4D-4EF1-BBD2-DDA650C78FFF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{363D2681-31A6-48C9-90BB-9ACFF4A41F06}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PartsUnlimited", "src\PartsUnlimitedWebsite\PartsUnlimited.xproj", "{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PartsUnlimited.UnitTests", "test\PartsUnlimited.UnitTests\PartsUnlimited.UnitTests.xproj", "{0C64E1A0-7791-457B-BD8A-60CBA4979702}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "PartsUnlimited.Models", "src\PartsUnlimited.Models\PartsUnlimited.Models.xproj", "{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Debug|x86.ActiveCfg = Debug|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|Any CPU.Build.0 = Release|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0}.Release|x86.ActiveCfg = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|x86.ActiveCfg = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Debug|x86.Build.0 = Debug|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|Any CPU.Build.0 = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|x86.ActiveCfg = Release|Any CPU
{0C64E1A0-7791-457B-BD8A-60CBA4979702}.Release|x86.Build.0 = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|x86.ActiveCfg = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Debug|x86.Build.0 = Debug|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|Any CPU.Build.0 = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|x86.ActiveCfg = Release|Any CPU
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{3CFBED5D-2ED8-49DB-96FB-BDAA748DC5A0} = {B7B176B6-8D4D-4EF1-BBD2-DDA650C78FFF}
{0C64E1A0-7791-457B-BD8A-60CBA4979702} = {363D2681-31A6-48C9-90BB-9ACFF4A41F06}
{AF7CC9D8-E786-472B-85CD-8EE5E7429D25} = {B7B176B6-8D4D-4EF1-BBD2-DDA650C78FFF}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 5b3975d

Please sign in to comment.