This repository was archived by the owner on Oct 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsdk.csproj
More file actions
87 lines (87 loc) · 3.38 KB
/
sdk.csproj
File metadata and controls
87 lines (87 loc) · 3.38 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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{799E354F-E323-408C-9733-7F1896342663}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>sdk</RootNamespace>
<AssemblyName>sdk</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Data" />
<Reference Include="System.Web" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="..\AlchemyAPI.cs">
<Link>AlchemyAPI.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_BaseParams.cs">
<Link>AlchemyAPI_BaseParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_CategoryParams.cs">
<Link>AlchemyAPI_CategoryParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_ConceptParams.cs">
<Link>AlchemyAPI_ConceptParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_ConstraintQueryParams.cs">
<Link>AlchemyAPI_ConstraintQueryParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_EntityParams.cs">
<Link>AlchemyAPI_EntityParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_KeywordParams.cs">
<Link>AlchemyAPI_KeywordParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_LanguageParams.cs">
<Link>AlchemyAPI_LanguageParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_RelationParams.cs">
<Link>AlchemyAPI_RelationParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_TargetedSentimentParams.cs">
<Link>AlchemyAPI_TargetedSentimentParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_TextParams.cs">
<Link>AlchemyAPI_TextParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_CombinedDataParams.cs">
<Link>AlchemyAPI_CombinedDataParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_TaxonomyParams.cs">
<Link>AlchemyAPI_TaxonomyParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_ImageParams.cs">
<Link>AlchemyAPI_ImageParams.cs</Link>
</Compile>
<Compile Include="..\AlchemyAPI_RankedImageKeywords.cs">
<Link>AlchemyAPI_RankedImageKeywords.cs</Link>
</Compile>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>