lixiaojun
2022-08-02 66b07025421f9a1c68c9298b3cc8345280bfc0c7
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>IStation.Application4Basic</AssemblyName>
    <RootNamespace>IStation.Application</RootNamespace>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="attachment_file\**" />
    <EmbeddedResource Remove="attachment_file\**" />
    <None Remove="attachment_file\**" />
  </ItemGroup>
 
  <ItemGroup>
    <Compile Include="attachment_file\AttachmentFile_StandardController.cs" />
    <Compile Include="attachment_file\dto\AddAttachmentFileInput.cs" />
    <Compile Include="attachment_file\dto\AttachmentFileDto.cs" />
    <Compile Include="attachment_file\dto\AttachmentUnderCorpInput.cs" />
    <Compile Include="attachment_file\dto\UpdateAttachmentFileInput.cs" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Component\IStation.Log4Net\IStation.Log4Net.csproj" />
    <ProjectReference Include="..\..\Service\IStation.Service4Basic\IStation.Service4Basic.csproj" />
    <ProjectReference Include="..\IStation.Application4Core\IStation.Application4Core.csproj" />
  </ItemGroup>
 
</Project>