diff --git a/.hgignore b/.hgignore index 1286153..9563549 100644 --- a/.hgignore +++ b/.hgignore @@ -3,3 +3,5 @@ syntax: glob */bin/* *.user */obj/* +*_ReSharper* +*/Bin/* diff --git a/main/MyFriendsAround.DB/MyFriendsAround.DB.dbmdl b/main/MyFriendsAround.DB/MyFriendsAround.DB.dbmdl deleted file mode 100644 index 0c089b0..0000000 Binary files a/main/MyFriendsAround.DB/MyFriendsAround.DB.dbmdl and /dev/null differ diff --git a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.dbschema b/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.dbschema deleted file mode 100644 index 4d64dfb..0000000 --- a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.dbschema +++ /dev/null @@ -1,41 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.deploymanifest b/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.deploymanifest deleted file mode 100644 index 98faad8..0000000 --- a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.deploymanifest +++ /dev/null @@ -1,41 +0,0 @@ - - - - MyFriendsAround.DB - False - True - MyFriendsAround.DB.dbschema - MyFriendsAround.DB.sql - MyFriendsAround.DB_Database.sqldeployment - - - MyFriendsAround.DB_Database.sqlcmdvars - - - - <__PostdeploymentMetadata> - - - - <__PredeploymentMetadata> - - - - - - Microsoft.Data.Schema.Sql - 10.0.0.0 - sD9ffxHVCjo= - - - Microsoft.Data.Schema.Sql - 10.0.0.0 - sD9ffxHVCjo= - - - Microsoft.Data.Schema.Sql - 10.0.0.0 - sD9ffxHVCjo= - - - \ No newline at end of file diff --git a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.sql b/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.sql deleted file mode 100644 index 4610897..0000000 --- a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB.sql +++ /dev/null @@ -1,211 +0,0 @@ -/* -Deployment script for MyFriendsAround.DB -*/ - -GO -SET ANSI_NULLS, ANSI_PADDING, ANSI_WARNINGS, ARITHABORT, CONCAT_NULL_YIELDS_NULL, QUOTED_IDENTIFIER ON; - -SET NUMERIC_ROUNDABORT OFF; - - -GO -:setvar DatabaseName "MyFriendsAround.DB" -:setvar DefaultDataPath "" -:setvar DefaultLogPath "" - -GO -:on error exit -GO -USE [master] -GO -IF (DB_ID(N'$(DatabaseName)') IS NOT NULL - AND DATABASEPROPERTYEX(N'$(DatabaseName)','Status') <> N'ONLINE') -BEGIN - RAISERROR(N'The state of the target database, %s, is not set to ONLINE. To deploy to this database, its state must be set to ONLINE.', 16, 127,N'$(DatabaseName)') WITH NOWAIT - RETURN -END - -GO -IF (DB_ID(N'$(DatabaseName)') IS NOT NULL) -BEGIN - ALTER DATABASE [$(DatabaseName)] - SET SINGLE_USER WITH ROLLBACK IMMEDIATE; - DROP DATABASE [$(DatabaseName)]; -END - -GO -PRINT N'Creating $(DatabaseName)...' -GO -CREATE DATABASE [$(DatabaseName)] COLLATE SQL_Latin1_General_CP1_CI_AS -GO -EXECUTE sp_dbcmptlevel [$(DatabaseName)], 100; - - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - ALTER DATABASE [$(DatabaseName)] - SET ANSI_NULLS ON, - ANSI_PADDING ON, - ANSI_WARNINGS ON, - ARITHABORT ON, - CONCAT_NULL_YIELDS_NULL ON, - NUMERIC_ROUNDABORT OFF, - QUOTED_IDENTIFIER ON, - ANSI_NULL_DEFAULT ON, - CURSOR_DEFAULT LOCAL, - RECOVERY FULL, - CURSOR_CLOSE_ON_COMMIT OFF, - AUTO_CREATE_STATISTICS ON, - AUTO_SHRINK OFF, - AUTO_UPDATE_STATISTICS ON, - RECURSIVE_TRIGGERS OFF - WITH ROLLBACK IMMEDIATE; - ALTER DATABASE [$(DatabaseName)] - SET AUTO_CLOSE OFF - WITH ROLLBACK IMMEDIATE; - END - - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - ALTER DATABASE [$(DatabaseName)] - SET ALLOW_SNAPSHOT_ISOLATION OFF; - END - - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - ALTER DATABASE [$(DatabaseName)] - SET READ_COMMITTED_SNAPSHOT OFF; - END - - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - ALTER DATABASE [$(DatabaseName)] - SET AUTO_UPDATE_STATISTICS_ASYNC OFF, - PAGE_VERIFY NONE, - DATE_CORRELATION_OPTIMIZATION OFF, - DISABLE_BROKER, - PARAMETERIZATION SIMPLE, - SUPPLEMENTAL_LOGGING OFF - WITH ROLLBACK IMMEDIATE; - END - - -GO -IF IS_SRVROLEMEMBER(N'sysadmin') = 1 - BEGIN - IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - EXECUTE sp_executesql N'ALTER DATABASE [$(DatabaseName)] - SET TRUSTWORTHY OFF, - DB_CHAINING OFF - WITH ROLLBACK IMMEDIATE'; - END - END -ELSE - BEGIN - PRINT N'The database settings cannot be modified. You must be a SysAdmin to apply these settings.'; - END - - -GO -IF IS_SRVROLEMEMBER(N'sysadmin') = 1 - BEGIN - IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - EXECUTE sp_executesql N'ALTER DATABASE [$(DatabaseName)] - SET HONOR_BROKER_PRIORITY OFF - WITH ROLLBACK IMMEDIATE'; - END - END -ELSE - BEGIN - PRINT N'The database settings cannot be modified. You must be a SysAdmin to apply these settings.'; - END - - -GO -USE [$(DatabaseName)] -GO -IF fulltextserviceproperty(N'IsFulltextInstalled') = 1 - EXECUTE sp_fulltext_database 'enable'; - - -GO -/* - Pre-Deployment Script Template --------------------------------------------------------------------------------------- - This file contains SQL statements that will be executed before the build script. - Use SQLCMD syntax to include a file in the pre-deployment script. - Example: :r .\myfile.sql - Use SQLCMD syntax to reference a variable in the pre-deployment script. - Example: :setvar TableName MyTable - SELECT * FROM [$(TableName)] --------------------------------------------------------------------------------------- -*/ - -GO --- Refactoring step to update target server with deployed transaction logs -CREATE TABLE [dbo].[__RefactorLog] (OperationKey UNIQUEIDENTIFIER NOT NULL PRIMARY KEY) -GO -sp_addextendedproperty N'microsoft_database_tools_support', N'refactoring log', N'schema', N'dbo', N'table', N'__RefactorLog' -GO - -GO -/* -Post-Deployment Script Template --------------------------------------------------------------------------------------- - This file contains SQL statements that will be appended to the build script. - Use SQLCMD syntax to include a file in the post-deployment script. - Example: :r .\myfile.sql - Use SQLCMD syntax to reference a variable in the post-deployment script. - Example: :setvar TableName MyTable - SELECT * FROM [$(TableName)] --------------------------------------------------------------------------------------- -*/ - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - DECLARE @VarDecimalSupported AS BIT; - SELECT @VarDecimalSupported = 0; - IF ((ServerProperty(N'EngineEdition') = 3) - AND (((@@microsoftversion / power(2, 24) = 9) - AND (@@microsoftversion & 0xffff >= 3024)) - OR ((@@microsoftversion / power(2, 24) = 10) - AND (@@microsoftversion & 0xffff >= 1600)))) - SELECT @VarDecimalSupported = 1; - IF (@VarDecimalSupported > 0) - BEGIN - EXECUTE sp_db_vardecimal_storage_format N'$(DatabaseName)', 'ON'; - END - END - - -GO -ALTER DATABASE [$(DatabaseName)] - SET MULTI_USER - WITH ROLLBACK IMMEDIATE; - - -GO diff --git a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqlcmdvars b/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqlcmdvars deleted file mode 100644 index 2c56120..0000000 --- a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqlcmdvars +++ /dev/null @@ -1,6 +0,0 @@ - - - 1.0 - - - \ No newline at end of file diff --git a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqldeployment b/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqldeployment deleted file mode 100644 index f80c7f2..0000000 --- a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqldeployment +++ /dev/null @@ -1,14 +0,0 @@ - - - 1.0 - - False - True - True - UseSourceModelCollation - False - False - False - False - - \ No newline at end of file diff --git a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqlsettings b/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqlsettings deleted file mode 100644 index adcf067..0000000 --- a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Database.sqlsettings +++ /dev/null @@ -1,52 +0,0 @@ - - - 1.0 - - - SQL_Latin1_General_CP1_CI_AS - True - True - True - True - True - True - True - False - False - ONLINE - READ_WRITE - False - LOCAL - False - True - False - True - False - MULTI_USER - FULL - True - False - PRIMARY - - - False - False - NONE - DisableBroker - False - SIMPLE - False - False - True - False - - - False - True - 2 - Days - False - False - - - diff --git a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Script.PostDeployment.sql b/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Script.PostDeployment.sql deleted file mode 100644 index 94a073a..0000000 --- a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Script.PostDeployment.sql +++ /dev/null @@ -1,11 +0,0 @@ -/* -Post-Deployment Script Template --------------------------------------------------------------------------------------- - This file contains SQL statements that will be appended to the build script. - Use SQLCMD syntax to include a file in the post-deployment script. - Example: :r .\myfile.sql - Use SQLCMD syntax to reference a variable in the post-deployment script. - Example: :setvar TableName MyTable - SELECT * FROM [$(TableName)] --------------------------------------------------------------------------------------- -*/ diff --git a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Script.PreDeployment.sql b/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Script.PreDeployment.sql deleted file mode 100644 index ffd8e79..0000000 --- a/main/MyFriendsAround.DB/sql/Tests/MyFriendsAround.DB_Script.PreDeployment.sql +++ /dev/null @@ -1,11 +0,0 @@ -/* - Pre-Deployment Script Template --------------------------------------------------------------------------------------- - This file contains SQL statements that will be executed before the build script. - Use SQLCMD syntax to include a file in the pre-deployment script. - Example: :r .\myfile.sql - Use SQLCMD syntax to reference a variable in the pre-deployment script. - Example: :setvar TableName MyTable - SELECT * FROM [$(TableName)] --------------------------------------------------------------------------------------- -*/ diff --git a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.dbschema b/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.dbschema deleted file mode 100644 index 4d64dfb..0000000 --- a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.dbschema +++ /dev/null @@ -1,41 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.deploymanifest b/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.deploymanifest deleted file mode 100644 index 98faad8..0000000 --- a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.deploymanifest +++ /dev/null @@ -1,41 +0,0 @@ - - - - MyFriendsAround.DB - False - True - MyFriendsAround.DB.dbschema - MyFriendsAround.DB.sql - MyFriendsAround.DB_Database.sqldeployment - - - MyFriendsAround.DB_Database.sqlcmdvars - - - - <__PostdeploymentMetadata> - - - - <__PredeploymentMetadata> - - - - - - Microsoft.Data.Schema.Sql - 10.0.0.0 - sD9ffxHVCjo= - - - Microsoft.Data.Schema.Sql - 10.0.0.0 - sD9ffxHVCjo= - - - Microsoft.Data.Schema.Sql - 10.0.0.0 - sD9ffxHVCjo= - - - \ No newline at end of file diff --git a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.sql b/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.sql deleted file mode 100644 index 4610897..0000000 --- a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB.sql +++ /dev/null @@ -1,211 +0,0 @@ -/* -Deployment script for MyFriendsAround.DB -*/ - -GO -SET ANSI_NULLS, ANSI_PADDING, ANSI_WARNINGS, ARITHABORT, CONCAT_NULL_YIELDS_NULL, QUOTED_IDENTIFIER ON; - -SET NUMERIC_ROUNDABORT OFF; - - -GO -:setvar DatabaseName "MyFriendsAround.DB" -:setvar DefaultDataPath "" -:setvar DefaultLogPath "" - -GO -:on error exit -GO -USE [master] -GO -IF (DB_ID(N'$(DatabaseName)') IS NOT NULL - AND DATABASEPROPERTYEX(N'$(DatabaseName)','Status') <> N'ONLINE') -BEGIN - RAISERROR(N'The state of the target database, %s, is not set to ONLINE. To deploy to this database, its state must be set to ONLINE.', 16, 127,N'$(DatabaseName)') WITH NOWAIT - RETURN -END - -GO -IF (DB_ID(N'$(DatabaseName)') IS NOT NULL) -BEGIN - ALTER DATABASE [$(DatabaseName)] - SET SINGLE_USER WITH ROLLBACK IMMEDIATE; - DROP DATABASE [$(DatabaseName)]; -END - -GO -PRINT N'Creating $(DatabaseName)...' -GO -CREATE DATABASE [$(DatabaseName)] COLLATE SQL_Latin1_General_CP1_CI_AS -GO -EXECUTE sp_dbcmptlevel [$(DatabaseName)], 100; - - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - ALTER DATABASE [$(DatabaseName)] - SET ANSI_NULLS ON, - ANSI_PADDING ON, - ANSI_WARNINGS ON, - ARITHABORT ON, - CONCAT_NULL_YIELDS_NULL ON, - NUMERIC_ROUNDABORT OFF, - QUOTED_IDENTIFIER ON, - ANSI_NULL_DEFAULT ON, - CURSOR_DEFAULT LOCAL, - RECOVERY FULL, - CURSOR_CLOSE_ON_COMMIT OFF, - AUTO_CREATE_STATISTICS ON, - AUTO_SHRINK OFF, - AUTO_UPDATE_STATISTICS ON, - RECURSIVE_TRIGGERS OFF - WITH ROLLBACK IMMEDIATE; - ALTER DATABASE [$(DatabaseName)] - SET AUTO_CLOSE OFF - WITH ROLLBACK IMMEDIATE; - END - - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - ALTER DATABASE [$(DatabaseName)] - SET ALLOW_SNAPSHOT_ISOLATION OFF; - END - - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - ALTER DATABASE [$(DatabaseName)] - SET READ_COMMITTED_SNAPSHOT OFF; - END - - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - ALTER DATABASE [$(DatabaseName)] - SET AUTO_UPDATE_STATISTICS_ASYNC OFF, - PAGE_VERIFY NONE, - DATE_CORRELATION_OPTIMIZATION OFF, - DISABLE_BROKER, - PARAMETERIZATION SIMPLE, - SUPPLEMENTAL_LOGGING OFF - WITH ROLLBACK IMMEDIATE; - END - - -GO -IF IS_SRVROLEMEMBER(N'sysadmin') = 1 - BEGIN - IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - EXECUTE sp_executesql N'ALTER DATABASE [$(DatabaseName)] - SET TRUSTWORTHY OFF, - DB_CHAINING OFF - WITH ROLLBACK IMMEDIATE'; - END - END -ELSE - BEGIN - PRINT N'The database settings cannot be modified. You must be a SysAdmin to apply these settings.'; - END - - -GO -IF IS_SRVROLEMEMBER(N'sysadmin') = 1 - BEGIN - IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - EXECUTE sp_executesql N'ALTER DATABASE [$(DatabaseName)] - SET HONOR_BROKER_PRIORITY OFF - WITH ROLLBACK IMMEDIATE'; - END - END -ELSE - BEGIN - PRINT N'The database settings cannot be modified. You must be a SysAdmin to apply these settings.'; - END - - -GO -USE [$(DatabaseName)] -GO -IF fulltextserviceproperty(N'IsFulltextInstalled') = 1 - EXECUTE sp_fulltext_database 'enable'; - - -GO -/* - Pre-Deployment Script Template --------------------------------------------------------------------------------------- - This file contains SQL statements that will be executed before the build script. - Use SQLCMD syntax to include a file in the pre-deployment script. - Example: :r .\myfile.sql - Use SQLCMD syntax to reference a variable in the pre-deployment script. - Example: :setvar TableName MyTable - SELECT * FROM [$(TableName)] --------------------------------------------------------------------------------------- -*/ - -GO --- Refactoring step to update target server with deployed transaction logs -CREATE TABLE [dbo].[__RefactorLog] (OperationKey UNIQUEIDENTIFIER NOT NULL PRIMARY KEY) -GO -sp_addextendedproperty N'microsoft_database_tools_support', N'refactoring log', N'schema', N'dbo', N'table', N'__RefactorLog' -GO - -GO -/* -Post-Deployment Script Template --------------------------------------------------------------------------------------- - This file contains SQL statements that will be appended to the build script. - Use SQLCMD syntax to include a file in the post-deployment script. - Example: :r .\myfile.sql - Use SQLCMD syntax to reference a variable in the post-deployment script. - Example: :setvar TableName MyTable - SELECT * FROM [$(TableName)] --------------------------------------------------------------------------------------- -*/ - -GO -IF EXISTS (SELECT 1 - FROM [master].[dbo].[sysdatabases] - WHERE [name] = N'$(DatabaseName)') - BEGIN - DECLARE @VarDecimalSupported AS BIT; - SELECT @VarDecimalSupported = 0; - IF ((ServerProperty(N'EngineEdition') = 3) - AND (((@@microsoftversion / power(2, 24) = 9) - AND (@@microsoftversion & 0xffff >= 3024)) - OR ((@@microsoftversion / power(2, 24) = 10) - AND (@@microsoftversion & 0xffff >= 1600)))) - SELECT @VarDecimalSupported = 1; - IF (@VarDecimalSupported > 0) - BEGIN - EXECUTE sp_db_vardecimal_storage_format N'$(DatabaseName)', 'ON'; - END - END - - -GO -ALTER DATABASE [$(DatabaseName)] - SET MULTI_USER - WITH ROLLBACK IMMEDIATE; - - -GO diff --git a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqlcmdvars b/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqlcmdvars deleted file mode 100644 index 2c56120..0000000 --- a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqlcmdvars +++ /dev/null @@ -1,6 +0,0 @@ - - - 1.0 - - - \ No newline at end of file diff --git a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqldeployment b/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqldeployment deleted file mode 100644 index f80c7f2..0000000 --- a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqldeployment +++ /dev/null @@ -1,14 +0,0 @@ - - - 1.0 - - False - True - True - UseSourceModelCollation - False - False - False - False - - \ No newline at end of file diff --git a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqlsettings b/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqlsettings deleted file mode 100644 index adcf067..0000000 --- a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Database.sqlsettings +++ /dev/null @@ -1,52 +0,0 @@ - - - 1.0 - - - SQL_Latin1_General_CP1_CI_AS - True - True - True - True - True - True - True - False - False - ONLINE - READ_WRITE - False - LOCAL - False - True - False - True - False - MULTI_USER - FULL - True - False - PRIMARY - - - False - False - NONE - DisableBroker - False - SIMPLE - False - False - True - False - - - False - True - 2 - Days - False - False - - - diff --git a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Script.PostDeployment.sql b/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Script.PostDeployment.sql deleted file mode 100644 index 94a073a..0000000 --- a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Script.PostDeployment.sql +++ /dev/null @@ -1,11 +0,0 @@ -/* -Post-Deployment Script Template --------------------------------------------------------------------------------------- - This file contains SQL statements that will be appended to the build script. - Use SQLCMD syntax to include a file in the post-deployment script. - Example: :r .\myfile.sql - Use SQLCMD syntax to reference a variable in the post-deployment script. - Example: :setvar TableName MyTable - SELECT * FROM [$(TableName)] --------------------------------------------------------------------------------------- -*/ diff --git a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Script.PreDeployment.sql b/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Script.PreDeployment.sql deleted file mode 100644 index ffd8e79..0000000 --- a/main/MyFriendsAround.DB/sql/debug/MyFriendsAround.DB_Script.PreDeployment.sql +++ /dev/null @@ -1,11 +0,0 @@ -/* - Pre-Deployment Script Template --------------------------------------------------------------------------------------- - This file contains SQL statements that will be executed before the build script. - Use SQLCMD syntax to include a file in the pre-deployment script. - Example: :r .\myfile.sql - Use SQLCMD syntax to reference a variable in the pre-deployment script. - Example: :setvar TableName MyTable - SELECT * FROM [$(TableName)] --------------------------------------------------------------------------------------- -*/