lixiaojun
2023-04-12 fc6b7c9852f18e42fb9bccaf0cc22fbe5389d179
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
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>IStation.Application.Basic</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_Controller.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="..\..\Service\IStation.Service.Basic\IStation.Service.Basic.csproj" />
    <ProjectReference Include="..\IStation.Application.Core\IStation.Application.Core.csproj" />
  </ItemGroup>
 
</Project>