Skip to content

Commit 1ffbbbd

Browse files
committed
Added missing files
1 parent 8ed803e commit 1ffbbbd

18 files changed

+30661
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
@using System.Web.Mvc
2+
3+
@helper Example1(){
4+
<a data-sql="SELECT TOP 10 * FROM PUBS" href="#">Example 1</a>
5+
}
6+
7+
@helper Example2(){
8+
<a data-sql="SELECT TOP (10) * FROM PUBS" href="#">Example 2</a>
9+
}
10+
11+
12+
@helper Example3(){
13+
<a data-sql="
14+
CREATE PROCEDURE dbo._Stored_Procedure_Template
15+
(
16+
@@Parameter_1 INT,
17+
@@Parameter_2 VARCHAR(50) = ''
18+
)
19+
AS
20+
SET NOCOUNT ON;
21+
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
22+
23+
-- Created: mm/dd/yy userid
24+
-- Purpose: (specific description of functionality)
25+
-- Used in: (original page name and/or procedure name)
26+
27+
-- mm/dd/yy userid: Change comment
28+
29+
-- Meaningful code goes here
30+
31+
RETURN;
32+
GO" href="#">Example 3</a>
33+
}
34+
35+
@helper Example4(){
36+
<a data-sql="
37+
CREATE PROCEDURE dbo._Stored_Procedure_Template
38+
(
39+
@@Parameter_1 INT,
40+
@@Parameter_2 VARCHAR(50) = ''
41+
)
42+
AS
43+
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
44+
45+
-- Created: mm/dd/yy userid
46+
-- Purpose: (specific description of functionality)
47+
-- Used in: (original page name and/or procedure name)
48+
49+
-- mm/dd/yy userid: Change comment
50+
51+
-- Meaningful code goes here
52+
53+
RETURN;
54+
GO" href="#">Example 4</a>
55+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
4+
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121.
5+
-->
6+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
7+
<PropertyGroup>
8+
<WebPublishMethod>Package</WebPublishMethod>
9+
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
10+
<LastUsedPlatform>Any CPU</LastUsedPlatform>
11+
<SiteUrlToLaunchAfterPublish />
12+
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
13+
<ExcludeApp_Data>False</ExcludeApp_Data>
14+
<DesktopBuildPackageLocation>C:\My\SqlCopDeployment\SqlCop.DemoClient.zip</DesktopBuildPackageLocation>
15+
<PackageAsSingleFile>true</PackageAsSingleFile>
16+
<DeployIisAppPath>SqlCop</DeployIisAppPath>
17+
<PublishDatabaseSettings>
18+
<Objects xmlns="">
19+
<ObjectGroup Name="DefaultConnection" Order="1" Enabled="False">
20+
<Destination Path="" />
21+
<Object Type="DbDacFx">
22+
<PreSource Path="Data Source=(LocalDb)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-SqlCop.DemoClient-20140429081302.mdf;Initial Catalog=aspnet-SqlCop.DemoClient-20140429081302;Integrated Security=True" includeData="False" />
23+
<Source Path="$(IntermediateOutputPath)AutoScripts\DefaultConnection_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
24+
</Object>
25+
<UpdateFrom Type="Web.Config">
26+
<Source MatchValue="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-SqlCop.DemoClient-20140429081302;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-SqlCop.DemoClient-20140429081302.mdf" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
27+
</UpdateFrom>
28+
</ObjectGroup>
29+
</Objects>
30+
</PublishDatabaseSettings>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<MSDeployParameterValue Include="$(DeployParameterPrefix)DefaultConnection-Web.config Connection String" />
34+
</ItemGroup>
35+
</Project>

SqlCop.DemoClient/Scripts/jquery-2.1.0.intellisense.js

Lines changed: 2670 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)