We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 785af3b commit 68f2cbaCopy full SHA for 68f2cba
1 file changed
build.cake
@@ -53,6 +53,7 @@ Task("Build")
53
Arguments = "ef migrations script --no-build " +
54
"--project ./src/Infrastructure/Infrastructure.csproj " +
55
"--startup-project ./src/Server.UI/Server.UI.csproj " +
56
+ "--configuration Release " +
57
"--output ./artifacts/migrations.sql --idempotent",
58
WorkingDirectory = Context.Environment.WorkingDirectory // force repo root
59
};
@@ -63,4 +64,4 @@ Task("Build")
63
64
Task("Default")
65
.IsDependentOn("ScriptMigration");
66
- RunTarget(target);
67
+ RunTarget(target);
0 commit comments