1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DocumentationFile></DocumentationFile>
- <NoWarn>1701;1702;1591</NoWarn>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DocumentationFile>bin\Debug\net5.0\Ropin.Inspection.Api.xml</DocumentationFile>
- <OutputPath>bin\Debug\net5.0\</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="Common\Authorize\CustomAuthorization.cs" />
- <Compile Remove="Common\Authorize\PermissionHandler.cs" />
- <Compile Remove="Common\Authorize\PermissionRequirement.cs" />
- <Compile Remove="Common\Authorize\TemporaryData.cs" />
- <Compile Remove="Helper\ClaimsAccessor.cs" />
- <Compile Remove="Helper\IClaimsAccessor.cs" />
- <Compile Remove="Helper\IPrincipalAccessor.cs" />
- <Compile Remove="Helper\PrincipalAccessor.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Autofac.Extensions.DependencyInjection" Version="7.1.0" />
- <PackageReference Include="InfluxData.Net" Version="8.0.1" />
- <PackageReference Include="AutoMapper" Version="10.1.1" />
- <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
- <PackageReference Include="IPTools.China" Version="1.6.0" />
- <PackageReference Include="IPTools.Core" Version="1.6.0" />
- <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.0" NoWarn="NU1605" />
- <PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="5.0.0" NoWarn="NU1605" />
- <PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="5.0.0" />
- <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.4" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.4">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
- <PackageReference Include="MySql.Data" Version="8.0.23" />
- <PackageReference Include="NPOI" Version="2.6.2" />
- <PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.0-alpha.2" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
- <PackageReference Include="UAParser" Version="3.1.47" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Ropin.Core.Common\Ropin.Core.Common.csproj" />
- <ProjectReference Include="..\Ropin.Core.Extensions\Ropin.Core.Extensions.csproj" />
- <ProjectReference Include="..\Ropin.Inspection.Common\Ropin.Inspection.Common.csproj" />
- <ProjectReference Include="..\Ropin.Inspection.Model\Ropin.Inspection.Model.csproj" />
- <ProjectReference Include="..\Ropin.Inspection.Repository\Ropin.Inspection.Repository.csproj" />
- <ProjectReference Include="..\Ropin.Inspection.Service\Ropin.Inspection.Service.csproj" />
- <ProjectReference Include="..\Ropin.Inspection.Tasks\Ropin.Inspection.Tasks.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Common\Authorize\" />
- <Folder Include="Controllers\PNT\" />
- <Folder Include="Controllers\PRD\" />
- </ItemGroup>
- <ItemGroup>
- <None Include="nlog.config">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Content Update="log4net.config">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|