This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
load.js.csproj
103 lines (103 loc) · 4.99 KB
/
load.js.csproj
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
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<ProjectGuid>{2BF098CA-CDBB-4117-92E1-DC4BD2F3E878}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<OutputPath>bin</OutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<TypeScriptToolsVersion>1.0</TypeScriptToolsVersion>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
</PropertyGroup>
<ItemGroup>
<Content Include="dist\load.js" />
<Content Include="dist\load.min.js" />
<Content Include="gruntfile.js" />
<Content Include=".travis.yml" />
<Content Include="test\index.html" />
<Content Include="test\js\foo.js" />
<Content Include="test\js\duplicate.js" />
<Content Include="test\js\load1label.js" />
<Content Include="test\js\load1.js" />
<Content Include="test\js\base-url.js" />
<Content Include="test\js\multi4.js" />
<Content Include="test\js\multi6.js" />
<Content Include="test\js\multi5.js" />
<Content Include="test\js\null-label.js" />
<Content Include="test\js\labelled-then.js" />
<Content Include="test\js\when-multi1.js" />
<Content Include="test\js\when-multi2.js" />
<Content Include="test\js\req-foo.js" />
<Content Include="test\js\multi2.js" />
<Content Include="test\js\multi3.js" />
<Content Include="test\js\multi1.js" />
<Content Include="test\js\when-file2.js" />
<Content Include="test\js\when-file.js" />
<Content Include="test\js\when-first.js" />
<Content Include="test\load.js" />
<Content Include="test\invalid.js" />
<Content Include="test\base-url.js" />
<Content Include="test\when.js" />
<Content Include="test\then.js" />
<Content Include="test\js\when-label.js" />
<Content Include="test\js\seq1.js" />
<Content Include="test\js\seq2.js" />
<Content Include="test\js\seq3.js" />
<Content Include="test\js\seq4.js" />
<Content Include="dist\bower.json" />
<Content Include="dist\README.md" />
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="dist\load.d.ts" />
<TypeScriptCompile Include="src\load.ts" />
</ItemGroup>
<ItemGroup>
<None Include="package.json" />
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>load.js</RootNamespace>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets')" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>True</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>61093</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:61093/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<TypeScriptRemoveComments>false</TypeScriptRemoveComments>
<TypeScriptSourceMap>true</TypeScriptSourceMap>
<TypeScriptModuleKind>commonjs</TypeScriptModuleKind>
<TypeScriptOutDir>./bin</TypeScriptOutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<TypeScriptRemoveComments>true</TypeScriptRemoveComments>
<TypeScriptSourceMap>false</TypeScriptSourceMap>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets')" />
</Project>