Skip to content

Commit 1807b31

Browse files
Initial code commit
1 parent fdf6a9e commit 1807b31

32 files changed

+2383
-0
lines changed

.gitignore

Lines changed: 477 additions & 0 deletions
Large diffs are not rendered by default.

Umbraco.Commerce.Cart.sln

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Umbraco.Commerce.Cart", "src\Umbraco.Commerce.Cart\Umbraco.Commerce.Cart.csproj", "{BB6B02C8-67AF-455E-94A8-E166B5BCD09D}"
4+
EndProject
5+
Global
6+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7+
Debug|Any CPU = Debug|Any CPU
8+
Release|Any CPU = Release|Any CPU
9+
EndGlobalSection
10+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
11+
{BB6B02C8-67AF-455E-94A8-E166B5BCD09D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
12+
{BB6B02C8-67AF-455E-94A8-E166B5BCD09D}.Debug|Any CPU.Build.0 = Debug|Any CPU
13+
{BB6B02C8-67AF-455E-94A8-E166B5BCD09D}.Release|Any CPU.ActiveCfg = Release|Any CPU
14+
{BB6B02C8-67AF-455E-94A8-E166B5BCD09D}.Release|Any CPU.Build.0 = Release|Any CPU
15+
EndGlobalSection
16+
EndGlobal

src/Umbraco.Commerce.Cart/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
wwwroot/
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
types
15+
*.tgz
16+
artifacts
17+
18+
# Editor directories and files
19+
.vscode/*
20+
!.vscode/extensions.json
21+
.idea
22+
.DS_Store
23+
*.suo
24+
*.ntvs*
25+
*.njsproj
26+
*.sln
27+
*.sw?

0 commit comments

Comments
 (0)