2021-05-18 11:13:21 +05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-04-02 17:28:07 +05:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-05-18 11:13:21 +05:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2021-04-02 17:28:07 +05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-05-19 15:21:19 +05:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2021-05-19 15:50:09 +05:00
|
|
|
|
<NoWarn>1701;1702;IDE0090;IDE0063;IDE0066</NoWarn>
|
2021-05-19 15:21:19 +05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-04-02 17:28:07 +05:00
|
|
|
|
<ItemGroup>
|
2021-05-18 12:33:23 +05:00
|
|
|
|
<PackageReference Include="itext7" Version="7.1.15" />
|
2021-07-28 09:46:58 +05:00
|
|
|
|
<PackageReference Include="Mapster" Version="7.2.0" />
|
2021-05-19 14:41:27 +05:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
2021-04-07 18:01:56 +05:00
|
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.10.0" />
|
2021-04-02 17:28:07 +05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\AsbCloudApp\AsbCloudApp.csproj" />
|
|
|
|
|
<ProjectReference Include="..\AsbCloudDb\AsbCloudDb.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-05-18 12:33:23 +05:00
|
|
|
|
<ItemGroup>
|
2021-07-23 14:55:31 +05:00
|
|
|
|
<Folder Include="CommonLibs\" />
|
2021-05-18 12:33:23 +05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-05-19 14:41:27 +05:00
|
|
|
|
<ItemGroup>
|
2021-07-23 14:55:31 +05:00
|
|
|
|
<Reference Include="AsbSaubReport">
|
|
|
|
|
<HintPath>CommonLibs\AsbSaubReport.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="AsbSaubReportLas">
|
|
|
|
|
<HintPath>CommonLibs\AsbSaubReportLas.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="AsbSaubReportPdf">
|
|
|
|
|
<HintPath>CommonLibs\AsbSaubReportPdf.dll</HintPath>
|
|
|
|
|
</Reference>
|
2021-05-19 14:41:27 +05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-04-02 17:28:07 +05:00
|
|
|
|
</Project>
|