-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathAngleSharp.Scripting.JavaScript.csproj
More file actions
89 lines (89 loc) · 4.48 KB
/
AngleSharp.Scripting.JavaScript.csproj
File metadata and controls
89 lines (89 loc) · 4.48 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.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>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4ED5A0B3-AE7A-40B6-BBAC-FF408D6C6BC3}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AngleSharp.Scripting.JavaScript</RootNamespace>
<AssemblyName>AngleSharp.Scripting.JavaScript</AssemblyName>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
</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>
<DocumentationFile>bin\Release\AngleSharp.Scripting.JavaScript.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="AngleSharp, Version=0.9.9.0, Culture=neutral, PublicKeyToken=e83494dcdc6d31ea, processorArchitecture=MSIL">
<HintPath>..\packages\AngleSharp.0.9.9\lib\portable-windows8+net45+windowsphone8+wpa+monoandroid+monotouch\AngleSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="jint, Version=2.10.4.0, Culture=neutral, PublicKeyToken=2e92ba9c8d81157f, processorArchitecture=MSIL">
<HintPath>..\packages\jint.2.10.4\lib\portable40-net40+sl5+win8+wp8+wpa81\jint.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
<Reference Include="System.Xml.Linq" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="DomPrototypeInstance.cs" />
<Compile Include="JsApiExtensions.cs" />
<Compile Include="Attributes\DomInstanceAttribute.cs" />
<Compile Include="JsConfigurationExtensions.cs" />
<Compile Include="ConsoleInstance.cs" />
<Compile Include="DomConstructorInstance.cs" />
<Compile Include="DomConstructors.cs" />
<Compile Include="DomEventInstance.cs" />
<Compile Include="Dom\DomParser.cs" />
<Compile Include="Dom\Navigator.cs" />
<Compile Include="Dom\RequesterState.cs" />
<Compile Include="Dom\Screen.cs" />
<Compile Include="Dom\WindowBase64.cs" />
<Compile Include="Dom\XmlHttpRequest.cs" />
<Compile Include="Dom\XmlHttpRequestEventTarget.cs" />
<Compile Include="Dom\XmlHttpRequestResponseType.cs" />
<Compile Include="Dom\XmlHttpRequestUpload.cs" />
<Compile Include="EngineInstance.cs" />
<Compile Include="DomDelegates.cs" />
<Compile Include="DomFunctionInstance.cs" />
<Compile Include="DomNodeInstance.cs" />
<Compile Include="DomTypeConverter.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="JavaScriptEngine.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PrototypeCache.cs" />
<Compile Include="ReferenceCache.cs" />
<Compile Include="Services\IConsoleLogger.cs" />
<Compile Include="Services\JavaScriptProvider.cs" />
<Compile Include="SystemTypeConverter.cs" />
<Compile Include="UnresolvedConverter.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
</Project>