Skip to content

Commit 8efad88

Browse files
author
gianluca.cagnin
committed
versione 2
1 parent 0737453 commit 8efad88

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+4284
-2187
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,3 +211,4 @@ GeneratedArtifacts/
211211
_Pvt_Extensions/
212212
ModelManifest.xml
213213
bower_components
214+
.tscache

AngularUtils.csproj

Lines changed: 19 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,12 @@
3838
<Content Include="bower_components\components-font-awesome\css\font-awesome.min.css" />
3939
<Content Include="bower_components\components-font-awesome\fonts\fontawesome-webfont.svg" />
4040
<Content Include="bower_components\jquery\dist\jquery.js" />
41-
<Content Include="dist\AngularUtils.js" />
42-
<Content Include="dist\auDatepicker.js" />
43-
<Content Include="dist\auHelper.js" />
44-
<Content Include="dist\AuHttpDateFix.js" />
45-
<Content Include="dist\demo.js" />
46-
<Content Include="index.html" />
41+
<Content Include="gruntfile.js" />
42+
<Content Include="demo\index.html" />
4743
<Content Include="web.config" />
4844
</ItemGroup>
4945
<ItemGroup>
50-
<TypeScriptCompile Include="auDatepicker.ts" />
51-
<TypeScriptCompile Include="AngularUtils.ts" />
52-
<TypeScriptCompile Include="AuHttpDateFix.ts" />
53-
<TypeScriptCompile Include="auHelper.ts" />
54-
<TypeScriptCompile Include="demo.ts" />
46+
<TypeScriptCompile Include="demo\demo.ts" />
5547
<TypeScriptCompile Include="Scripts\typings\angularjs\angular-animate.d.ts" />
5648
<TypeScriptCompile Include="Scripts\typings\angularjs\angular-component-router.d.ts" />
5749
<TypeScriptCompile Include="Scripts\typings\angularjs\angular-cookies.d.ts" />
@@ -64,6 +56,18 @@
6456
<TypeScriptCompile Include="Scripts\typings\bootstrap\bootstrap.d.ts" />
6557
<TypeScriptCompile Include="Scripts\typings\es6-promise\es6-promise.d.ts" />
6658
<TypeScriptCompile Include="Scripts\typings\jquery\jquery.d.ts" />
59+
<TypeScriptCompile Include="src\au-button.ts" />
60+
<TypeScriptCompile Include="src\au-click-on-key-enter.ts" />
61+
<TypeScriptCompile Include="src\au-compare-to.ts" />
62+
<TypeScriptCompile Include="src\au-core.ts" />
63+
<TypeScriptCompile Include="src\au-errors.ts" />
64+
<TypeScriptCompile Include="src\au-fileread.ts" />
65+
<TypeScriptCompile Include="src\au-http-activity.ts" />
66+
<TypeScriptCompile Include="src\au-input.ts" />
67+
<TypeScriptCompile Include="src\au-datepicker.ts" />
68+
<TypeScriptCompile Include="src\au-loading.ts" />
69+
<TypeScriptCompile Include="src\au-ng-utils.ts" />
70+
<TypeScriptCompile Include="src\au-http-date-parser.ts" />
6771
</ItemGroup>
6872
<ItemGroup>
6973
<Content Include="bower_components\bootstrap\dist\css\bootstrap-theme.css.map" />
@@ -75,27 +79,13 @@
7579
<Content Include="bower_components\bootstrap\dist\fonts\glyphicons-halflings-regular.woff" />
7680
<Content Include="bower_components\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2" />
7781
<Content Include="bower.json" />
78-
<Content Include="dist\AngularUtils.js.map">
79-
<DependentUpon>AngularUtils.js</DependentUpon>
80-
</Content>
81-
<Content Include="dist\demo.js.map">
82-
<DependentUpon>demo.js</DependentUpon>
83-
</Content>
8482
<Content Include="bower_components\components-font-awesome\fonts\fontawesome-webfont.eot" />
8583
<Content Include="bower_components\components-font-awesome\fonts\fontawesome-webfont.ttf" />
8684
<Content Include="bower_components\components-font-awesome\fonts\fontawesome-webfont.woff" />
8785
<Content Include="bower_components\components-font-awesome\fonts\fontawesome-webfont.woff2" />
8886
<Content Include="bower_components\components-font-awesome\fonts\FontAwesome.otf" />
89-
<Content Include="dist\auDatepicker.js.map">
90-
<DependentUpon>auDatepicker.js</DependentUpon>
91-
</Content>
92-
<Content Include="dist\AuHttpDateFix.js.map">
93-
<DependentUpon>AuHttpDateFix.js</DependentUpon>
94-
</Content>
95-
<Content Include="dist\auHelper.js.map">
96-
<DependentUpon>auHelper.js</DependentUpon>
97-
</Content>
9887
<Content Include="packages.config" />
88+
<Content Include="package.json" />
9989
<None Include="web.Debug.config">
10090
<DependentUpon>web.config</DependentUpon>
10191
</None>
@@ -135,9 +125,10 @@
135125
<TypeScriptSourceMap>true</TypeScriptSourceMap>
136126
<TypeScriptTarget>ES5</TypeScriptTarget>
137127
<TypeScriptJSXEmit>None</TypeScriptJSXEmit>
138-
<TypeScriptCompileOnSaveEnabled>True</TypeScriptCompileOnSaveEnabled>
128+
<TypeScriptCompileOnSaveEnabled>False</TypeScriptCompileOnSaveEnabled>
139129
<TypeScriptNoImplicitAny>False</TypeScriptNoImplicitAny>
140-
<TypeScriptModuleKind>None</TypeScriptModuleKind>
130+
<TypeScriptModuleKind>
131+
</TypeScriptModuleKind>
141132
<TypeScriptOutFile>
142133
</TypeScriptOutFile>
143134
<TypeScriptOutDir>dist/</TypeScriptOutDir>

0 commit comments

Comments
 (0)