Skip to content

Commit

Permalink
Deploy v1.4.1
Browse files Browse the repository at this point in the history
- use stable runtime packages
- add global.json
  • Loading branch information
henkmollema committed Aug 22, 2015
1 parent dc8b955 commit 5024d79
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*.user
*.sln.docstates
project.lock.json
.vs/

# Build results
[Dd]ebug/
Expand Down
6 changes: 6 additions & 0 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="NuGet" value="https://nuget.org/api/v2" />
</packageSources>
</configuration>
6 changes: 6 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"projects": [ "src" ],
"sdk": {
"version": "1.0.0-beta6"
}
}
Binary file added nuget/Dommel.1.4.1.nupkg
Binary file not shown.
7 changes: 6 additions & 1 deletion src/Dommel.sln
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22823.1
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dommel-net40", "Dommel-net40\Dommel-net40.csproj", "{9EDA1A00-5BDB-45C5-9733-5B4496167696}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Dommel", "Dommel\Dommel.xproj", "{4AC16764-968B-43B9-A35C-42F6408CB38E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{846EE323-F523-4E31-B001-C0829370483B}"
ProjectSection(SolutionItems) = preProject
..\global.json = ..\global.json
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
18 changes: 9 additions & 9 deletions src/Dommel/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.4.0",
"version": "1.4.1",
"copyright": "© 2015 Henk Mollema",
"description": "Simple CRUD operations for Dapper.",
"authors": [ "henkmollema" ],
Expand Down Expand Up @@ -31,14 +31,14 @@
},
"dnxcore50": {
"dependencies": {
"Microsoft.CSharp": "4.0.0-beta-*",
"System.Collections": "4.0.10-beta-*",
"System.ComponentModel.Annotations": "4.0.10-beta-*",
"System.Data.Common": "4.0.0-beta-*",
"System.Linq": "4.0.0-beta-*",
"System.Reflection": "4.0.10-beta-*",
"System.Reflection.Extensions": "4.0.0-beta-*"
"Microsoft.CSharp": "4.0.0",
"System.Collections": "4.0.10",
"System.ComponentModel.Annotations": "4.0.10",
"System.Data.Common": "4.0.0",
"System.Linq": "4.0.0",
"System.Reflection": "4.0.10",
"System.Reflection.Extensions": "4.0.0"
}
}
}
}
}

0 comments on commit 5024d79

Please sign in to comment.