File tree 6 files changed +24
-22
lines changed
6 files changed +24
-22
lines changed 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
+ <clear />
5
+ <add key =" xunit" value =" https://www.myget.org/F/xunit/api/v3/index.json" />
6
+ <add key =" AspNetVNext" value =" https://www.myget.org/F/aspnetvnext/api/v2" />
4
7
<add key =" NuGet" value =" https://api.nuget.org/v3/index.json" />
5
8
</packageSources >
6
9
</configuration >
Original file line number Diff line number Diff line change 3
3
4
4
SETLOCAL
5
5
SET CACHED_NUGET = %LocalAppData% \NuGet\NuGet.exe
6
- REM echo Set DNX feed to NuGet v3 (stable)
7
- REM SET DNX_FEED=https://api.nuget.org/v3/index.json
8
6
9
7
IF EXIST %CACHED_NUGET% goto copynuget
10
8
echo Downloading latest version of NuGet.exe...
@@ -18,8 +16,10 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul
18
16
19
17
:restore
20
18
IF EXIST packages\Sake goto getdnx
21
- .nuget\NuGet.exe install KoreBuild -version 0.2.1-beta7 -Source https://www.myget.org/F/aspnetmaster/api/v2 -o packages -nocache -pre -ExcludeVersion
22
- .nuget\NuGet.exe install Sake -version 0.2.0 -Source https://www.nuget.org/api/v2/ -o packages -ExcludeVersion
19
+ REM .nuget\NuGet.exe install KoreBuild -Source https://www.myget.org/F/aspnetmaster/api/v2 -o packages -nocache -pre -ExcludeVersion
20
+ REM .nuget\NuGet.exe install Sake -version 0.2.0 -Source https://www.nuget.org/api/v2/ -o packages -ExcludeVersion
21
+ .nuget\NuGet.exe install KoreBuild -o packages -nocache -pre -ExcludeVersion
22
+ .nuget\NuGet.exe install Sake -Source https://www.nuget.org/api/v2/ -o packages -ExcludeVersion
23
23
24
24
:getdnx
25
25
CALL packages\KoreBuild\build\dnvm upgrade -runtime CoreCLR -arch x86 -alias default
Original file line number Diff line number Diff line change @@ -23,15 +23,17 @@ if test ! -e .nuget; then
23
23
fi
24
24
25
25
if test ! -d packages/KoreBuild; then
26
- mono .nuget/nuget.exe install KoreBuild -version 0.2.1-beta7 -Source https://www.myget.org/F/aspnetmaster/api/v2 -o packages -nocache -pre -ExcludeVersion
27
- mono .nuget/nuget.exe install Sake -version 0.2.0 -Source https://www.nuget.org/api/v2/ -o packages -ExcludeVersion
26
+ mono .nuget/nuget.exe install KoreBuild -Source https://www.myget.org/F/aspnetvnext/ -o packages -nocache -pre -ExcludeVersion
27
+ mono .nuget/nuget.exe install Sake -Source https://www.nuget.org/api/v2/ -o packages -ExcludeVersion
28
+ # mono .nuget/nuget.exe install KoreBuild -Source https://www.myget.org/F/aspnetmaster/api/v2 -o packages -nocache -pre -ExcludeVersion
29
+ # mono .nuget/nuget.exe install Sake -version 0.2.0 -Source https://www.nuget.org/api/v2/ -o packages -ExcludeVersion
28
30
fi
29
31
30
32
if ! type dnvm > /dev/null 2>&1 ; then
31
33
source packages/KoreBuild/build/dnvm.sh
32
34
fi
33
35
34
- DNX_FEED=https://www.nuget.org/api/v2/
36
+ # DNX_FEED=https://www.nuget.org/api/v2/
35
37
if ! type dnx > /dev/null 2>&1 ; then
36
38
dnvm upgrade -r mono
37
39
fi
Original file line number Diff line number Diff line change 1
1
{
2
- "projects" : [ " src" , " text" ],
3
- "sdk" : {
4
- "version" : " 1.0.0-rc1-final"
5
- }
6
- }
2
+ "projects" : [ " src" , " text" ]
3
+ }
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 1.0.0-rc1-final " ,
2
+ "version" : " 1.0.0-rc2-build01 " ,
3
3
"authors" : [ " Henk Mollema" ],
4
4
"owners" : [ " Henk Mollema" ],
5
5
"description" : " Cryptography helper methods for hashing passwords using a PBKDF2 implementation." ,
19
19
20
20
"net451" : {
21
21
"dependencies" : {
22
- "Microsoft.AspNet.Cryptography.KeyDerivation" : " 1.0.0-rc1-final "
22
+ "Microsoft.AspNet.Cryptography.KeyDerivation" : " 1.0.0-rc2-* "
23
23
}
24
24
},
25
25
26
26
"dnx451" : {
27
27
"dependencies" : {
28
- "Microsoft.AspNet.Cryptography.KeyDerivation" : " 1.0.0-rc1-final "
28
+ "Microsoft.AspNet.Cryptography.KeyDerivation" : " 1.0.0-rc2-* "
29
29
}
30
30
},
31
31
32
32
"dotnet5.4" : {
33
33
"dependencies" : {
34
- "Microsoft.AspNet.Cryptography.KeyDerivation" : " 1.0.0-rc1-final " ,
35
- "Microsoft.CSharp" : " 4.0.1-beta-23516 " ,
36
- "System.Runtime" : " 4.0.21-beta-23516 " ,
37
- "System.Security.Cryptography.Algorithms" : " 4.0.0-beta-23516 "
34
+ "Microsoft.AspNet.Cryptography.KeyDerivation" : " 1.0.0-rc2-* " ,
35
+ "Microsoft.CSharp" : " 4.0.1-beta-* " ,
36
+ "System.Runtime" : " 4.0.21-beta-* " ,
37
+ "System.Security.Cryptography.Algorithms" : " 4.0.0-beta-* "
38
38
}
39
39
}
40
40
}
Original file line number Diff line number Diff line change 3
3
"description" : " CryptoHelper Tests library." ,
4
4
5
5
"dependencies" : {
6
- "CryptoHelper" : " 1.0.0-rc1-final " ,
7
- "xunit" : " 2.1.0 " ,
8
- "xunit.runner.dnx" : " 2.1.0-rc1-build204 "
6
+ "CryptoHelper" : " 1.0.0-rc2-* " ,
7
+ "xunit" : " 2.2.0-* " ,
8
+ "xunit.runner.dnx" : " 2.1.0-* "
9
9
},
10
10
11
11
"commands" : {
You can’t perform that action at this time.
0 commit comments