forked from nikhilk/scriptsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoreScript.csproj
More file actions
55 lines (55 loc) · 2.87 KB
/
Copy pathCoreScript.csproj
File metadata and controls
55 lines (55 loc) · 2.87 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
<?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>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8780581F-7C26-4B64-9235-BA1C458DF36E}</ProjectGuid>
<ToolsPath>..\..\..\tools\bin</ToolsPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>..\..\..\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>..\..\..\bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Content Include="BCL\Task.js" />
<Content Include="loader.js" />
<Content Include="mscorlib.js" />
<Content Include="Extensions\Array.js" />
<Content Include="Extensions\Number.js" />
<Content Include="Extensions\Object.js" />
<Content Include="Extensions\RegExp.js" />
<Content Include="Extensions\String.js" />
<Content Include="Extensions\Boolean.js" />
<Content Include="Extensions\Date.js" />
<Content Include="Extensions\Error.js" />
<Content Include="BCL\App.js" />
<Content Include="BCL\Tuple.js" />
<Content Include="BCL\Observable.js" />
<Content Include="BCL\Debug.js" />
<Content Include="BCL\Delegate.js" />
<Content Include="BCL\ArrayEnumerator.js" />
<Content Include="BCL\CancelEventArgs.js" />
<Content Include="BCL\CultureInfo.js" />
<Content Include="BCL\EventArgs.js" />
<Content Include="BCL\IDisposable.js" />
<Content Include="BCL\IEnumerable.js" />
<Content Include="BCL\IEnumerator.js" />
<Content Include="BCL\StringBuilder.js" />
<Content Include="TypeSystem\Type.js" />
</ItemGroup>
<Target Name="Build">
<Exec Command="$(ToolsPath)\sspp.exe /nologo /debug /d:DEBUG /crlf /input:$(ProjectDir)mscorlib.js /output:$(OutputPath)\mscorlib.debug.js" />
<Exec Command="$(ToolsPath)\sspp.exe /nologo /stripCommentsOnly /crlf /input:$(ProjectDir)mscorlib.js /output:$(OutputPath)\mscorlib.rel.js" />
<Exec Command="$(ToolsPath)\sspp.exe /nologo /debug /d:DEBUG /crlf /input:$(ProjectDir)loader.js /output:$(OutputPath)\ssloader.debug.js" />
<Exec Command="$(ToolsPath)\sspp.exe /nologo /stripCommentsOnly /crlf /input:$(ProjectDir)loader.js /output:$(OutputPath)\ssloader.rel.js" />
<Exec Command="$(ToolsPath)\ajaxmin.exe -clobber:true $(OutputPath)\mscorlib.rel.js -out $(OutputPath)\mscorlib.js" />
<Exec Command="$(ToolsPath)\ajaxmin.exe -clobber:true $(OutputPath)\ssloader.rel.js -out $(OutputPath)\ssloader.js" />
</Target>
<Target Name="Clean">
</Target>
<Target Name="Rebuild" DependsOnTargets="Clean;Build" />
</Project>