Blame view

Hh.Mes.Api/Hh.Mes.Api.csproj 1.63 KB
赖素文 authored
1
2
<Project Sdk="Microsoft.NET.Sdk.Web">
  <PropertyGroup>
唐召明 authored
3
    <TargetFramework>net6.0</TargetFramework>
赖素文 authored
4
    <UserSecretsId>eb8f6f05-47ea-4fe9-b44c-baedde16c38f</UserSecretsId>
唐召明 authored
5
6
    <StartupObject>
    </StartupObject>
赖素文 authored
7
8
9
10
11
12
13
14
  </PropertyGroup>
  <ItemGroup>
    <Compile Remove="Logs\**" />
    <Content Remove="Logs\**" />
    <EmbeddedResource Remove="Logs\**" />
    <None Remove="Logs\**" />
  </ItemGroup>
  <ItemGroup>
15
16
17
18
    <Compile Remove="Controllers\CutWeldController.cs" />
    <Compile Remove="Controllers\PDAController.cs" />
  </ItemGroup>
  <ItemGroup>
赖素文 authored
19
20
21
    <None Remove=".gitignore" />
  </ItemGroup>
  <ItemGroup>
唐召明 authored
22
23
24
25
    <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.36" />
    <PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.36" />
    <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.1" />
    <PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
赖素文 authored
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  </ItemGroup>
  <ItemGroup>
    <Content Update="appsettings.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
    <Content Update="config\log4net.config">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
  <ItemGroup>
    <Folder Include="wwwroot\UploadFile\" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\sys\Hh.Mes.Common\Hh.Mes.Common.csproj" />
    <ProjectReference Include="..\sys\Hh.Mes.Service\Hh.Mes.Service.csproj" />
  </ItemGroup>
唐召明 authored
42
43
44
45
46
47
  <ProjectExtensions>
    <VisualStudio>
      <UserProperties appsettings_1json__JsonSchema="" />
    </VisualStudio>
  </ProjectExtensions>
</Project>