<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
<OutputType>Exe</OutputType>
|
<TargetFramework>net6.0</TargetFramework>
|
<ImplicitUsings>enable</ImplicitUsings>
|
<Nullable>disable</Nullable>
|
<AssemblyName>IStation.DataProvider.SMI</AssemblyName>
|
<RootNamespace>IStation.DataProvider</RootNamespace>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
</PropertyGroup>
|
|
<ItemGroup>
|
<Compile Remove="data\DebugRecord.cs" />
|
<Compile Remove="data\JsonStore.cs" />
|
<Compile Remove="data\SrcRecord.cs" />
|
<Compile Remove="job\DataJob.cs" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<ProjectReference Include="..\..\Component\IStation.AutoMapper\IStation.AutoMapper.csproj" />
|
<ProjectReference Include="..\..\Component\IStation.Dapper\IStation.Dapper.csproj" />
|
<ProjectReference Include="..\..\Component\IStation.Log4Net\IStation.Log4Net.csproj" />
|
<ProjectReference Include="..\..\Component\IStation.Newtonsoft\IStation.Newtonsoft.csproj" />
|
<ProjectReference Include="..\..\Component\IStation.Quartz\IStation.Quartz.csproj" />
|
<ProjectReference Include="..\..\Untity\IStation.Untity\IStation.Untity.csproj" />
|
</ItemGroup>
|
|
<ItemGroup>
|
<None Update="paras_dataprovider_shys_settings.json">
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
</None>
|
<None Update="paras_dataprovider_smi_settings.json">
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
</None>
|
</ItemGroup>
|
|
<ItemGroup>
|
<Folder Include="data\" />
|
</ItemGroup>
|
|
</Project>
|