123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFrameworks>net47</TargetFrameworks>
- <Nullable>disable</Nullable>
- <BulidIndex>0</BulidIndex>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\SCADA_DAQ\Customer\Jobs\CustomerJob.cs" Link="Customer\Jobs\CustomerJob.cs" />
- <Compile Include="..\SCADA_DAQ\Customer\Jobs\CustomerJobConfig.cs" Link="Customer\Jobs\CustomerJobConfig.cs" />
- <Compile Include="..\SCADA_DAQ\Customer\Service\CustomerService.cs" Link="Customer\Service\CustomerService.cs" />
- <Compile Include="..\SCADA_DAQ\Customer\Service\CustomerServiceConfig.cs" Link="Customer\Service\CustomerServiceConfig.cs" />
- <Compile Include="..\SCADA_DAQ\Customer\Service\LoginSevice.cs" Link="Customer\Service\LoginSevice.cs" />
- <Compile Include="..\SCADA_DAQ\ServiceHost.cs" Link="ServiceHost.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="log4net" Version="2.0.14" />
- <PackageReference Include="Topshelf" Version="4.3.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\SCADA_DAQ.DAL\SCADA_DAQ.DAL.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Customer\Jobs\" />
- <Folder Include="x86\" />
- <Folder Include="x64\" />
- </ItemGroup>
- <ItemGroup>
- <None Include="..\SCADA_DAQ\x64\SQLite.Interop.dll" Link="x64\SQLite.Interop.dll">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Include="..\SCADA_DAQ\x86\SQLite.Interop.dll" Link="x86\SQLite.Interop.dll">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="Opc.Ua.Client">
- <HintPath>..\Lib\Opc.Ua.Client.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Opc.Ua.Configuration">
- <HintPath>..\Lib\Opc.Ua.Configuration.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Opc.Ua.Core">
- <HintPath>..\Lib\Opc.Ua.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Opc.Ua.Server">
- <HintPath>..\Lib\Opc.Ua.Server.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Quartz">
- <HintPath>..\Lib\Quartz.dll</HintPath>
- </Reference>
- <Reference Include="SCADA">
- <HintPath>..\Lib\SCADA.dll</HintPath>
- </Reference>
- <Reference Include="SCADA.CommonLib">
- <HintPath>..\Lib\SCADA.CommonLib.dll</HintPath>
- </Reference>
- <Reference Include="SCADA_DAQ.Plugin.Core">
- <HintPath>..\Lib\SCADA_DAQ.Plugin.Core.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="SCADA_DAQ.Plugin.Machine">
- <HintPath>..\Lib\SCADA_DAQ.Plugin.Machine.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="SCADA_DAQ.Plugin.RESTful">
- <HintPath>..\Lib\SCADA_DAQ.Plugin.RESTful.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="System.Data.SQLite">
- <HintPath>..\Lib\System.Data.SQLite.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Update="LocalResource.Designer.cs">
- <DependentUpon>LocalResource.resx</DependentUpon>
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Update="LocalResource.resx">
- <LastGenOutput>LocalResource.Designer.cs</LastGenOutput>
- <Generator>ResXFileCodeGenerator</Generator>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <None Update="ScadaDaqInstall.cmd">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Update="ScadaDaqStart.cmd">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Update="ScadaDaqStop.cmd">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- <None Update="ScadaDaqUnInstall.cmd">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|