ningshuxia
2023-04-13 13aeccc4305083d2d61274709a0066511fae42a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>IStation.DAL</AssemblyName>
    <RootNamespace>IStation.DAL</RootNamespace>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
  </PropertyGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Component\IStation.Log4Net\IStation.Log4Net.csproj" />
    <ProjectReference Include="..\..\Core\IStation.Core\IStation.Core.csproj" />
    <ProjectReference Include="..\..\Entity\IStation.Entity\IStation.Entity.csproj" />
    <ProjectReference Include="..\..\Settings\IStation.Settings\IStation.Settings.csproj" />
  </ItemGroup>
 
</Project>