-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextAnalyzerWebApp.csproj
More file actions
35 lines (29 loc) · 1.27 KB
/
Copy pathTextAnalyzerWebApp.csproj
File metadata and controls
35 lines (29 loc) · 1.27 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<TypeScriptToolsVersion>3.1</TypeScriptToolsVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="ClientApp\app\app.component.ts" />
<None Remove="ClientApp\app\app.module.ts" />
<None Remove="ClientApp\app\main.ts" />
<None Remove="ClientApp\app\metrics-result\metrics-result.component.ts" />
<None Remove="ClientApp\app\polyfills.ts" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TextAnalyzeLib\TextAnalyzeLib.csproj" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="ClientApp\app\app.module.ts" />
<TypeScriptCompile Include="ClientApp\app\app.component.ts" />
<TypeScriptCompile Include="ClientApp\app\data.service.ts" />
<TypeScriptCompile Include="ClientApp\app\metrics-result\metrics-result.component.ts" />
<TypeScriptCompile Include="ClientApp\main.ts" />
<TypeScriptCompile Include="ClientApp\polyfills.ts" />
</ItemGroup>
</Project>