-
Notifications
You must be signed in to change notification settings - Fork 17
/
OneNoteApi.csproj
33 lines (33 loc) · 1.62 KB
/
OneNoteApi.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.Default.props" />
<PropertyGroup>
<ProjectGuid>{523C9308-B7F5-4C53-8A33-FCA2F34F6AE3}</ProjectGuid>
<OutputType>Library</OutputType>
<OutputPath>target\</OutputPath>
<IntermediateOutputPath>build\</IntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Content Include="*.json" />
<Content Include="*.js" />
<Content Include="src\**\*" Exclude="src\**\*.ts*" />
<TypeScriptCompile Include="src\**\*.ts*" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<TypeScriptCompileOnSaveEnabled>False</TypeScriptCompileOnSaveEnabled>
<TypeScriptJSXEmit>Preserve</TypeScriptJSXEmit>
<TypeScriptModuleKind>CommonJS</TypeScriptModuleKind>
<TypeScriptTarget>ES5</TypeScriptTarget>
<TypeScriptNoImplicitAny>False</TypeScriptNoImplicitAny>
<TypeScriptRemoveComments>False</TypeScriptRemoveComments>
<TypeScriptOutFile />
<TypeScriptOutDir />
<TypeScriptGeneratesDeclarations>False</TypeScriptGeneratesDeclarations>
<TypeScriptNoEmitOnError>True</TypeScriptNoEmitOnError>
<TypeScriptSourceMap>True</TypeScriptSourceMap>
<TypeScriptMapRoot />
<TypeScriptSourceRoot />
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" />
<Target Name="Build" />
</Project>