-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathGxNetCoreStartup.csproj
More file actions
49 lines (43 loc) · 2.47 KB
/
Copy pathGxNetCoreStartup.csproj
File metadata and controls
49 lines (43 loc) · 2.47 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<PackageTags>GxNetCoreStartup</PackageTags>
<PackageId>GeneXus.NetCoreStartup</PackageId>
<GxGenerateDepsFile>true</GxGenerateDepsFile>
<NoWarn>$(NoWarn);NU1701</NoWarn>
<EnableDefaultContentItems>false</EnableDefaultContentItems>
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);CustomContentTarget</TargetsForTfmSpecificContentInPackage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="8.0.3" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.6" />
<PackageReference Include="Microsoft.Extensions.Caching.SqlServer" Version="3.1.3" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.3" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.84.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.5.0" />
<PackageReference Include="Azure.Identity" Version="1.21.0" PrivateAssets="All" />
<PackageReference Include="Azure.Monitor.OpenTelemetry.Exporter" Version="1.8.1" PrivateAssets="All" />
<PackageReference Include="OpenTelemetry" Version="1.15.3" PrivateAssets="All" />
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.15.3" PrivateAssets="All" />
<PackageReference Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.22.0" PrivateAssets="All" />
<PackageReference Include="itext7" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="itext7.font-asian" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="itext7.pdfhtml" Version="5.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GxClasses.Web\GxClasses.Web.csproj" />
<ProjectReference Include="..\GxClasses\GxClasses.csproj" />
</ItemGroup>
<Target Name="CustomContentTarget">
<ItemGroup>
<TfmSpecificPackageFile Include="$(OutputPath)\$(MSBuildProjectName).deps.json">
<PackagePath>contentFiles/any/$(TargetFramework)</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
</TfmSpecificPackageFile>
<TfmSpecificPackageFile Include="$(OutputPath)\$(MSBuildProjectName).runtimeconfig.json">
<PackagePath>contentFiles/any/$(TargetFramework)</PackagePath>
<PackageCopyToOutput>true</PackageCopyToOutput>
</TfmSpecificPackageFile>
</ItemGroup>
</Target>
</Project>