-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReApptor.TypeScript.Linq.csproj
57 lines (49 loc) · 2.08 KB
/
ReApptor.TypeScript.Linq.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<OutputType>Module</OutputType>
</PropertyGroup>
<PropertyGroup>
<Version>1.0.0.0</Version>
<PackageVersion>1.0.0.0</PackageVersion>
<Copyright>Copyright © 2022, ReApptor Oy</Copyright>
<Product>ReApptor Components</Product>
<Authors>ReApptor Oy</Authors>
<Company>ReApptor Oy</Company>
</PropertyGroup>
<ItemGroup>
<Compile Remove="lib\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="lib\**" />
</ItemGroup>
<ItemGroup>
<None Remove="lib\**" />
<None Remove="package-lock.json" />
<None Remove=".eslintrc.json" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="dist\src\extensions\ArrayExtensions.d.ts" />
<TypeScriptCompile Include="dist\src\index.d.ts" />
<TypeScriptCompile Include="dist\src\utilities\ArrayUtility.d.ts" />
<TypeScriptCompile Include="src\extensions\ArrayExtensions.ts" />
<TypeScriptCompile Include="src\index.ts" />
<TypeScriptCompile Include="src\tests\ArrayUtility.count.spec.ts" />
<TypeScriptCompile Include="src\tests\ArrayUtility.distinct.spec.ts" />
<TypeScriptCompile Include="src\tests\ArrayUtility.skip.spec.ts" />
<TypeScriptCompile Include="src\tests\ArrayUtility.take.spec.ts" />
<TypeScriptCompile Include="src\tests\ArrayUtility.takeLast.spec.ts" />
<TypeScriptCompile Include="src\tests\ArrayUtility.takeWhile.spec.ts" />
<TypeScriptCompile Include="src\utilities\ArrayUtility.ts" />
</ItemGroup>
<ItemGroup>
<Content Include=".github\ISSUE_TEMPLATE\bug_report.md" />
<Content Include=".github\ISSUE_TEMPLATE\feature_request.md" />
<Content Include=".github\pull_request_template.md" />
<Content Include="dist\index.js" />
<Content Include="dist\package.json" />
<Content Include="dist\README.md" />
<Content Include="README.md" />
<Content Include=".npmrc" />
</ItemGroup>
</Project>