Skip to content

Commit ff3ba41

Browse files
committed
Bumping version, and change DNX451 to DNX46 for beta6
1 parent 3a82cd8 commit ff3ba41

File tree

8 files changed

+547
-423
lines changed

8 files changed

+547
-423
lines changed

NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<packageSources>
44
<add key="Xunit" value="https://www.myget.org/F/xunit/" />
55
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/api/v2" />
6-
<add key="NuGet" value="https://nuget.org/api/v2/" />
6+
<add key="Public Feed" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
77
</packageSources>
88
</configuration>

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.0
1+
0.9.1

src/Lightning.Net.sln

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.22823.1
4+
VisualStudioVersion = 14.0.23107.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3992FBBE-4BD8-4E28-9ED7-32421AFBF08B}"
77
ProjectSection(SolutionItems) = preProject
88
..\global.json = ..\global.json
9+
..\NuGet.config = ..\NuGet.config
910
EndProjectSection
1011
EndProject
1112
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "LightningDB", "LightningDB\LightningDB.xproj", "{C864E62B-5C53-479C-9A6F-6D086E1EC3DF}"

src/LightningDB/Native/Lmdb.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private static IDisposable DetermineNativeBinder()
2222
return new UnixNativeBinder(path);
2323
}
2424

25-
#if DNXCORE50 || DNX451
25+
#if DNXCORE50 || DNX46
2626
private static string FindNativeLibPath()
2727
{
2828
var locator = Microsoft.Framework.Runtime.Infrastructure.CallContextServiceLocator.Locator;

src/LightningDB/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.9.0-*",
2+
"version": "0.9.1-*",
33
"description": "LightningDB",
44
"authors": [
55
"Ilya Lukyanov",
@@ -18,7 +18,7 @@
1818
},
1919
"frameworks": {
2020
"net45": { },
21-
"dnx451": {
21+
"dnx46": {
2222
"dependencies": {
2323
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-*"
2424
}

src/LightningDB/project.lock.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": 1,
44
"targets": {
55
".NETFramework,Version=v4.5": {},
6-
"DNX,Version=v4.5.1": {
6+
"DNX,Version=v4.6": {
77
"Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6-12234": {
88
"frameworkAssemblies": [
99
"Microsoft.CSharp",
@@ -1274,7 +1274,7 @@
12741274
"projectFileDependencyGroups": {
12751275
"": [],
12761276
".NETFramework,Version=v4.5": [],
1277-
"DNX,Version=v4.5.1": [
1277+
"DNX,Version=v4.6": [
12781278
"Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta6-*"
12791279
],
12801280
"DNXCore,Version=v5.0": [

tests/LightningDB.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"proftest": "xunit.runner.dnx -trait prof=explicit"
1111
},
1212
"frameworks": {
13-
"dnx451": {
13+
"dnx46": {
1414
},
1515
"dnxcore50": {
1616
}

0 commit comments

Comments
 (0)