-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotebook.csproj
More file actions
88 lines (88 loc) · 3.98 KB
/
Copy pathNotebook.csproj
File metadata and controls
88 lines (88 loc) · 3.98 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<ProjectGuid>{B66458FC-92B3-4A0A-919F-DF40D45E64A8}</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>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>4.0</OldToolsVersion>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UpgradeBackupLocation />
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Notebook</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="lib\node.d.ts" />
<Content Include="src\algorithms\graph\disjoint-set.ts" />
<TypeScriptCompile Include="src\utils\strings.ts" />
<TypeScriptCompile Include="src\algorithms\strings\suffix-array.ts" />
<Content Include="src\algorithms\strings\file1.js">
<DependentUpon>suffix-array.ts</DependentUpon>
</Content>
<TypeScriptCompile Include="src\utils\arrays.ts" />
<Content Include="src\utils\arrays.js">
<DependentUpon>arrays.ts</DependentUpon>
</Content>
<Content Include="src\utils\strings.js">
<DependentUpon>strings.ts</DependentUpon>
</Content>
<Content Include="test\algorithms\graph\disjoint-set.ts" />
<TypeScriptCompile Include="test\algorithms\strings\suffix-array.ts" />
<Content Include="test\algorithms\strings\suffix-array.js">
<DependentUpon>suffix-array.ts</DependentUpon>
</Content>
<Content Include="test\base\test.ts" />
<Content Include="test\file1.js">
<DependentUpon>run.ts</DependentUpon>
</Content>
<TypeScriptCompile Include="test\run.ts" />
</ItemGroup>
<ItemGroup>
<Content Include="test\algorithms\graph\disjoint-set.test-data" />
</ItemGroup>
<ItemGroup>
<Content Include="README.md" />
</ItemGroup>
<ItemGroup>
<Content Include="test\algorithms\strings\suffix-array.test-data" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>True</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>0</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:15556/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<Target Name="BeforeBuild">
<Exec Command=""$(PROGRAMFILES)\Microsoft SDKs\TypeScript\0.8.0.0\tsc" @(TypeScriptCompile ->'"%(fullpath)"', ' ')" />
</Target>
</Project>