diff --git a/README.md b/README.md index acee16a..3f56c97 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Steps needed (nothing hard, just a lot of inital steps that you'll have to do on - }, + "EntityFramework": "6.1.3", + "Migrator.EF6.Tools": { - + "version": "1.0.6", + + "version": "1.0.7", + "type": "build" + }, ``` @@ -44,7 +44,7 @@ Steps needed (nothing hard, just a lot of inital steps that you'll have to do on - ... - } + "Migrator.EF6.Tools": { - + "version": "1.0.6", + + "version": "1.0.7", + "imports": "portable-net45+win8+dnxcore50" + } ``` @@ -125,6 +125,9 @@ I'm aware that I should have aligned the version of `Migrator.EF6.Tools` to the The `1.0.*` releases align with .NET Core tooling `1.0.0-preview2`. +#### `1.0.7` +- Fixed: Embed the "Source" resource when it's available. [#30](https://github.com/mrahhal/Migrator.EF6/issues/30) + #### `1.0.6` - Support overriding the connection string from the command line through the `-cs` option. This way you won't have to hard code the string inside the `DbContext`. [#28](https://github.com/mrahhal/Migrator.EF6/issues/28) diff --git a/build/Build.proj b/build/Build.proj index 14ad50a..9003d99 100644 --- a/build/Build.proj +++ b/build/Build.proj @@ -3,7 +3,7 @@ 1 0 - 6 + 7 $(Major).$(Minor).$(Patch) diff --git a/samples/BasicConsoleApp/project.json b/samples/BasicConsoleApp/project.json index 1f36877..827a61b 100644 --- a/samples/BasicConsoleApp/project.json +++ b/samples/BasicConsoleApp/project.json @@ -7,7 +7,7 @@ "dependencies": { "EntityFramework": "6.1.3", "Migrator.EF6.Tools": { - "version": "1.0.6", + "version": "1.0.7", "target": "package", "type": "build" } @@ -15,7 +15,7 @@ "tools": { "Migrator.EF6.Tools": { - "version": "1.0.6", + "version": "1.0.7", "imports": "portable-net45+win8+dnxcore50" } }, diff --git a/samples/WithIdentity/project.json b/samples/WithIdentity/project.json index 0cd3b5c..6f538f6 100644 --- a/samples/WithIdentity/project.json +++ b/samples/WithIdentity/project.json @@ -30,7 +30,7 @@ "type": "build" }, "Migrator.EF6.Tools": { - "version": "1.0.6", + "version": "1.0.7", "target": "package", "type": "build" }, @@ -58,7 +58,7 @@ ] }, "Migrator.EF6.Tools": { - "version": "1.0.6", + "version": "1.0.7", "imports": "portable-net45+win8+dnxcore50" } },