Altered Development Environment to exclude build
This commit is contained in:
Родитель
80c06ec6cc
Коммит
41cfbfc1d9
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -32,15 +32,14 @@
|
||||||
<PackageReference Include="DbUp" Version="4.5.0" />
|
<PackageReference Include="DbUp" Version="4.5.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<None Update="local.settings.json">
|
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="0-1-0-beta\B-Always\" />
|
<Folder Include="0-1-0-beta\B-Always\" />
|
||||||
<Folder Include="0-1-1-beta\" />
|
<Folder Include="0-1-1-beta\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="local.settings.json">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
using CommandLine;
|
using CommandLine;
|
||||||
using DbUp;
|
using DbUp;
|
||||||
|
using DbUp.Engine.Transactions;
|
||||||
using DbUp.Helpers;
|
using DbUp.Helpers;
|
||||||
using DbUp.SqlServer;
|
using DbUp.SqlServer;
|
||||||
|
using Microsoft.Azure.Services.AppAuthentication;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Data.SqlClient;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
@ -56,6 +59,7 @@ namespace AdsGoFastDbUp
|
||||||
Console.WriteLine("Quick Start Example!");
|
Console.WriteLine("Quick Start Example!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//GetAllScripts so that we can loop through versions
|
//GetAllScripts so that we can loop through versions
|
||||||
List<DbUp.Engine.SqlScript> AllScripts = DeployChanges.To
|
List<DbUp.Engine.SqlScript> AllScripts = DeployChanges.To
|
||||||
.SqlDatabase(o.connectionString, "dbo", false).WithScriptsEmbeddedInAssembly(
|
.SqlDatabase(o.connectionString, "dbo", false).WithScriptsEmbeddedInAssembly(
|
||||||
|
|
|
@ -8,13 +8,13 @@
|
||||||
"BuildAdsGoFastDatabase": true
|
"BuildAdsGoFastDatabase": true
|
||||||
},
|
},
|
||||||
"CD": {
|
"CD": {
|
||||||
"EnableDeploy": true,
|
"EnableDeploy": false,
|
||||||
"EnableConfigure": true,
|
"EnableConfigure": true,
|
||||||
"ServicePrincipals": {
|
"ServicePrincipals": {
|
||||||
"DeploymentSP": {
|
"DeploymentSP": {
|
||||||
"Enable": true,
|
"Enable": true,
|
||||||
"Name": "AdsGFDeploySP",
|
"Name": "AdsGoFastDeployer",
|
||||||
"ApplyNamePostFix": true
|
"ApplyNamePostFix": false
|
||||||
},
|
},
|
||||||
"WebAppAuthenticationSP": {
|
"WebAppAuthenticationSP": {
|
||||||
"Enable": true,
|
"Enable": true,
|
||||||
|
|
Загрузка…
Ссылка в новой задаче