tangxu
2023-04-21 473084031d410d95db66e81f4d1761f9a2d1b8e5
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.Web">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <Nullable>disable</Nullable>
    <ImplicitUsings>enable</ImplicitUsings>
    <AssemblyName>IStation.WebApi.File</AssemblyName>
    <RootNamespace>IStation.WebApi</RootNamespace>
  </PropertyGroup>
 
  <ItemGroup>
    <Compile Remove="Controllers\Debug\**" />
    <Content Remove="Controllers\Debug\**" />
    <EmbeddedResource Remove="Controllers\Debug\**" />
    <None Remove="Controllers\Debug\**" />
  </ItemGroup>
 
  <ItemGroup>
    <PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Component\IStation.Log4Net\IStation.Log4Net.csproj" />
    <ProjectReference Include="..\..\Component\IStation.Newtonsoft\IStation.Newtonsoft.csproj" />
    <ProjectReference Include="..\..\Model\IStation.Model4Api\IStation.Model4Api.csproj" />
    <ProjectReference Include="..\..\Settings\IStation.Settings\IStation.Settings.csproj" />
    <ProjectReference Include="..\..\Untity\IStation.Extensions\IStation.Extensions.csproj" />
    <ProjectReference Include="..\..\Untity\IStation.Untity\IStation.Untity.csproj" />
  </ItemGroup>
 
</Project>