Skip to content

Commit bc1cf7b

Browse files
committed
Merge branch 'rc2'
2 parents c5f8e25 + d81fcd8 commit bc1cf7b

File tree

6 files changed

+24
-22
lines changed

6 files changed

+24
-22
lines changed

NuGet.Config

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<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" />
47
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
58
</packageSources>
69
</configuration>

build.cmd

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ cd %~dp0
33

44
SETLOCAL
55
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
86

97
IF EXIST %CACHED_NUGET% goto copynuget
108
echo Downloading latest version of NuGet.exe...
@@ -18,8 +16,10 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul
1816

1917
:restore
2018
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
2323

2424
:getdnx
2525
CALL packages\KoreBuild\build\dnvm upgrade -runtime CoreCLR -arch x86 -alias default

build.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,17 @@ if test ! -e .nuget; then
2323
fi
2424

2525
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
2830
fi
2931

3032
if ! type dnvm > /dev/null 2>&1; then
3133
source packages/KoreBuild/build/dnvm.sh
3234
fi
3335

34-
DNX_FEED=https://www.nuget.org/api/v2/
36+
#DNX_FEED=https://www.nuget.org/api/v2/
3537
if ! type dnx > /dev/null 2>&1; then
3638
dnvm upgrade -r mono
3739
fi

global.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"projects": [ "src", "text" ],
3-
"sdk": {
4-
"version": "1.0.0-rc1-final"
5-
}
6-
}
2+
"projects": [ "src", "text" ]
3+
}

src/CryptoHelper/project.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-rc1-final",
2+
"version": "1.0.0-rc2-build01",
33
"authors": [ "Henk Mollema" ],
44
"owners": [ "Henk Mollema" ],
55
"description": "Cryptography helper methods for hashing passwords using a PBKDF2 implementation.",
@@ -19,22 +19,22 @@
1919

2020
"net451": {
2121
"dependencies": {
22-
"Microsoft.AspNet.Cryptography.KeyDerivation": "1.0.0-rc1-final"
22+
"Microsoft.AspNet.Cryptography.KeyDerivation": "1.0.0-rc2-*"
2323
}
2424
},
2525

2626
"dnx451": {
2727
"dependencies": {
28-
"Microsoft.AspNet.Cryptography.KeyDerivation": "1.0.0-rc1-final"
28+
"Microsoft.AspNet.Cryptography.KeyDerivation": "1.0.0-rc2-*"
2929
}
3030
},
3131

3232
"dotnet5.4": {
3333
"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-*"
3838
}
3939
}
4040
}

test/CryptoHelper.Tests/project.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"description": "CryptoHelper Tests library.",
44

55
"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-*"
99
},
1010

1111
"commands": {

0 commit comments

Comments
 (0)