wangxinhui
2024-12-26 78b99e5348592a29ca1393a5e13db619cc4eba56
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
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk.Web">
 
  <PropertyGroup Label="Globals">
    <SccProjectName>SAK</SccProjectName>
    <SccProvider>SAK</SccProvider>
    <SccAuxPath>SAK</SccAuxPath>
    <SccLocalPath>SAK</SccLocalPath>
  </PropertyGroup>
 
  <PropertyGroup>
    <TargetFramework>net5.0</TargetFramework>
    <Nullable>warnings</Nullable>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
    <Optimize>false</Optimize>
    <DefineConstants>TRACE</DefineConstants>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    <WarningsAsErrors />
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Downnload\**" />
    <Content Remove="Downnload\**" />
    <EmbeddedResource Remove="Downnload\**" />
    <None Remove="Downnload\**" />
  </ItemGroup>
 
    <ItemGroup>
        <PackageReference Include="Autofac.Extensions.DependencyInjection" Version="5.0.1" />
        <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.0" />
        <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
    </ItemGroup>
 
    <ItemGroup>
      <ProjectReference Include="..\WIDESEA_Common\WIDESEA_Common.csproj" />
      <ProjectReference Include="..\WIDESEA_Core\WIDESEA_Core.csproj" />
      <ProjectReference Include="..\WIDESEA_Entity\WIDESEA_Entity.csproj" />
      <ProjectReference Include="..\WIDESEA_Services\WIDESEA_Services.csproj" />
      <ProjectReference Include="..\WIDESEA_WCS\WIDESEA_WCS.csproj" />
    </ItemGroup>
 
    <ItemGroup>
      <Folder Include="Upload\" />
      <Folder Include="Template\" />
    </ItemGroup>
 
    <ItemGroup>
      <Reference Include="HslCommunication">
        <HintPath>..\..\..\..\亿伟林洋QDF\项目代码\WCSService\WIDESEA_WCSServer\WIDESEA_WCS\bin\Debug\netcoreapp3.1\HslCommunication.dll</HintPath>
      </Reference>
    </ItemGroup>
 
    <ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
 
</Project>