-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebAppLab.csproj
44 lines (38 loc) · 1.8 KB
/
WebAppLab.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
</PropertyGroup>
<ItemGroup>
<Content Remove="wwwroot\App\Agencia\Grid.ts" />
<Content Remove="wwwroot\App\Alquiler\Edit.ts" />
<Content Remove="wwwroot\App\Alquiler\Grid.ts" />
<Content Remove="wwwroot\App\Cliente\Grid.ts" />
<Content Remove="wwwroot\App\Edit.ts" />
<Content Remove="wwwroot\App\Login.ts" />
<Content Remove="wwwroot\App\MarcaVehiculo\Edit.ts" />
<Content Remove="wwwroot\App\MarcaVehiculo\Grid.ts" />
<Content Remove="wwwroot\App\Registrarse.ts" />
<Content Remove="wwwroot\Assets\Plugin\axios\AxiosConfig.ts" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Session" Version="2.2.0" />
<PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Entity\Entity.csproj" />
<ProjectReference Include="..\WBL\WBL.csproj" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="wwwroot\App\Agencia\Grid.ts" />
<TypeScriptCompile Include="wwwroot\App\Alquiler\Edit.ts" />
<TypeScriptCompile Include="wwwroot\App\Alquiler\Grid.ts" />
<TypeScriptCompile Include="wwwroot\App\Cliente\Grid.ts" />
<TypeScriptCompile Include="wwwroot\App\Login.ts" />
<TypeScriptCompile Include="wwwroot\App\MarcaVehiculo\Edit.ts" />
<TypeScriptCompile Include="wwwroot\App\MarcaVehiculo\Grid.ts" />
<TypeScriptCompile Include="wwwroot\App\Registrarse.ts" />
<TypeScriptCompile Include="wwwroot\Assets\Plugin\axios\AxiosConfig.ts" />
</ItemGroup>
</Project>