diff --git a/.gitignore b/.gitignore index cc9b2e7f..867737e6 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ *.user *.sln.docstates project.lock.json +.vs/ # Build results [Dd]ebug/ diff --git a/NuGet.Config b/NuGet.Config new file mode 100644 index 00000000..d4b9e2d0 --- /dev/null +++ b/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + diff --git a/global.json b/global.json new file mode 100644 index 00000000..4df03fcd --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "projects": [ "src" ], + "sdk": { + "version": "1.0.0-beta6" + } +} diff --git a/nuget/Dommel.1.4.1.nupkg b/nuget/Dommel.1.4.1.nupkg new file mode 100644 index 00000000..d565cf5a Binary files /dev/null and b/nuget/Dommel.1.4.1.nupkg differ diff --git a/src/Dommel.sln b/src/Dommel.sln index a6500726..e02499d2 100644 --- a/src/Dommel.sln +++ b/src/Dommel.sln @@ -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 diff --git a/src/Dommel/project.json b/src/Dommel/project.json index 88cec40a..c47cb543 100644 --- a/src/Dommel/project.json +++ b/src/Dommel/project.json @@ -1,5 +1,5 @@ { - "version": "1.4.0", + "version": "1.4.1", "copyright": "© 2015 Henk Mollema", "description": "Simple CRUD operations for Dapper.", "authors": [ "henkmollema" ], @@ -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" } } } -} \ No newline at end of file +}