服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-09-25 353ae2ebfdb15428e6891a095de13cd2731843b9
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<Project Sdk="Microsoft.NET.Sdk.Web">
 
  <PropertyGroup Label="Globals">
    <SccProjectName></SccProjectName>
    <SccProvider></SccProvider>
    <SccAuxPath></SccAuxPath>
    <SccLocalPath></SccLocalPath>
    <Platforms>AnyCPU;x86</Platforms>
  </PropertyGroup>
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ApplicationIcon>Icons\HonghuApi64.ico</ApplicationIcon>
    <OutputType>Exe</OutputType>
    <AssemblyName>TigerApiHost</AssemblyName>
    <UserSecretsId>63e1c730-ccbc-4208-a72d-3e6460877d4d</UserSecretsId>
    <FileVersion>6.0.2</FileVersion>
    <AssemblyVersion>6.0.2</AssemblyVersion>
    <PackageReleaseNotes></PackageReleaseNotes>
    <Description>Api Host Program Base on .Net 6
Hash : 673cd3b3fa311e691e8dd8136b580ed0bcc64cf0</Description>
    <Version>6.0.2</Version>
    <Product>Tiger Api Host</Product>
    <Company>SZ TigerClouds Co.,Ltd.</Company>
    <Authors>TigerClouds Team</Authors>
    <Copyright>Copyright © 2020-2024 TigerClouds. All rights reserved.</Copyright>
    <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
    <StartupObject></StartupObject>
  </PropertyGroup>
 
 
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DocumentationFile>bin\Debug\net6.0\Tiger.Api.xml</DocumentationFile>
  </PropertyGroup>
 
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
    <DocumentationFile>bin\x86\Debug\net5.0\Tiger.Api.xml</DocumentationFile>
    <OutputPath></OutputPath>
    <PlatformTarget>x86</PlatformTarget>
  </PropertyGroup>
 
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
    <DocumentationFile>bin\Release\net5.0\Tiger.Api.xml</DocumentationFile>
  </PropertyGroup>
 
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
    <DocumentationFile>bin\Release\net5.0\Tiger.Api.xml</DocumentationFile>
  </PropertyGroup>
 
 
  <ItemGroup>
    <Compile Remove="Controllers\EMS\**" />
    <Compile Remove="Controllers\QMS\**" />
    <Compile Remove="wwwroot\**" />
    <Content Remove="Controllers\EMS\**" />
    <Content Remove="Controllers\QMS\**" />
    <Content Remove="wwwroot\**" />
    <EmbeddedResource Remove="Controllers\EMS\**" />
    <EmbeddedResource Remove="Controllers\QMS\**" />
    <EmbeddedResource Remove="wwwroot\**" />
    <None Remove="Controllers\EMS\**" />
    <None Remove="Controllers\QMS\**" />
    <None Remove="wwwroot\**" />
  </ItemGroup>
 
 
  <ItemGroup>
    <Compile Remove="iBiz\Logger.cs" />
  </ItemGroup>
 
 
  <ItemGroup>
    <Content Include="Icons\HonghuApi64.ico" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="Autofac" Version="8.0.0" />
    <PackageReference Include="Autofac.Configuration" Version="6.0.0" />
    <PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0" />
    <PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
    <PackageReference Include="Microsoft.AspNetCore.Hosting.WindowsServices" Version="6.0.14" />
    <PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
    <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.14" />
    <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
    <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="7.0.1" />
    <PackageReference Include="SharpZipLib" Version="1.4.2" />
    <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\Tiger.IBusiness.MES\Tiger.IBusiness.MES.csproj" />
    <ProjectReference Include="..\Tiger.IBusiness.WMS\Tiger.IBusiness.WMS.csproj" />
    <ProjectReference Include="..\Tiger.IBusiness\Tiger.IBusiness.csproj" />
  </ItemGroup>
  <ItemGroup>
    <None Include="Views\Home\Index.cshtml" />
    <None Include="Views\Home\Privacy.cshtml" />
    <None Include="Views\Shared\Error.cshtml" />
    <None Include="Views\Shared\_Layout.cshtml" />
    <None Include="Views\Shared\_ValidationScriptsPartial.cshtml" />
    <None Include="Views\_ViewImports.cshtml" />
    <None Include="Views\_ViewStart.cshtml" />
  </ItemGroup>
  <ItemGroup>
    <Content Update="appsettings.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
    <Content Update="Autofac\SingleInstance.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
    <Content Update="Autofac\InterfaceService1.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
    <Content Update="Autofac\InterfaceService.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
    <Content Update="Autofac\Template.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
    <Content Update="Autofac\Transaction.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
    <Content Update="Autofac\Default.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
  <ItemGroup>
    <None Update="Language.db">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
  </ItemGroup>
  <ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" autofac_4template_1json__JsonSchema="https://json.schemastore.org/appsettings.json" autofac_4transaction_1json__JsonSchema="https://json.schemastore.org/appsettings.json" /></VisualStudio></ProjectExtensions>
</Project>