ningshuxia
2022-09-21 d994f82c57d350f7b85f96dfe8f18369cadc0cec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk.Web">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <Nullable>disable</Nullable>
    <ImplicitUsings>enable</ImplicitUsings>
    <AssemblyName>IStation.WebApi.Entry</AssemblyName>
    <RootNamespace>IStation.WebApi</RootNamespace>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
    <Version />
  </PropertyGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Application\IStation.Application.Transfer\IStation.Application.Transfer.csproj" />
    <ProjectReference Include="..\..\Core\IStation.WebApi.Core\IStation.WebApi.Core.csproj" />
  </ItemGroup>
 
</Project>