This repository was archived by the owner on Nov 22, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,13 @@ PublishProfiles/
13
13
_ReSharper. *
14
14
nuget.exe
15
15
* net45.csproj
16
+ * net451.csproj
16
17
* k10.csproj
17
18
* .psess
18
19
* .vsp
19
20
* .pidb
20
21
* .userprefs
21
22
* DS_Store
22
23
* .ncrunchsolution
24
+ * . * sdf
25
+ * .ipch
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<configuration >
3
3
<packageSources >
4
- <add key =" AspNetVNext" value =" https://www.myget.org/F/aspnetvnext/api/v2/ " />
4
+ <add key =" AspNetVNext" value =" https://www.myget.org/F/aspnetvnext/api/v2" />
5
5
<add key =" NuGet.org" value =" https://nuget.org/api/v2/" />
6
6
</packageSources >
7
7
<packageSourceCredentials >
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul
18
18
IF EXIST packages\KoreBuild goto run
19
19
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
20
20
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion
21
+ CALL packages\KoreBuild\build\kvm install -svr50 -x86
22
+ CALL packages\KoreBuild\build\kvm install -svrc50 -x86
21
23
22
24
:run
25
+ CALL packages\KoreBuild\build\kvm use default -svr50 -x86
23
26
packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %*
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ if test ` uname` = Darwin; then
4
+ cachedir=~ /Library/Caches/KBuild
5
+ else
6
+ if x$XDG_DATA_HOME = x; then
7
+ cachedir=$HOME /.local/share
8
+ else
9
+ cachedir=$XDG_DATA_HOME ;
10
+ fi
11
+ fi
12
+ mkdir -p $cachedir
13
+
14
+ url=https://www.nuget.org/nuget.exe
15
+
16
+ if test ! -f $cachedir /nuget.exe; then
17
+ wget -o $cachedir /nuget.exe $url 2> /dev/null || curl -o $cachedir /nuget.exe --location $url /dev/null
18
+ fi
19
+
20
+ if test ! -e .nuget; then
21
+ mkdir .nuget
22
+ cp $cachedir /nuget.exe .nuget
23
+ fi
24
+
25
+ if test ! -d packages/KoreBuild; then
26
+ mono .nuget/nuget.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
27
+ mono .nuget/nuget.exe install Sake -version 0.2 -o packages -ExcludeVersion
28
+ fi
29
+
30
+ mono packages/Sake/tools/Sake.exe -I packages/KoreBuild/build -f makefile.shade " $@ "
You can’t perform that action at this time.
0 commit comments