Skip to content

Commit 53268f3

Browse files
committed
Initial commit.
- Added original music store and k10 and net45 versions with new framework.
0 parents  commit 53268f3

File tree

122 files changed

+35619
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+35619
-0
lines changed

.gitattributes

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
*.doc diff=astextplain
2+
*.DOC diff=astextplain
3+
*.docx diff=astextplain
4+
*.DOCX diff=astextplain
5+
*.dot diff=astextplain
6+
*.DOT diff=astextplain
7+
*.pdf diff=astextplain
8+
*.PDF diff=astextplain
9+
*.rtf diff=astextplain
10+
*.RTF diff=astextplain
11+
12+
*.jpg binary
13+
*.png binary
14+
*.gif binary
15+
16+
*.cs text=auto diff=csharp
17+
*.vb text=auto
18+
*.resx text=auto
19+
*.c text=auto
20+
*.cpp text=auto
21+
*.cxx text=auto
22+
*.h text=auto
23+
*.hxx text=auto
24+
*.py text=auto
25+
*.rb text=auto
26+
*.java text=auto
27+
*.html text=auto
28+
*.htm text=auto
29+
*.css text=auto
30+
*.scss text=auto
31+
*.sass text=auto
32+
*.less text=auto
33+
*.js text=auto
34+
*.lisp text=auto
35+
*.clj text=auto
36+
*.sql text=auto
37+
*.php text=auto
38+
*.lua text=auto
39+
*.m text=auto
40+
*.asm text=auto
41+
*.erl text=auto
42+
*.fs text=auto
43+
*.fsx text=auto
44+
*.hs text=auto
45+
46+
*.csproj text=auto
47+
*.vbproj text=auto
48+
*.fsproj text=auto
49+
*.dbproj text=auto
50+
*.sln text=auto eol=crlf

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[Oo]bj/
2+
[Bb]in/
3+
*.xap
4+
*.user
5+
/TestResults
6+
*.vspscc
7+
*.vssscc
8+
*.suo
9+
*.cache
10+
*.docstates
11+
_ReSharper.*
12+
*.csproj.user
13+
*[Rr]e[Ss]harper.user
14+
_ReSharper.*/
15+
packages/*
16+
artifacts/*
17+
msbuild.log
18+
PublishProfiles/
19+
*.psess
20+
*.vsp
21+
*.pidb
22+
*.userprefs
23+
*DS_Store
24+
*.ncrunchsolution
25+
*.log
26+
*.vspx
27+
/.symbols
28+
nuget.exe
29+
build/
30+
*net45.csproj
31+
*k10.csproj
32+
App_Data/

.nuget/packages.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Sake" version="0.2" />
4+
</packages>

MusicStore.sln

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.21005.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcMusicStore", "src\MvcMusicStore\MvcMusicStore.csproj", "{25CE8290-EF24-4818-B009-68DC903163D3}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MusicStore.k10", "src\MusicStore\MusicStore.k10.csproj", "{ABF101EC-78C3-4D90-BBEC-D69C182B1F7D}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MusicStore.net45", "src\MusicStore\MusicStore.net45.csproj", "{9C8A2D1F-D430-46DF-8F00-39E378EC8FB2}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{25CE8290-EF24-4818-B009-68DC903163D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{25CE8290-EF24-4818-B009-68DC903163D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{25CE8290-EF24-4818-B009-68DC903163D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{25CE8290-EF24-4818-B009-68DC903163D3}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{ABF101EC-78C3-4D90-BBEC-D69C182B1F7D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{ABF101EC-78C3-4D90-BBEC-D69C182B1F7D}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{ABF101EC-78C3-4D90-BBEC-D69C182B1F7D}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{ABF101EC-78C3-4D90-BBEC-D69C182B1F7D}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{9C8A2D1F-D430-46DF-8F00-39E378EC8FB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{9C8A2D1F-D430-46DF-8F00-39E378EC8FB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{9C8A2D1F-D430-46DF-8F00-39E378EC8FB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{9C8A2D1F-D430-46DF-8F00-39E378EC8FB2}.Release|Any CPU.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
EndGlobal

NuGet.Config

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/" />
5+
<add key="NuGet.org" value="https://nuget.org/api/v2/" />
6+
</packageSources>
7+
<packageSourceCredentials>
8+
<AspNetVNext>
9+
<add key="Username" value="aspnetreadonly" />
10+
<add key="ClearTextPassword" value="4d8a2d9c-7b80-4162-9978-47e918c9658c" />
11+
</AspNetVNext>
12+
</packageSourceCredentials>
13+
</configuration>

build.cmd

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@echo off
2+
cd %~dp0
3+
4+
IF EXIST .nuget\NuGet.exe goto restore
5+
echo Downloading latest version of NuGet.exe...
6+
md .nuget
7+
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '.nuget\NuGet.exe'"
8+
9+
:restore
10+
IF EXIST build goto run
11+
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
12+
xcopy packages\KoreBuild\build build\ /Y
13+
.nuget\NuGet.exe install Sake -version 0.2 -o packages
14+
15+
:run
16+
packages\Sake.0.2\tools\Sake.exe -I build -f makefile.shade %*

makefile.shade

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
var VERSION='0.1'
3+
var FULL_VERSION='0.1'
4+
var AUTHORS='Microsoft'
5+
6+
use-standard-lifecycle
7+
k-standard-goals

0 commit comments

Comments
 (0)