ningshuxia
2022-08-12 41a59b8098446c595ce42d78a279123a4bfa6795
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>IStation.Model4Curve</AssemblyName>
    <RootNamespace>IStation.Model</RootNamespace>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <NoWarn>1701;1702;1591;CS8632</NoWarn>
  </PropertyGroup>
 
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
    <NoWarn>1701;1702;1591;CS8632</NoWarn>
  </PropertyGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\..\Component\IStation.Numerics\IStation.Numerics.csproj" />
    <ProjectReference Include="..\IStation.Model\IStation.Model.csproj" />
  </ItemGroup>
</Project>