-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommonSPA.csproj
More file actions
91 lines (91 loc) · 4.24 KB
/
CommonSPA.csproj
File metadata and controls
91 lines (91 loc) · 4.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0C4C76E7-C96A-422B-976E-C443293D9921}</ProjectGuid>
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>ClassLibrary</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>CommonSPA</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Include=".bowerrc" />
<None Include="bower.json" />
<None Include="Overview.vsdx" />
<None Include="package.json" />
<None Include="src\css\theme.less" />
<None Include="test\.bowerrc" />
<None Include="test\bower.json" />
<None Include=".gitignore" />
<None Include="gulpfile.js" />
<None Include="karma.conf.js" />
<None Include="Readme.txt" />
<None Include="src\app\extentions\jquery.fontselect.js" />
<None Include="src\app\extentions\knockout.binders.element.js" />
<None Include="src\app\extentions\knockout.extenders.numeric.js" />
<None Include="src\app\extentions\knockout.binders.preload.js" />
<None Include="src\app\extentions\knockout.subscribable.subscribeBoth.js" />
<None Include="src\app\mylib.js" />
<None Include="src\app\require.config.js" />
<None Include="src\app\router.js" />
<None Include="src\app\sitemap.js" />
<None Include="src\app\startup.js" />
<None Include="src\app\api.js" />
<None Include="src\components\about-page\about-page.html" />
<None Include="src\components\blank-page\blank-page.html" />
<None Include="src\components\common\basecomponent.js" />
<None Include="src\components\common\persistable.js" />
<None Include="src\components\contact-page\contact-page.html" />
<None Include="src\components\contact-page\contact-page.js" />
<None Include="src\components\home-page\home-page.html" />
<None Include="src\components\home-page\home-page.js" />
<None Include="src\components\map-page\map-page.html" />
<None Include="src\components\map-page\map-page.js" />
<None Include="src\components\nav-bar\nav-bar.html" />
<None Include="src\components\nav-bar\nav-bar.js" />
<None Include="src\components\resume-page\resume-page.html" />
<None Include="src\components\resume-page\resume-page.js" />
<None Include="src\components\services-page\services-page.html" />
<None Include="src\components\services-page\services-page.js" />
<None Include="src\components\software-page\software-page.html" />
<None Include="src\components\software-page\software-page.js" />
<None Include="src\css\styles.css" />
<None Include="src\index.html" />
<None Include="test\components\home-page.js" />
<None Include="test\index.html" />
<None Include="test\require.config.js" />
<None Include="test\SpecRunner.browser.js" />
<None Include="test\SpecRunner.karma.js" />
<!--<None Exclude="wwwroot\**\*.*" />
<None Exclude="test\bower_modules\**\*.*" />
<None Exclude="node_modules\**\*.*" />
<None Exclude="src\bower_modules\**\*.*" />-->
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />
</ProjectExtensions>
<Import Project="$(MSBuildToolsPath)\Custom.Node.Targets" />
</Project>