yl
2024-04-15 7ff74f599084561338eef1230db5aa45f74565f8
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
<Project Sdk="Microsoft.NET.Sdk.Web">
 
    <PropertyGroup>
        <TargetFramework>netcoreapp3.1</TargetFramework>
        <SatelliteResourceLanguages>zh-Hans</SatelliteResourceLanguages>
        <UserSecretsId>779cd365-c17d-4e17-92df-cf5d66806042</UserSecretsId>
        <DockerDefaultTargetOS>Windows</DockerDefaultTargetOS>
    </PropertyGroup>
 
    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
        <OutputPath>bin\</OutputPath>
        <DocumentationFile>bin\VueWebCoreApi.xml</DocumentationFile>
        <NoWarn>1701;1702;1591</NoWarn>
    </PropertyGroup>
 
    <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
        <OutputPath>bin\</OutputPath>
        <DocumentationFile>bin\VueWebCoreApi.xml</DocumentationFile>
        <NoWarn>1701;1702;1591</NoWarn>
        <Optimize>false</Optimize>
        <DefineConstants>TRACE</DefineConstants>
    </PropertyGroup>
 
    <ItemGroup>
        <PackageReference Include="Dapper" Version="2.0.143" />
        <PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
        <PackageReference Include="JWT" Version="8.0.0" />
        <PackageReference Include="log4net" Version="2.0.14" />
        <PackageReference Include="Microsoft.AspNet.SignalR.Core" Version="2.0.1" />
        <PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.0.0" />
        <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.0" />
        <PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.1.21" />
        <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.0" />
        <PackageReference Include="Microsoft.AspNetCore.Mvc.WebApiCompatShim" Version="2.1.2" />
        <PackageReference Include="Microsoft.AspNetCore.Session" Version="2.1.1" />
        <PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.0.0" />
        <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.0" />
        <PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="3.0.0" />
        <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.11.1" />
        <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.5" />
        <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
        <PackageReference Include="NPOI" Version="2.5.6" />
        <PackageReference Include="Quartz" Version="3.3.3" />
        <PackageReference Include="ServiceStack.Redis" Version="5.0.0" />
        <PackageReference Include="StackExchange.Redis" Version="2.7.10" />
        <PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0" />
        <PackageReference Include="System.Data.OleDb" Version="4.6.0" />
        <PackageReference Include="System.Data.SqlClient" Version="4.5.0" />
    </ItemGroup>
 
    <ItemGroup>
        <Folder Include="InExcel\" />
        <Folder Include="wwwroot\newxls\" />
        <Folder Include="wwwroot\MouldRecordImage\" />
    </ItemGroup>
 
    <ItemGroup>
      <None Include="wwwroot\Excel\往来单位.xls" />
      <None Include="wwwroot\Excel\物料清单.xls" />
      <None Include="wwwroot\Excel\缺陷定义.xls" />
      <None Include="wwwroot\Excel\节拍工价.xls" />
      <None Include="wwwroot\Excel\设备保养标准.xls" />
      <None Include="wwwroot\Excel\设备保养项目.xls" />
      <None Include="wwwroot\Excel\设备清单.xls" />
      <None Include="wwwroot\Excel\设备点检标准.xls" />
      <None Include="wwwroot\Excel\设备点检项目.xls" />
    </ItemGroup>
 
    <ItemGroup>
      <Content Update="Config\log4net.config">
        <CopyToOutputDirectory>Always</CopyToOutputDirectory>
      </Content>
    </ItemGroup>
 
 
</Project>